/* ============================================================
   DOTSITE — Shared Stylesheet
   PPC Agency for Dental Practices
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --canvas:      #F5F0E8;
  --deep-teal:   #0A5C47;
  --mid-teal:    #1D9E75;
  --teal-tint:   #D4EDE4;
  --light-teal:  #5DCAA5;
  --dark-ink:    #0F2E26;
  --body-text:   #3D4845;
  --muted:       rgba(15, 46, 38, 0.45);
  --hairline:    rgba(15, 46, 38, 0.10);
  --white:       #FFFFFF;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --max:   1440px;
  --pad-x: 88px;

  --t-fast: 180ms;
  --t-std:  320ms;
  --t-reveal: 600ms;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  background: var(--canvas);
  color: var(--body-text);
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
h1, h2, h3, p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Layout ---------- */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.section { padding: 100px 0; }

/* ---------- Type ---------- */
.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid-teal);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
}
.eyebrow.on-dark { color: rgba(255,255,255,0.5); }
.eyebrow.on-dark.bright { color: rgba(255,255,255,0.92); }
.eyebrow.light-teal { color: var(--light-teal); }
.eyebrow .dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--mid-teal); display: inline-block;
}

h1.display {
  font-size: 58px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--dark-ink);
}
h2.headline {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: var(--dark-ink);
  max-width: 640px;
}
h3.subhead {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: var(--dark-ink);
}
.teal { color: var(--mid-teal); }

