/* ===========================
   DESIGN TOKENS
   =========================== */
:root {
  /* Brand colors — Deep Forest + Amber Gold + Espresso */
  --teal:          #0f606b;   /* deep ocean teal — primary */
  --teal-dark:     #084047;   /* darker teal */
  --teal-light:    #1e8493;   /* mid teal */
  --blue:          #3d3228;   /* warm espresso — secondary */
  --blue-dark:     #2a221b;   /* darker espresso */
  --peach:         #d59a3f;   /* pale gold — accent */
  --peach-dark:    #be8836;   /* dark amber */

  /* Backgrounds */
  --bg:            #f5f0e6;   /* warm linen/parchment */
  --bg-warm:       #ebe4d4;   /* slightly deeper linen */
  --bg-card:       #ffffff;
  --bg-dark:       #181e16;   /* near-black forest */

  /* Text */
  --text-dark:     #1a1e18;   /* very dark forest-tinted */
  --text-mid:      #48453e;   /* warm grey-brown */
  --text-light:    #8a877a;   /* warm stone */
  --text-teal:     #0f606b;
  --text-white:    #ffffff;

  /* Announcement bar */
  --announce-bg:   #0f606b;   /* ocean teal bar */

  /* Spacing */
  --section-py:    96px;
  --container:     1280px;

  /* Typography */
  --font-body:     'Open Sans', sans-serif;
  --font-serif:    'DM Serif Display', serif;

  /* Radius */
  --r-sm:   10px;
  --r-md:   18px;
  --r-lg:   28px;
  --r-pill: 100px;

  /* Shadows */
  --shadow-sm:   0 2px 10px rgba(0,0,0,0.07);
  --shadow-md:   0 6px 24px rgba(0,0,0,0.1);
  --shadow-lg:   0 16px 48px rgba(0,0,0,0.16);
  --shadow-teal: 0 8px 28px rgba(15,96,107,0.4);

  /* Transition */
  --t: 0.25s ease;
}

/* ===========================
   RESET & GLOBALS
   =========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-dark);
  line-height: 1.65;
  overflow-x: hidden;
  /* subtle warm texture */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
}
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { font-family: inherit; }

/* ===========================
   BUTTONS
   =========================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue);
  color: var(--text-white);
  padding: 13px 26px;
  border-radius: var(--r-pill);
  font-size: 0.9rem;
  font-weight: 600;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
  white-space: nowrap;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(61,50,40,0.3);
}

.btn-hero-primary, .btn-hero-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 56px;
  min-width: 210px;
  padding: 0 32px;
  border-radius: var(--r-pill);
  font-size: 1rem;
  font-weight: 700;
  transition: all var(--t);
  white-space: nowrap;
  cursor: pointer;
}

.btn-hero-primary {
  background: var(--blue);
  color: white;
  border: 2px solid var(--blue);
  letter-spacing: 0.01em;
  text-decoration: none;
}
.btn-hero-primary:hover {
  background: var(--teal);
  border-color: var(--teal);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(15, 96, 107, 0.3);
}

.btn-hero-outline {
  background: #ffffff;
  color: var(--blue);
  border: 2px solid var(--blue);
  text-decoration: none;
}
.btn-hero-outline:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(15, 96, 107, 0.2);
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  border-bottom: 1.5px solid var(--text-dark);
  padding-bottom: 2px;
  transition: color var(--t), border-color var(--t);
}
.btn-text:hover { color: var(--teal); border-color: var(--teal); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 22px;
  border: 1.5px solid #ccc;
  border-radius: var(--r-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: border-color var(--t), color var(--t), background var(--t), transform var(--t);
  cursor: pointer;
  background: none;
}
.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: rgba(51,134,149,0.06);
  transform: translateY(-1px);
}

.btn-how {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  border-bottom: 1.5px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
  margin-top: 12px;
  transition: color var(--t), border-color var(--t);
}
.btn-how:hover { color: white; border-color: white; }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: white;
  padding: 12px 24px;
  border-radius: var(--r-pill);
  font-size: 0.88rem;
  font-weight: 700;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}

/* ===========================
   UTILITIES
   =========================== */
.section-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
}

.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--text-dark);
}

.section-subtitle {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-top: 10px;
  max-width: 540px;
  white-space: nowrap;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.desktop-only { display: inline-flex; }

/* ===========================
   ANNOUNCEMENT BAR
   =========================== */
.announcement-bar {
  background: var(--announce-bg);
  color: rgba(255,255,255,0.95);
  font-size: 0.78rem;
  font-weight: 500;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
}
.trust-banner-inner {
  display: flex;
  gap: 16px;
  align-items: center;
}
.trust-banner-inner .sep { opacity: 0.4; }
.pulse-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background-color: #3bdf72;
  border-radius: 50%;
  margin-right: 6px;
  box-shadow: 0 0 0 0 rgba(59, 223, 114, 0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(59, 223, 114, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(59, 223, 114, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(59, 223, 114, 0); }
}

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245,240,230,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: box-shadow var(--t);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 48px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-mark { height: 32px; width: 32px; flex-shrink: 0; display: block; border-radius: 6px; }
.logo-text { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 3px; }
.typographic-logo .logo-text { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 3px; }
.typographic-logo .logo-main { font-family: var(--font-serif); font-size: 1.1rem; color: #1a1a1a; letter-spacing: 0.01em; font-weight: 600; line-height: 1.15; white-space: nowrap; }
.typographic-logo .logo-sub { font-family: var(--font-body); font-size: 0.56rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--peach); font-weight: 700; white-space: nowrap; }
.nav-links { display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center; }
.nav-link {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 6px 11px;
  border-radius: 8px;
  transition: color var(--t), background var(--t);
  white-space: nowrap;
}
.nav-link:hover { color: var(--text-dark); background: rgba(0,0,0,0.04); }
.nav-link.active { color: var(--text-dark); border-bottom: 2px solid var(--peach); border-radius: 0; padding-bottom: 4px; }
.nav-cta { font-size: 0.86rem; }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto;
}
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--text-dark); border-radius: 2px; }
.mobile-nav {
  display: none; flex-direction: column; gap: 8px;
  background: var(--bg-card); padding: 20px 28px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: fixed; top: 82px; left: 0; right: 0; z-index: 99;
  box-shadow: var(--shadow-lg);
}
.mobile-nav.open { display: flex; }

/* ===========================
   HERO
   =========================== */
.hero {
  height: calc(100vh - 110px);  /* 36px announce bar + ~74px navbar */
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 36px 48px;
  max-width: var(--container);
  margin: 0 auto;
  gap: 60px;
  overflow-x: hidden; /* Prevent aura from bleeding on mobile */
}
.hero-content { flex: 1; max-width: 580px; }

