/* ============================================================
   PURCLIVE INDIA PVT. LTD. — purclive.in
   Complete Design System  |  v3.0
   McKinsey + Apple + Stripe + Linear inspired
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── DESIGN TOKENS ──────────────────────────────────────────── */
:root {
  /* Brand Palette */
  --purple:     #3D1589;
  --purple2:    #52309F;
  --purple3:    #6B3FBF;
  --lavender:   #9B8EC4;
  --blue-lt:    #A8CEFF;
  --dark:       #0A0618;
  --dark2:      #1E1040;
  --white:      #FFFFFF;
  --body-clr:   #1E1040;
  --muted:      #6B6585;
  --card:       #F0EEFF;
  --light:      #F8F6FF;
  --rule:       #DDD8F0;
  --teal:       #0D6E6E;
  --teal2:      #138080;
  --sage:       #7CA982;

  /* Gradients */
  --grad:       linear-gradient(135deg, #3D1589 0%, #52309F 100%);
  --grad-r:     linear-gradient(135deg, #52309F 0%, #3D1589 100%);
  --grad-dark:  linear-gradient(135deg, #0A0618 0%, #1E1040 100%);
  --grad-teal:  linear-gradient(135deg, #0D6E6E 0%, #138080 100%);

  /* Typography */
  --font-h:     'Playfair Display', Georgia, serif;
  --font-b:     'Inter', 'Segoe UI', system-ui, sans-serif;

  /* Elevation */
  --shadow-sm:  0 2px 8px rgba(61,21,137,.08);
  --shadow:     0 4px 20px rgba(61,21,137,.10);
  --shadow-md:  0 8px 28px rgba(61,21,137,.14);
  --shadow-lg:  0 12px 48px rgba(61,21,137,.18);
  --shadow-hv:  0 20px 60px rgba(61,21,137,.22);

  /* Shape */
  --radius-sm:  6px;
  --radius:     10px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  /* Layout */
  --max-w:      1140px;
  --section-py: 96px;

  /* Transitions */
  --ease:       cubic-bezier(0.22, 1, 0.36, 1);
  --dur:        0.3s;
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-b);
  color: var(--body-clr);
  line-height: 1.72;
  background: var(--white);
  overflow-x: hidden;
}
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-b); }

/* ── LAYOUT ─────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

.section-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 64px;
}

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: .68rem;
  color: var(--lavender);
  font-weight: 700;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-label--light { color: rgba(168,206,255,.7); }
.section-label--teal  { color: var(--teal); }

.section-title {
  font-family: var(--font-h);
  font-size: 2.4rem;
  color: var(--purple);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title--white { color: var(--white); }

.section-sub {
  color: var(--muted);
  font-size: .97rem;
  line-height: 1.75;
  margin-bottom: 0;
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .88rem;
  transition: all var(--dur) var(--ease);
  border: 2px solid transparent;
  letter-spacing: .2px;
  white-space: nowrap;
}
.btn--lg { padding: 15px 32px; font-size: .92rem; }

.btn--cta {
  background: var(--white);
  color: var(--purple);
  box-shadow: 0 4px 18px rgba(0,0,0,.18);
}
.btn--cta:hover {
  background: var(--card);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,.22);
}

.btn--primary {
  background: var(--grad);
  color: var(--white);
  box-shadow: 0 3px 14px rgba(61,21,137,.28);
}
.btn--primary:hover {
  opacity: .88;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(61,21,137,.35);
}

.btn--light {
  background: var(--white);
  color: var(--purple);
  box-shadow: 0 3px 12px rgba(0,0,0,.12);
}
.btn--light:hover {
  background: var(--card);
  transform: translateY(-2px);
}

.btn--ghost {
  border-color: rgba(255,255,255,.35);
  color: var(--white);
}
.btn--ghost:hover {
  border-color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.08);
}

.btn--ghost-light {
  border-color: rgba(255,255,255,.3);
  color: rgba(255,255,255,.85);
}
.btn--ghost-light:hover {
  border-color: rgba(255,255,255,.7);
  color: var(--white);
  background: rgba(255,255,255,.08);
}

.btn--outline {
  border-color: var(--purple);
  color: var(--purple);
}
.btn--outline:hover {
  background: var(--purple);
  color: var(--white);
}

.btn--teal {
  background: var(--grad-teal);
  color: var(--white);
  box-shadow: 0 3px 14px rgba(13,110,110,.3);
}
.btn--teal:hover {
  opacity: .88;
  transform: translateY(-2px);
}

.btn--teal-outline {
  border-color: var(--teal);
  color: var(--teal);
}
.btn--teal-outline:hover {
  background: var(--teal);
  color: var(--white);
}

.btn-arrow { transition: transform var(--dur) var(--ease); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ── NAVIGATION ──────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}
.nav--scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(61,21,137,.1);
  border-bottom: 1px solid var(--rule);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  max-width: var(--max-w);
  margin: 0 auto;
  transition: padding var(--dur) var(--ease);
}
.nav--scrolled .nav-inner { padding: 12px 28px; }

/* Logo */
.nav-logo img { height: 50px; width: auto; }
.nav-logo-text {
  font-family: var(--font-h);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.5px;
}
.nav--scrolled .nav-logo-text { color: var(--purple); }

/* Nav Links */
.nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
}
.nav-link {
  padding: 8px 14px;
  color: rgba(255,255,255,.85);
  font-size: .87rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: color var(--dur), background var(--dur);
  position: relative;
}
.nav-link:hover,
.nav-link.active { color: var(--white); }

.nav--scrolled .nav-link { color: var(--muted); }
.nav--scrolled .nav-link:hover,
.nav--scrolled .nav-link.active { color: var(--purple); background: var(--card); }

.nav-arrow { font-size: .65rem; }
.nav-link--has-child { display: flex; align-items: center; gap: 4px; }

/* Mega Dropdown */
.nav-dropdown { position: relative; }
/* Bridge: extends .nav-dropdown's hover area to cover the gap between trigger and menu.
   Must live on the PARENT (::after), not the child (.nav-mega::before),
   because the child only exists in the DOM when the mega is already visible. */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -16px;
  right: -16px;
  height: 14px; /* covers the 12px gap + 2px buffer */
}
.nav-mega {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  width: 460px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--rule);
  padding: 24px;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  z-index: 1000;
}
.nav-dropdown:hover .nav-mega,
.nav-dropdown:focus-within .nav-mega { display: grid; }

.nav-mega-col { display: flex; flex-direction: column; gap: 4px; }
.nav-mega-heading {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 8px;
}
.nav-mega-link {
  font-size: .83rem;
  color: var(--muted);
  padding: 5px 8px;
  border-radius: 4px;
  transition: all .2s;
}
.nav-mega-link:hover {
  color: var(--purple);
  background: var(--card);
}

