/* ========================================
   Vibreon — Premium Web Development
   Design system inspired by modern dark-themed
   designer portfolio aesthetic (purple/pink gradient)
   ======================================== */

:root {
  /* Backgrounds */
  --bg-base: #0a0a14;
  --bg-elevated: #11111d;
  --bg-card: #13131f;
  --bg-card-hover: #18182a;

  /* Borders */
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-default: rgba(255, 255, 255, 0.1);
  --border-accent: rgba(139, 92, 246, 0.3);

  /* Brand accents */
  --accent-purple: #8B5CF6;
  --accent-purple-light: #A78BFA;
  --accent-pink: #EC4899;
  --accent-magenta: #D946EF;
  --accent-gradient: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
  --accent-gradient-hover: linear-gradient(135deg, #7C3AED 0%, #DB2777 100%);
  --accent-glow: rgba(139, 92, 246, 0.5);
  --accent-glow-pink: rgba(236, 72, 153, 0.4);

  /* Text */
  --text-primary: #ffffff;
  --text-secondary: #c0c0d0;
  --text-muted: #6b6b80;
  --text-dim: #4a4a5e;

  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', monospace;

  /* Spacing scale */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 5rem;

  /* Transitions */
  --transition-fast: all 0.15s ease;
  --transition-normal: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition-fast); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ====================================
   Background ambient effects
   ==================================== */
body::before {
  content: '';
  position: fixed;
  top: -300px;
  right: -200px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
body::after {
  content: '';
  position: fixed;
  bottom: -300px;
  left: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ====================================
   HEADER / NAV
   ==================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 20, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  width: 32px;
  height: 32px;
  background: var(--accent-gradient);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}
.brand-mark::after {
  content: '';
  position: absolute;
  inset: 4px;
  background: var(--bg-base);
  border-radius: 4px;
  display: block;
}
.brand-mark::before {
  content: 'V';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  z-index: 1;
}
.brand-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: var(--text-primary);
}

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.main-nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-secondary);
}
.main-nav a:hover, .main-nav a.active {
  color: var(--text-primary);
}
.main-nav a.active {
  position: relative;
}
.main-nav a.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -22px;
  height: 2px;
  background: var(--accent-gradient);
}

.menu-toggle {
  display: none;
  font-size: 22px;
  color: var(--text-primary);
}

/* ====================================
   BUTTONS
   ==================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.1px;
  transition: var(--transition-normal);
  cursor: pointer;
  border: 1px solid transparent;
}
.btn svg { width: 16px; height: 16px; }

.btn-gradient {
  background: var(--accent-gradient);
  color: #fff;
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.25);
}
.btn-gradient:hover {
  background: var(--accent-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(139, 92, 246, 0.4);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-default);
  color: var(--text-primary);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-purple);
}

.btn-ghost {
  background: transparent;
  color: var(--accent-purple-light);
  padding: 8px 0;
}
.btn-ghost:hover { color: var(--accent-pink); }

/* ====================================
   SECTION TAGS (eyebrow style)
   ==================================== */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-purple-light);
  margin-bottom: 18px;
}
.section-tag::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-gradient);
  box-shadow: 0 0 10px var(--accent-glow);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  color: var(--text-primary);
}
.section-title em {
  font-style: normal;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto;
}

.section-head {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}
.section-head .section-tag { justify-content: center; }

/* ====================================
   HERO
   ==================================== */
.hero {
  position: relative;
  padding: 80px 0 100px;
  z-index: 1;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
  color: var(--text-primary);
}
.hero-text h1 em {
  font-style: normal;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-text p.lead {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-visual {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-visual::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.25) 0%, transparent 60%);
  pointer-events: none;
}
.hero-visual::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.hero-visual-img {
  position: relative;
  z-index: 2;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 24px;
  max-height: 280px;
  object-fit: cover;
}
.hero-visual-img img { width: 100%; height: auto; display: block; }
.hero-visual-text {
  position: relative;
  z-index: 2;
}
.hero-visual-text h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.hero-visual-text p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 18px;
}
.hero-visual-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-pink);
}
.hero-visual-link:hover { color: var(--accent-purple-light); }