/* page-title — used on Contact & legal hero H1s (responsive, replaces inline 48px) */
h1.display.page-title { font-size: 48px; line-height: 1.1; }
.subtext {
  font-size: 16px;
  line-height: 1.7;
  color: var(--body-text);
  max-width: 480px;
  margin-top: 20px;
}
.on-dark .subtext,
.subtext.on-dark { color: rgba(255,255,255,0.6); }
.caption {
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: none;
  border-radius: 100px;
  padding: 14px 26px;
  transition: transform 220ms var(--ease),
              background 220ms var(--ease),
              box-shadow 220ms var(--ease);
}
.btn-primary {
  background: var(--mid-teal);
  color: var(--white);
}
.btn-primary .arrow { transition: transform 220ms var(--ease); }
.btn-primary:hover {
  background: var(--deep-teal);
  transform: scale(1.03);
  box-shadow: 0 0 0 4px rgba(29,158,117,0.2);
}
.btn-primary:hover .arrow { transform: translateX(4px); }
.btn-primary:active {
  transform: scale(0.97);
  box-shadow: none;
  transition-duration: 100ms;
}
.btn-ghost {
  background: transparent;
  color: var(--muted);
  padding: 14px 18px;
}
.btn-ghost:hover { color: var(--dark-ink); }
.btn-ghost .wa { color: var(--mid-teal); display: inline-flex; }
.btn-outline-light {
  background: transparent;
  border: 0.5px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.55);
}
.btn-outline-light:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
  transform: scale(1.03);
}
.cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background: transparent;
  border-bottom: 0.5px solid transparent;
  transition: background var(--t-std) var(--ease),
              border-color var(--t-std) var(--ease),
              backdrop-filter var(--t-std) var(--ease);
  animation: navDown 400ms var(--ease) both;
}
@keyframes navDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.teal-word { display: inline-block; }
.nav.scrolled {
  background: rgba(245,240,232,0.88);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 0.5px solid var(--hairline);
}
.nav.scrolled.over-teal {
  background: rgba(10,92,71,0.88);
  border-bottom-color: rgba(255,255,255,0.12);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--deep-teal);
  display: inline-flex;
  align-items: center;
}
.logo-img { height: 22px; width: auto; display: block; }
.footer .logo-img { height: 26px; }
.nav.over-teal .logo-img { filter: brightness(0) invert(1); }
.nav.over-teal .logo { color: #fff; }
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-size: 14px;
  letter-spacing: 0.01em;
  color: var(--muted);
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
  transition: color var(--t-fast) var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--mid-teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms var(--ease);
}
.nav-links a:hover { color: var(--dark-ink); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav.over-teal .nav-links a { color: rgba(255,255,255,0.6); }
.nav.over-teal .nav-links a:hover { color: #fff; }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav .btn-primary { padding: 10px 20px; font-size: 14px; }

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  min-width: 44px;
  min-height: 44px;
  box-sizing: border-box;
}
.hamburger span {
  width: 20px; height: 2px;
  background: var(--dark-ink);
  display: block;
  transition: transform var(--t-std) var(--ease), opacity var(--t-std) var(--ease);
}
.nav.over-teal .hamburger span { background: #fff; }

/* mobile overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--deep-teal);
  transform: translateY(-100%);
  transition: transform 420ms var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #fff;
}
.mobile-menu .close {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 34px;
  color: #fff;
  background: none; border: none;
  line-height: 1;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu .btn-primary { margin-top: 8px; font-size: 17px; padding: 14px 28px; }

/* ============================================================
   MOTION — Scroll reveal & hero
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--t-reveal) var(--ease),
              transform var(--t-reveal) var(--ease);
  transition-delay: var(--delay, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* clip-path headline reveal */
.clip-reveal {
  clip-path: inset(0 0 100% 0);
  opacity: 0;
  transition: clip-path 700ms var(--ease), opacity 700ms var(--ease);
  transition-delay: var(--delay, 0ms);
}
.clip-reveal.is-visible {
  clip-path: inset(0 0 0% 0);
  opacity: 1;
}

/* teal word pulse */
@keyframes teal-pulse {
  0%   { transform: scale(1); text-shadow: none; }
  40%  { transform: scale(1.04); text-shadow: 0 0 40px rgba(29,158,117,0.35); }
  100% { transform: scale(1); text-shadow: none; }
}
.teal-pulse {
  display: inline-block;
  animation: teal-pulse 600ms var(--ease) both;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 130px 0 90px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29,158,117,0.10) 0%, rgba(29,158,117,0) 70%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: none; }
.hero-top {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 64px;
  align-items: center;
}
.hero-copy { max-width: 620px; }

/* hero visual */
.hero-visual {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 460px;
}
.hero-illus {
  width: 100%;
  height: 520px;
  border-radius: 18px;
  background:
    radial-gradient(120% 120% at 70% 25%, rgba(29,158,117,0.10) 0%, rgba(29,158,117,0) 55%),
    var(--teal-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-illus img {
  width: 96%;
  height: 96%;
  object-fit: contain;
  display: block;
}
.float-card {
  position: absolute;
  background: var(--white);
  border: 0.5px solid var(--hairline);
  border-radius: 14px;
  z-index: 2;
}
.live-pill {
  top: 20px; left: -20px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--dark-ink);
}
.live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--mid-teal);
  position: relative;
}
.live-dot::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  background: var(--mid-teal);
  animation: livePulse 2000ms var(--ease) infinite;
}
@keyframes livePulse {
  0%   { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(2.6); opacity: 0; }
}
.results-card {
  bottom: 28px; left: -32px;
  padding: 16px 18px;
  width: 196px;
}
.results-card .rc-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.results-card .rc-num {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--mid-teal);
  line-height: 1;
  margin-top: 9px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.results-card .rc-sub {
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0;
}
.rc-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 26px;
  margin-top: 13px;
}
.rc-bars span {
  flex: 1;
  background: var(--teal-tint);
  border-radius: 2px;
  height: 40%;
}
.rc-bars span:nth-child(2) { height: 58%; }
.rc-bars span.on { background: var(--mid-teal); }
.rc-bars span:nth-child(3) { height: 70%; }
.rc-bars span:nth-child(4) { height: 84%; }
.rc-bars span:nth-child(5) { height: 100%; }
.hero h1 .line { display: block; overflow: hidden; }
.hero .subordinate {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: rgba(15,46,38,0.4);
  margin-top: 10px;
}
.hero .body {
  font-size: 16px;
  color: var(--body-text);
  max-width: 460px;
  margin-top: 26px;
  line-height: 1.7;
}

/* proof strip */
.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 0.5px solid var(--hairline);
  border-radius: 14px;
  max-width: 580px;
  margin-top: 40px;
  overflow: hidden;
}
.proof-stat {
  padding: 18px 16px;
  border-left: 0.5px solid var(--hairline);
  text-align: left;
  min-width: 0;
}
.proof-stat:first-child { border-left: none; }
.proof-stat .num {
  font-size: 28px;
  font-weight: 500;
  color: var(--mid-teal);
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
}
.proof-stat .typewriter {
  white-space: nowrap;
}
.tw-cursor {
  display: inline-block;
  width: 2px;
  height: 0.95em;
  margin-left: 2px;
  background: var(--mid-teal);
  vertical-align: -0.06em;
  animation: tw-blink 1s steps(1) infinite;
}
@keyframes tw-blink {
  0%, 50%  { opacity: 1; }
  50.01%, 100% { opacity: 0; }
}
.proof-stat .lbl {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-top: 8px;
}