/* CTA Button in Nav */
.nav-cta {
  background: var(--grad) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 700 !important;
  font-size: .84rem !important;
  box-shadow: 0 2px 12px rgba(61,21,137,.3) !important;
  border: none !important;
  transition: opacity .2s, transform .2s !important;
}
.nav-cta:hover {
  opacity: .88 !important;
  transform: translateY(-1px) !important;
  color: var(--white) !important;
  background: var(--grad) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  border: none;
  background: none;
  padding: 6px;
  border-radius: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}
.nav--scrolled .hamburger span { background: var(--purple); }

/* ── SYSTEM THEME — NAV ──────────────────────────────────── */

/* LIGHT MODE: frosted white glass from the top */
@media (prefers-color-scheme: light) {
  .nav {
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(61,21,137,.08);
    box-shadow: 0 1px 12px rgba(61,21,137,.06);
  }
  .nav--scrolled {
    background: rgba(255,255,255,.97);
    box-shadow: 0 2px 20px rgba(61,21,137,.1);
    border-bottom: 1px solid var(--rule);
  }
  .nav-logo-text { color: var(--purple); }
  .nav--scrolled .nav-logo-text { color: var(--purple); }
  .nav-link { color: var(--muted); }
  .nav-link:hover,
  .nav-link.active { color: var(--purple); background: var(--card); }
  .nav--scrolled .nav-link { color: var(--muted); }
  .nav--scrolled .nav-link:hover,
  .nav--scrolled .nav-link.active { color: var(--purple); background: var(--card); }
  .hamburger span { background: var(--purple); }
  .nav--scrolled .hamburger span { background: var(--purple); }
}

/* DARK MODE: deep glass — give the ribbon substance */
@media (prefers-color-scheme: dark) {
  .nav {
    background: rgba(10,6,24,.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(155,142,196,.12);
  }
  .nav--scrolled {
    background: rgba(10,6,24,.96);
    box-shadow: 0 2px 20px rgba(0,0,0,.4);
    border-bottom: 1px solid rgba(155,142,196,.18);
  }
  .nav-logo-text { color: var(--white); }
  .nav--scrolled .nav-logo-text { color: var(--lavender); }
  .nav-link { color: rgba(200,184,255,.8); }
  .nav-link:hover,
  .nav-link.active { color: var(--white); background: rgba(155,142,196,.12); }
  .nav--scrolled .nav-link { color: var(--lavender); }
  .nav--scrolled .nav-link:hover,
  .nav--scrolled .nav-link.active { color: var(--white); background: rgba(155,142,196,.15); }
  .nav-mega {
    background: #1E1040;
    border-color: rgba(155,142,196,.2);
  }
  .nav-mega-heading { color: var(--lavender); }
  .nav-mega-link { color: rgba(200,184,255,.7); }
  .nav-mega-link:hover { color: var(--white); background: rgba(155,142,196,.12); }
  .hamburger span { background: var(--lavender); }
  .nav--scrolled .hamburger span { background: var(--lavender); }
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--dark2);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 80px 28px 40px;
  transform: translateX(100%);
  transition: transform .4s var(--ease);
}
.mobile-menu.is-open { transform: translateX(0); }

.mobile-link {
  color: rgba(255,255,255,.8);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color .2s;
}
.mobile-link:hover, .mobile-link.active { color: var(--blue-lt); }
.mobile-cta {
  display: inline-block;
  background: var(--grad);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .92rem;
  margin-top: 24px;
  text-align: center;
}
.mobile-creds {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mobile-creds span {
  color: rgba(168,206,255,.5);
  font-size: .74rem;
  font-weight: 600;
}

/* ── ANIMATIONS ──────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }

.stagger-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.stagger-item.visible { opacity: 1; transform: translateY(0); }

/* ── 01. HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 28px 80px;
}

/* Animated Background Orbs */
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 12s ease-in-out infinite alternate;
}
.hero-orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(61,21,137,.6) 0%, transparent 70%);
  top: -100px; left: -100px;
  animation-delay: 0s;
}
.hero-orb--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(13,110,110,.4) 0%, transparent 70%);
  bottom: -100px; right: -50px;
  animation-delay: -6s;
}

@keyframes orbFloat {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, 30px) scale(1.08); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
  width: 100%;
}

/* Hero Content */
.hero-content { max-width: 600px; }

.hero-eyebrow {
  font-size: .68rem;
  color: var(--blue-lt);
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: .8;
}

.hero-headline {
  font-family: var(--font-h);
  font-size: 3.8rem;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 700;
}
.hero-headline em {
  font-style: italic;
  color: var(--blue-lt);
}

