/* ============================================================
   NAVDEEP PUREWAL — DESIGN SYSTEM
   Online Business Growth Strategist
   ============================================================ */

/* ── 1. DESIGN TOKENS ──────────────────────────────────────── */
:root {
  --bg-primary:    #07091C;
  --bg-secondary:  #07091C;
  --bg-card:       #0D0F25;
  --bg-card-hover: #111428;
  --bg-light:      #F7F3EE;
  --bg-light-alt:  #EDE8E0;
  --text-dark:     #0D1035;
  --text-dark-sec: #3A3D60;
  --text-dark-muted:#6A6D8A;
  --border-light:  rgba(13,16,53,0.10);
  --gold:          #FFD000;
  --gold-light:    #FFE040;
  --gold-dim:      rgba(255,208,0,0.12);
  --gold-border:   rgba(255,208,0,0.20);
  --gold-border-h: rgba(255,208,0,0.45);
  --text-primary:  #F5F1E8;
  --text-secondary:#A7A7A7;
  --text-muted:    #555;
  --border:        rgba(255,255,255,0.07);
  --white:         #FFFFFF;

  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-section:  'Montserrat', sans-serif;
  --font-sans:     'Space Grotesk', 'Inter', -apple-system, sans-serif;
  --font-body:     'Inter', -apple-system, sans-serif;
  --font-label:    'Inter', sans-serif;

  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.45, 0, 0.15, 1);
  --ease-spring:   cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-h:         110px;
  --container:     1360px;
  --container-sm:  900px;
  --radius:        6px;
  --radius-lg:     12px;
}