.hero-proof-bar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--r-pill);
  padding: 6px 16px 6px 10px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  font-size: 0.82rem;
}
.proof-stars { color: #f4a725; font-size: 0.78rem; letter-spacing: -1px; }
.proof-text { color: var(--text-mid); }
.proof-text strong { color: var(--text-dark); }

.hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.06;
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.hero-heading em { font-style: italic; color: var(--teal); font-size: 0.72em; }

.hero-subtext {
  font-size: 1.02rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-actions { 
  display: flex; 
  flex-direction: row; 
  align-items: center; 
  gap: 16px; 
  margin-bottom: 20px; 
  flex-wrap: wrap;
}

.hero-trust-line {
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 0.01em;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 520px;
  position: relative;
}

/* ── Hero breathing animation ───────────────────────────────── */
.hero-visual {
  position: relative;
  width: 460px;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Concentric aura rings — uniformly spaced around 190px core */
.aura-ring {
  position: absolute;
  border-radius: 50%;
  animation: aura-breathe 8s ease-in-out infinite;
}
/* Rings spaced ~90px apart from the core outward */
.aura-1 {
  width: 460px; height: 460px;   /* outermost */
  background: rgba(0,104,122,0.04);
  border: 1.5px solid rgba(0,104,122,0.09);
  animation-delay: 0s;
}
.aura-2 {
  width: 370px; height: 370px;   /* mid */
  background: rgba(0,104,122,0.07);
  border: 1.5px solid rgba(0,104,122,0.15);
  animation-delay: 0.28s;
}
.aura-3 {
  width: 280px; height: 280px;   /* inner */
  background: rgba(0,104,122,0.11);
  border: 1.5px solid rgba(0,104,122,0.22);
  animation-delay: 0.56s;
}

@keyframes aura-breathe {
  0%, 100% { transform: scale(0.91); opacity: 0.6; }
  48%, 52% { transform: scale(1.09); opacity: 1; }
}

/* Breathing core — Chat Bubble */
.breath-core {
  position: relative;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: linear-gradient(148deg, #0f606b 0%, #157b8b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  animation: core-breathe 8s ease-in-out infinite;
  cursor: default;
}

.chat-bubble-core::before {
  content: '';
  position: absolute;
  bottom: 0px; left: 16px; 
  width: 0; height: 0;
  border-style: solid;
  border-width: 25px 22px 0 0;
  border-color: #0f606b transparent transparent transparent;
  transform: rotate(20deg);
  z-index: -1;
}

.inner-tangle-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.anim-knot {
  stroke-dasharray: 1400; stroke-dashoffset: 0;
  animation: thread-unwind 8s ease-in-out infinite;
}
.knot-shadow {
  stroke: rgba(0,0,0,0.1) !important;
  stroke-width: 5 !important;
  transform: translateY(2px);
}
.anim-sorted {
  stroke-dasharray: 150; stroke-dashoffset: 150;
  animation: thread-sorted 8s ease-in-out infinite;
}

/* Offset delays slightly so the 3 threads unravel organically */
.t1-knot, .t1-sorted { animation-delay: 0s; }
.t2-knot, .t2-sorted { animation-delay: 0.15s; }
.t3-knot, .t3-sorted { animation-delay: 0.3s; }

@keyframes thread-unwind {
  /* Hold tangles static */
  0%, 10% { stroke-dashoffset: 0; animation-timing-function: ease-in-out; }
  
  /* Sucked into origin point slowly */
  45% { stroke-dashoffset: 1400; }
  
  /* Hold invisible while sorted phase shines */
  70% { stroke-dashoffset: 1400; animation-timing-function: ease-in-out; }
  
  /* Explode knot back out smoothly to prevent sudden snapping */
  100% { stroke-dashoffset: 0; }
}

@keyframes thread-sorted {
  /* Hold invisible until the mess recedes */
  0%, 30% { stroke-dashoffset: 150; filter: drop-shadow(0 0 0px rgba(255,255,255,0)); animation-timing-function: ease-out; }
  
  /* Draw wave using momentum of sinking knot */
  48% { stroke-dashoffset: 0; filter: drop-shadow(0 0 4px rgba(255,255,255,0.4)); }
  
  /* Hold wave perfectly still so it can be appreciated */
  70% { stroke-dashoffset: 0; filter: drop-shadow(0 0 4px rgba(255,255,255,0.4)); animation-timing-function: ease-in-out; }
  
  /* Retract wave smoothly back into origin */
  85%, 100% { stroke-dashoffset: 150; filter: drop-shadow(0 0 0px rgba(255,255,255,0)); }
}



@keyframes core-breathe {
  0%, 100% { transform: scale(0.86); box-shadow: 0 0 0 0 rgba(0,104,122,0); }
  48%, 52% { transform: scale(1.14); box-shadow: 0 0 56px 28px rgba(0,104,122,0.13); }
}

/* Floating affirmation pills */
.thought-pill {
  position: absolute;
  background: white;
  border: 1px solid rgba(0,104,122,0.12);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 0.81rem;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  opacity: 0;
  animation: pill-appear 20s ease-in-out infinite;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
/* Position pills around the container - 10 spots grouped in 5 clusters */
.pill-1 { top: 10px;    left: 166px; animation-delay: 0s; }
.pill-2 { top: 90px;    right: -10px; animation-delay: 2s; }
.pill-3 { bottom: 95px; right: -10px; animation-delay: 4s; }
.pill-4 { bottom: 10px; left: 166px; animation-delay: 6s; }
.pill-5 { bottom: 95px; left: -10px; animation-delay: 8s; }
.pill-6 { top: 10px;    left: 166px; animation-delay: 10s; }
.pill-7 { top: 90px;    right: -10px; animation-delay: 12s;}
.pill-8 { bottom: 95px; right: -10px; animation-delay: 14s;}
.pill-9 { bottom: 10px; left: 166px; animation-delay: 16s;}
.pill-10{ bottom: 95px; left: -10px; animation-delay: 18s;}

@keyframes pill-appear {
  0%   { opacity: 0; transform: translateY(10px); }
  5%   { opacity: 1; transform: translateY(0); }
  15%  { opacity: 1; transform: translateY(-5px); }
  22%  { opacity: 0; transform: translateY(-15px); }
  100% { opacity: 0; transform: translateY(10px); }
}

/* Ambient amber dots */
.amb-dot {
  position: absolute;
  border-radius: 50%;
  background: var(--peach);
  animation: dot-drift 6s ease-in-out infinite;
}
.dot-1 { width: 8px;  height: 8px;  top: 52px;    left: 68px;   opacity: 0.45; animation-delay: 0s; }
.dot-2 { width: 5px;  height: 5px;  top: 66px;    right: 62px;  opacity: 0.35; animation-delay: 1.2s; }
.dot-3 { width: 10px; height: 10px; bottom: 66px; left: 52px;   opacity: 0.4;  animation-delay: 2.4s; }
.dot-4 { width: 6px;  height: 6px;  bottom: 58px; right: 75px;  opacity: 0.35; animation-delay: 3.6s; }
.dot-5 { width: 7px;  height: 7px;  top: 44%;     left: 16px;   opacity: 0.3;  animation-delay: 4.8s; }

@keyframes dot-drift {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-10px) scale(1.35); }
}

.floating-badge {
  position: absolute;
  bottom: 24px;
  left: -14px;
  background: white;
  border-radius: var(--r-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  font-size: 0.82rem;
  z-index: 20;
  animation: badge-float 5.5s ease-in-out infinite 0.8s;
}
.badge-emoji { font-size: 1.4rem; }
.floating-badge strong { display: block; color: var(--text-dark); font-weight: 700; font-size: 0.82rem; }
.floating-badge span { color: var(--text-light); font-size: 0.75rem; }

@keyframes badge-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ===========================
   MARQUEE BAND — scrolling capsule rows
   =========================== */
.marquee-band {
  background: var(--bg-warm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 0;
  border-top: 1px solid rgba(61, 50, 40, 0.1);
  border-bottom: 1px solid rgba(61, 50, 40, 0.1);
}

.marquee-row {
  overflow: hidden;
  width: 100%;
}

.marquee-divider {
  display: none;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 12px;
  width: max-content;
  white-space: nowrap;
}

/* Both rows scroll left, slightly different speeds for natural feel */
.marquee-track-1 {
  animation: marquee-scroll 40s linear infinite;
}
.marquee-track-2 {
  animation: marquee-scroll 35s linear infinite;
}

/* Capsule cards inside marquee — no hover transform to keep it calm */
.marquee-band .capsule-card {
  flex-shrink: 0;
  white-space: nowrap;
  pointer-events: auto;
}
.marquee-band .capsule-card:hover {
  transform: none;
}

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

/* ===========================
   MATCHMAKER BAR
   =========================== */
.matchmaker-bar {
  background: var(--teal);
  padding: 24px 0;
}
.matchmaker-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px 0 180px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}
.matchmaker-text {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.95);
  font-size: 1.05rem;
}
/* ─── ANIMATION 3: CHEVRON LOCK ─── */
.anim-chevron { display: flex; gap: 0px; color: var(--peach); font-weight: 800; font-family: monospace; font-size: 1.4rem; line-height: 1; margin-top: 2px; flex-shrink: 0; }
.anim-chevron span { opacity: 0; animation: chevron-flash 1.6s infinite; }
.anim-chevron span:nth-child(1) { animation-delay: 0s; }
.anim-chevron span:nth-child(2) { animation-delay: 0.15s; }
.anim-chevron span:nth-child(3) { animation-delay: 0.3s; }
@keyframes chevron-flash { 0% { opacity: 0; transform: translateX(-4px); } 30%, 70% { opacity: 1; transform: translateX(0); text-shadow: 0 0 8px var(--peach); } 100% { opacity: 0; transform: translateX(8px); } }
.matchmaker-text strong { color: #ffffff; font-weight: 600; letter-spacing: 0.01em; }
.match-desc { color: rgba(255,255,255,0.85); }
.btn-matchmaker {
  background: var(--peach);
  color: var(--blue-dark);
  padding: 12px 28px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform var(--t), box-shadow var(--t), background var(--t);
  white-space: nowrap;
  margin-left: auto;
}
.btn-matchmaker:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* ===========================
   CONCERNS GRID
   =========================== */
.concerns { padding: var(--section-py) 0; }
.concerns .section-title { text-align: center; margin: 0 auto; max-width: 700px; }
.concerns .section-subtitle { text-align: center; margin: 0 auto 0; max-width: 540px; }
.section-hint {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
  margin: 8px 0 40px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ===========================
   CAPSULE HORIZONTAL DECK
   =========================== */
.capsule-deck-wrap {
  width: 100%;
  position: relative;
  margin-top: 40px;
}
.capsule-scroll-hint {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: pulse-text 2s infinite;
}
@keyframes pulse-text {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.capsule-deck {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  padding: 10px 40px 40px;
}
@media (max-width: 768px) {
  .capsule-deck { padding: 10px 20px 40px; }
}
.capsule-deck::-webkit-scrollbar { display: none; }
.capsule-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 100px;
  padding: 12px 24px;
  text-decoration: none;
  transition: 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  white-space: nowrap;
}
.capsule-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(15,96,107,0.25);
  border-color: var(--teal);
  background: var(--teal);
}
.capsule-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transition: 0.3s;
}
.capsule-card:hover .capsule-dot {
  background: white !important;
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.1);
}
.capsule-title {
  font-weight: 600;
  color: #333;
  font-size: 1.05rem;
  transition: 0.3s;
}
.capsule-card:hover .capsule-title {
  color: white;
}

.concerns-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}

.concern-card {
  border-radius: var(--r-lg);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t), filter var(--t);
  overflow: hidden;
  position: relative;
}
.concern-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--t);
  border-radius: var(--r-lg);
}
.concern-card:hover { transform: translateY(-5px) scale(1.02); box-shadow: var(--shadow-lg); }
.concern-card:hover::after { background: rgba(255,255,255,0.06); }
.concern-card:focus { outline: 3px solid white; outline-offset: 3px; }

.concern-card.featured {
  grid-column: span 2;
}

.concern-card.teal  { background: var(--teal); }
.concern-card.peach { background: var(--peach); }
.concern-card.blue  { background: var(--blue); }

.concern-icon { width: 64px; height: 64px; flex-shrink: 0; }

.concern-body { display: flex; flex-direction: column; gap: 6px; }
.concern-name {
  color: white;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
}
.concern-desc {
  color: rgba(255,255,255,0.78);
  font-size: 0.82rem;
  line-height: 1.5;
  max-width: 300px;
}

/* ===========================
   EXPERTS
   =========================== */
.experts { padding: var(--section-py) 0; background: var(--bg-warm); }

.experts-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 32px;
}
.experts .section-subtitle { max-width: 500px; }

.experts-carousel-wrap { position: relative; overflow: hidden; }
.experts-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 20px 32px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  /* margin left right helps align on mobile without breaking scrolling */
}
.experts-carousel::-webkit-scrollbar { display: none; }

.expert-card {
  flex: 0 0 295px;
  background: white;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  scroll-snap-align: start;
  transition: transform var(--t), box-shadow var(--t);
}
.expert-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.expert-photo-wrap { height: 260px; overflow: hidden; background: var(--bg-warm); }
.expert-photo { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.placeholder-photo { width: 100%; height: 100%; }

.expert-info { padding: 20px 22px 24px; }
.expert-role { font-size: 0.75rem; font-weight: 700; color: var(--text-light); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 4px; }
.expert-name { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 400; color: var(--text-dark); margin-bottom: 10px; }
.expert-quote { font-size: 0.82rem; color: var(--text-mid); line-height: 1.6; font-style: italic; margin-bottom: 14px; border-left: 3px solid var(--teal); padding-left: 10px; }

.expert-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.tag { font-size: 0.72rem; font-weight: 600; padding: 4px 10px; border-radius: 100px; }
.teal-tag  { background: rgba(0,104,122,0.12);  color: var(--teal); }
.blue-tag  { background: rgba(61,50,40,0.12);  color: var(--blue); }
.peach-tag { background: rgba(213,154,63,0.12); color: var(--peach); }

.carousel-nav { display: flex; justify-content: center; gap: 12px; padding-bottom: 8px; }
.carousel-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid #ddd; background: white; font-size: 1.1rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: border-color var(--t), background var(--t), color var(--t), transform var(--t);
  color: var(--text-dark);
}
.carousel-btn:hover { border-color: var(--teal); background: var(--teal); color: white; transform: scale(1.08); }

/* ===========================
   HOW IT WORKS
   =========================== */
.how-it-works { padding: var(--section-py) 0; }
.how-it-works .section-title { margin-bottom: 8px; }
.how-it-works .section-subtitle { margin-bottom: 48px; }

.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.how-card {
  border-radius: var(--r-lg);
  padding: 40px 36px 0;
  overflow: hidden;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  transition: transform var(--t), box-shadow var(--t);
  position: relative;
}
.how-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.how-step-num {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 400;
  color: rgba(255,255,255,0.18);
  line-height: 1;
  position: absolute;
  top: 24px;
  right: 30px;
}

.how-card h3 { font-family: var(--font-serif); font-size: 1.45rem; font-weight: 400; color: white; line-height: 1.22; margin-bottom: 20px; }

.how-card ul { flex: 1; }
.how-card ul li {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  margin-bottom: 10px;
  padding-left: 16px;
  position: relative;
  line-height: 1.55;
}
.how-card ul li::before { content: '→'; position: absolute; left: 0; color: rgba(255,255,255,0.5); font-size: 0.8rem; top: 2px; }
.how-card ul li em { font-style: italic; color: rgba(255,255,255,0.7); }

.how-card-illustration { margin-top: auto; display: flex; align-items: flex-end; height: 130px; }
.how-card-illustration svg { width: 100%; height: 120px; }

.teal-card  { background: var(--teal); }
.blue-card  { background: var(--blue); }
.peach-card { background: var(--peach); }

/* ===========================
   STATS
   =========================== */