.hero-body {
  color: rgba(255,255,255,.72);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero-badge {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 30px;
  padding: 6px 14px;
  color: rgba(255,255,255,.75);
  font-size: .72rem;
  font-weight: 600;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-photo-frame {
  position: relative;
  width: 360px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 2px solid rgba(255,255,255,.15);
  box-shadow: 0 20px 80px rgba(0,0,0,.5);
  background: linear-gradient(135deg, #1E1040, #3D1589);
  aspect-ratio: 3/4;
}
.hero-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.hero-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.3);
  font-family: var(--font-h);
  font-size: 1.1rem;
}
.hero-photo-badge {
  position: absolute;
  bottom: 16px;
  left: 0; right: 0;
  margin: 0 16px;
  background: rgba(10,6,24,.8);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  padding: 10px 16px;
  color: var(--blue-lt);
  font-size: .74rem;
  font-weight: 600;
  text-align: center;
  border: 1px solid rgba(168,206,255,.2);
}

/* Floating Badges */
.hero-float-badge {
  position: absolute;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 30px;
  padding: 8px 16px;
  font-size: .72rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  animation: floatBadge 3s ease-in-out infinite alternate;
}
.hero-float-badge--1 { top: 20px; left: -40px; animation-delay: 0s; }
.hero-float-badge--2 { top: 50%; right: -50px; animation-delay: -1s; }
.hero-float-badge--3 { bottom: 80px; left: -60px; animation-delay: -2s; }

@keyframes floatBadge {
  from { transform: translateY(0); }
  to   { transform: translateY(-8px); }
}

/* Hero Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.4));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* Hero Entry Animations */
.hero-anim {
  opacity: 0;
  transform: translateY(30px);
  animation: heroEntry .8s var(--ease) forwards;
}
.hero-anim--1 { animation-delay: .2s; }
.hero-anim--2 { animation-delay: .4s; }
.hero-anim--2v { animation-delay: .55s; }
.hero-anim--3 { animation-delay: .6s; }
.hero-anim--4 { animation-delay: .75s; }
.hero-anim--5 { animation-delay: .9s; }

@keyframes heroEntry {
  to { opacity: 1; transform: translateY(0); }
}

/* ── 02. MARQUEE ─────────────────────────────────────────────── */
.marquee-wrap {
  background: var(--card);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 18px 0;
  overflow: hidden;
}
.marquee-label {
  text-align: center;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 12px;
}
.marquee-overflow { position: relative; overflow: hidden; display: flex; }
.marquee-fade {
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.marquee-fade--left  { left: 0;  background: linear-gradient(to right, var(--card), transparent); }
.marquee-fade--right { right: 0; background: linear-gradient(to left,  var(--card), transparent); }

.marquee-track {
  display: flex;
  gap: 0;
  animation: marqueeScroll 28s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }

.marquee-item {
  color: var(--purple2);
  font-size: .8rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 0 24px;
}
.marquee-sep {
  color: var(--lavender);
  font-size: .5rem;
  display: flex;
  align-items: center;
  padding: 0 4px;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── 02B. CLIENT LOGOS ───────────────────────────────────────── */
.client-logos-section {
  background: #0f0f14;
  padding: 56px 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.client-logos-label {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 40px;
}
.client-logos-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 24px 32px;
  align-items: center;
  justify-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.client-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.55;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.client-logo-item:hover {
  opacity: 1;
  transform: scale(1.06);
}
.client-logo-item img {
  width: 220px;
  height: 100px;
  object-fit: contain;
}
@media (max-width: 900px) {
  .client-logos-grid { grid-template-columns: repeat(4, 1fr); gap: 20px 24px; }
}
@media (max-width: 540px) {
  .client-logos-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .client-logo-item img { max-width: 80px; max-height: 36px; }
}

/* ── 03. OVERVIEW ────────────────────────────────────────────── */
.overview {
  padding: var(--section-py) 28px;
  background: var(--white);
}
.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.overview-card {
  background: var(--white);
  padding: 48px 36px;
  position: relative;
  transition: background var(--dur);
}
.overview-card:hover { background: var(--light); }
.overview-card:hover .overview-num { color: var(--purple); }

.overview-num {
  font-family: var(--font-h);
  font-size: 3rem;
  color: var(--rule);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 20px;
  transition: color .3s;
}
.overview-title-h3 {
  font-family: var(--font-h);
  font-size: 1.2rem;
  color: var(--purple);
  margin-bottom: 14px;
}
.overview-body {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.75;
}

/* ── 04. SOLUTIONS ───────────────────────────────────────────── */
.solutions {
  padding: var(--section-py) 28px;
  background: var(--light);
}
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.sol-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--dur), transform var(--dur);
  border-top: 3px solid var(--purple);
  position: relative;
  overflow: hidden;
}
.sol-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad);
  opacity: 0;
  transition: opacity .3s;
}
.sol-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.sol-card:hover::before { opacity: .04; }

.sol-icon {
  width: 44px; height: 44px;
  background: var(--card);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 14px;
  position: relative;
}
.sol-label {
  display: inline-block;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 8px;
  position: relative;
}
.sol-title {
  font-family: var(--font-h);
  font-size: 1rem;
  color: var(--purple);
  margin-bottom: 10px;
  position: relative;
}
.sol-body {
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.68;
  margin-bottom: 16px;
  position: relative;
}
.sol-link {
  display: inline-block;
  color: var(--purple2);
  font-weight: 600;
  font-size: .78rem;
  position: relative;
  transition: color .2s;
}
.sol-link:hover { color: var(--purple); text-decoration: underline; }

.solutions-footer { text-align: center; }

/* ── 05. T-POP FRAMEWORK ─────────────────────────────────────── */
.tpop {
  position: relative;
  background: var(--dark);
  padding: var(--section-py) 28px;
  overflow: hidden;
}
.tpop-bg { position: absolute; inset: 0; }
.tpop-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.tpop-orb--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(61,21,137,.5) 0%, transparent 70%);
  top: -100px; left: -100px;
}
.tpop-orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(13,110,110,.35) 0%, transparent 70%);
  bottom: -100px; right: -50px;
}

.tpop-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 80px;
  position: relative;
  z-index: 1;
}

.tpop-framework {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}

.tpop-node {
  text-align: center;
  max-width: 260px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.tpop-node.visible { opacity: 1; transform: translateY(0); }
#tpopNode1 { transition-delay: 0s; }
#tpopNode2 { transition-delay: .2s; }
#tpopNode3 { transition-delay: .4s; }

.tpop-circle {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple3));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 40px rgba(61,21,137,.5);
  border: 2px solid rgba(255,255,255,.15);
}
.tpop-letter {
  font-family: var(--font-h);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  font-style: italic;
}
.tpop-node-title {
  font-family: var(--font-h);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 14px;
}
.tpop-node-body {
  color: rgba(255,255,255,.6);
  font-size: .84rem;
  line-height: 1.72;
  padding: 0 10px;
}

.tpop-conn {
  display: flex;
  align-items: center;
  padding: 0 12px;
  padding-top: 40px;
  flex-shrink: 0;
}
.tpop-conn-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, rgba(168,206,255,.3), rgba(168,206,255,.7));
}
.tpop-conn-arrow {
  color: rgba(168,206,255,.7);
  font-size: 1.2rem;
  line-height: 1;
}

.tpop-footer {
  text-align: center;
  position: relative;
  z-index: 1;
}
.tpop-quote {
  font-family: var(--font-h);
  font-style: italic;
  font-size: 1.3rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 24px;
}
.tpop-framework-family {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}
.tff-label {
  color: rgba(255,255,255,.4);
  font-size: .78rem;
  width: 100%;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}
.tff-name {
  color: var(--blue-lt);
  font-size: .84rem;
  font-weight: 600;
}
.tff-sep {
  color: rgba(255,255,255,.25);
  font-size: .8rem;
}
.tpop-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── 06. PSYCHOLOGY / DR. VIVEK ──────────────────────────────── */
.psychology {
  padding: var(--section-py) 28px;
  background: var(--white);
}
.psych-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto 80px;
}
.psych-left { max-width: 480px; }
.psych-quote {
  font-family: var(--font-h);
  font-size: 1.75rem;
  line-height: 1.4;
  color: var(--dark2);
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding-left: 24px;
  border-left: 4px solid var(--purple);
}
.psych-cite {
  display: block;
  color: var(--lavender);
  font-size: .84rem;
  font-style: normal;
  margin-bottom: 28px;
  font-weight: 600;
}
.psych-profile-link {
  color: var(--purple);
  font-weight: 700;
  font-size: .88rem;
  transition: gap .2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.psych-profile-link:hover { text-decoration: underline; }

.psych-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.psych-stat {
  background: var(--light);
  padding: 32px 28px;
  transition: background .2s;
}
.psych-stat:hover { background: var(--card); }
.psych-stat-num {
  font-family: var(--font-h);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--purple);
  line-height: 1;
  margin-bottom: 8px;
}
.psych-stat-unit { font-size: 1.2rem; }
.psych-stat-label {
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.5;
}