/* ── 2. RESET & BASE ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.15; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection {
  background: var(--gold-dim);
  color: var(--gold);
}

/* ── 3. TYPOGRAPHY ─────────────────────────────────────────── */
.t-eyebrow {
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.t-hero {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 7.5rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.01em;
}

.t-section {
  font-family: var(--font-section);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.t-subsection {
  font-family: var(--font-section);
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  font-weight: 700;
  line-height: 1.3;
}

.t-body {
  font-size: 1.3rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.t-body-lg {
  font-size: 1.5rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

.t-small {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.gold { color: var(--gold); }
.gold-light { color: var(--gold-light); }
.text-primary { color: var(--text-primary); }
.text-muted { color: var(--text-muted); }

/* Gold headline underline treatment */
.headline-gold {
  color: var(--gold);
  position: relative;
  display: inline;
}

/* ── 4. LAYOUT ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2.5rem;
}

.container--sm {
  max-width: var(--container-sm);
  margin: 0 auto;
  padding: 0 2.5rem;
}

.section {
  padding: 7rem 0;
}

.section--sm {
  padding: 4rem 0;
}

.section--lg {
  padding: 10rem 0;
}

.section__header {
  margin-bottom: 4rem;
}

.section__header--center {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 4rem;
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── 5. BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border-radius: var(--radius);
  transition: all 0.3s var(--ease-out);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn--gold {
  background: var(--gold);
  color: #0a0900;
  border: 1px solid var(--gold);
}

.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,208,0,0.3);
}

.btn--gold:active { transform: translateY(0); }

.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--gold-border);
}

.btn--outline:hover {
  border-color: var(--gold-border-h);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid transparent;
  padding-left: 0;
}

.btn--ghost:hover {
  letter-spacing: 0.16em;
}

.btn--ghost .btn__arrow {
  transition: transform 0.3s var(--ease-out);
}

.btn--ghost:hover .btn__arrow {
  transform: translateX(5px);
}

.btn--full { width: 100%; justify-content: center; }

/* ── 6. GOLD DIVIDER ───────────────────────────────────────── */
.gold-line {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}

.gold-line--center {
  margin: 1.5rem auto;
}

/* ── 7. NAVIGATION ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  height: var(--nav-h);
  transition: background 0.5s var(--ease-out),
              border-color 0.5s var(--ease-out),
              box-shadow 0.5s var(--ease-out);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(7,9,28,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 4px 40px rgba(0,0,0,0.7), inset 0 -1px 0 rgba(255,208,0,0.06);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2.5rem;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav__monogram {
  width: 38px;
  height: 38px;
  border: 1px solid var(--gold-border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.05em;
  flex-shrink: 0;
  transition: border-color 0.3s;
}

.nav__brand:hover .nav__monogram {
  border-color: var(--gold-border-h);
}

.nav__logo-img {
  height: 110px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.footer__logo-img {
  height: 130px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav__wordmark {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-primary);
}

.nav__wordmark span {
  color: var(--gold);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav__link {
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.25s;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}

.nav__link:hover,
.nav__link.active {
  color: var(--text-primary);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__cta {
  padding: 0.65rem 1.5rem;
  font-size: 0.75rem;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
  background: none;
  border: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-primary);
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}

.nav__hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile drawer */
.nav__drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100dvh;
  width: min(85vw, 380px);
  background: var(--bg-secondary);
  border-left: 1px solid var(--border);
  z-index: 999;
  padding: 6rem 2.5rem 3rem;
  transform: translateX(100%);
  transition: transform 0.28s var(--ease-out);
  will-change: transform;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.nav__drawer.open { transform: translateX(0); }

.nav__drawer-link {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.25s;
  display: block;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.nav__drawer-link:hover { color: var(--text-primary); }

.nav__drawer-cta {
  margin-top: 2rem;
}

.nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
  backdrop-filter: blur(4px);
}

.nav__overlay.visible {
  opacity: 1;
  pointer-events: all;
}

/* ── 8. HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: visible;
  padding-top: var(--nav-h);
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.6;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(255,208,0,0.04) 0%, transparent 60%),
    linear-gradient(to right, var(--bg-primary) 0%, var(--bg-primary) 35%, transparent 65%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, transparent 70%, var(--bg-primary) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 4rem 2.5rem;
  display: flex;
  align-items: center;
  min-height: calc(100vh - var(--nav-h));
}

.hero__content {
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero__eyebrow-text {
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero__eyebrow-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 7rem);
  font-weight: 700;
  line-height: 1.00;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: 1.75rem;
}

.hero__headline .line { display: block; }

.hero__headline .highlight {
  color: var(--gold);
  position: relative;
}

.hero__headline .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.4s var(--ease-out) 1s;
}

.hero.loaded .hero__headline .highlight::after {
  transform: scaleX(1);
}

.hero__sub {
  font-size: 1.4rem;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero__credibility {
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero__credibility::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--text-muted);
}

/* Hero portrait — large authority background-style */
.hero__portrait {
  position: absolute;
  right: -18%;
  bottom: -5%;
  height: 140%;
  z-index: 1;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
}

.hero__portrait-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,208,0,0.14) 0%, transparent 70%);
  bottom: 5%;
  right: 15%;
  pointer-events: none;
  animation: glow-pulse 4s ease-in-out infinite;
}

.hero__portrait::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(to right, var(--bg-primary) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.hero__portrait-img {
  height: 100%;
  width: auto;
  display: block;
  object-fit: contain;
  object-position: bottom center;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.hero__scroll:hover { opacity: 1; }

.hero__scroll-text {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-line 1.8s ease-in-out infinite;
}

/* ── 9. AUTHORITY STRIP ────────────────────────────────────── */
.strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-secondary);
  padding: 1.75rem 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.strip__track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .strip__track { animation: none; }
}

.strip__item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0 3rem;
  font-family: var(--font-label);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-secondary);
  white-space: nowrap;
  transition: color 0.3s;
}

.strip__item:hover { color: var(--text-primary); }

.strip__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.9;
  flex-shrink: 0;
}

/* ── 10. PROBLEM / TRANSFORM ───────────────────────────────── */
.transform-section {
  position: relative;
}

.transform-section__headline {
  font-family: var(--font-section);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.transform-section__sub {
  font-size: 1.3rem;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 640px;
}

.transform-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  align-items: stretch;
  margin-top: 5rem;
}

.transform-col {
  background: #0D0F25;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.transform-col--to {
  border-color: var(--gold-border);
  background: linear-gradient(135deg, rgba(255,208,0,0.06) 0%, rgba(15,15,15,0.65) 100%);
  box-shadow: 0 4px 32px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,208,0,0.1), inset 0 1px 0 rgba(255,208,0,0.12);
}

.transform-col__label {
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.transform-col--from .transform-col__label { color: var(--text-muted); }
.transform-col--to   .transform-col__label { color: var(--gold); }

.transform-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.transform-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 1.2rem;
  line-height: 1.55;
}

.transform-col--from .transform-item {
  color: var(--text-muted);
}