/* logo ticker */
.hero-ticker { margin-top: 44px; }
.ticker-label {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 16px;
}
.ticker {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.ticker-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: ticker 24s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.logo-pill {
  flex: none;
  padding: 9px 18px;
  border: 0.5px solid var(--hairline);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--dark-ink);
  background: var(--white);
  white-space: nowrap;
  transition: transform 200ms var(--ease);
}
.logo-pill:hover { transform: scale(1.05); }

/* ============================================================
   DEEP TEAL SECTION (How it Works / Values)
   ============================================================ */
.teal-section {
  background: var(--deep-teal);
  color: #fff;
  position: relative;
}
.teal-section .headline,
.teal-section h2 { color: #fff; }
.top-line {
  position: absolute;
  top: 0; left: 0;
  height: 1px;
  width: 0;
  background: rgba(93,202,165,0.6);
  transition: width 400ms var(--ease);
}
.top-line.is-visible { width: 100%; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.step-card {
  background: rgba(245,240,232,0.07);
  border: 0.5px solid rgba(245,240,232,0.12);
  border-radius: 14px;
  padding: 22px;
}
.step-card .num {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--light-teal);
}
.step-card .icon {
  margin: 16px 0 14px;
  color: var(--light-teal);
}
.step-card .icon svg { width: 22px; height: 22px; }
.step-card .title {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 8px;
}
.step-card .desc {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
}

/* ============================================================
   GUARANTEE SECTION
   ============================================================ */
.guarantee-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 700px;
  margin-top: 56px;
}
.g-card {
  background: var(--white);
  border-left: 3px solid var(--mid-teal);
  border-radius: 14px;
  padding: 26px 28px;
  transition: transform 240ms var(--ease),
              border-left-width 240ms var(--ease),
              background 240ms var(--ease);
}
.g-card:hover {
  transform: translateY(-4px);
  border-left-width: 5px;
  background: rgba(212,237,228,0.3);
}
.g-card .title {
  font-size: 18px;
  font-weight: 500;
  color: var(--dark-ink);
  margin-bottom: 10px;
}
.g-card .body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--body-text);
}

/* ============================================================
   RESULTS SECTION (teal tint)
   ============================================================ */
.tint-section { background: var(--teal-tint); }
.tint-section, .closing { position: relative; }
.tint-section .top-line { background: var(--mid-teal); opacity: 0.5; }