/* Vivek Strip */
.vivek-strip {
  background: var(--light);
  border: 1px solid var(--rule);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: start;
  max-width: var(--max-w);
  margin: 0 auto;
  box-shadow: var(--shadow);
}
.vivek-photo-wrap {}
.vivek-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
  background: var(--card);
  position: relative;
}
.vivek-photo img { width: 100%; height: 100%; object-fit: cover; }
.vivek-photo-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--purple);
}
.vivek-name {
  font-family: var(--font-h);
  font-size: 1.5rem;
  color: var(--purple);
  margin-bottom: 4px;
}
.vivek-role {
  color: var(--lavender);
  font-style: italic;
  font-size: .88rem;
  font-weight: 500;
  margin-bottom: 14px;
}
.vivek-bio {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 560px;
}
.vivek-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.vivek-creds span {
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 30px;
  padding: 5px 14px;
  font-size: .72rem;
  font-weight: 600;
  color: var(--purple2);
}

/* ── 07. POSH FLAGSHIP ───────────────────────────────────────── */
.posh-flagship {
  padding: var(--section-py) 28px;
  background: var(--light);
  border-top: 3px solid var(--teal);
}
.posh-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  max-width: var(--max-w);
  margin: 0 auto;
}
.posh-intro {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.75;
  margin-bottom: 28px;
}
.posh-creds-list { margin-bottom: 32px; }
.posh-cred-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
}
.pci-icon { font-size: 1.1rem; flex-shrink: 0; }
.pci-text { color: var(--dark2); font-size: .88rem; font-weight: 500; }
.posh-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* POSH Programme Cards */
.posh-programmes { display: flex; flex-direction: column; gap: 16px; }
.posh-prog-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 24px 22px;
  border-left: 4px solid var(--teal);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.posh-prog-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.posh-prog-card--new { border-left-color: var(--sage); }

.ppc-tag {
  display: inline-block;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(13,110,110,.1);
  color: var(--teal);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.ppc-tag--new { background: rgba(124,169,130,.15); color: var(--sage); }

.ppc-title {
  font-family: var(--font-h);
  font-size: 1rem;
  color: var(--dark2);
  margin-bottom: 8px;
}
.ppc-body {
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.65;
  margin-bottom: 12px;
}
.ppc-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.ppc-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .74rem;
  font-weight: 600;
  color: var(--muted);
}
.ppc-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

/* ── 08. METRICS ─────────────────────────────────────────────── */
.metrics {
  padding: 80px 28px;
  background: var(--grad);
  position: relative;
  overflow: hidden;
}
.metrics::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 60%; height: 200%;
  background: rgba(255,255,255,.03);
  border-radius: 50%;
}
.metrics-grid {
  display: flex;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}
.metric-item {
  flex: 1;
  text-align: center;
  padding: 20px 24px;
}
.metric-number {
  font-family: var(--font-h);
  font-size: 3.2rem;
  color: var(--white);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
}
.metric-label {
  color: var(--blue-lt);
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 5px;
}
.metric-sub {
  color: rgba(255,255,255,.45);
  font-size: .76rem;
}
.metric-divider {
  width: 1px;
  height: 80px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}

/* ── 09. CASE STUDIES ────────────────────────────────────────── */
.case-studies {
  padding: var(--section-py) 28px;
  background: var(--white);
}
.cs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.cs-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, transform .25s;
  display: flex;
  flex-direction: column;
}
.cs-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }

.cs-card-top {
  background: var(--grad);
  padding: 28px 24px;
}
.cs-industry {
  display: block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue-lt);
  margin-bottom: 10px;
}
.cs-challenge {
  font-family: var(--font-h);
  font-size: 1.05rem;
  color: var(--white);
  line-height: 1.4;
}
.cs-card-body {
  padding: 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.cs-card-body > p {
  color: var(--muted);
  font-size: .85rem;
  line-height: 1.72;
  flex: 1;
  margin-bottom: 24px;
}
.cs-outcome {
  background: var(--light);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.cs-outcome-num {
  font-family: var(--font-h);
  font-size: 2rem;
  font-weight: 700;
  color: var(--purple);
  flex-shrink: 0;
}
.cs-outcome-desc {
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.5;
}
.cs-footer { text-align: center; }

/* ── 10. GALLERY ─────────────────────────────────────────────── */
.gallery {
  padding: var(--section-py) 28px;
  background: var(--dark2);
}
.gallery .section-label { color: rgba(168,206,255,.6); }
.gallery .section-title { color: var(--white); }

/* Masonry gallery */
.gallery-masonry {
  column-count: 3;
  column-gap: 12px;
  margin-top: 3rem;
}
@media (max-width: 900px) { .gallery-masonry { column-count: 2; } }
@media (max-width: 560px) { .gallery-masonry { column-count: 2; column-gap: 8px; } }

.gallery-item {
  position: relative;
  break-inside: avoid;
  margin-bottom: 12px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: var(--dark2);
}
.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), filter 0.4s ease;
  filter: brightness(0.9);
}
.gallery-item:hover img { transform: scale(1.04); filter: brightness(1); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.3s ease;
  border-radius: 8px;
}
.gallery-item:hover::after { background: rgba(61,21,137,0.12); }

.gallery-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 52px; height: 52px;
  background: rgba(61,21,137,0.88);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 2;
  transition: transform 0.25s ease, background 0.25s ease;
  pointer-events: none;
}
.gallery-play-btn svg { width: 20px; height: 20px; margin-left: 3px; }
.gallery-item:hover .gallery-play-btn { transform: translate(-50%,-50%) scale(1.12); background: var(--primary); }