/* ====================================
   SERVICES GRID
   ==================================== */
.services {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 28px 26px;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition-normal);
  pointer-events: none;
}
.service-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
  color: var(--accent-purple-light);
}
.service-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.service-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.55;
}
.service-card .learn-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-pink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card .learn-more:hover { color: var(--accent-purple-light); }

/* ====================================
   WORK / PORTFOLIO
   ==================================== */
.work-section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}
.work-filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.filter-pill {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  padding: 9px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition-normal);
}
.filter-pill.active, .filter-pill:hover {
  background: var(--accent-gradient);
  color: #fff;
  border-color: transparent;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.work-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-normal);
  cursor: pointer;
}
.work-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}
.work-card .img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(236, 72, 153, 0.1));
  background-size: cover;
  background-position: center;
  position: relative;
}
.work-card .body {
  padding: 20px 22px 24px;
}
.work-card .body .meta {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-purple-light);
  margin-bottom: 8px;
}
.work-card .body h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
}
.work-card .body p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ====================================
   CTA BANNER (purple gradient card)
   ==================================== */
.cta-banner {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}
.cta-card {
  background: linear-gradient(135deg, #6d28d9 0%, #be185d 100%);
  border-radius: 24px;
  padding: 60px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
}
.cta-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
  pointer-events: none;
}
.cta-card::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.cta-card h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 14px;
  color: #fff;
  position: relative;
  z-index: 1;
  letter-spacing: -1px;
}
.cta-card p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 1;
}
.cta-card .btn {
  position: relative;
  z-index: 1;
  background: #fff;
  color: #6d28d9;
}
.cta-card .btn:hover {
  background: rgba(255, 255, 255, 0.92);
  transform: translateY(-2px);
}

/* ====================================
   FOOTER
   ==================================== */
.site-footer {
  background: var(--bg-elevated);
  padding: 60px 0 30px;
  border-top: 1px solid var(--border-subtle);
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 16px 0;
  max-width: 320px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition-normal);
}
.footer-social a:hover {
  background: var(--accent-gradient);
  color: #fff;
  border-color: transparent;
}
.footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 14px;
  color: var(--text-secondary);
}
.footer-col ul a:hover { color: var(--accent-purple-light); }
.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 10px;
}

/* ====================================
   PAGE HEADER (interior pages)
   ==================================== */
.page-head {
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.page-head h1 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 14px;
  color: var(--text-primary);
}
.page-head h1 em {
  font-style: normal;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-head .crumbs {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  text-transform: uppercase;
}
.page-head .crumbs a { color: var(--accent-purple-light); }

/* ====================================
   PRICING (Vibreon's tiered cards)
   ==================================== */
.pricing-section {
  padding: 60px 0 80px;
  position: relative;
  z-index: 1;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-normal);
  overflow: hidden;
}
.price-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-accent);
}
.price-card.featured {
  border-color: var(--accent-purple);
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.06) 0%, var(--bg-card) 50%);
  box-shadow: 0 0 50px rgba(139, 92, 246, 0.12);
}
.price-card.monthly {
  border-color: rgba(236, 72, 153, 0.25);
}
.price-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 6px;
}
.price-badge.popular {
  background: var(--accent-gradient);
  color: #fff;
}
.price-badge.monthly-tag {
  background: rgba(236, 72, 153, 0.12);
  color: var(--accent-pink);
  border: 1px solid rgba(236, 72, 153, 0.3);
}

.price-name {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-purple-light);
  margin-bottom: 14px;
}
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}
.price-amount .currency {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
}
.price-amount .number {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
}
.price-card.featured .price-amount .number {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.price-card.monthly .price-amount .number {
  color: var(--accent-pink);
}
.price-amount .term {
  font-size: 15px;
  color: var(--text-muted);
}
.price-strapline {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border-subtle);
}