.transform-col--to .transform-item {
  color: var(--text-primary);
}

.transform-item__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.transform-col--from .transform-item__icon { color: #E53935; opacity: 0.9; stroke-width: 2.2; }
.transform-col--to   .transform-item__icon { color: #16A34A; stroke-width: 2.2; }

.transform-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.transform-arrow__circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  animation: arrow-pulse 3s ease-in-out infinite;
}

/* ── 11. SERVICES ──────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-card {
  background: #0D0F25;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.4s var(--ease-out), border-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.service-card:hover {
  background: #111428;
  border-color: var(--gold-border);
  box-shadow: 0 8px 40px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,208,0,0.08), inset 0 1px 0 rgba(255,208,0,0.1);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.service-card:hover .service-card__icon {
  opacity: 1;
}

.service-card__num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.service-card__title {
  font-family: var(--font-section);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.service-card__desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.service-card__link {
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s, transform 0.3s var(--ease-out);
}

.service-card:hover .service-card__link {
  opacity: 1;
  transform: translateY(0);
}

/* ── 12. ECOSYSTEM ─────────────────────────────────────────── */
.ecosystem {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.ecosystem__flow {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  padding: 3rem 0 2rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.ecosystem__flow::-webkit-scrollbar { display: none; }

.ecosystem__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-shrink: 0;
  padding: 0 1.5rem;
  position: relative;
  cursor: default;
}

.ecosystem__step-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1rem;
  transition: all 0.4s var(--ease-out);
  position: relative;
  z-index: 1;
}

.ecosystem__step:hover .ecosystem__step-circle {
  background: var(--gold-dim);
  border-color: var(--gold);
  box-shadow: 0 0 24px rgba(255,208,0,0.2);
}

.ecosystem__step-icon {
  width: 26px;
  height: 26px;
}

.ecosystem__step-label {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  max-width: 90px;
  line-height: 1.3;
  transition: color 0.3s;
}

.ecosystem__step:hover .ecosystem__step-label {
  color: var(--text-primary);
}

.ecosystem__connector {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  color: var(--gold-border);
  margin-top: -2rem;
}

.ecosystem__connector svg {
  width: 32px;
  height: 16px;
}

/* ── 13. WHO WE HELP ───────────────────────────────────────── */
.who-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.who-card {
  background: #0D0F25;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 4px 20px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: all 0.35s var(--ease-out);
  cursor: default;
}

.who-card:hover {
  border-color: var(--gold-border);
  background: #111428;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,208,0,0.08), inset 0 1px 0 rgba(255,208,0,0.1);
  transform: translateY(-4px);
}

.who-card__icon {
  width: 32px;
  height: 32px;
  color: var(--gold);
  margin: 0 auto 1rem;
  opacity: 0.75;
  transition: opacity 0.3s;
}

.who-card:hover .who-card__icon { opacity: 1; }

.who-card__title {
  font-family: var(--font-section);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.4;
  transition: color 0.3s;
}

.who-card:hover .who-card__title { color: var(--text-primary); }

/* ── 14. PROCESS ───────────────────────────────────────────── */
.process {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  margin-top: 4rem;
}

.process__steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), var(--gold-border), transparent);
}

.process-step {
  padding: 0 1.5rem;
  text-align: center;
  position: relative;
  cursor: default;
}

.process-step__num-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.process-step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  position: relative;
  z-index: 1;
  transition: all 0.4s var(--ease-out);
}

.process-step:hover .process-step__num {
  background: var(--gold-dim);
  border-color: var(--gold);
  box-shadow: 0 0 32px rgba(255,208,0,0.25);
}

.process-step__stage {
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
}

.process-step__title {
  font-family: var(--font-section);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.65rem;
}

.process-step__desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ── 15. WHY NAVDEEP ───────────────────────────────────────── */
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.pillar {
  background: #0D0F25;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 4px 20px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: all 0.35s var(--ease-out);
}

.pillar:hover {
  border-color: var(--gold-border);
  background: #111428;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,208,0,0.08), inset 0 1px 0 rgba(255,208,0,0.1);
  transform: translateY(-3px);
}

.pillar__icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
  margin-bottom: 1.25rem;
  opacity: 0.85;
}

.pillar__title {
  font-family: var(--font-section);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.pillar__desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.why__visual {
  position: relative;
}

.why__portrait-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
}