.stats { padding: var(--section-py) 0; background: var(--bg-warm); }
.stats-eyebrow-accent { color: var(--peach); }
.stats-title { text-align: center; margin-bottom: 52px; max-width: 640px; margin-left: auto; margin-right: auto; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 64px;
}
.stat-card {
  background: white;
  border-radius: var(--r-md);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
  border-top: 3px solid transparent;
}
.stat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-top-color: var(--teal); }
.stat-number {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 14px;
}
.stat-number sup { font-size: 1.3rem; vertical-align: super; color: var(--teal); font-family: var(--font-body); font-weight: 700; }
.stat-decimal { font-size: 1rem; color: var(--teal); }
.stat-label { font-size: 0.84rem; color: var(--text-mid); line-height: 1.5; }

.incubated-label { font-size: 1rem; font-weight: 600; color: var(--text-mid); margin-bottom: 24px; }
.incubated-logos { display: flex; gap: 20px; flex-wrap: wrap; }
.partner-logo-box {
  background: white; border-radius: var(--r-md);
  padding: 20px 32px; font-size: 0.92rem; font-weight: 700;
  color: var(--text-mid); box-shadow: var(--shadow-sm);
  flex: 1; text-align: center; min-width: 150px; max-width: 220px;
  transition: transform var(--t), box-shadow var(--t);
}
.partner-logo-box:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials { padding: var(--section-py) 0; }
.testimonials .section-title { margin-bottom: 48px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 20px;
  align-items: stretch;
}p: 20px;
  align-items: stretch;
}

.testimonial-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform var(--t), box-shadow var(--t);
  border: 1px solid rgba(0,0,0,0.05);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.featured-testimonial {
  background: var(--peach);
  border-color: transparent;
}
.featured-testimonial .testimonial-stars { color: rgba(255,245,180,0.95); }
.featured-testimonial .testimonial-text { color: rgba(255,255,255,0.95); }
.featured-testimonial .testimonial-text em { color: rgba(255,255,255,0.8); }
.featured-testimonial strong { color: white; }
.featured-testimonial .author-meta { color: rgba(255,255,255,0.7); }

.testimonial-stars { font-size: 0.9rem; color: #f4a725; letter-spacing: 1px; }

.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}
.testimonial-text em { font-style: normal; font-weight: 700; color: var(--text-dark); }

.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 1rem; flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.88rem; color: var(--text-dark); font-weight: 700; }
.testimonial-author span, .author-meta { display: block; font-size: 0.75rem; color: var(--text-light); }

/* ===========================
   CENTRES
   =========================== */
.centres { padding: var(--section-py) 0; background: var(--bg-warm); position: relative; }
.centres::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 90px;
  background: var(--bg);
  clip-path: ellipse(55% 100% at 50% 0%);
}
.centres-title { margin-bottom: 48px; }
.centres-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 52px; }
.centre-item h4 { font-weight: 700; font-size: 0.95rem; margin-bottom: 8px; color: var(--text-dark); }
.centre-item p  { font-size: 0.83rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 12px; }
.centre-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--teal); font-size: 0.83rem; font-weight: 700;
  transition: gap var(--t), color var(--t);
}
.centre-link:hover { gap: 12px; color: var(--teal-dark); }
.link-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--teal); color: white; font-size: 0.72rem;
  transition: background var(--t);
}
.centre-link:hover .link-arrow { background: var(--teal-dark); }
.centres-online-cta { margin-top: 52px; font-size: 0.95rem; color: var(--text-mid); text-align: center; }
.inline-link { color: var(--teal); font-weight: 700; border-bottom: 1.5px solid var(--teal); transition: color var(--t); }
.inline-link:hover { color: var(--teal-dark); }

/* ===========================
   FAQ
   =========================== */
.faq { padding: var(--section-py) 0; }
.faq-inner { max-width: 820px; }
.faq .section-title { margin-bottom: 40px; }

.faq-item { border-bottom: 1px solid rgba(0,0,0,0.09); }
.faq-item:first-child { border-top: 1px solid rgba(0,0,0,0.09); }

.faq-question {
  width: 100%; background: none; border: none; text-align: left;
  padding: 22px 0; font-size: 0.98rem; font-weight: 600;
  color: var(--text-dark); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  transition: color var(--t);
}
.faq-question:hover { color: var(--teal); }
.faq-icon { font-size: 1.2rem; color: var(--text-light); flex-shrink: 0; transition: transform var(--t); }

.faq-item.open {
  background: white;
  border-radius: var(--r-md);
  padding: 0 24px;
  border: none;
  box-shadow: var(--shadow-md);
  margin-bottom: 10px;
}
.faq-item.open .faq-question { padding-top: 24px; }
.faq-answer { padding-bottom: 24px; }
.faq-answer p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.75; }

/* FAQ CTA Bridge */
.faq-cta-bridge {
  margin-top: 48px;
  background: white;
  border: 1.5px solid rgba(0,0,0,0.07);
  border-radius: var(--r-lg);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow-sm);
}
.faq-bridge-content { display: flex; align-items: center; gap: 16px; }
.bridge-emoji { font-size: 2rem; }
.faq-bridge-content strong { display: block; font-size: 0.95rem; color: var(--text-dark); font-weight: 700; margin-bottom: 2px; }
.faq-bridge-content p { font-size: 0.85rem; color: var(--text-mid); }

/* ===========================
   CONTACT
   =========================== */
.contact { padding: var(--section-py) 0; background: var(--bg-warm); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}

.contact-info-panel {
  background: var(--teal);
  border-radius: var(--r-lg);
  padding: 52px 44px;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: sticky;
  top: 100px;
}
.contact-info-panel h2 { font-family: var(--font-serif); font-size: 2.2rem; font-weight: 400; color: white; line-height: 1.2; }
.contact-subtext { font-size: 0.88rem; color: rgba(255,255,255,0.8); line-height: 1.6; }

.contact-details { display: flex; flex-direction: column; gap: 14px; }
.contact-detail { display: flex; align-items: flex-start; gap: 12px; font-size: 0.88rem; color: rgba(255,255,255,0.88); line-height: 1.5; }
.contact-icon { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }

.contact-trust-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.trust-pill {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,0.2);
}