.price-features {
  list-style: none;
  flex: 1;
  margin-bottom: 24px;
}
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.price-features li svg {
  flex-shrink: 0;
  margin-top: 3px;
  width: 14px;
  height: 14px;
  color: var(--accent-purple-light);
}
.price-card.featured .price-features li svg {
  color: var(--accent-pink);
}
.price-card.monthly .price-features li svg {
  color: var(--accent-pink);
}

/* Switch timeline (5 dots) */
.switch-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  padding: 18px 4px 14px;
  position: relative;
  border-top: 1px dashed rgba(236, 72, 153, 0.2);
  border-bottom: 1px dashed rgba(236, 72, 153, 0.2);
  margin-bottom: 18px;
}
.switch-timeline .st-track {
  position: absolute;
  top: calc(18px + 17px);
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, rgba(236, 72, 153, 0.2), rgba(236, 72, 153, 0.6));
  z-index: 0;
}
.st-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  position: relative;
  z-index: 1;
}
.st-dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1.5px solid rgba(236, 72, 153, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
}
.st-step-final .st-dot {
  background: var(--accent-gradient);
  border-color: transparent;
  box-shadow: 0 0 20px var(--accent-glow-pink);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 20px var(--accent-glow-pink); }
  50% { box-shadow: 0 0 30px rgba(236, 72, 153, 0.7); }
}
.st-num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-pink);
}
.st-step-final .st-num { color: #fff; }
.st-amt {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  text-transform: uppercase;
}
.st-step-final .st-amt { color: var(--accent-pink); }

.switch-callout {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.06) 0%, rgba(139, 92, 246, 0.03) 100%);
  border: 1px solid rgba(236, 72, 153, 0.2);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 20px;
}
.switch-callout strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-pink);
  margin-bottom: 6px;
}
.switch-callout p {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}
.switch-callout em {
  font-style: normal;
  font-weight: 700;
  color: var(--text-primary);
}

.price-cta {
  margin-top: auto;
}
.price-cta .btn {
  width: 100%;
  justify-content: center;
}

/* Pricing payment note */
.pricing-note {
  max-width: 720px;
  margin: 50px auto 0;
  text-align: center;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.pricing-note strong { color: var(--text-primary); }

/* ====================================
   CONTACT
   ==================================== */
.contact-section {
  padding: 60px 0 100px;
  position: relative;
  z-index: 1;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-info {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 36px 32px;
  height: fit-content;
}
.contact-info h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.contact-info p.sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.ci-row {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  align-items: flex-start;
}
.ci-ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--accent-purple-light);
  flex-shrink: 0;
}
.ci-row strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.ci-row a, .ci-row span {
  display: block;
  font-size: 14.5px;
  color: var(--text-primary);
}
.ci-row a:hover { color: var(--accent-pink); }

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 36px 36px 32px;
}
.contact-form h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.contact-form p.sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.field { margin-bottom: 18px; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg-base);
  border: 1px solid var(--border-default);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--text-primary);
  transition: var(--transition-fast);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent-purple);
  background: rgba(139, 92, 246, 0.04);
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-dim); }
.field textarea { resize: vertical; min-height: 120px; }
.form-status {
  text-align: center;
  font-size: 13px;
  margin-top: 14px;
  color: var(--accent-purple-light);
}

/* ====================================
   RESPONSIVE
   ==================================== */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { min-height: 360px; padding: 32px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    background: rgba(10, 10, 20, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
    gap: 16px;
  }
  .main-nav.open { display: flex; }
  .menu-toggle { display: block; }
  .main-nav a.active::after { display: none; }
  .cta-card { padding: 40px 32px; }
}
@media (max-width: 560px) {
  .services-grid, .work-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
}