/* ambient values background */
.teal-section .container { position: relative; z-index: 1; }
.values-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: radial-gradient(120% 100% at 50% 40%, #000 55%, transparent 100%);
  mask-image: radial-gradient(120% 100% at 50% 40%, #000 55%, transparent 100%);
}
.values-bg::before { content: none; }

/* "audience targeting" concentric rings — focal motif */
.vbg-plus {
  position: absolute;
  top: 46%;
  right: 4%;
  width: 0; height: 0;
  will-change: transform;
}
.vbg-plus i {
  position: absolute;
  top: 0; left: 0;
  border: 1px solid rgba(93, 202, 165, 0.16);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: targetBreathe 7s ease-in-out infinite;
}
.vbg-plus i:nth-child(1) { width: 150px; height: 150px; }
.vbg-plus i:nth-child(2) { width: 330px; height: 330px; border-color: rgba(93, 202, 165, 0.11); animation-delay: .7s; }
.vbg-plus i:nth-child(3) { width: 530px; height: 530px; border-color: rgba(93, 202, 165, 0.07); animation-delay: 1.4s; }
.vbg-plus b {
  position: absolute;
  top: 0; left: 0;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(93, 202, 165, 0.55);
  transform: translate(-50%, -50%);
}
@keyframes targetBreathe {
  0%, 100% { opacity: 0.65; }
  50%      { opacity: 1; }
}

/* scattered data points */
.vbg-ring {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}
.vbg-ring.r1 { width: 10px; height: 10px; background: rgba(93, 202, 165, 0.32); top: 24%; left: 11%; }
.vbg-ring.r2 { width: 6px;  height: 6px;  background: rgba(93, 202, 165, 0.22); bottom: 24%; left: 32%; }
.vbg-ring.r3 { width: 16px; height: 16px; border: 1px solid rgba(93, 202, 165, 0.24); top: 64%; left: 58%; }
.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.metric-card {
  background: var(--white);
  border: 0.5px solid var(--hairline);
  border-radius: 16px;
  padding: 28px;
}
.metric-card .num {
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--mid-teal);
  line-height: 1;
}
.metric-card .lbl {
  font-size: 13px;
  color: var(--muted);
  margin-top: 14px;
  max-width: 220px;
}
.quote-card {
  background: var(--white);
  border-left: 3px solid var(--mid-teal);
  border-radius: 16px;
  padding: 36px 40px;
  margin-top: 16px;
  position: relative;
  max-width: 760px;
}
.quote-card .mark {
  font-size: 72px;
  font-weight: 600;
  color: var(--mid-teal);
  line-height: 0.6;
  display: block;
  margin-bottom: 8px;
  transform: scale(0.8);
  transform-origin: left center;
  transition: transform var(--t-reveal) var(--ease);
}
.quote-card.is-visible .mark { transform: scale(1); }
.quote-card .quote {
  font-size: 18px;
  font-style: italic;
  color: var(--dark-ink);
  line-height: 1.6;
  max-width: 600px;
}
.quote-card .attr {
  font-size: 13px;
  color: var(--muted);
  margin-top: 20px;
  font-style: normal;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section { position: relative; overflow: hidden; }
.faq-section .container { position: relative; z-index: 1; }

/* dental-themed parallax background */
.faq-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: radial-gradient(130% 110% at 60% 45%, #000 50%, transparent 100%);
  mask-image: radial-gradient(130% 110% at 60% 45%, #000 50%, transparent 100%);
}
.faq-tooth {
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231D9E75' stroke-width='0.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 5.5c-1.4 -1 -3.4 -1.5 -5 -1c-2.5 .8 -3.5 3 -3 6c.3 1.8 .8 3.5 1.5 5.2c.5 1.3 1 2.8 2 3.3c1.2 .6 2 -.8 2.2 -2c.3 -1.8 .3 -3.5 1.3 -3.5s1 1.7 1.3 3.5c.2 1.2 1 2.6 2.2 2c1 -.5 1.5 -2 2 -3.3c.7 -1.7 1.2 -3.4 1.5 -5.2c.5 -3 -.5 -5.2 -3 -6c-1.6 -.5 -3.6 0 -5 1z'/%3E%3C/svg%3E");
  will-change: transform;
}
.faq-tooth.t1 { width: 230px; height: 230px; top: 6%;  right: 5%;  opacity: 0.5; }
.faq-tooth.t2 { width: 130px; height: 130px; bottom: 8%; right: 24%; opacity: 0.32; }
.faq-dot {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}
.faq-dot.d1 { width: 9px;  height: 9px;  background: rgba(29,158,117,0.28); top: 22%; right: 30%; }
.faq-dot.d2 { width: 6px;  height: 6px;  background: rgba(29,158,117,0.20); bottom: 30%; right: 8%; }
.faq-dot.d3 { width: 14px; height: 14px; border: 1px solid rgba(29,158,117,0.22); top: 58%; right: 40%; }

.faq-list {
  max-width: 860px;
  margin-top: 48px;
  border-top: 0.5px solid var(--hairline);
}
.faq-item {
  border-bottom: 0.5px solid var(--hairline);
  border-left: 2px solid transparent;
  transition: border-left-color 300ms var(--ease), background 300ms var(--ease);
}
.faq-item.open {
  border-left-color: var(--mid-teal);
  background: rgba(212,237,228,0.25);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 20px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--dark-ink);
}
.faq-q .chev {
  flex: none;
  color: var(--mid-teal);
  font-size: 22px;
  transition: transform 350ms var(--ease);
}
.faq-item.open .faq-q .chev { transform: rotate(90deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 350ms var(--ease);
}
.faq-item.open .faq-a { max-height: 320px; }
.faq-a-inner {
  padding: 0 20px 24px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--body-text);
  max-width: 620px;
}

/* ============================================================
   CLOSING CTA (dark ink)
   ============================================================ */
.closing {
  background: var(--dark-ink);
  color: #fff;
  text-align: center;
  padding: 120px 0;
}
.closing h2 {
  font-size: 60px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: #fff;
  max-width: 900px;
  margin: 0 auto;
}
.closing .subtext {
  color: rgba(255,255,255,0.5);
  margin: 22px auto 0;
  max-width: 600px;
  font-size: 18px;
}
.closing .cta-row { justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--canvas);
  padding: 72px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 40px;
}
.footer .logo { display: inline-block; margin-bottom: 12px; }
.footer-tag { font-size: 13px; color: var(--muted); max-width: 220px; }
.footer-col h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin: 0 0 16px;
  font-weight: 500;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13px; color: var(--body-text); transition: color var(--t-fast); }