.why__portrait-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transform: scale(1);
  transform-origin: center center;
  filter: grayscale(0%);
  transition: transform 0.6s var(--ease-out), filter 0.6s;
}

.why__portrait-wrap:hover .why__portrait-img {
  transform: scale(1.03);
  filter: grayscale(0%);
}

.why__portrait-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, var(--bg-primary) 100%);
  pointer-events: none;
}

.why__badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: rgba(7,9,28,0.72);
  border: 1px solid rgba(255,208,0,0.25);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,208,0,0.08), inset 0 1px 0 rgba(255,208,0,0.15);
}

.why__badge-title {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
}

.why__badge-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* ── 16. WORK / RESULTS ────────────────────────────────────── */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.work-card {
  background: #0D0F25;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
  cursor: default;
}

.work-card:hover {
  border-color: var(--gold-border);
  background: #111428;
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,208,0,0.1), inset 0 1px 0 rgba(255,208,0,0.12);
}

.work-card__thumb {
  aspect-ratio: 16/9;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.work-card__thumb-label {
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.work-card__thumb-placeholder {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255,208,0,0.03) 10px,
    rgba(255,208,0,0.03) 11px
  );
}

.work-card__body {
  padding: 1.75rem;
}

.work-card__category {
  font-family: var(--font-label);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.work-card__title {
  font-family: var(--font-section);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.65rem;
  line-height: 1.4;
}

.work-card__desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.work-card__result {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  padding: 0.5rem 0.85rem;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  display: inline-block;
}

.work-card__placeholder-note {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  font-style: italic;
}

/* ── 17. TESTIMONIALS ──────────────────────────────────────── */
.testimonials {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: #0D0F25;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: border-color 0.35s, box-shadow 0.35s, background 0.35s;
}

.testimonial-card:hover {
  border-color: var(--gold-border);
  background: #111428;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,208,0,0.08), inset 0 1px 0 rgba(255,208,0,0.1);
}

.testimonial-card__quote {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.7;
  color: var(--text-secondary);
  font-style: italic;
  position: relative;
  padding-left: 1.25rem;
}

.testimonial-card__quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 0.8;
  color: var(--gold);
  opacity: 0.5;
}

.testimonial-card__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.testimonial-card__role {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.testimonial-placeholder-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2.5rem;
  padding: 1rem;
  border: 1px dashed rgba(255,208,0,0.15);
  border-radius: var(--radius);
}

/* ── 18. ABOUT ─────────────────────────────────────────────── */
.about__grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about__visual {
  position: relative;
}

.about__portrait-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
}

.about__portrait-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transform: scale(1);
  transform-origin: center center;
  filter: grayscale(0%);
  transition: transform 0.6s var(--ease-out), filter 0.6s;
}

.about__portrait-wrap:hover .about__portrait-img {
  transform: scale(1.03);
  filter: grayscale(0%);
}

.about__portrait-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,208,0,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.about__accent-line {
  position: absolute;
  top: 2rem;
  right: -1rem;
  width: 3px;
  height: 40%;
  background: linear-gradient(to bottom, var(--gold), transparent);
  border-radius: 3px;
}

.about__content { }

.about__quote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.65;
  color: var(--text-secondary);
  font-style: italic;
  padding: 1.5rem;
  border-left: 2px solid var(--gold);
  margin: 2rem 0;
  background: rgba(255,208,0,0.03);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* ── 19. CTA SECTION ───────────────────────────────────────── */
.cta-section {
  position: relative;
  text-align: center;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(255,208,0,0.06) 0%, transparent 65%),
    repeating-linear-gradient(
      90deg,
      rgba(255,208,0,0.015) 0,
      rgba(255,208,0,0.015) 1px,
      transparent 1px,
      transparent 80px
    );
  pointer-events: none;
}

.cta-section__inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
}

.cta-section__headline {
  font-family: var(--font-section);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.cta-section__headline em {
  font-style: normal;
  color: var(--gold);
}

.cta-section__sub {
  font-size: 1.35rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.cta-section__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.cta-section__note {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ── 20. FAQ ───────────────────────────────────────────────── */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.75rem 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: color 0.25s;
}

.faq-trigger:hover {
  color: var(--text-primary);
}

.faq-trigger__q {
  font-family: var(--font-section);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.4;
  flex: 1;
  transition: color 0.25s;
}

.faq-trigger:hover .faq-trigger__q,
.faq-item.open .faq-trigger__q {
  color: var(--text-primary);
}

.faq-trigger__icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: all 0.3s var(--ease-out);
}

.faq-item.open .faq-trigger__icon {
  border-color: var(--gold-border);
  color: var(--gold);
  transform: rotate(45deg);
}

.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease-out);
}