/* Form */
.contact-form {
  background: white;
  border-radius: var(--r-lg);
  padding: 40px 40px 36px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-urgency-bar {
  background: #fff8f0;
  border: 1.5px solid #f4c59f;
  border-radius: var(--r-sm);
  padding: 10px 16px;
  font-size: 0.83rem;
  color: #8a4a1a;
  border-left: 4px solid var(--peach);
}
.form-urgency-bar strong { color: #c04a1a; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.84rem; font-weight: 700; color: var(--text-dark); }
.required { color: var(--peach); }

.form-group input,
.form-group textarea,
.form-group select {
  padding: 13px 18px;
  border: 1.5px solid rgba(0,0,0,0.11);
  border-radius: var(--r-pill);
  font-family: inherit;
  font-size: 0.9rem;
  background: var(--bg);
  color: var(--text-dark);
  outline: none;
  transition: border-color var(--t), box-shadow var(--t);
  appearance: none;
  -webkit-appearance: none;
}
.form-group textarea { border-radius: var(--r-md); resize: vertical; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a8a95' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 18px center; padding-right: 42px; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(91,143,122,0.12);
  background: white;
}

.phone-wrap {
  display: flex; align-items: center;
  background: var(--bg); border: 1.5px solid rgba(0,0,0,0.11);
  border-radius: var(--r-pill); overflow: hidden;
  transition: border-color var(--t), box-shadow var(--t);
}
.phone-wrap:focus-within { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(91,143,122,0.12); background: white; }
.phone-flag { padding: 13px 12px 13px 18px; font-size: 0.82rem; border-right: 1px solid rgba(0,0,0,0.08); white-space: nowrap; cursor: pointer; }
.phone-wrap input { border: none !important; border-radius: 0 !important; flex: 1; background: transparent !important; box-shadow: none !important; }
.phone-wrap input:focus { box-shadow: none !important; }

.form-submit { width: 100%; justify-content: center; font-size: 1rem; padding: 18px; }
.form-footnote { font-size: 0.75rem; color: var(--text-light); text-align: center; margin-top: -4px; }

/* ===========================
   FOOTER
   =========================== */
.footer { background: var(--bg-dark); color: rgba(255,255,255,0.65); padding: 64px 0 0; }
.footer-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 48px 52px;
  display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 52px;
}
.footer .logo-main { color: white; font-size: 1rem; }
.footer .logo-sub  { color: rgba(255,255,255,0.4); }
.footer-desc { font-size: 0.83rem; line-height: 1.65; color: rgba(255,255,255,0.5); margin-bottom: 10px; max-width: 260px; margin-top: 8px; }
.footer-contact-line { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-col h4 { font-size: 0.78rem; font-weight: 700; color: rgba(255,255,255,0.9); margin-bottom: 16px; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.83rem; color: rgba(255,255,255,0.5); transition: color var(--t); }
.footer-col ul li a:hover { color: var(--teal-light); }
.social-links { display: flex; flex-direction: column; gap: 10px; }
.social-link { font-size: 0.83rem; color: rgba(255,255,255,0.5); transition: color var(--t); }
.social-link:hover { color: var(--teal-light); }
.footer-cta { margin-top: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 48px; text-align: center;
  max-width: var(--container); margin: 0 auto;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-bottom a:hover { color: var(--teal-light); }

/* ===========================
   WHATSAPP FAB
   =========================== */
.whatsapp-fab {
  position: fixed; bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 200; transition: transform var(--t), box-shadow var(--t);
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.55); }

/* ===========================
   SCROLL ANIMATIONS
   =========================== */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.12s; }
.fade-in-delay-2 { transition-delay: 0.24s; }
.fade-in-delay-3 { transition-delay: 0.36s; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1100px) {
  .section-inner { padding: 0 32px; }
  .nav-inner { padding: 14px 32px; }
  .concerns-grid { grid-template-columns: repeat(2, 1fr); }
  .concern-card.featured { grid-column: span 1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  :root { --section-py: 72px; }
  .nav-links, .nav-cta, .desktop-only { display: none; }
  .nav-hamburger { display: flex; }
  .nav-inner { padding: 14px 24px; }

  .hero {
    flex-direction: column-reverse;
    padding: 32px 24px 40px;
    height: auto; min-height: auto; gap: 28px; text-align: center;
  }
  .hero-content { max-width: 100%; }
  .hero-proof-bar { margin: 0 auto 24px; }
  .hero-subtext { margin: 0 auto 32px; }
  .hero-actions { justify-content: center; }
  .hero-trust-line { text-align: center; }
  .hero-image { max-width: 340px; margin: 0 auto; }
  .hero-visual { width: 320px; height: 320px; }
  .aura-1 { width: 310px; height: 310px; }
  .aura-2 { width: 245px; height: 245px; }
  .aura-3 { width: 182px; height: 182px; }
  .breath-core { width: 130px; height: 130px; }
  .pill-1 { top: 8px;   left: 110px; }
  .pill-2 { top: 70px;  right: 4px; }
  .pill-3 { bottom: 74px; right: 4px; }
  .pill-4 { bottom: 8px;  left: 112px; }
  .pill-5 { bottom: 74px; left: 4px; }
  .pill-6 { top: 70px;  left: 4px; }
  .floating-badge { left: 0; bottom: 14px; }

  .experts-header { flex-direction: column; align-items: flex-start; }
  .experts-carousel { padding: 8px 24px 24px; }

  .contact-inner { grid-template-columns: 1fr; }
  .contact-info-panel { position: static; }
  .centres-grid { grid-template-columns: 1fr 1fr; }
  .faq-cta-bridge { flex-direction: column; text-align: center; }
  .faq-bridge-content { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
  .section-inner { padding: 0 20px; }
  .concerns-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .concerns-grid .concern-card { min-height: 180px; padding: 20px 18px; }
  .concern-icon { width: 54px; height: 54px; }
  .concern-name { font-size: 0.9rem; }
  .concern-desc { display: none; }
  .centres-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .incubated-logos { flex-direction: column; }
  .partner-logo-box { max-width: 100%; }
  .contact-form { padding: 28px 24px; }
  .footer-inner { padding: 0 20px 40px; }
  .footer-bottom { padding: 16px 20px; }
}

/* ===========================
   MOBILE — 480px and below
   =========================== */
@media (max-width: 480px) {
  /* Hero */
  .hero { padding: 24px 16px 32px; gap: 20px; }
  .hero-heading { font-size: clamp(1.7rem, 7vw, 2.2rem); }
  .hero-subtext { font-size: 0.92rem; }
  .hero-actions { flex-direction: column; gap: 10px; width: 100%; }
  .hero-actions a { width: 100%; text-align: center; justify-content: center; }
  .hero-visual { width: 260px; height: 260px; }
  .aura-1 { width: 252px; height: 252px; }
  .aura-2 { width: 198px; height: 198px; }
  .aura-3 { width: 148px; height: 148px; }
  .breath-core { width: 108px; height: 108px; }
  /* Hide extra pills on very small screens */
  .pill-7, .pill-8, .pill-9, .pill-10 { display: none; }
  .pill-1 { top: 4px; left: 80px; }
  .pill-2 { top: 52px; right: 2px; }
  .pill-3 { bottom: 56px; right: 2px; }
  .pill-4 { bottom: 4px; left: 82px; }
  .pill-5 { bottom: 56px; left: 2px; }
  .pill-6 { top: 52px; left: 2px; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-card { padding: 20px 14px; }
  .stat-number { font-size: 2.4rem; }
  .stats-title { font-size: clamp(1.1rem, 5vw, 1.4rem); }

  /* Section titles */
  .section-title { font-size: clamp(1.4rem, 6vw, 1.8rem); }
  .section-subtitle { font-size: 0.88rem; }

  /* Marquee */
  .marquee-track { font-size: 1rem; gap: 20px; }

  /* Experts carousel */
  .expert-card { min-width: 260px; }
  .experts-carousel { padding: 8px 16px 24px; gap: 14px; }

  /* How it works */
  .how-step-new { padding: 0 12px 32px; }
  .how-step-icon { width: 80px; height: 80px; }

  /* Reviews + selfcare side by side → stack */
  .reviews-selfcare-section .section-inner { flex-direction: column !important; gap: 40px; }
  .reviews-col, .selfcare-col { width: 100% !important; }
  .reviews-scroll-outer { height: 320px; }

  /* Contact form */
  .contact-inner { gap: 24px; }
  .contact-form { padding: 24px 16px; }
  .form-group input, .form-group select, .form-group textarea { font-size: 0.9rem; }

  /* Footer */
  .footer-inner { padding: 0 16px 32px; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; padding: 14px 16px; }
  .footer-legal { gap: 12px; }

  /* Nav logo */
  .logo-mark { height: 26px; width: 26px; }
  .logo-sub { display: none; }
  .logo-main { font-size: 0.95rem; }

  /* Matchmaker bar */
  .matchmaker-inner { flex-wrap: wrap; gap: 8px; padding: 10px 16px; }
  .match-desc { display: none; }

  /* Capsule deck */
  .capsule-deck { padding: 8px 16px 32px; }
  .capsule-card { padding: 10px 16px; font-size: 0.85rem; }

  /* FAQ */
  .faq-question { font-size: 0.92rem; padding: 16px 0; }

  /* Community bar */
  .community-bar { padding: 12px 16px; flex-direction: column; text-align: center; gap: 10px; }

  /* Mannmukt */
  .mannmukt-section { padding: 32px 16px; gap: 20px; }

  /* Booking pages */
  .booking-hero { padding: 80px 16px 40px; }
  .booking-hero h1 { font-size: clamp(1.6rem, 6vw, 2rem); }
  .therapist-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .t-select-card img { width: 52px; height: 52px; }
  .cal-day { padding: 8px 2px; font-size: 0.82rem; }
  .slots-grid { gap: 8px; }
  .slot-btn { padding: 8px 14px; font-size: 0.82rem; }

  /* Careers */
  .careers-hero { padding: 90px 16px 48px; }
  .form-card { padding: 24px 16px; }
  .role-tabs { gap: 8px; }
  .role-tab { padding: 10px 18px; font-size: 0.85rem; }

  /* About page */
  .v2-about-hero { min-height: 60vh; }
  .v2-hero-content { padding: 0 20px; }
  .v2-story { padding: 80px 0; }
  .v2-fw-inner { padding: 48px 20px; gap: 28px; }
  .v2-fw-art { height: 240px; }
  .v2-manifesto { padding: 80px 0; }
  .inner-max { padding: 0 20px; }

  /* Team page */
  .team-grid { grid-template-columns: 1fr !important; }

  /* Expertise page */
  .expertise-grid { grid-template-columns: 1fr !important; }

  /* Login prompt mobile */
  .login-prompt {
    right: 50%;
    transform: translateX(50%);
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}

/* TOP BANNER MODIFIERS */
.matchmaker-bar.top-banner { padding: 14px 0; border: none; }
.btn-matchmaker.btn-sm { padding: 9px 24px; font-size: 0.95rem; }

/* ===========================
   ABOUT US - V2 EDITORIAL
   =========================== */
.page-about {
  background-color: var(--bg-warm);
}
.inner-max {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
}

/* Hero */
.v2-about-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(61, 50, 40, 0.1);
}
.v2-hero-lineart {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  width: 120%;
  height: 120%;
  pointer-events: none;
}
.v2-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 0 40px;
}
.v2-hero-eyebrow {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  color: var(--teal);
  margin-bottom: 24px;
}
.v2-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1.15;
  color: var(--blue);
  font-weight: 400;
}

/* The Origin Story */
.v2-story {
  padding: 180px 0;
  background-color: var(--bg-warm);
}
.v2-story-container {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 80px;
}
.v2-story-sidebar {
  position: relative;
}
.vertical-label {
  display: inline-block;
  transform: rotate(-90deg) translateX(-100%);
  transform-origin: top left;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--peach);
  white-space: nowrap;
  position: absolute;
  top: 0;
}
.v2-story-copy {
  max-width: 800px;
}
.v2-story-headline {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  line-height: 1.25;
  color: var(--teal);
  margin-bottom: 60px;
}
.v2-story-paragraphs {
  column-count: 2;
  column-gap: 60px;
}
.v2-story-paragraphs p {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 24px;
  break-inside: avoid;
}

/* The Framework Stagger */
.v2-framework {
  background: white;
  padding: 80px 0 0 0;
}
.v2-framework-header {
  text-align: center;
  margin-bottom: 60px;
}
.v2-framework-title {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  color: var(--blue);
  margin-bottom: 16px;
}
.v2-framework-sub {
  font-size: 1.1rem;
  color: var(--text-light);
}

.v2-fw-row {
  border-bottom: 1px solid rgba(61, 50, 40, 0.05);
}
.v2-fw-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 48px;
}
.alt-row .v2-fw-inner {
  direction: rtl; /* simple way to reverse DOM display */
}
.alt-row .v2-fw-text, .alt-row .v2-fw-art {
  direction: ltr; /* fix child flow */
}
.v2-fw-text {
  max-width: 480px;
}
.fw-num {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--peach);
  display: block;
  margin-bottom: 24px;
}
.v2-fw-text h3 {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--blue);
  margin-bottom: 24px;
}
.v2-fw-text p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-mid);
}

.v2-fw-art {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 380px;
  background: var(--bg-warm);
  border-radius: var(--r-md);
  padding: 40px;
  cursor: default;
}
.v2-fw-art svg {
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.06));
}
.v2-fw-row:hover .v2-fw-art svg { 
  transform: scale(1.03); 
}

/* Infinite SVG Behaviors (Running Constantly) */

/* Relate: Abstract Continuous Line Art */
.relate-line-left {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  transform-origin: 140px 300px;
  fill: transparent;
  animation: 
    drawLinesAnim 1.5s forwards ease-in-out, 
    relateBreathe 4s infinite alternate ease-in-out 1.5s;
}
.relate-line-right {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  transform-origin: 260px 300px;
  fill: transparent;
  animation: 
    drawLinesAnim 1.5s forwards ease-in-out 0.2s, 
    relateBreathe 4s infinite alternate ease-in-out 1.5s;
}

@keyframes drawLinesAnim {
  0% { stroke-dashoffset: 800; }
  100% { stroke-dashoffset: 0; }
}

@keyframes relateBreathe {
  0% { transform: scale(1) translateY(0); opacity: 1; }
  100% { transform: scale(1.02) translateY(-2px); opacity: 0.85; }
}

/* Rely: Catching Falling Blocks */
.rely-fall1 { animation: fall1Anim 1.8s infinite alternate ease-in-out; }
.rely-fall2 { animation: fall2Anim 1.8s infinite alternate ease-in-out; }
.rely-catcher { animation: catchAnim 1.8s infinite alternate ease-in-out; }

@keyframes fall1Anim { 
  0%, 20% { transform: translateY(0); } 
  80%, 100% { transform: translateY(152px); } 
}
@keyframes fall2Anim { 
  0%, 20% { transform: translateY(0); } 
  80%, 100% { transform: translateY(152px); } 
}
@keyframes catchAnim { 
  0%, 20% { transform: translateX(0); } 
  80%, 100% { transform: translateX(-130px); } 
}

/* Resolve: Rock Gates Opening */
.res-rock-left { animation: rockOpenLeft 4s infinite cubic-bezier(0.65, 0, 0.35, 1); }
.res-rock-right { animation: rockOpenRight 4s infinite cubic-bezier(0.65, 0, 0.35, 1); }
.res-core-pulse { transform-origin: 200px 200px; animation: corePulseAnim 4s infinite ease-out; }

@keyframes rockOpenLeft {
  0%, 15% { transform: translateX(0); }
  40%, 60% { transform: translateX(-65px); }
  85%, 100% { transform: translateX(0); }
}
@keyframes rockOpenRight {
  0%, 15% { transform: translateX(0); }
  40%, 60% { transform: translateX(65px); }
  85%, 100% { transform: translateX(0); }
}
@keyframes corePulseAnim {
  0%, 45% { transform: scale(1); opacity: 0; }
  55% { transform: scale(1.4); opacity: 0.5; }
  65%, 100% { transform: scale(1); opacity: 0; }
}

/* Realign: Snapping to Order */
.align-item1 { animation: snap1Anim 1.6s infinite alternate ease-in-out; }
.align-item2 { animation: snap2Anim 1.6s infinite alternate ease-in-out; }
.align-item3 { animation: snap3Anim 1.6s infinite alternate ease-in-out; }
.align-guide { animation: snapFadeAnim 1.6s infinite alternate ease-in-out; }

@keyframes snap1Anim { 0%, 20% { transform: translateY(0); } 80%, 100% { transform: translateY(80px); } }
@keyframes snap2Anim { 0%, 20% { transform: translateY(0); } 80%, 100% { transform: translateY(-80px); } }
@keyframes snap3Anim { 0%, 20% { transform: translateY(0); } 80%, 100% { transform: translateY(40px); } }
@keyframes snapFadeAnim { 0%, 20% { opacity: 0; } 80%, 100% { opacity: 0.3; } }