.footer-col a:hover { color: var(--mid-teal); }
.footer-socials { display: flex; gap: 14px; margin-top: 8px; }
.footer-socials a {
  color: var(--body-text);
  display: inline-flex;
  transition: transform 180ms var(--ease), color 180ms var(--ease);
}
.footer-socials a:hover { transform: scale(1.15); color: var(--mid-teal); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 0.5px solid var(--hairline);
}
.footer-bottom span { font-size: 11px; color: var(--muted); }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--deep-teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 150;
  transform: scale(0);
  transition: transform 200ms var(--ease);
}
.wa-float.in { animation: wa-pop 500ms var(--spring) forwards; }
@keyframes wa-pop { to { transform: scale(1); } }
.wa-float:hover { transform: scale(1.1); }
.wa-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--deep-teal);
  opacity: 0;
}
.wa-float.in:hover::before { animation: wa-pulse 2000ms var(--ease) infinite; }
@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.6); opacity: 0; }
}
.wa-float svg { width: 26px; height: 26px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.founder-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
  margin-top: 8px;
}
.founder-card {
  background: var(--white);
  border: 0.5px solid var(--hairline);
  border-radius: 16px;
  padding: 30px;
  position: relative;
}
.fc-mark {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--teal-tint);
  color: var(--deep-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
}
.fc-name {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--dark-ink);
}
.fc-role {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-teal);
  margin-top: 6px;
}
.fc-divider { height: 0.5px; background: var(--hairline); margin: 24px 0; }
.fc-facts { margin: 0; display: flex; flex-direction: column; gap: 15px; }
.fc-facts > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.fc-facts dt { margin: 0; font-size: 13px; color: var(--muted); }
.fc-facts dd { margin: 0; font-size: 14px; font-weight: 500; color: var(--dark-ink); text-align: right; }
.founder-story p { margin-bottom: 18px; font-size: 16px; line-height: 1.75; }
.convictions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}
.conviction {
  font-size: 16px;
  font-weight: 500;
  color: var(--dark-ink);
  border-left: 3px solid var(--mid-teal);
  padding: 4px 0 4px 16px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.value-card {
  background: rgba(245,240,232,0.07);
  border: 0.5px solid rgba(245,240,232,0.12);
  border-radius: 14px;
  padding: 28px;
}
.value-card .title { font-size: 18px; font-weight: 500; color: #fff; margin-bottom: 12px; }
.value-card .desc { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.55); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  margin-top: 8px;
}
.booking-card h3 { margin-bottom: 8px; }
.form {
  background: var(--white);
  border: 0.5px solid var(--hairline);
  border-radius: 16px;
  padding: 32px;
  margin-top: 24px;
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  color: var(--dark-ink);
  background: var(--canvas);
  border: 0.5px solid var(--hairline);
  border-radius: 10px;
  padding: 13px 14px;
  transition: border-color 180ms var(--ease), background 180ms var(--ease);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--mid-teal);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 90px; }
.form .btn-primary { width: 100%; justify-content: center; margin-top: 4px; }