/* Lightbox */
.gallery-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8,10,16,0.96);
  z-index: 9000;
  align-items: center;
  justify-content: center;
}
.gallery-lightbox.active { display: flex; }
.gallery-lb-inner {
  position: relative;
  max-width: min(90vw, 900px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gallery-lb-img, .gallery-lb-video {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 8px;
  display: none;
  object-fit: contain;
}
.gallery-lb-img.active, .gallery-lb-video.active { display: block; }
.gallery-lb-caption {
  margin-top: 12px;
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-align: center;
}
.gallery-lb-close, .gallery-lb-prev, .gallery-lb-next {
  position: absolute;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  transition: color 0.2s;
  z-index: 9001;
  padding: 8px;
}
.gallery-lb-close:hover, .gallery-lb-prev:hover, .gallery-lb-next:hover { color: var(--primary-light, #7A52D0); }
.gallery-lb-close { top: 16px; right: 20px; font-size: 2.4rem; }
.gallery-lb-prev  { top: 50%; left: 12px;  transform: translateY(-50%); font-size: 2.8rem; }
.gallery-lb-next  { top: 50%; right: 12px; transform: translateY(-50%); font-size: 2.8rem; }

/* ── 11. INSIGHTS ────────────────────────────────────────────── */
.insights {
  padding: var(--section-py) 28px;
  background: var(--light);
}
.insights-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  margin-bottom: 48px;
  align-items: start;
}
.insights-articles { display: flex; flex-direction: column; gap: 16px; }

.insight-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  transition: box-shadow .2s, transform .2s;
  overflow: hidden;
}
.insight-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.insight-inner { padding: 24px; }

.insight-tag {
  display: inline-block;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 10px;
}
.insight-title {
  font-family: var(--font-h);
  font-size: 1.05rem;
  color: var(--dark2);
  margin-bottom: 10px;
  line-height: 1.4;
}
.insight-body {
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.68;
  margin-bottom: 16px;
}
.insight-meta {
  display: flex;
  gap: 8px;
  font-size: .74rem;
  color: var(--lavender);
  font-weight: 600;
}

/* Podcast Card */
.podcast-card {
  background: var(--dark2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: sticky;
  top: 100px;
}
.podcast-art-wrap { padding: 28px 28px 0; }
.podcast-art {
  background: var(--grad);
  border-radius: var(--radius);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.podcast-art::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(168,206,255,.2), transparent 60%);
}
.podcast-art-inner { text-align: center; position: relative; }
.pod-logo-text {
  font-family: var(--font-h);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 3px;
}
.pod-logo-sub {
  color: var(--blue-lt);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.podcast-info { padding: 20px 24px 28px; }
.podcast-label {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-lt);
  margin-bottom: 6px;
  display: block;
}
.podcast-tagline {
  font-family: var(--font-h);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 16px;
}
.podcast-episode { margin-bottom: 16px; }
.pod-ep-num {
  font-size: .65rem;
  font-weight: 700;
  color: var(--lavender);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.pod-ep-title {
  font-weight: 600;
  color: var(--white);
  font-size: .88rem;
  margin-bottom: 8px;
}
.pod-ep-body { color: rgba(255,255,255,.5); font-size: .78rem; line-height: 1.6; margin-bottom: 14px; }
.pod-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--purple);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 30px;
  font-size: .8rem;
  font-weight: 600;
  transition: opacity .2s;
}
.pod-play-btn:hover { opacity: .85; }
.pod-play-icon { font-size: .7rem; }

.pod-platforms {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
  margin-bottom: 10px;
}
.pod-platform {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 4px 10px;
  font-size: .7rem;
  color: rgba(255,255,255,.55);
  font-weight: 500;
}
.pod-subscribe {
  display: block;
  color: var(--blue-lt);
  font-size: .78rem;
  font-weight: 600;
  transition: opacity .2s;
}
.pod-subscribe:hover { opacity: .7; }

/* Newsletter */
.newsletter {
  background: var(--grad);
  border-radius: var(--radius-xl);
  padding: 48px;
}
.newsletter-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.newsletter-copy { flex: 1; }
.newsletter-title {
  font-family: var(--font-h);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 8px;
}
.newsletter-body {
  color: rgba(255,255,255,.65);
  font-size: .85rem;
  line-height: 1.65;
}
.newsletter-form {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.newsletter-input {
  padding: 13px 18px;
  border-radius: var(--radius-sm);
  border: none;
  font-size: .88rem;
  width: 260px;
  font-family: var(--font-b);
  color: var(--dark2);
}
.newsletter-input:focus { outline: 2px solid var(--blue-lt); }
.newsletter-submit {
  background: var(--white);
  color: var(--purple);
  border: none;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .88rem;
  transition: background .2s;
  font-family: var(--font-b);
}
.newsletter-submit:hover { background: var(--card); }

/* ── 12. TESTIMONIALS ────────────────────────────────────────── */
.testimonials {
  padding: var(--section-py) 28px;
  background: var(--white);
}
.testi-wrap {
  max-width: 760px;
  margin: 0 auto;
}
.testi-slider { position: relative; min-height: 220px; }
.testi-item {
  display: none;
  animation: tFadeIn .5s var(--ease);
}
.testi-item--active { display: block; }
@keyframes tFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.testi-qmark {
  font-family: var(--font-h);
  font-size: 5rem;
  color: var(--card);
  line-height: .6;
  margin-bottom: 8px;
  font-style: italic;
}
.testi-quote {
  font-family: var(--font-h);
  font-size: 1.2rem;
  color: var(--dark2);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 28px;
  font-weight: 400;
}
.testi-attribution {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testi-name { font-weight: 700; color: var(--dark2); font-size: .9rem; }
.testi-org  { color: var(--muted); font-size: .8rem; }

.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.testi-prev, .testi-next {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 2px solid var(--rule);
  background: var(--white);
  color: var(--purple);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.testi-prev:hover, .testi-next:hover {
  border-color: var(--purple);
  background: var(--card);
}
.testi-dots { display: flex; gap: 8px; }
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--rule);
  transition: background .2s, transform .2s;
}
.testi-dot--active {
  background: var(--purple);
  transform: scale(1.4);
}

/* ── 13. CTA SECTION ─────────────────────────────────────────── */
.cta-section {
  position: relative;
  background: var(--dark);
  padding: 120px 28px;
  overflow: hidden;
  text-align: center;
}
.cta-bg { position: absolute; inset: 0; overflow: hidden; }
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.cta-orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(61,21,137,.5) 0%, transparent 70%);
  top: -200px; left: -100px;
}
.cta-orb--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(82,48,159,.4) 0%, transparent 70%);
  bottom: -150px; right: -50px;
}
.cta-inner { position: relative; z-index: 1; }
.cta-headline {
  font-family: var(--font-h);
  font-size: 3.2rem;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
}
.cta-headline em { font-style: italic; color: var(--blue-lt); }
.cta-body {
  color: rgba(255,255,255,.65);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto 40px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.cta-promise {
  color: rgba(255,255,255,.35);
  font-size: .78rem;
}

/* ── FOOTER ──────────────────────────────────────────────────── */
footer, .footer {
  background: var(--dark2);
  padding: 72px 28px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: var(--max-w);
  margin: 0 auto 56px;
}
.footer-brand {}
.footer-logo img,
.footer-brand img { height: 44px; width: auto; margin-bottom: 14px; filter: brightness(0) invert(1); opacity: .85; }
.footer-tagline {
  font-family: var(--font-h);
  font-size: 1rem;
  color: rgba(255,255,255,.6);
  font-style: italic;
  margin-bottom: 10px;
}
.footer-desc {
  color: rgba(255,255,255,.4);
  font-size: .82rem;
  line-height: 1.72;
  margin-bottom: 18px;
}
.footer-creds {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-creds span {
  color: var(--blue-lt);
  font-size: .73rem;
  font-weight: 600;
}

.footer-col-h {
  color: var(--blue-lt);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-links,
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-links li,
.footer-col ul li { margin-bottom: 10px; }
.footer-col h4 { color: var(--blue-lt); font-size: .68rem; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; margin: 0 0 18px; }
.footer-links a {
  color: rgba(255,255,255,.45);
  font-size: .84rem;
  transition: color .2s;
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { color: rgba(255,255,255,.25); font-size: .76rem; }

/* ── WHATSAPP FLOAT ──────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 998;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .25s var(--ease), box-shadow .25s;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,.5);
}
.wa-float svg { width: 30px; height: 30px; fill: white; }

/* ── BACK TO TOP ─────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 100px; right: 28px;
  z-index: 997;
  width: 42px; height: 42px;
  background: var(--purple);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .3s, transform .3s, background .2s;
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover { background: var(--purple3); }

/* ── PAGE HERO (inner pages) ─────────────────────────────────── */
.page-hero {
  background: var(--grad);
  padding: 96px 28px 72px;
  text-align: center;
}
.page-hero h1 { font-family: var(--font-h); font-size: 2.8rem; color: var(--white); margin-bottom: 16px; }
.page-hero p  { color: rgba(255,255,255,.78); font-size: 1rem; max-width: 560px; margin: 0 auto; }

/* ── CRED STRIP (inner pages) ────────────────────────────────── */
.cred-strip { background: var(--card); padding: 12px 28px; border-bottom: 1px solid var(--rule); overflow: hidden; }
.cred-strip-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; gap: 12px; align-items: center; justify-content: center; flex-wrap: nowrap;
  overflow-x: auto; scrollbar-width: none;
}
.cred-strip-inner::-webkit-scrollbar { display: none; }
.cred-item { display: flex; align-items: center; color: var(--purple); font-weight: 700; font-size: .72rem; white-space: nowrap; }
.cred-sep  { flex-shrink: 0; width: 3px; height: 3px; border-radius: 50%; background: var(--lavender); opacity: .6; }

/* ── INNER PAGE SHARED ───────────────────────────────────────── */
section { padding: 80px 28px; }

/* Services / About / POSH / Contact page styles preserved */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.svc-card {
  background: var(--white); border: 1px solid var(--rule);
  border-radius: var(--radius); padding: 28px 22px;
  box-shadow: var(--shadow); transition: box-shadow .2s, transform .2s;
  border-top: 4px solid var(--purple);
}
.svc-card:hover { box-shadow: var(--shadow-hv); transform: translateY(-4px); }
.svc-icon {
  width: 46px; height: 46px; background: var(--card);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; font-size: 1.35rem;
}
.svc-card h3 { font-family: var(--font-h); font-size: 1.05rem; color: var(--purple); margin-bottom: 9px; }
.svc-card p  { color: var(--muted); font-size: .83rem; line-height: 1.68; }
.svc-link    { display: inline-block; margin-top: 14px; color: var(--purple2); font-weight: 600; font-size: .8rem; }
.svc-link:hover { color: var(--purple); text-decoration: underline; }

.stats-section { background: var(--grad); padding: 68px 28px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); max-width: var(--max-w); margin: 0 auto; }
.stat-item { padding: 36px 24px; text-align: center; border-right: 1px solid rgba(255,255,255,.15); }
.stat-item:last-child { border-right: none; }
.stat-num  { font-family: var(--font-h); font-size: 2.8rem; color: var(--white); font-weight: 700; line-height: 1; margin-bottom: 8px; }
.stat-lbl  { color: var(--blue-lt); font-size: .83rem; font-weight: 500; }

.about-strip { background: var(--light); }
.about-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 360px 1fr; gap: 64px; align-items: center; }
.about-photo { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-hv); border: 4px solid var(--card); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.cred-list { list-style: none; margin: 20px 0 28px; }
.cred-list li { display: flex; gap: 11px; align-items: flex-start; padding: 9px 0; border-bottom: 1px solid var(--rule); font-size: .87rem; color: var(--body-clr); }
.cred-list li::before { content: '✓'; color: var(--purple); font-weight: 700; flex-shrink: 0; margin-top: 2px; }

.posh-banner { background: var(--grad); border-radius: var(--radius); padding: 52px 44px; display: flex; justify-content: space-between; align-items: center; gap: 40px; box-shadow: var(--shadow-hv); }
.posh-banner h2 { font-family: var(--font-h); font-size: 1.9rem; color: var(--white); margin-bottom: 10px; }
.posh-banner p  { color: rgba(255,255,255,.75); font-size: .92rem; max-width: 460px; }

.about-full { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 320px 1fr; gap: 60px; align-items: start; }
.about-sidebar .photo { border-radius: 16px; overflow: hidden; margin-bottom: 24px; box-shadow: var(--shadow-hv); border: 4px solid var(--card); }
.about-sidebar .photo img { width: 100%; object-fit: cover; }
.cred-badges { display: flex; flex-direction: column; gap: 8px; }
.cred-badge { background: var(--card); border-left: 4px solid var(--purple); border-radius: 4px; padding: 9px 14px; font-size: .79rem; color: var(--purple); font-weight: 600; line-height: 1.4; }
.about-body h2 { font-family: var(--font-h); font-size: 2rem; color: var(--purple); margin-bottom: 6px; }
.about-body .role { color: var(--lavender); font-style: italic; font-size: .95rem; margin-bottom: 20px; font-weight: 500; }
.about-body p { color: var(--muted); font-size: .91rem; margin-bottom: 14px; line-height: 1.78; }
.about-body h3 { font-family: var(--font-h); font-size: 1.25rem; color: var(--purple); margin: 30px 0 14px; }
.cert-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 28px; }
.cert-item { background: var(--card); border: 1px solid var(--rule); border-radius: 6px; padding: 13px 15px; font-size: .81rem; color: var(--muted); }
.cert-item strong { display: block; color: var(--purple); margin-bottom: 3px; font-size: .84rem; }
.purclive-box { background: var(--grad); color: var(--white); border-radius: var(--radius); padding: 34px 30px; margin-top: 36px; }
.purclive-box h3 { font-family: var(--font-h); font-size: 1.35rem; color: var(--blue-lt); margin-bottom: 12px; }
.purclive-box p  { color: rgba(255,255,255,.78); font-size: .88rem; margin-bottom: 12px; line-height: 1.72; }
.purclive-box .detail { color: rgba(255,255,255,.5); font-size: .8rem; margin-top: 14px; }