/* Manifesto Banner */
.v2-manifesto {
  background: var(--teal);
  padding: 140px 0;
  text-align: center;
  color: white;
}
.v2-manifesto h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  line-height: 1.15;
  margin-bottom: 32px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.v2-manifesto p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 0 auto 50px auto;
}
.btn-manifesto {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  background: var(--blue) !important;
  color: white !important;
  border: 2px solid var(--blue) !important;
}
.btn-manifesto:hover {
  background: white !important;
  color: var(--teal) !important;
  border-color: var(--teal) !important;
}
  border-color: var(--peach) !important;
}

/* Media Queries V2 */
/* (rules merged into main responsive blocks below) */

/* ==== HOMEPAGE MASONRY GRID ==== */
.masonry-wrap { 
  display: flex; gap: 20px; height: 600px; overflow: hidden; max-width: 900px; margin: 40px auto 0;
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}
.masonry-wrap:hover .masonry-col { animation-play-state: paused; }
.masonry-col { display: flex; flex-direction: column; gap: 20px; width: 50%; padding: 10px 0; }
.col-up { animation: masonryUp 25s linear infinite; }
.col-down { animation: masonryDown 25s linear infinite; }

.m-card { 
  background: white; border-radius: 16px; border: 1px solid rgba(0,0,0,0.05); padding: 30px; 
  display: flex; flex-direction: column; gap: 15px; cursor: pointer; transition: 0.4s;
  text-decoration: none; color: var(--text); box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.m-card:hover { 
  transform: scale(1.02); box-shadow: 0 15px 30px rgba(15,96,107,0.1); 
  border-color: var(--teal); background: var(--teal-light); 
}
.m-icon { width: 40px; height: 40px; stroke: var(--teal); stroke-width: 1.5; transition: 0.4s; }
.m-title { font-family: 'DM Serif Display', serif; font-size: 1.6rem; color: var(--teal); margin: 0; }
.m-explore { 
  font-family: 'Open Sans', sans-serif; font-size: 0.95rem; font-weight: 600; 
  color: var(--peach); opacity: 0; transform: translateY(10px); transition: 0.4s;
  display: flex; align-items: center; gap: 5px; margin-top: auto;
}
.m-card:hover .m-explore { opacity: 1; transform: translateY(0); }
.m-card:hover .m-icon { stroke: var(--peach); transform: scale(1.1); }

@keyframes masonryUp { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
@keyframes masonryDown { 0% { transform: translateY(-50%); } 100% { transform: translateY(0); } }

@media (max-width: 768px) {
  .masonry-wrap { flex-direction: column; height: auto; max-width: 100%; overflow: visible; -webkit-mask-image: none; mask-image: none; padding: 0 20px;}
  .masonry-col { width: 100%; gap: 15px; }
  .col-up, .col-down { animation: none; transform: none !important; }
  .col-up .m-card:nth-child(n+9), .col-down .m-card:nth-child(n+9) { display: none; }
  .m-explore { opacity: 1; transform: translateY(0); }
}


/* ===========================
   FREE SESSION BUTTON
   =========================== */
.btn-free-session {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--peach);
  color: var(--blue-dark);
  padding: 11px 22px;
  border-radius: var(--r-pill);
  font-size: 0.86rem;
  font-weight: 700;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
  white-space: nowrap;
  border: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.btn-free-session:hover {
  background: var(--peach-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(213,154,63,0.4);
  color: white;
}

/* ===========================
   CONTACT NAV DROPDOWN
   =========================== */
.nav-contact-dropdown {
  position: relative;
}
.nav-contact-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 6px 11px;
  border-radius: 8px;
  transition: color var(--t), background var(--t);
}
.nav-contact-btn:hover {
  color: var(--text-dark);
  background: rgba(0,0,0,0.04);
}
.nav-contact-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  background: white;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,0,0,0.07);
  min-width: 200px;
  z-index: 200;
  overflow: hidden;
  /* Bridge gap so hover doesn't break when moving from button to menu */
  padding-top: 4px;
  margin-top: -4px;
}
.nav-contact-dropdown:hover .nav-contact-menu,
.nav-contact-dropdown:focus-within .nav-contact-menu {
  display: block;
}
.nav-contact-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: background var(--t), color var(--t);
  text-decoration: none;
}
.nav-contact-menu a:hover {
  background: var(--bg);
  color: var(--teal);
}

/* ===========================
   IN-APP CHAT WIDGET
   =========================== */
.chat-widget {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 300;
}
.chat-toggle-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--teal);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(15,96,107,0.45);
  transition: transform var(--t), box-shadow var(--t);
  color: white;
  font-size: 1.4rem;
}
.chat-toggle-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(15,96,107,0.55);
}
.chat-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--peach);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chat-window {
  display: none;
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 380px;
  height: 450px;
  max-height: 70vh;
  background: white;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,0,0,0.07);
  overflow: hidden;
  flex-direction: column;
}
.chat-window.open {
  display: flex;
}
.chat-header {
  background: var(--teal);
  color: white;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.chat-header-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.chat-header-info strong {
  display: block;
  font-size: 0.9rem;
}
.chat-header-info span {
  font-size: 0.75rem;
  opacity: 0.8;
}
.chat-close {
  margin-left: auto;
  background: none;
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity var(--t);
}
.chat-close:hover { opacity: 1; }
.chat-messages {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  max-height: 350px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--bg);
  scroll-behavior: smooth;
}
.chat-messages::-webkit-scrollbar {
  width: 6px;
}
.chat-messages::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.05);
  border-radius: 3px;
}
.chat-messages::-webkit-scrollbar-thumb {
  background: rgba(15,96,107,0.3);
  border-radius: 3px;
}
.chat-messages::-webkit-scrollbar-thumb:hover {
  background: rgba(15,96,107,0.5);
}
.chat-msg {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 0.85rem;
  line-height: 1.5;
}
.chat-msg.therapist {
  background: white;
  color: var(--text-dark);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  box-shadow: var(--shadow-sm);
}
.chat-msg.client {
  background: var(--teal);
  color: white;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
.chat-msg-time {
  font-size: 0.7rem;
  opacity: 0.6;
  margin-top: 3px;
}
.chat-input-row {
  display: flex;
  gap: 6px;
  padding: 10px 12px;
  border-top: 1px solid rgba(0,0,0,0.07);
  background: white;
  align-items: center;
  flex-shrink: 0;
}
.chat-input {
  flex: 1;
  padding: 9px 12px;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--r-pill);
  font-family: inherit;
  font-size: 0.88rem;
  outline: none;
  transition: border-color var(--t);
  min-width: 0;
}
.chat-input:focus { border-color: var(--teal); }
.chat-send-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--teal);
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: background var(--t);
  flex-shrink: 0;
}
.chat-send-btn:hover { background: var(--teal-dark); }
.chat-attach-btn, .chat-voice-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(15,96,107,0.1);
  border: none;
  color: var(--teal);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.2s;
  flex-shrink: 0;
}
.chat-attach-btn:hover, .chat-voice-btn:hover {
  background: rgba(15,96,107,0.2);
  transform: scale(1.05);
}
.chat-voice-btn:active {
  transform: scale(0.95);
}
.chat-attach-menu-wrapper {
  position: relative;
  flex-shrink: 0;
}
.chat-attach-menu {
  display: none;
  position: absolute;
  bottom: 100%;
  left: 0;
  margin-bottom: 8px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  border: 1px solid rgba(0,0,0,0.1);
  padding: 8px;
  flex-direction: column;
  gap: 4px;
  min-width: 140px;
  z-index: 1000;
}
.chat-attach-menu button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: none;
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.88rem;
  color: var(--text-dark);
  transition: background 0.2s;
  text-align: left;
  width: 100%;
}
.chat-attach-menu button:hover {
  background: rgba(15,96,107,0.08);
}
.chat-attach-menu button svg {
  flex-shrink: 0;
}
.chat-locked {
  padding: 60px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: var(--bg);
  flex: 1;
  text-align: center;
}
.chat-locked p {
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.6;
  text-align: center;
  margin: 0;
}
.chat-locked a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--teal);
  color: white;
  padding: 16px 48px;
  border-radius: 100px;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--t);
  white-space: nowrap;
}
.chat-locked a:hover { 
  background: var(--teal-dark); 
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15,96,107,0.3);
}

/* ===========================
   UPDATED FOOTER
   =========================== */
.footer-social-icons {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.footer-social-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform var(--t), opacity var(--t);
  opacity: 0.9;
  border-radius: 5px;
  overflow: hidden;
}
.footer-social-icon:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 8px;
}
.footer-legal a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--t);
  cursor: pointer;
}
.footer-legal a:hover { color: var(--teal-light); }
.footer-helpline {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
  margin-bottom: 8px;
}
.footer-helpline strong { color: rgba(255,255,255,0.55); }
.footer-community-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  padding: 8px 16px;
  border-radius: var(--r-pill);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--t), color var(--t);
  white-space: nowrap;
}
.footer-community-btn:hover {
  background: var(--teal);
  color: white;
  border-color: var(--teal);
}

/* ===========================
   MODAL (Privacy / T&C)
   =========================== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open {
  display: flex;
}
.modal-box {
  background: white;
  border-radius: var(--r-lg);
  max-width: 680px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 48px;
  position: relative;
}
.modal-box h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--teal);
  margin-bottom: 20px;
}
.modal-box p, .modal-box li {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 12px;
}
.modal-box h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 20px 0 8px;
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-light);
  transition: color var(--t);
}
.modal-close:hover { color: var(--text-dark); }

/* ===========================
   COMMUNITY BAR (HOME)
   =========================== */
.community-bar {
  background: var(--bg-warm);
  border-top: 1px solid rgba(61,50,40,0.1);
  border-bottom: 1px solid rgba(61,50,40,0.1);
  padding: 14px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.community-bar p {
  font-size: 0.88rem;
  color: var(--text-mid);
}
.community-bar a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--teal);
  color: white;
  padding: 8px 20px;
  border-radius: var(--r-pill);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: background var(--t);
}
.community-bar a:hover { background: var(--teal-dark); }

/* ===========================
   STAR RATING DISPLAY
   =========================== */
.therapist-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}
.therapist-rating .stars { color: #f4a725; font-size: 0.9rem; }
.therapist-rating .rating-num { font-size: 0.85rem; font-weight: 700; color: var(--text-dark); }
.therapist-fee {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(15,96,107,0.08);
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  margin-bottom: 16px;
}

/* ===========================
   HOW IT WORKS — REDESIGNED
   =========================== */
.how-steps-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  margin-top: 48px;
}
.how-steps-new::before {
  content: '';
  position: absolute;
  top: 52px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--peach), var(--blue));
  z-index: 0;
}
.how-step-new {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px 40px;
  position: relative;
  z-index: 1;
}
.how-step-icon {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin-bottom: 24px;
  border: 3px solid white;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}