.faq-item.open .faq-body {
  grid-template-rows: 1fr;
}

.faq-body__inner {
  overflow: hidden;
}

.faq-body__text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-secondary);
  padding-bottom: 1.75rem;
  max-width: 740px;
}

/* ── 21. CONTACT FORM ──────────────────────────────────────── */
.contact-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
}

.contact__grid {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  gap: 6rem;
  align-items: start;
}

.contact__meta {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

.contact__meta-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.contact__meta-item:first-of-type {
  margin-top: 2.5rem;
}

.contact__meta-icon {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact__meta-label {
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.contact__meta-value {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.contact__meta-value a:hover {
  color: var(--gold);
}

/* Form */
.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-label {
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.form-label .req {
  color: var(--gold);
  margin-left: 2px;
}

.form-input,
.form-select,
.form-textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.875rem 1rem;
  font-size: 1.1rem;
  color: var(--text-primary);
  transition: border-color 0.25s, box-shadow 0.25s;
  width: 100%;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold-border-h);
  box-shadow: 0 0 0 3px rgba(255,208,0,0.08);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: rgba(220, 38, 38, 0.6);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-select option {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-error {
  font-size: 0.78rem;
  color: #ef4444;
  display: none;
}

.form-group.has-error .form-error {
  display: block;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.form-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--gold);
  cursor: pointer;
}

.form-consent a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form__submit {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 0.5rem;
  flex-wrap: wrap;
}

.form__privacy {
  font-size: 0.775rem;
  color: var(--text-muted);
  flex: 1;
  min-width: 200px;
}

.form__privacy a { color: var(--gold); }

/* Form states */
.form__success {
  display: none;
  text-align: center;
  padding: 4rem 2rem;
}

.form.submitted .form__fields { display: none; }
.form.submitted .form__success { display: block; }

.form__success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--gold);
}

.form__success-title {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.form__success-text {
  font-size: 0.9875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Spinner */
.btn-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(0,0,0,0.2);
  border-top-color: rgba(0,0,0,0.8);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.btn.loading .btn-text { display: none; }
.btn.loading .btn-spinner { display: block; }

/* ── 22. FOOTER ────────────────────────────────────────────── */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 5rem 0 2.5rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border);
}

.footer__brand { }

.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer__brand-name {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.footer__brand-name {
  font-family: var(--font-section);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.footer__brand-tagline {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
  max-width: 280px;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}

.footer__social-link {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s;
}

.footer__social-link:hover {
  border-color: var(--gold-border);
  color: var(--gold);
}

.footer__social-link svg {
  width: 15px;
  height: 15px;
}

.footer__col-title {
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer__link {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color 0.25s;
}

.footer__link:hover {
  color: var(--text-primary);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal-link {
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: color 0.25s;
}

.footer__legal-link:hover {
  color: var(--text-secondary);
}

/* ── 23. SCROLL REVEAL ANIMATIONS ──────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.85s var(--ease-out),
    transform 0.85s var(--ease-out);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.93) translateY(16px);
  transition:
    opacity 0.65s var(--ease-out),
    transform 0.65s var(--ease-out);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out);
}

.reveal.in-view,
.reveal-scale.in-view,
.reveal-left.in-view,
.reveal-right.in-view {
  opacity: 1;
  transform: none;
}

/* Stagger delays */
.d-1 { transition-delay: 0.05s; }
.d-2 { transition-delay: 0.10s; }
.d-3 { transition-delay: 0.15s; }
.d-4 { transition-delay: 0.20s; }
.d-5 { transition-delay: 0.25s; }
.d-6 { transition-delay: 0.30s; }
.d-7 { transition-delay: 0.35s; }
.d-8 { transition-delay: 0.40s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-scale, .reveal-left, .reveal-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── 24. KEYFRAMES ─────────────────────────────────────────── */
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scroll-line {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%       { opacity: 0.8; transform: scale(1.1); }
}

@keyframes arrow-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,208,0,0.3); }
  50%       { box-shadow: 0 0 0 8px rgba(255,208,0,0); }
}

@keyframes arrow-pulse-dark {
  0%, 100% { box-shadow: 0 0 0 0 rgba(13,16,53,0.25); }
  50%       { box-shadow: 0 0 0 8px rgba(13,16,53,0); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

/* ── 24b. LIGHT SECTION (MILKY WHITE) ──────────────────────── */
.section--light {
  background: var(--bg-light) !important;
  border-color: var(--border-light) !important;
}

/* General text */
.section--light .t-eyebrow { color: var(--text-dark-muted); }
.section--light .t-section,
.section--light .t-subsection,
.section--light h1, .section--light h2, .section--light h3 { color: var(--text-dark); }
.section--light p,
.section--light .t-body,
.section--light .t-body-lg,
.section--light .t-small,
.section--light .prose p { color: var(--text-dark-sec); }
.section--light .gold-line { background: var(--text-dark) !important; }

/* Transform section */
.section--light .transform-section__headline { color: var(--text-dark); }
.section--light .transform-section__sub { color: var(--text-dark-sec); }
.section--light .transform-item { color: var(--text-dark-sec); }
.section--light .transform-col {
  background: rgba(255,255,255,0.70);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: var(--border-light);
  box-shadow: 0 4px 24px rgba(13,16,53,0.08), inset 0 1px 0 rgba(255,255,255,0.9);
}
.section--light .transform-col--from {
  background: rgba(13,16,53,0.05);
  border-color: rgba(13,16,53,0.12);
}
.section--light .transform-col--to {
  background: linear-gradient(135deg, rgba(255,208,0,0.08) 0%, rgba(255,255,255,0.85) 100%);
  border-color: var(--gold-border);
  box-shadow: 0 4px 32px rgba(13,16,53,0.10), 0 0 0 1px rgba(255,208,0,0.15), inset 0 1px 0 rgba(255,208,0,0.12);
}
.section--light .transform-col__label { color: var(--text-dark-muted); }
.section--light .transform-col--to .transform-col__label { color: var(--text-dark-muted); }
.section--light .transform-arrow svg { stroke: var(--text-dark-muted); }

/* Ecosystem */
.section--light .ecosystem__step-label { color: var(--text-dark-sec); }
.section--light .ecosystem__step:hover .ecosystem__step-label { color: var(--text-dark); }

/* Process */
.section--light .process-step__stage { color: var(--text-dark-muted); }
.section--light .process-step__title { color: var(--text-dark); }
.section--light .process-step__desc { color: var(--text-dark-sec); }
.section--light .process-step__num {
  background: var(--bg-light-alt);
  border-color: var(--gold-border);
  color: var(--text-dark);
}
.section--light .process__steps::before { background: rgba(13,16,53,0.10); }

/* Work / Results cards */
.section--light .work-card {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: var(--border-light);
  box-shadow: 0 4px 24px rgba(13,16,53,0.08), inset 0 1px 0 rgba(255,255,255,0.9);
}
.section--light .work-card:hover {
  border-color: rgba(13,16,53,0.20);
  background: rgba(255,255,255,0.95);
  box-shadow: 0 12px 40px rgba(13,16,53,0.14), 0 0 0 1px rgba(13,16,53,0.10), inset 0 1px 0 rgba(255,255,255,1);
}
.section--light .work-card__thumb { background: var(--bg-light-alt); border-color: var(--border-light); }
.section--light .work-card__title { color: var(--text-dark); }
.section--light .work-card__desc { color: var(--text-dark-sec); }
.section--light .work-card__tag {
  background: rgba(13,16,53,0.06);
  color: var(--text-dark-muted);
  border-color: var(--border-light);
}

/* FAQ */
.section--light .faq-item { border-color: var(--border-light); }
.section--light .faq-item:first-child { border-color: var(--border-light); }
.section--light .faq-trigger__q { color: var(--text-dark); }
.section--light .faq-trigger:hover .faq-trigger__q,
.section--light .faq-item.open .faq-trigger__q { color: var(--text-dark); }
.section--light .faq-trigger__icon { color: var(--text-dark-muted); }
.section--light .faq-body__text { color: var(--text-dark-sec); }

/* About / Prose */
.section--light .about__quote {
  border-left-color: var(--text-dark);
  color: var(--text-dark-sec);
  background: rgba(13,16,53,0.04);
}
.section--light .prose h3 { color: var(--text-dark); }
.section--light .about__content .t-small { color: var(--text-dark-sec); }

/* Pillar cards */
.section--light .pillar {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: var(--border-light);
  box-shadow: 0 2px 16px rgba(13,16,53,0.07), inset 0 1px 0 rgba(255,255,255,0.9);
}
.section--light .pillar:hover {
  border-color: rgba(13,16,53,0.20);
  background: rgba(255,255,255,0.98);
  box-shadow: 0 8px 32px rgba(13,16,53,0.12), 0 0 0 1px rgba(13,16,53,0.10), inset 0 1px 0 rgba(255,255,255,1);
  transform: translateY(-3px);
}
.section--light .pillar__title { color: var(--text-dark); }
.section--light .pillar__desc { color: var(--text-dark-sec); }
.section--light .pillar__icon { color: var(--text-dark); }

/* CTA (when on light) */
.section--light .cta-section__headline { color: var(--text-dark); }
.section--light .cta-section__sub { color: var(--text-dark-sec); }

/* Contact form on light */
.section--light .contact__meta-label { color: var(--text-dark-muted); }
.section--light .contact__meta-value { color: var(--text-dark); }
.section--light .contact__meta-value a { color: var(--text-dark); }
.section--light .form-label { color: var(--text-dark-sec); }
.section--light .form-input,
.section--light .form-select,
.section--light .form-textarea {
  background: rgba(255,255,255,0.75);
  border-color: rgba(13,16,53,0.14);
  color: var(--text-dark);
}
.section--light .form-input::placeholder,
.section--light .form-textarea::placeholder { color: var(--text-dark-muted); }
.section--light .form-input:focus,
.section--light .form-select:focus,
.section--light .form-textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.95);
}
.section--light .form-consent { color: var(--text-dark-sec); }

/* Service detail on light (services page) */
.section--light .service-detail__label,
.section--light .service-detail__feature-label { color: var(--text-dark-muted); }
.section--light .service-detail__title { color: var(--text-dark); }
.section--light .service-detail__desc { color: var(--text-dark-sec); }

/* Transform — gold accents → dark */
.section--light .transform-col--from .transform-item__icon { color: #E53935; opacity: 0.9; stroke-width: 2.2; }
.section--light .transform-col--to   .transform-item__icon { color: #16A34A; stroke-width: 2.2; }
.section--light .transform-col--to { border-color: rgba(13,16,53,0.18); }
.section--light .transform-col--to .transform-col__label { color: var(--text-dark-muted); }

/* Transform arrow circle — gold border/color/pulse → dark */
.section--light .transform-arrow__circle {
  border-color: rgba(13,16,53,0.20);
  color: var(--text-dark);
  animation: arrow-pulse-dark 3s ease-in-out infinite;
}

/* Ecosystem — gold hover → dark */
.section--light .ecosystem__connector { color: rgba(13,16,53,0.20); }
.section--light .ecosystem__connector svg { stroke: rgba(13,16,53,0.20); }
.section--light .ecosystem__step-circle {
  border-color: rgba(13,16,53,0.14);
  color: var(--text-dark);
  background: rgba(255,255,255,0.8);
}
.section--light .ecosystem__step:hover .ecosystem__step-circle {
  background: rgba(13,16,53,0.06);
  border-color: var(--text-dark);
  box-shadow: 0 0 24px rgba(13,16,53,0.12);
}

/* Process — gold → dark */
.section--light .process__steps::before {
  background: linear-gradient(90deg, transparent, rgba(13,16,53,0.18), rgba(13,16,53,0.18), transparent);
}
.section--light .process-step__num {
  border-color: rgba(13,16,53,0.20);
  color: var(--text-dark);
  background: var(--bg-light-alt);
}
.section--light .process-step:hover .process-step__num {
  background: rgba(13,16,53,0.08);
  border-color: var(--text-dark);
  box-shadow: 0 0 32px rgba(13,16,53,0.12);
}
.section--light .process-step__stage { color: var(--text-dark-muted); }

/* Card icons and accents — gold → dark */
.section--light .service-card__icon { color: var(--text-dark); }
.section--light .who-card__icon { color: var(--text-dark); }
.section--light .work-card__thumb-icon { color: var(--text-dark); }
.section--light .service-card::before {
  background: linear-gradient(90deg, var(--text-dark), rgba(13,16,53,0.5));
}
.section--light .work-card__tag { color: var(--text-dark-muted); border-color: rgba(13,16,53,0.14); }

/* Contact — form focus gold → dark */
.section--light .form-input:focus,
.section--light .form-select:focus,
.section--light .form-textarea:focus { border-color: var(--text-dark); }
.section--light .form-consent a { color: var(--text-dark); text-decoration: underline; }
.section--light .form__privacy a { color: var(--text-dark); }

/* Eyebrow text (explicitly dark, not gold) */
.section--light .t-eyebrow { color: var(--text-dark-muted) !important; }

/* Scroll-progress bar — stays gold (global, not section-scoped) */

/* work-card category + result badge */
.section--light .work-card__category { color: var(--text-dark-muted); }
.section--light .work-card__result {
  color: var(--text-dark);
  background: rgba(13,16,53,0.06);
  border-color: rgba(13,16,53,0.14);
}

/* Testimonials on dark — keep as-is (testimonials is dark section) */

/* About accent line */
.section--light .about__accent-line {
  background: linear-gradient(to bottom, var(--text-dark), transparent);
}

/* About quote — border + quote mark */
.section--light .about__quote::before { color: var(--text-dark-muted); }

/* CTA headline em (italic gold word) */
.section--light .cta-section__headline em { color: var(--text-dark); }

/* FAQ open icon */
.section--light .faq-item.open .faq-trigger__icon {
  border-color: rgba(13,16,53,0.20);
  color: var(--text-dark);
}

/* Contact meta icon + hover link */
.section--light .contact__meta-icon { color: var(--text-dark); }
.section--light .contact__meta-value a:hover { color: var(--text-dark); }

/* Form required asterisk */
.section--light .form-label .req { color: var(--text-dark); }

/* Form consent / privacy links */
.section--light .form__privacy a { color: var(--text-dark); }

/* Service detail — page-specific (services.html light sections) */
.section--light .service-detail__label { color: var(--text-dark-muted); }
.section--light .service-detail__icon { color: var(--text-dark); }

/* Heading gold utility class */
.section--light .gold { color: var(--text-dark); }
.section--light .headline-gold { color: var(--text-dark); }

/* Page hero on light (inner pages) */
.section--light .t-section { color: var(--text-dark); }

/* ── 25. UTILITY CLASSES ───────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.flex     { display: flex; }
.flex-col { display: flex; flex-direction: column; }
.items-center { align-items: center; }
.gap-1  { gap: 0.5rem; }
.gap-2  { gap: 1rem; }
.gap-3  { gap: 1.5rem; }
.mt-1   { margin-top: 0.5rem; }
.mt-2   { margin-top: 1rem; }
.mt-3   { margin-top: 1.5rem; }
.mt-4   { margin-top: 2rem; }
.mt-6   { margin-top: 3rem; }
.mt-8   { margin-top: 4rem; }
.mb-2   { margin-bottom: 1rem; }
.mb-3   { margin-bottom: 1.5rem; }
.mb-4   { margin-bottom: 2rem; }
.text-center { text-align: center; }

/* ── 26. INNER PAGE STYLES ─────────────────────────────────── */
.page-hero {
  min-height: 45vh;
  display: flex;
  align-items: flex-end;
  padding-top: var(--nav-h);
  padding-bottom: 4rem;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: radial-gradient(ellipse at 20% 100%, rgba(255,208,0,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
}

/* Content sections (about, services pages) */
.prose {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.prose p + p { margin-top: 1.25rem; }

.prose h3 {
  font-family: var(--font-section);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

/* Policy pages */
.policy-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 5rem 2rem 8rem;
}

.policy-content h2 {
  font-family: var(--font-section);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 3rem 0 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.policy-content h2:first-child { border-top: none; padding-top: 0; margin-top: 2rem; }

.policy-content p {
  font-size: 0.9875rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.policy-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.policy-content li {
  font-size: 0.9875rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}

.policy-content a { color: var(--gold); text-decoration: underline; }

/* 404 page */
.page-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--nav-h) 2rem 6rem;
}

/* Thank you page */
.page-thankyou {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--nav-h) 2rem 6rem;
}

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 1001;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.1s linear;
}

/* Sticky CTA mobile */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 1rem 1.5rem;
  background: rgba(7,9,28,0.95);
  border-top: 1px solid var(--gold-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