.svc-full { max-width: var(--max-w); margin: 0 auto; }
.svc-block { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; padding: 60px 0; border-bottom: 1px solid var(--rule); }
.svc-block:last-child { border-bottom: none; }
.svc-block.reverse .svc-text { order: 2; }
.svc-block.reverse .svc-vis  { order: 1; }
.svc-text h2 { font-family: var(--font-h); font-size: 1.8rem; color: var(--purple); margin: 10px 0 14px; }
.svc-text p  { color: var(--muted); font-size: .9rem; margin-bottom: 14px; line-height: 1.75; }
.svc-vis { background: var(--card); border-radius: var(--radius); border: 1px solid var(--rule); padding: 30px; box-shadow: var(--shadow); }
.svc-vis h4 { font-size: .72rem; color: var(--purple); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px; }
.prog-row { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
.prog-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--purple); flex-shrink: 0; margin-top: 5px; }
.prog-row strong { display: block; color: var(--purple2); font-size: .88rem; margin-bottom: 2px; }
.prog-row span   { color: var(--muted); font-size: .81rem; }

.posh-creds { background: var(--card); border: 1px solid var(--rule); border-left: 5px solid var(--purple); border-radius: var(--radius); padding: 26px 30px; margin-bottom: 36px; }
.posh-creds h3 { font-family: var(--font-h); font-size: 1.05rem; color: var(--purple); margin-bottom: 12px; }
.posh-cred-row { display: flex; gap: 10px; flex-wrap: wrap; }
.posh-badge { background: var(--purple); color: var(--white); padding: 5px 15px; border-radius: 20px; font-size: .76rem; font-weight: 700; white-space: nowrap; }
.prog-cards { display: flex; flex-direction: column; gap: 18px; margin-bottom: 44px; }
.prog-card { background: var(--white); border: 1px solid var(--rule); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); display: grid; grid-template-columns: 1fr 1fr; gap: 24px; border-top: 4px solid var(--purple); }
.prog-card.new-prog { border-top-color: #2D6A4F; }
.prog-tag { display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; background: var(--purple); color: var(--white); padding: 4px 12px; border-radius: 20px; margin-bottom: 10px; }
.prog-tag.t-new { background: #2D6A4F; }
.prog-card h3 { font-family: var(--font-h); font-size: 1.28rem; color: var(--purple); margin-bottom: 10px; }
.prog-card p  { color: var(--muted); font-size: .87rem; line-height: 1.7; }
.prog-meta-grid { display: flex; flex-direction: column; gap: 12px; justify-content: center; }
.pm-row strong { display: block; font-size: .68rem; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 2px; }
.pm-row span   { font-size: .9rem; color: var(--purple); font-weight: 700; }
.fee-wrap { overflow-x: auto; margin-bottom: 28px; }
.fee-table { width: 100%; border-collapse: collapse; }
.fee-table th { background: var(--purple); color: var(--white); padding: 12px 16px; text-align: left; font-size: .77rem; font-weight: 700; letter-spacing: .5px; white-space: nowrap; }
.fee-table td { padding: 11px 16px; border-bottom: 1px solid var(--rule); font-size: .86rem; }
.fee-table tr:nth-child(even) td { background: var(--card); }
.fee-price { font-weight: 700; color: var(--purple); }
.fee-notes { margin-top: 14px; }
.fee-notes li { color: var(--muted); font-size: .82rem; margin-bottom: 6px; list-style: none; padding-left: 16px; position: relative; }
.fee-notes li::before { content: '*'; position: absolute; left: 0; color: var(--purple); font-weight: 700; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; max-width: var(--max-w); margin: 0 auto; align-items: start; }
.contact-info h2 { font-family: var(--font-h); font-size: 1.7rem; color: var(--purple); margin-bottom: 10px; }
.contact-info .lead { color: var(--muted); font-size: .92rem; margin-bottom: 30px; line-height: 1.72; }
.c-detail { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.c-icon { width: 42px; height: 42px; background: var(--card); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.1rem; border: 1px solid var(--rule); }
.c-text strong { display: block; font-size: .7rem; color: var(--lavender); letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 3px; font-weight: 700; }
.c-text a, .c-text span { color: var(--purple); font-size: .92rem; font-weight: 600; }
.c-text a:hover { color: var(--purple2); text-decoration: underline; }
.form-card { background: var(--light); border: 1px solid var(--rule); border-radius: var(--radius); padding: 34px; }
.form-card h3 { font-family: var(--font-h); font-size: 1.25rem; color: var(--purple); margin-bottom: 6px; }
.form-card p  { color: var(--muted); font-size: .84rem; margin-bottom: 22px; }

/* ── NAV COMPATIBILITY (inner pages using old nav) ─────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 3px solid var(--purple);
  box-shadow: 0 2px 16px rgba(61,21,137,.08);
}
nav .nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 28px; max-width: var(--max-w); margin: 0 auto;
}
nav .nav-logo img { height: 52px; width: auto; }
nav .nav-links { display: flex; gap: 28px; align-items: center; }
nav .nav-links a { color: var(--purple2); font-size: .875rem; font-weight: 600; transition: color .2s; border-radius: 0; background: none; }
nav .nav-links a:hover, nav .nav-links a.active { color: var(--purple); background: none; }

/* Dropdown inside legacy inner-page nav */
nav .nav-links .nav-dropdown { position: relative; display: flex; align-items: center; }
nav .nav-links .nav-link--has-child { display: flex; align-items: center; gap: 4px; cursor: pointer; }
nav .nav-links .nav-mega { background: var(--white); border: 1px solid var(--rule); border-radius: var(--radius); box-shadow: var(--shadow-lg); }
nav .nav-links .nav-mega-link { color: var(--muted) !important; font-size: .83rem !important; font-weight: 500 !important; border-radius: 4px !important; background: none !important; padding: 5px 8px !important; display: block; }
nav .nav-links .nav-mega-link:hover { color: var(--purple) !important; background: var(--card) !important; }

nav .nav-cta {
  background: var(--grad) !important;
  color: var(--white) !important;
  padding: 10px 22px; border-radius: 6px;
  font-weight: 700 !important; font-size: .85rem !important;
  transition: opacity .2s; box-shadow: 0 2px 10px rgba(61,21,137,.25);
}
nav .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; border: none; background: none; padding: 4px; }
nav .hamburger span { display: block; width: 24px; height: 2px; background: var(--purple); border-radius: 2px; }
.mobile-menu-legacy {
  display: none; flex-direction: column;
  background: var(--light); border-top: 1px solid var(--rule);
}

/* Button backward compat */
.btn-primary { display: inline-block; background: var(--grad); color: var(--white); padding: 13px 28px; border-radius: 6px; font-weight: 700; font-size: .9rem; transition: opacity .2s; box-shadow: 0 3px 12px rgba(61,21,137,.25); }
.btn-primary:hover { opacity: .88; color: var(--white); }
.btn-outline-dark { display: inline-block; border: 2px solid rgba(255,255,255,.5); color: var(--white); padding: 11px 26px; border-radius: 6px; font-weight: 600; font-size: .9rem; transition: all .2s; }
.btn-light { display: inline-block; background: var(--white); color: var(--purple); padding: 13px 28px; border-radius: 6px; font-weight: 700; font-size: .9rem; transition: background .2s; box-shadow: 0 3px 12px rgba(0,0,0,.12); }
.btn-light:hover { background: var(--card); }

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

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .cs-grid { grid-template-columns: 1fr 1fr; }
  .insights-layout { grid-template-columns: 1fr; }
  .podcast-card { position: static; }
  
  
}

@media (max-width: 900px) {
  :root { --section-py: 64px; }

  /* Nav */
  .nav-links { display: none; }
  .hamburger { display: flex !important; }
  nav .hamburger { display: flex !important; }

  /* Hero */
  .hero { padding: 100px 28px 60px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-headline { font-size: 2.8rem; }
  .hero-visual { display: none; }

  /* Overview */
  .overview-grid { grid-template-columns: 1fr; }

  /* Solutions */
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }

  /* T-POP */
  .tpop-framework { flex-direction: column; align-items: center; gap: 32px; }
  .tpop-conn { padding-top: 0; transform: rotate(90deg); }

  /* Psychology */
  .psych-grid { grid-template-columns: 1fr; gap: 40px; }
  .vivek-strip { grid-template-columns: 1fr; gap: 28px; padding: 32px; }

  /* POSH */
  .posh-grid { grid-template-columns: 1fr; gap: 48px; }

  /* Metrics */
  .metrics-grid { flex-wrap: wrap; }
  .metric-item { flex: 0 0 50%; }
  .metric-divider { display: none; }

  /* Case Studies */
  .cs-grid { grid-template-columns: 1fr; }

  /* Gallery */
  

  /* Stats */
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); }

  /* About */
  .about-inner { grid-template-columns: 1fr; }
  .about-photo { max-width: 360px; }
  .about-full { grid-template-columns: 1fr; }

  /* Services */
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .svc-block { grid-template-columns: 1fr; }
  .svc-block.reverse .svc-text { order: 1; }
  .svc-block.reverse .svc-vis  { order: 2; }

  /* POSH */
  .prog-card { grid-template-columns: 1fr; }
  .posh-banner { flex-direction: column; text-align: center; padding: 36px 26px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  /* CTA */
  .cta-headline { font-size: 2.4rem; }

  /* Newsletter */
  .newsletter-inner { flex-direction: column; gap: 24px; }
  .newsletter-input { width: 100%; }

  /* Cert */
  .cert-grid { grid-template-columns: 1fr; }

  /* Psych stats */
  .psych-stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  :root { --section-py: 48px; }

  .hero-headline { font-size: 2.2rem; }
  .section-title { font-size: 1.9rem; }
  .cta-headline { font-size: 1.9rem; }

  .solutions-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  
  .metrics-grid { flex-direction: column; }
  .metric-item { flex: none; }

  .hero-badges { display: none; }
  .overview-num { font-size: 2rem; }
  .psych-stats { grid-template-columns: 1fr; }

  .newsletter-form { flex-direction: column; width: 100%; }

  section { padding: 48px 20px; }
  .container { padding: 0 20px; }
  .nav-inner { padding: 12px 20px; }
}