.how-step-icon.teal-icon { background: var(--teal); }
.how-step-icon.blue-icon { background: var(--blue); }
.how-step-icon.peach-icon { background: var(--peach); }
.how-step-new h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.25;
}
.how-step-new p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
}
.how-step-new .step-num {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
@media(max-width:900px) {
  .how-steps-new { grid-template-columns: 1fr; }
  .how-steps-new::before { display: none; }
}

/* ===========================
   RESPONSIVE ADDITIONS
   =========================== */
@media(max-width:900px) {
  .community-bar { padding: 14px 24px; }
  .chat-window { width: 300px; }
}
@media(max-width:640px) {
  .btn-free-session { font-size: 0.8rem; padding: 9px 16px; }
  .chat-widget { bottom: 90px; right: 16px; }
  .chat-window { width: calc(100vw - 32px); right: -8px; max-height: 450px; }
  .chat-messages { max-height: 300px; }
  .chat-input-row { padding: 8px 10px; gap: 5px; }
  .chat-attach-btn, .chat-voice-btn, .chat-send-btn { width: 34px; height: 34px; font-size: 0.9rem; }
  .chat-input { padding: 8px 10px; font-size: 0.85rem; }
}


/* ===========================
   MATCHMAKER BAR WHITE BUTTON
   =========================== */
.btn-matchmaker-white {
  background: white !important;
  color: var(--teal) !important;
}
.btn-matchmaker-white:hover {
  background: var(--bg) !important;
  color: var(--teal-dark) !important;
}

/* ===========================
   CHAT TOPBAR BUTTON
   =========================== */
.chat-topbar-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--t);
  position: relative;
  white-space: nowrap;
}
.chat-topbar-btn:hover { background: rgba(255,255,255,0.25); }
.chat-topbar-label { display: none; }
@media(min-width:640px) { .chat-topbar-label { display: inline; } }
.chat-badge-top {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--peach);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ===========================
   CHAT WIDGET — REPOSITIONED
   =========================== */
/* Override bottom position — chat window anchors to topbar button via JS */
.chat-widget {
  position: fixed;
  top: 44px; /* height of matchmaker bar */
  right: 28px;
  bottom: auto;
  z-index: 300;
}
.chat-window {
  bottom: auto;
  top: 0;
}

/* ===========================
   DUAL NAV CTAS
   =========================== */
.nav-inner { gap: 16px; }
.nav-cta + .nav-cta { margin-left: 0; }

/* ===========================
   MANNMUKT SECTION
   =========================== */
.mannmukt-section {
  background: var(--bg-warm);
  border-top: 1px solid rgba(61,50,40,0.1);
  padding: 64px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.mannmukt-logo-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
.mannmukt-logo-img {
  height: 52px;
  width: auto;
}
.mannmukt-text h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.mannmukt-text p {
  font-size: 0.88rem;
  color: var(--text-mid);
  max-width: 380px;
  line-height: 1.6;
}
.btn-mannmukt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: white;
  padding: 12px 28px;
  border-radius: var(--r-pill);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: background var(--t), transform var(--t);
  white-space: nowrap;
}
.btn-mannmukt:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
}
@media(max-width:640px) {
  .mannmukt-section { padding: 40px 20px; flex-direction: column; text-align: center; }
  .mannmukt-logo-wrap { justify-content: center; }
}

/* ===========================
   BLOG / SELF-CARE FLOAT SECTION
   =========================== */
.float-content-section {
  padding: var(--section-py) 0;
  background: white;
}
.float-content-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
}
.float-content-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.float-tab {
  padding: 9px 22px;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--r-pill);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  background: white;
  transition: all var(--t);
  color: var(--text-mid);
}
.float-tab.active, .float-tab:hover {
  background: var(--teal);
  color: white;
  border-color: var(--teal);
}
.float-panel { display: none; }
.float-panel.active { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.float-card {
  background: var(--bg);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform var(--t), box-shadow var(--t);
  text-decoration: none;
  color: inherit;
  display: block;
}
.float-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.float-card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  background: var(--bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.float-card-body { padding: 18px 20px; }
.float-card-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.float-card-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 6px;
  line-height: 1.3;
}
.float-card-meta {
  font-size: 0.78rem;
  color: var(--text-light);
}
@media(max-width:900px) {
  .float-panel.active { grid-template-columns: 1fr 1fr; }
  .float-content-inner { padding: 0 24px; }
}
@media(max-width:640px) {
  .float-panel.active { grid-template-columns: 1fr; }
  .float-content-inner { padding: 0 20px; }
}

/* ===========================
   TESTIMONIALS GRID — 3 COL WRAP
   =========================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 20px;
  align-items: stretch;
}
@media(max-width:1100px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:640px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ===========================
   BUTTON HOVER IMPROVEMENTS
   =========================== */
.btn-free-session:hover {
  background: var(--peach-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(213,154,63,0.4);
  color: white;
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(61,50,40,0.3);
}
.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: rgba(15,96,107,0.06);
  transform: translateY(-1px);
}

/* ===========================
   EXPERTISE PAGE — BULLET POINTER
   =========================== */
.concern-signs li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--peach);
  border-radius: 2px;
  transform: rotate(45deg);
  position: absolute;
  left: 0;
  top: 7px;
}

/* ===========================
   TEAM PAGE IMPROVEMENTS
   =========================== */
.team-scroll-container {
  overflow: hidden;
}
.team-scroll-track {
  display: flex;
  flex-direction: column;
  gap: 60px;
  animation: team-scroll-down 40s linear infinite;
}
.team-scroll-track:hover { animation-play-state: paused; }
@keyframes team-scroll-down {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

/* ===========================
   FOOTER SOCIAL ICONS — SVG
   =========================== */
.footer-social-icon svg {
  width: 18px;
  height: 18px;
}


/* ===========================
   NAV CHAT ICON
   =========================== */
.nav-chat-icon {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(15,96,107,0.08);
  border: 1.5px solid rgba(15,96,107,0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  transition: background var(--t), border-color var(--t);
  flex-shrink: 0;
}
.nav-chat-icon:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: white;
}
.nav-chat-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  background: var(--peach);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===========================
   MATCHMAKER BAR — FIX ALIGNMENT
   =========================== */
.matchmaker-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
}
.matchmaker-text {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.95);
  font-size: 0.95rem;
  flex-shrink: 0;
}
.matchmaker-text strong {
  white-space: nowrap;
}
.match-desc {
  white-space: nowrap;
  color: rgba(255,255,255,0.85);
}
.btn-matchmaker {
  margin-left: auto;
  flex-shrink: 0;
}

/* ===========================
   NAV — PREVENT OVERFLOW
   =========================== */
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 12px 32px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  overflow: visible;
}
.nav-links {
  flex: 1;
  justify-content: center;
  gap: 0;
  min-width: 0;
}
.nav-link {
  font-size: 0.82rem;
  padding: 6px 9px;
  white-space: nowrap;
}
.nav-cta {
  font-size: 0.82rem !important;
  padding: 10px 16px !important;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-free-session.nav-cta {
  padding: 10px 16px !important;
}

/* Hide chat widget floating button — icon is in navbar now */
.chat-widget .chat-toggle-btn {
  display: none !important;
}
/* Chat window anchors to bottom-right */
.chat-widget {
  position: fixed;
  bottom: 90px;
  right: 28px;
  top: auto;
  z-index: 300;
}
.chat-window {
  bottom: 0;
  top: auto;
  position: absolute;
}

@media(max-width:1100px) {
  .nav-inner { padding: 12px 20px; gap: 8px; }
  .nav-link { font-size: 0.78rem; padding: 5px 7px; }
  .nav-cta { font-size: 0.78rem !important; padding: 9px 12px !important; }
}
@media(max-width:900px) {
  .nav-chat-icon { display: none; }
  .matchmaker-inner { padding: 0 20px; }
  .match-desc { display: none; }
}


/* ===========================
   BUTTON COLOUR RULES — FINAL
   =========================== */

/* FREE INTRO SESSION — yellow → brown on hover */
.btn-free-session {
  background: var(--peach) !important;
  color: var(--blue-dark) !important;
  border: none;
}
.btn-free-session:hover {
  background: var(--blue) !important;
  color: white !important;
  box-shadow: 0 6px 20px rgba(61,50,40,0.35) !important;
  transform: translateY(-2px);
}

/* BOOK A SESSION — brown → teal on hover */
.btn-primary {
  background: var(--blue) !important;
  color: white !important;
  border: none;
}
.btn-primary:hover {
  background: var(--teal) !important;
  color: white !important;
  box-shadow: 0 6px 20px rgba(15,96,107,0.35) !important;
  transform: translateY(-2px);
}

/* HERO PRIMARY (used as book session in hero) — same as btn-primary */
.btn-hero-primary {
  background: var(--blue) !important;
  color: white !important;
  border-color: var(--blue) !important;
}
.btn-hero-primary:hover {
  background: var(--teal) !important;
  border-color: var(--teal) !important;
  color: white !important;
}

/* QUIZ BUTTON in matchmaker bar — white */
.btn-matchmaker,
.btn-matchmaker-white {
  background: white !important;
  color: var(--teal) !important;
  border: none;
}
.btn-matchmaker:hover,
.btn-matchmaker-white:hover {
  background: var(--bg) !important;
  color: var(--teal-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.12) !important;
}


/* ===========================
   CHAT ICON IN MATCHMAKER BAR
   =========================== */
.chat-bar-icon {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.35);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: background var(--t), border-color var(--t);
  flex-shrink: 0;
}
.chat-bar-icon:hover {
  background: rgba(255,255,255,0.28);
  border-color: rgba(255,255,255,0.6);
}
.chat-bar-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  background: var(--peach);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Restore chat widget floating button visibility */
.chat-widget .chat-toggle-btn {
  display: flex !important;
}

/* Chat widget back to bottom-right */
.chat-widget {
  position: fixed;
  bottom: 90px;
  right: 28px;
  top: auto;
  z-index: 300;
}
.chat-window {
  position: absolute;
  bottom: 70px;
  top: auto;
}


/* ===========================
   MATCHMAKER BAR — CLEAN LAYOUT
   =========================== */
.matchmaker-bar.top-banner {
  padding: 12px 0;
}
.matchmaker-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.anim-chevron {
  flex-shrink: 0;
  margin-left: 112px;
}
.matchmaker-text {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.95);
  font-size: 0.9rem;
  flex: 1;
  min-width: 0;
}
.matchmaker-text strong {
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 0.9rem;
}
.match-desc {
  color: rgba(255,255,255,0.82);
  white-space: nowrap;
  font-size: 0.88rem;
}
.matchmaker-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: 0;
  position: relative;
}
.login-prompt {
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: 8px;
  background: white;
  color: var(--teal);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  border: 1px solid rgba(15,96,107,0.2);
  animation: fadeInSlide 0.3s ease;
  z-index: 1000;
}
@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===========================
   NAVBAR — CLEAN ALIGNMENT
   =========================== */
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 12px 48px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo {
  flex-shrink: 0;
  margin-left: -11px;
}
.nav-links {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.nav-link {
  font-size: 0.84rem;
  padding: 6px 10px;
  white-space: nowrap;
}
/* The two CTA buttons — fixed size, no shrink */
.nav-cta {
  flex-shrink: 0;
  white-space: nowrap;
  font-size: 0.84rem !important;
  padding: 10px 18px !important;
  height: 38px;
  display: inline-flex;
  align-items: center;
}

/* ===========================
   BUTTON COLOURS — DEFINITIVE
   =========================== */

/* FREE INTRO SESSION — yellow → white on hover */
.btn-free-session,
a.btn-free-session,
button.btn-free-session {
  background: var(--peach) !important;
  color: var(--blue-dark) !important;
  border: 2px solid var(--peach) !important;
  font-weight: 700;
  transition: background var(--t), color var(--t), border-color var(--t), transform var(--t), box-shadow var(--t);
}
.btn-free-session:hover,
a.btn-free-session:hover,
button.btn-free-session:hover {
  background: white !important;
  color: var(--blue) !important;
  border-color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15) !important;
}