/* preferred date + time slots */
.slot-block { margin-bottom: 18px; }
.field input[type="date"] {
  appearance: none;
  color: var(--dark-ink);
}
.field input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0.5;
  cursor: pointer;
}
.slot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.slot {
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-ink);
  background: var(--canvas);
  border: 0.5px solid var(--hairline);
  border-radius: 10px;
  padding: 11px 6px;
  transition: color 180ms var(--ease), background 180ms var(--ease),
              border-color 180ms var(--ease), transform 180ms var(--ease);
}
.slot:hover {
  border-color: var(--mid-teal);
  color: var(--mid-teal);
}
.slot.selected {
  background: var(--mid-teal);
  border-color: var(--mid-teal);
  color: #fff;
  transform: scale(1.02);
}
.slot-note {
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
  margin-top: 10px;
}
.form-success {
  display: none;
  font-size: 14px;
  color: var(--mid-teal);
  margin-top: 14px;
  text-align: center;
}
.form-success.show { display: block; }
.form-success.is-error { color: #b4452f; }

.contact-info .wa-big {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--mid-teal);
  color: #fff;
  border-radius: 100px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 500;
  transition: transform 220ms var(--ease), background 220ms var(--ease), box-shadow 220ms var(--ease);
}
.contact-info .wa-big:hover {
  background: var(--deep-teal);
  transform: scale(1.03);
  box-shadow: 0 0 0 4px rgba(29,158,117,0.2);
}
.contact-info .wa-note { font-size: 13px; color: var(--muted); margin-top: 12px; }
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 0;
  border-bottom: 0.5px solid var(--hairline);
}
.contact-detail .k { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.contact-detail .v { font-size: 16px; color: var(--dark-ink); font-weight: 500; }
.contact-detail .v:hover { color: var(--mid-teal); }
.reassure {
  font-size: 15px;
  line-height: 1.7;
  color: var(--body-text);
  margin-top: 28px;
  max-width: 360px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1099px) {
  :root { --pad-x: 48px; }
  h1.display { font-size: 50px; }
  h1.display.page-title { font-size: 42px; }
  h2.headline { font-size: 34px; }
  .closing h2 { font-size: 48px; }
  .hero-top { gap: 44px; }
  .hero-visual { max-width: 340px; }
  .hero-illus { height: 430px; }
}
@media (max-width: 768px) {
  :root { --pad-x: 20px; }
  .section { padding: 64px 0; }
  .hero { padding: 110px 0 64px; }
  h1.display { font-size: 38px; }
  h1.display.page-title { font-size: 30px; }
  h2.headline { font-size: 30px; }
  .closing { padding: 80px 0; }
  .closing h2 { font-size: 34px; }

  .nav-links, .nav-cta .btn-primary { display: none; }
  .hamburger { display: flex; }

  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .metric-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .proof-strip { grid-template-columns: repeat(2, 1fr); }
  .proof-stat:nth-child(2) { border-left: 0.5px solid var(--hairline); }
  .proof-stat:nth-child(3) { border-left: none; }
  .proof-stat:nth-child(3), .proof-stat:nth-child(4) { border-top: 0.5px solid var(--hairline); }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; }

  .hero-top { grid-template-columns: 1fr; gap: 36px; }
  .faq-list { max-width: none; }
  .hero-visual { max-width: 440px; margin: 0 auto; justify-self: stretch; }
  .hero-illus { height: 380px; }
  .results-card { left: 8px; width: 180px; }
  .live-pill { left: 8px; }

  .founder-grid { grid-template-columns: 1fr; gap: 32px; }
  .founder-card { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  .steps-grid { grid-template-columns: 1fr; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .clip-reveal { opacity: 1 !important; transform: none !important; clip-path: none !important; }
  .ticker-track { animation: none !important; }
  .wa-float { transform: scale(1) !important; }
}

/* ============================================================
   LEGAL PAGES (Privacy / Terms)
   ============================================================ */
.legal-hero { padding: 130px 0 40px; position: relative; }
.legal-hero .updated {
  font-size: 13px;
  color: var(--muted);
  margin-top: 18px;
}
.legal-note {
  margin-top: 24px;
  padding: 16px 20px;
  background: var(--teal-tint);
  border-left: 3px solid var(--mid-teal);
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--dark-ink);
  max-width: 760px;
}
.legal-body { padding: 24px 0 90px; }
.prose { max-width: 760px; }
.prose-toc {
  margin: 0 0 48px;
  padding: 22px 26px;
  border: 0.5px solid var(--hairline);
  border-radius: 14px;
  background: var(--white);
}
.prose-toc h2 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 14px;
}
.prose-toc ol {
  margin: 0;
  padding-left: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 28px;
  font-size: 14px;
}
.prose-toc a { color: var(--body-text); }
.prose-toc a:hover { color: var(--mid-teal); }
.prose section { margin-bottom: 40px; scroll-margin-top: 96px; }
.prose h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--dark-ink);
  margin-bottom: 14px;
}
.prose h3 .n {
  color: var(--mid-teal);
  font-variant-numeric: tabular-nums;
  margin-right: 12px;
}
.prose p { font-size: 16px; line-height: 1.75; color: var(--body-text); margin-bottom: 14px; }
.prose ul { margin: 0 0 14px; padding-left: 22px; }
.prose li { font-size: 16px; line-height: 1.7; color: var(--body-text); margin-bottom: 8px; }
.prose strong { color: var(--dark-ink); font-weight: 600; }
.prose a.inline { color: var(--mid-teal); text-decoration: underline; text-underline-offset: 2px; }
.prose .law-ref { font-style: italic; color: var(--muted); }

@media (max-width: 768px) {
  .legal-hero { padding: 110px 0 32px; }
  .prose-toc ol { grid-template-columns: 1fr; }
}