/* ══════════════════════════════════════════════════════════════
   CONTACT FORM — Native form replacing Tally embed
══════════════════════════════════════════════════════════════ */
.pc-form { display: flex; flex-direction: column; gap: 18px; }
.pc-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pc-field { display: flex; flex-direction: column; gap: 6px; }
.pc-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--purple);
}
.pc-label .req { color: #e53e3e; margin-left: 2px; }
.pc-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--rule);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: var(--font-b);
  font-size: .9rem;
  color: var(--body-clr);
  transition: border-color var(--dur);
  box-sizing: border-box;
}
.pc-input:focus {
  outline: none;
  border-color: var(--purple3);
  box-shadow: 0 0 0 3px rgba(107,63,191,.1);
}
.pc-input::placeholder { color: #b0aac8; }

/* Service checkboxes */
.pc-check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  margin-top: 4px;
}
.pc-check-label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .88rem;
  color: var(--body-clr);
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 6px;
  border: 1.5px solid var(--rule);
  background: var(--white);
  transition: all .2s;
}
.pc-check-label:hover { border-color: var(--purple3); background: var(--card); }
.pc-check-label input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--purple);
  flex-shrink: 0;
  cursor: pointer;
}
.pc-check-label input[type="checkbox"]:checked + span { font-weight: 600; color: var(--purple); }
.pc-check-label:has(input:checked) { border-color: var(--purple); background: var(--card); }

/* Submit button */
.pc-submit {
  background: var(--grad);
  color: var(--white);
  border: none;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-b);
  font-size: .92rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity .2s, transform .15s;
  box-shadow: 0 3px 14px rgba(61,21,137,.3);
  width: 100%;
  margin-top: 4px;
}
.pc-submit:hover { opacity: .88; transform: translateY(-1px); }
.pc-submit:disabled { opacity: .55; cursor: not-allowed; transform: none; }

/* Status messages */
.pc-status {
  display: none;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  line-height: 1.6;
  margin-top: 4px;
}
.pc-status.success { display: block; background: #f0fff4; border: 1.5px solid #68d391; color: #276749; }
.pc-status.error   { display: block; background: #fff5f5; border: 1.5px solid #fc8181; color: #c53030; }

@media (max-width: 600px) {
  .pc-form-row { grid-template-columns: 1fr; }
  .pc-check-grid { grid-template-columns: 1fr; }
}