/* BOOK A SESSION — brown → teal on hover */
.btn-primary,
a.btn-primary,
button.btn-primary {
  background: var(--blue) !important;
  color: white !important;
  border: 2px solid var(--blue) !important;
  font-weight: 700;
  transition: background var(--t), color var(--t), border-color var(--t), transform var(--t), box-shadow var(--t);
}
.btn-primary:hover,
a.btn-primary:hover,
button.btn-primary:hover {
  background: var(--teal) !important;
  color: white !important;
  border-color: var(--teal) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(15,96,107,0.3) !important;
}

/* HERO BUTTONS */
.btn-hero-primary {
  background: var(--blue) !important;
  color: white !important;
  border-color: var(--blue) !important;
}
.btn-hero-primary:hover {
  background: var(--teal) !important;
  border-color: var(--teal) !important;
}
.btn-hero-outline {
  background: white !important;
  color: var(--blue) !important;
  border-color: var(--blue) !important;
}
.btn-hero-outline:hover {
  background: var(--teal) !important;
  color: white !important;
  border-color: var(--teal) !important;
}

/* QUIZ BUTTON — white, same size as Free Intro Session (peach) */
.btn-matchmaker,
.btn-matchmaker-white {
  background: white !important;
  color: var(--teal) !important;
  border: none !important;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: var(--r-pill);
  font-size: 0.86rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: background var(--t), box-shadow var(--t), transform var(--t);
}
.btn-matchmaker:hover,
.btn-matchmaker-white:hover {
  background: var(--bg) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12) !important;
}

/* MESSAGE button — same size as Book a Session (brown) */
.btn-matchmaker-chat {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 13px 26px;
  border-radius: var(--r-pill);
  font-size: 0.9rem;
  font-weight: 600;
  background: rgba(255,255,255,0.15);
  color: white;
  border: 1.5px solid rgba(255,255,255,0.45);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background var(--t), transform var(--t);
}
.btn-matchmaker-chat:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-1px);
}

/* CHAT ICON IN MATCHMAKER BAR — replaced by .btn-matchmaker-chat pill button */
.chat-bar-icon { display: none; }
.chat-bar-badge { display: none !important; }
.chat-bar-badge {
  position: absolute;
  top: -3px; right: -3px;
  background: var(--peach);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  width: 15px; height: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hide floating chat toggle button and whatsapp FAB — chat opened via top bar Message button */
.chat-widget .chat-toggle-btn,
.whatsapp-fab { display: none !important; }

/* Chat widget itself must be visible so the window can open */
.chat-widget {
  position: fixed;
  bottom: 90px;
  right: 28px;
  z-index: 300;
}
/* Chat window — position overridden by JS to anchor near Message button */
#chat-window {
  position: fixed;
  width: 320px;
  z-index: 400;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,0,0,0.07);
  overflow: hidden;
  flex-direction: column;
  background: white;
}

/* Responsive */
@media(max-width:1100px) {
  .nav-inner { padding: 12px 24px; gap: 8px; }
  .nav-link { font-size: 0.78rem; padding: 5px 7px; }
  .nav-cta { font-size: 0.78rem !important; padding: 9px 12px !important; }
  .matchmaker-inner { padding: 0 24px; }
}
@media(max-width:900px) {
  .match-desc { display: none; }
  .matchmaker-inner { padding: 0 16px; gap: 12px; }
}


/* ===========================
   SELF-CARE SLIDER
   =========================== */
.sc-slider-section {
  padding: 48px 0;
  background: var(--bg-warm);
  overflow: hidden;
}
.sc-slider-wrap {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  overflow: hidden;
}
.sc-slider {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.sc-slide {
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  background: white;
  border-radius: var(--r-md);
  padding: 18px 20px;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
  transition: box-shadow var(--t);
}
.sc-slide:hover { box-shadow: var(--shadow-md); }
.sc-slide-img {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}
.sc-slide-body { flex: 1; min-width: 0; }
.sc-slide-tag {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 4px;
}
.sc-slide-title {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 4px;
}
.sc-slide-meta { font-size: 0.75rem; color: var(--text-light); }
.sc-slider-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
}
.sc-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(15,96,107,0.2);
  border: none;
  cursor: pointer;
  transition: background var(--t), transform var(--t);
  padding: 0;
}
.sc-dot.active {
  background: var(--teal);
  transform: scale(1.3);
}

/* ===========================
   TESTIMONIALS — REDESIGNED
   =========================== */
.testimonials { padding: var(--section-py) 0; background: var(--bg-warm); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.testimonial-card {
  background: white;
  border-radius: var(--r-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform var(--t), box-shadow var(--t);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--teal);
  opacity: 0.12;
  position: absolute;
  top: 12px;
  left: 18px;
  line-height: 1;
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.featured-testimonial {
  background: var(--teal);
  border-color: transparent;
  grid-row: span 1;
}
.featured-testimonial::before { color: white; opacity: 0.2; }
.featured-testimonial .testimonial-stars { color: rgba(255,245,180,0.9); }
.featured-testimonial .testimonial-text { color: rgba(255,255,255,0.92); }
.featured-testimonial .testimonial-text em { color: white; font-style: normal; font-weight: 700; }
.featured-testimonial strong { color: white; }
.featured-testimonial span { color: rgba(255,255,255,0.65); }
.featured-testimonial .author-avatar { background: rgba(255,255,255,0.2) !important; }
.testimonial-stars { font-size: 0.85rem; color: #f4a725; letter-spacing: 1px; }
.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.testimonial-text em { font-style: normal; font-weight: 700; color: var(--text-dark); }
.testimonial-author { display: flex; align-items: center; gap: 10px; margin-top: auto; }
.author-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 0.78rem; flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.84rem; color: var(--text-dark); font-weight: 700; }
.testimonial-author span { display: block; font-size: 0.72rem; color: var(--text-light); }
@media(max-width:900px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:640px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ===========================
   MANNMUKT LOGO — BIGGER
   =========================== */
.mannmukt-logo-img {
  height: 120px !important;
  width: auto;
  mix-blend-mode: multiply;
}
.mannmukt-section {
  gap: 48px;
}

/* ===========================
   EXPERTISE BULLET — CLEAN DIAMOND
   =========================== */
.concern-signs li::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--peach);
  border-radius: 1px;
  transform: rotate(45deg);
  position: absolute;
  left: 0;
  top: 8px;
  flex-shrink: 0;
}

/* ===========================
   THERAPIST FEE (after approach)
   =========================== */
.t-fee {
  display: inline-block;
  background: rgba(15,96,107,0.08);
  color: var(--teal);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 20px;
  margin-top: 8px;
}

/* ===========================
   COUNTRY CODE SELECT
   =========================== */
.country-code-select {
  flex-shrink: 0;
  padding: 12px 8px;
  border: 1.5px solid rgba(0,0,0,.1);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.88rem;
  background: #faf9f6;
  outline: none;
  cursor: pointer;
  transition: border-color .2s;
  width: 100px;
}
.country-code-select:focus { border-color: var(--teal); background: white; }

/* ===========================
   FOOTER — REMOVE EXPLORE COL
   =========================== */
.footer-inner {
  grid-template-columns: 1.6fr 0.6fr 1fr;
  gap: 48px;
}

/* Footer logo row */
.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.footer-logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  flex-shrink: 0;
}
.footer-logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.footer-brand-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: white;
  line-height: 1.1;
  text-align: center;
}
.footer-tagline {
  font-size: 0.48rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--peach);
  font-weight: 700;
  white-space: nowrap;
  text-align: center;
}

/* Social icons — no circle, just brand SVG */
.footer-social-icons {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  align-items: center;
}
.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 5px;
  overflow: hidden;
  text-decoration: none;
  opacity: 0.88;
  transition: opacity var(--t), transform var(--t);
  background: none;
  border: none;
}
.footer-social-icon:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.footer-social-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

/* Mannmukt column */
.footer-mannmukt-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
}
.footer-mannmukt-logo-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.footer-mannmukt-logo {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
}

@media(max-width:900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media(max-width:640px) {
  .footer-inner { grid-template-columns: 1fr; }
}


/* ===========================
   REVIEWS + SELF-CARE SIDE BY SIDE
   =========================== */
.reviews-selfcare-section {
  padding: var(--section-py) 0;
  background: var(--bg-warm);
}
.reviews-selfcare-section .section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Shared scroll container */
.reviews-scroll-outer {
  height: 520px;
  overflow: hidden;
  position: relative;
  border-radius: var(--r-lg);
  /* fade top and bottom */
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 8%, black 92%, transparent 100%);
}
.reviews-scroll-outer:hover .reviews-scroll-track,
.reviews-scroll-outer:hover .selfcare-scroll-track {
  animation-play-state: paused;
}

/* Reviews track — scrolls upward */
.reviews-scroll-track {
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: scroll-up 28s linear infinite;
}
@keyframes scroll-up {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

/* Self-care track — scrolls upward slightly slower */
.selfcare-scroll-track {
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: scroll-up-sc 32s linear infinite;
}
@keyframes scroll-up-sc {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

/* Review card */
.review-card {
  background: white;
  border-radius: var(--r-md);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
  flex-shrink: 0;
  position: relative;
}
.review-card::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--teal);
  opacity: 0.1;
  position: absolute;
  top: 8px;
  left: 16px;
  line-height: 1;
}
.review-featured {
  background: var(--teal);
  border-color: transparent;
}
.review-featured p { color: rgba(255,255,255,0.92); }
.review-featured strong { color: white; }
.review-featured span { color: rgba(255,255,255,0.65); }
.review-featured .review-avatar { background: rgba(255,255,255,0.2) !important; }
.review-featured .review-stars { color: rgba(255,245,180,0.9); }
.review-stars { font-size: 0.82rem; color: #f4a725; margin-bottom: 10px; }
.review-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 14px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.72rem;
  flex-shrink: 0;
}
.review-author strong { display: block; font-size: 0.82rem; color: var(--text-dark); }
.review-author span { font-size: 0.72rem; color: var(--text-light); }

/* Self-care vertical card */
.sc-vert-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: white;
  border-radius: var(--r-md);
  padding: 16px 18px;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
  flex-shrink: 0;
  transition: box-shadow var(--t);
}
.sc-vert-card:hover { box-shadow: var(--shadow-md); }
.sc-vert-img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.sc-vert-body { flex: 1; min-width: 0; }
.sc-vert-tag {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 3px;
}
.sc-vert-title {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 3px;
}
.sc-vert-meta { font-size: 0.72rem; color: var(--text-light); }

@media(max-width:900px) {
  .reviews-selfcare-section .section-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .reviews-scroll-outer { height: 400px; }
}

/* ===========================
   CONCERN CHECKBOXES
   =========================== */
.concern-checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 4px;
}
.concern-cb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  transition: border-color var(--t), background var(--t);
  background: #faf9f6;
  user-select: none;
}
.concern-cb:hover {
  border-color: var(--teal);
  background: rgba(15,96,107,0.04);
}
.concern-cb input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--teal);
  flex-shrink: 0;
  cursor: pointer;
}
.concern-cb:has(input:checked) {
  border-color: var(--teal);
  background: rgba(15,96,107,0.08);
  color: var(--teal);
  font-weight: 600;
}
@media(max-width:480px) {
  .concern-checkbox-grid { grid-template-columns: 1fr; }
}

/* ===========================
   PHONE CODE SELECT — FULL WIDTH
   =========================== */
.phone-code-select {
  min-width: 160px;
  max-width: 200px;
  padding: 12px 10px;
  border: 1.5px solid rgba(0,0,0,.1);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.88rem;
  background: #faf9f6;
  outline: none;
  cursor: pointer;
  transition: border-color var(--t);
}
.phone-code-select:focus { border-color: var(--teal); background: white; }


/* Concern Checkbox Cards */
.concern-checkbox-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--bg);
  border: 2px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
}
.concern-checkbox-card:hover {
  border-color: var(--teal);
  background: rgba(15,96,107,0.04);
}
.concern-checkbox-card input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--teal);
}
.concern-checkbox-card input[type="checkbox"]:checked + .concern-checkbox-label {
  font-weight: 700;
  color: var(--teal);
}
.concern-checkbox-card:has(input:checked) {
  border-color: var(--teal);
  background: rgba(15,96,107,0.08);
}
.concern-checkbox-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
}


/* ===========================
   TEAM PAGE BUTTONS
   =========================== */
.btn-book-session-white {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: white;
  color: var(--blue);
  padding: 13px 26px;
  border-radius: var(--r-pill);
  font-size: 0.9rem;
  font-weight: 600;
  transition: background var(--t), transform var(--t), box-shadow var(--t), color var(--t);
  white-space: nowrap;
  border: 2px solid white;
  cursor: pointer;
  text-decoration: none;
}
.btn-book-session-white:hover {
  background: var(--teal);
  color: white;
  border-color: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15,96,107,0.3);
}

.btn-view-profile-brown {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue);
  color: white;
  padding: 13px 26px;
  border-radius: var(--r-pill);
  font-size: 0.9rem;
  font-weight: 600;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
  white-space: nowrap;
  border: 2px solid var(--blue);
  cursor: pointer;
  text-decoration: none;
}
.btn-view-profile-brown:hover {
  background: var(--peach);
  color: var(--blue-dark);
  border-color: var(--peach);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(213,154,63,0.3);
}

/* ===========================
   EXPERTISE PAGE BUTTONS
   =========================== */
/* Teal background cards - teal book button, brown who button */
.btn-book-teal {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--teal);
  color: white;
  padding: 12px 24px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: 0.3s;
  border: 2px solid var(--teal);
}
.btn-book-teal:hover {
  background: white;
  color: var(--teal);
  border-color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.3);
}

.btn-who-brown {
  background: var(--blue);
  color: white;
  padding: 12px 24px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: 0.3s;
  border: 2px solid var(--blue);
}
.btn-who-brown:hover {
  background: var(--peach);
  color: var(--blue-dark);
  border-color: var(--peach);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(213,154,63,0.3);
}

/* Brown background cards - brown book button, teal who button */
.btn-book-brown {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue);
  color: white;
  padding: 12px 24px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: 0.3s;
  border: 2px solid var(--blue);
}
.btn-book-brown:hover {
  background: white;
  color: var(--blue);
  border-color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.3);
}

.btn-who-teal {
  background: var(--teal);
  color: white;
  padding: 12px 24px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: 0.3s;
  border: 2px solid var(--teal);
}
.btn-who-teal:hover {
  background: var(--peach);
  color: var(--blue-dark);
  border-color: var(--peach);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(213,154,63,0.3);
}


/* ===========================
   EXPERT CARD BUTTONS
   =========================== */
.expert-card-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.expert-card-btns .btn-outline {
  flex: 1;
  justify-content: center;
  font-size: 0.8rem;
  padding: 8px 12px;
}
.expert-card-btns .btn-primary {
  flex: 1;
  justify-content: center;
  font-size: 0.8rem;
  padding: 8px 12px;
}

/* ===========================
   REVIEWS HORIZONTAL SCROLL
   =========================== */
.reviews-section {
  padding: var(--section-py) 0;
  background: var(--bg-warm);
}
.reviews-horizontal-wrap {
  position: relative;
  margin-top: 8px;
}
.reviews-horizontal-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 8px 4px 16px;
  scrollbar-width: none;
  cursor: grab;
}
.reviews-horizontal-track:active { cursor: grabbing; }
.reviews-horizontal-track::-webkit-scrollbar { display: none; }
.reviews-horizontal-track .review-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  min-width: 280px;
}
.reviews-scroll-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
  color: var(--text-light);
  font-size: 0.85rem;
}
.scroll-arrow {
  font-size: 1rem;
  color: var(--teal);
  opacity: 0.6;
  animation: arrow-pulse 1.8s ease-in-out infinite;
}
.scroll-arrow:last-child { animation-delay: 0.4s; }
@keyframes arrow-pulse {
  0%, 100% { opacity: 0.3; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(3px); }
}
.scroll-arrow:first-child {
  animation-name: arrow-pulse-left;
}
@keyframes arrow-pulse-left {
  0%, 100% { opacity: 0.3; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(-3px); }
}
.scroll-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}
.scroll-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--text-light);
  transition: background 0.3s, transform 0.3s;
}
.scroll-dot.active {
  background: var(--teal);
  transform: scale(1.4);
}

/* ===========================
   STATS — moved after team
   =========================== */
.stats { padding: var(--section-py) 0; background: var(--bg); }

/* ===========================
/* ===========================
   EXPERTS HEADER — CENTER
   =========================== */
.experts-header {
  text-align: center;
  display: block;
  margin-bottom: 40px;
}
.experts-header .section-title,
.experts-header .section-eyebrow,
.experts-header .section-subtitle {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ===========================
   REVIEW CARDS — horizontal layout
   =========================== */
.review-card {
  background: white;
  border-radius: var(--r-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
  border-left: 4px solid transparent;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--teal);
}
.review-card.review-featured {
  border-left-color: var(--peach);
}
.review-stars { color: #f4a725; font-size: 0.9rem; margin-bottom: 12px; letter-spacing: 1px; font-family: "Segoe UI Symbol", "Apple Color Emoji", "Noto Color Emoji", Arial, sans-serif; }
.review-card p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 16px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; color: white; flex-shrink: 0;
}
.review-author strong { display: block; font-size: 0.85rem; color: var(--text-dark); }
.review-author span { font-size: 0.75rem; color: var(--text-light); }


/* ===========================
   WHATSAPP FAB — ALWAYS VISIBLE
   =========================== */
.whatsapp-fab {
  position: fixed !important;
  bottom: 28px !important;
  right: 28px !important;
  width: 58px !important;
  height: 58px !important;
  background: #25d366 !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45) !important;
  z-index: 500 !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
  text-decoration: none !important;
}
.whatsapp-fab:hover {
  transform: scale(1.1) !important;
  box-shadow: 0 8px 30px rgba(37,211,102,0.6) !important;
}

/* ===========================
   MATCHMAKER LEFT — desktop
   =========================== */
.matchmaker-left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.matchmaker-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: nowrap;
}


/* ===========================
   NAV MOBILE BUTTONS — hidden by default, shown via mobile.css
   =========================== */
.nav-mobile-btns {
  display: none;
}

/* ===========================
   MATCHMAKER LEFT — desktop layout
   =========================== */
.matchmaker-left {
  display: flex;
  align-items: center;
  gap: 8px;
}


/* ===========================
   HERO / HOW-IT-WORKS BUTTONS
   Free Intro Session: white bg → teal on hover
   Book a Session: brown bg → teal on hover
   =========================== */
.btn-hero-free {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 56px;
  min-width: 200px;
  padding: 0 32px;
  border-radius: var(--r-pill);
  font-size: 1rem;
  font-weight: 700;
  transition: all var(--t);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  background: white;
  color: var(--blue);
  border: 2px solid white;
}
.btn-hero-free:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(15,96,107,0.3);
}

.btn-hero-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 56px;
  min-width: 200px;
  padding: 0 32px;
  border-radius: var(--r-pill);
  font-size: 1rem;
  font-weight: 700;
  transition: all var(--t);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  background: var(--blue);
  color: white;
  border: 2px solid var(--blue);
}
.btn-hero-book:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(15,96,107,0.3);
}

/* ===========================
   EXPERTISE PAGE BUTTONS — CORRECTED
   Teal cards:
     Book a Session = transparent, white border → hover: white bg, teal border
     Who can help = brown bg → hover: yellow
   Brown cards:
     Book a Session = transparent, white border → hover: white bg, brown border
     Who can help = teal bg → hover: yellow
   =========================== */

/* TEAL CARD — Book a Session */
.btn-book-teal {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: 0.3s;
  background: transparent;
  color: white;
  border: 2px solid white;
}
.btn-book-teal:hover {
  background: white;
  color: var(--teal);
  border-color: var(--teal);
}

/* TEAL CARD — Who can help */
.btn-who-brown {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: 0.3s;
  background: var(--blue);
  color: white;
  border: 2px solid var(--blue);
}
.btn-who-brown:hover {
  background: var(--peach);
  border-color: var(--peach);
  color: var(--blue-dark);
}

/* BROWN CARD — Book a Session */
.btn-book-brown {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: 0.3s;
  background: transparent;
  color: white;
  border: 2px solid white;
}
.btn-book-brown:hover {
  background: white;
  color: #4A3525;
  border-color: #4A3525;
}

/* BROWN CARD — Who can help */
.btn-who-teal {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: 0.3s;
  background: var(--teal);
  color: white;
  border: 2px solid var(--teal);
}
.btn-who-teal:hover {
  background: var(--peach);
  border-color: var(--peach);
  color: var(--blue-dark);
}


/* ===========================
   EXPERTISE BUTTONS — FINAL OVERRIDE
   Teal cards:
     Book a Session = brown filled → hover: white bg + teal border
     Who can help   = white outline → hover: white bg + teal border
   Brown cards:
     Book a Session = teal filled → hover: white bg + brown border
     Who can help   = white outline → hover: white bg + brown border
   =========================== */
.btn-book-teal {
  background: var(--blue) !important;
  color: white !important;
  border: 2px solid var(--blue) !important;
  padding: 12px 24px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  transition: 0.3s;
}
.btn-book-teal:hover {
  background: white !important;
  color: var(--teal) !important;
  border-color: var(--teal) !important;
}

.btn-who-brown {
  background: transparent !important;
  color: white !important;
  border: 2px solid white !important;
  padding: 12px 24px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  transition: 0.3s;
}
.btn-who-brown:hover {
  background: white !important;
  color: var(--teal) !important;
  border-color: var(--teal) !important;
}

.btn-book-brown {
  background: var(--teal) !important;
  color: white !important;
  border: 2px solid var(--teal) !important;
  padding: 12px 24px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  transition: 0.3s;
}
.btn-book-brown:hover {
  background: white !important;
  color: #4A3525 !important;
  border-color: #4A3525 !important;
}

.btn-who-teal {
  background: transparent !important;
  color: white !important;
  border: 2px solid white !important;
  padding: 12px 24px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  transition: 0.3s;
}
.btn-who-teal:hover {
  background: white !important;
  color: #4A3525 !important;
  border-color: #4A3525 !important;
}


/* ===========================
   EXPERTISE — Book a Session: white filled, subtle highlight on hover
   =========================== */
.btn-book-teal,
.btn-book-brown {
  background: white !important;
  color: var(--teal) !important;
  border: 2px solid white !important;
}
.btn-book-teal:hover,
.btn-book-brown:hover {
  background: rgba(255,255,255,0.82) !important;
  color: var(--teal) !important;
  border-color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,255,255,0.25) !important;
}
