/* ============================================================
   MettyCare — Landing Page Styles
   Palette: warm & caring (teal + warm coral)
   Font: Plus Jakarta Sans
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --teal-700: #0A7D6F;
  --teal-600: #0E9F8E;
  --teal-500: #14B8A6;
  --teal-100: #D2EFEA;
  --teal-50:  #EAF7F4;
  --coral:    #FF8A5B;
  --coral-600:#F2703B;
  --coral-50: #FFEDE3;
  --ink:      #15292C;
  --ink-700:  #2C3F42;
  --muted:    #5E7175;
  --cream:    #FBF8F3;
  --paper:    #FFFFFF;
  --line:     #E8E3D8;
  --wa:       #25D366;
  --wa-700:   #1CA855;

  --radius-sm: 12px;
  --radius:    18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(20, 45, 42, .06);
  --shadow:    0 16px 44px -20px rgba(11, 90, 80, .30);
  --shadow-lg: 0 34px 70px -28px rgba(11, 90, 80, .42);

  --container: 1160px;
  --header-h: 76px;
  --ease: cubic-bezier(.22, .61, .36, 1);

  --fs-eyebrow: .82rem;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
h1, h2, h3, h4 { line-height: 1.18; font-weight: 800; letter-spacing: -.02em; color: var(--ink); }
:focus-visible { outline: 3px solid var(--teal-500); outline-offset: 3px; border-radius: 6px; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.container--narrow { max-width: 800px; }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--tint { background: var(--teal-50); }

.section__head { max-width: 660px; margin: 0 auto clamp(40px, 6vw, 64px); text-align: center; }
.section__title { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
.section__sub { color: var(--muted); font-size: 1.08rem; margin-top: 16px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--teal-700);
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
}
.eyebrow--center { margin-inline: auto; }
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--coral); }

.text-grad {
  background: linear-gradient(100deg, var(--teal-600), var(--coral));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 700;
  font-size: .98rem;
  padding: 13px 22px;
  border-radius: var(--radius-pill);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s, color .2s;
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.btn--lg { padding: 16px 28px; font-size: 1.05rem; }
.btn--wa { background: var(--wa); color: #fff; box-shadow: 0 12px 26px -10px rgba(37, 211, 102, .7); }
.btn--wa:hover { background: var(--wa-700); transform: translateY(-2px); box-shadow: 0 16px 30px -10px rgba(37, 211, 102, .8); }
.btn--ghost { background: var(--paper); color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { border-color: var(--teal-500); color: var(--teal-700); transform: translateY(-2px); }
.btn--light { background: rgba(255,255,255,.16); color: #fff; border-color: rgba(255,255,255,.4); backdrop-filter: blur(4px); }
.btn--light:hover { background: rgba(255,255,255,.26); transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 100;
  background: rgba(251, 248, 243, .72);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  transition: background .3s, box-shadow .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--line);
}
.header__inner { display: flex; align-items: center; height: 100%; gap: 14px; }

.logo { display: inline-flex; align-items: center; gap: 11px; margin-right: auto; }
.logo__mark { filter: drop-shadow(0 6px 12px rgba(11, 90, 80, .28)); flex: none; }
.logo__text { font-size: 1.4rem; font-weight: 800; letter-spacing: -.03em; color: var(--ink); }
.logo__text span { color: var(--teal-600); }

.nav { display: flex; align-items: center; gap: 6px; }
.nav__link {
  position: relative;
  font-weight: 600;
  font-size: .97rem;
  color: var(--ink-700);
  padding: 9px 12px;
  white-space: nowrap;
  border-radius: var(--radius-pill);
  transition: color .2s, background .2s;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 5px;
  height: 2px;
  background: var(--teal-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav__link:hover { color: var(--teal-700); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__cta { margin-left: 8px; }

.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.nav-toggle span { width: 24px; height: 2.4px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }

.ico-wa { flex: none; }

/* ---------- Header right (language + toggle) ---------- */
.header__right { display: flex; align-items: center; gap: 10px; }
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  border-radius: var(--radius-pill);
  padding: 3px;
}
.lang-switch button {
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .02em;
  line-height: 1;
  color: var(--muted);
  padding: 6px 11px;
  border-radius: var(--radius-pill);
  transition: background .2s, color .2s;
}
.lang-switch button:hover:not(.active) { color: var(--teal-700); }
.lang-switch button.active { background: var(--paper); color: var(--teal-700); box-shadow: var(--shadow-sm); }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: calc(var(--header-h) + clamp(40px, 7vw, 88px)); padding-bottom: clamp(60px, 8vw, 104px); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -1; }
.hero__bg::before, .hero__bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
}
.hero__bg::before { width: 620px; height: 620px; top: -260px; right: -160px; background: radial-gradient(circle, rgba(20,184,166,.16), transparent 62%); }
.hero__bg::after { width: 520px; height: 520px; bottom: -240px; left: -180px; background: radial-gradient(circle, rgba(255,138,91,.14), transparent 62%); }

.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.hero__title { font-size: clamp(2.3rem, 5vw, 3.75rem); margin: 22px 0 18px; }
.hero__lead { font-size: 1.16rem; color: var(--ink-700); max-width: 540px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 32px 0 26px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 12px 24px; }
.hero__trust li { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: .94rem; color: var(--ink-700); }
.hero__trust svg { color: var(--teal-600); flex: none; }

.hero__media { position: relative; justify-self: center; width: 100%; max-width: 460px; }
.hero__photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--paper);
  rotate: 1.4deg;
}
.hero__photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.hero__media::before {
  content: "";
  position: absolute;
  inset: -22px -22px auto auto;
  width: 120px; height: 120px;
  background: var(--coral-50);
  border: 2px solid var(--coral);
  border-radius: 26px;
  rotate: 14deg;
  z-index: -1;
}

.hero__badge {
  position: absolute;
  left: -18px; bottom: 36px;
  display: flex; align-items: center; gap: 12px;
  background: var(--paper);
  padding: 13px 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  rotate: -2deg;
}
.hero__badge-stars { color: var(--coral); font-size: .86rem; letter-spacing: 1px; }
.hero__badge strong { display: block; font-size: 1.18rem; }
.hero__badge span { font-size: .8rem; color: var(--muted); }

.hero__chip {
  position: absolute;
  right: -10px; top: 28px;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--paper);
  font-size: .82rem; font-weight: 700; color: var(--ink-700);
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow);
}
.hero__chip-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--wa); box-shadow: 0 0 0 0 rgba(37,211,102,.6); animation: pulse-dot 2s infinite; }

/* ---------- Stats ---------- */
.stats { padding: 0 0 clamp(20px, 4vw, 40px); margin-top: -28px; position: relative; z-index: 2; }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.stat { text-align: center; padding: 30px 18px; position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 22%; height: 56%; width: 1px; background: var(--line); }
.stat__num { display: block; font-size: clamp(1.9rem, 3.4vw, 2.6rem); font-weight: 800; color: var(--teal-700); letter-spacing: -.03em; }
.stat__plus { color: var(--coral); }
.stat__label { font-size: .92rem; color: var(--muted); font-weight: 600; }

/* ---------- Cards (Layanan) ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--teal-100); }
.card__icon {
  width: 58px; height: 58px;
  display: grid; place-items: center;
  background: var(--teal-50);
  color: var(--teal-700);
  border-radius: 16px;
  margin-bottom: 18px;
  transition: background .25s, color .25s;
}
.card:hover .card__icon { background: var(--teal-600); color: #fff; }
.card__title { font-size: 1.28rem; margin-bottom: 8px; }
.card__text { color: var(--muted); font-size: .98rem; }

.more-services {
  display: flex; align-items: center; gap: 16px;
  margin-top: 24px;
  background: var(--coral-50);
  border: 1px dashed var(--coral);
  border-radius: var(--radius);
  padding: 22px 26px;
}
.more-services svg { color: var(--coral-600); flex: none; }
.more-services p { color: var(--ink-700); font-size: 1rem; }
.more-services strong { color: var(--ink); }

/* ---------- Split (Keunggulan) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.split__media { position: relative; }
.split__media img { width: 100%; aspect-ratio: 3/2; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.split__float {
  position: absolute;
  right: -14px; bottom: -22px;
  display: flex; align-items: center; gap: 12px;
  background: var(--paper);
  padding: 16px 20px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  max-width: 230px;
}
.split__float svg { color: var(--coral); flex: none; }
.split__float span { font-size: .92rem; color: var(--muted); line-height: 1.35; }
.split__float strong { color: var(--ink); font-size: 1.02rem; }

.split__content .section__title { font-size: clamp(1.7rem, 3.2vw, 2.5rem); margin: 18px 0 14px; }
.split__content .section__sub { margin-bottom: 30px; }

.feature-list { display: grid; gap: 22px; }
.feature { display: flex; gap: 16px; }
.feature__ico {
  flex: none;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: var(--paper);
  color: var(--teal-700);
  border: 1px solid var(--teal-100);
  border-radius: 13px;
  box-shadow: var(--shadow-sm);
}
.feature h3 { font-size: 1.1rem; margin-bottom: 3px; }
.feature p { color: var(--muted); font-size: .96rem; }

/* ---------- Steps (Cara Kerja) ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; position: relative; }
.steps::before {
  content: "";
  position: absolute;
  top: 30px; left: 12%; right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--teal-100) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.step { position: relative; z-index: 1; text-align: center; padding: 0 6px; }
.step__num {
  width: 60px; height: 60px;
  display: grid; place-items: center;
  margin: 0 auto 18px;
  background: linear-gradient(140deg, var(--teal-500), var(--teal-700));
  color: #fff;
  font-size: 1.5rem; font-weight: 800;
  border-radius: 50%;
  box-shadow: 0 14px 26px -12px rgba(11, 90, 80, .6);
  border: 4px solid var(--cream);
}
.section--tint .step__num { border-color: var(--teal-50); }
.step__title { font-size: 1.18rem; margin-bottom: 7px; }
.step__text { color: var(--muted); font-size: .96rem; }

/* ---------- Pricing (Paket Perawatan) ---------- */
.pricing { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 940px; margin-inline: auto; }
.pricing .reveal:nth-child(2) { transition-delay: .08s; }
.price-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 32px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--teal-100); }
.price-card .card__icon { margin-bottom: 18px; }
.price-card:hover .card__icon { background: var(--teal-600); color: #fff; }
.price-card__title { font-size: 1.45rem; }
.price-card__desc { color: var(--muted); font-size: .97rem; margin-top: 7px; }
.price-card__price {
  margin: 22px 0;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.price-card__amount { display: block; font-size: 1.75rem; font-weight: 800; color: var(--teal-700); letter-spacing: -.02em; }
.price-card__note { font-size: .9rem; color: var(--muted); }
.price-card__list { display: grid; gap: 13px; margin-bottom: 28px; }
.price-card__list li { display: flex; align-items: flex-start; gap: 11px; font-size: .97rem; color: var(--ink-700); }
.price-card__list svg { color: var(--teal-600); flex: none; margin-top: 2px; }
.price-card .btn { margin-top: auto; width: 100%; }

/* ---------- IV Therapy ---------- */
.iv-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.iv-grid .reveal:nth-child(2) { transition-delay: .08s; }
.iv-grid .reveal:nth-child(3) { transition-delay: .16s; }
.iv-grid .reveal:nth-child(4) { transition-delay: .24s; }
.iv-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.iv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--teal-100); }
.iv-card:hover .card__icon { background: var(--teal-600); color: #fff; }
.iv-card__title { font-size: 1.25rem; margin-bottom: 9px; }
.iv-card__text { color: var(--muted); font-size: .96rem; margin-bottom: 24px; }
.iv-card .btn { margin-top: auto; width: 100%; }

.btn--book { background: var(--teal-600); color: #fff; box-shadow: 0 10px 22px -12px rgba(14, 159, 142, .9); }
.btn--book:hover { background: var(--teal-700); transform: translateY(-2px); box-shadow: 0 14px 26px -12px rgba(14, 159, 142, 1); }

@media (max-width: 900px) { .iv-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .iv-grid { grid-template-columns: 1fr; } }

/* ---------- Quotes (Testimoni) ---------- */
.quote {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 16px;
}
.quote__stars { color: var(--coral); letter-spacing: 2px; font-size: 1rem; }
.quote blockquote { font-size: 1.04rem; color: var(--ink-700); line-height: 1.6; }
.quote__author { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.avatar {
  flex: none;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: var(--teal-100);
  color: var(--teal-700);
  font-weight: 800; font-size: .95rem;
  border-radius: 50%;
}
.quote__author strong { display: block; font-size: 1rem; }
.quote__author small { color: var(--muted); font-size: .86rem; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 14px; }
.faq__item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq__item[open] { border-color: var(--teal-100); box-shadow: var(--shadow-sm); }
.faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px;
  font-weight: 700; font-size: 1.06rem;
  color: var(--ink);
  list-style: none;
  cursor: pointer;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__icon { position: relative; flex: none; width: 22px; height: 22px; }
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; background: var(--teal-600); border-radius: 2px;
  transition: transform .28s var(--ease);
}
.faq__icon::before { top: 10px; left: 2px; width: 18px; height: 2.4px; }
.faq__icon::after  { left: 10px; top: 2px; width: 2.4px; height: 18px; }
.faq__item[open] .faq__icon::after { transform: rotate(90deg); opacity: 0; }
.faq__a { padding: 0 24px 22px; color: var(--muted); }
.faq__a p { max-width: 64ch; }

/* ---------- CTA band ---------- */
.cta-band { padding: 0 24px clamp(56px, 8vw, 96px); }
.cta-band__inner {
  position: relative;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
  gap: 28px;
  background: linear-gradient(125deg, var(--teal-600) 0%, var(--teal-700) 60%, #086458 100%);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 5vw, 60px) clamp(32px, 5vw, 64px);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-band__inner::before {
  content: ""; position: absolute; inset: auto -60px -120px auto;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,138,91,.45), transparent 60%);
}
.cta-band__title { color: #fff; font-size: clamp(1.6rem, 3vw, 2.3rem); max-width: 17ch; position: relative; }
.cta-band__text { color: rgba(255,255,255,.86); margin-top: 12px; font-size: 1.08rem; position: relative; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; position: relative; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,.72); padding-top: clamp(56px, 7vw, 84px); }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 52px;
}
.logo--footer .logo__text { color: #fff; }
.logo--footer .logo__text span { color: var(--teal-500); }
.footer__tagline { margin: 18px 0 22px; font-size: .96rem; max-width: 320px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 40px; height: 40px; display: grid; place-items: center;
  background: rgba(255,255,255,.08); border-radius: 11px; color: #fff;
  transition: background .2s, transform .2s;
}
.footer__social a:hover { background: var(--teal-600); transform: translateY(-2px); }

.footer__col h4 { color: #fff; font-size: 1.04rem; margin-bottom: 18px; }
.footer__col ul { display: grid; gap: 11px; }
.footer__col a { font-size: .95rem; transition: color .2s; }
.footer__col a:hover { color: var(--teal-500); }
.footer__contact li { display: flex; align-items: flex-start; gap: 11px; font-size: .95rem; margin-bottom: 13px; }
.footer__contact svg { color: var(--teal-500); flex: none; margin-top: 2px; }

.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; }
.footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.footer__bottom p { font-size: .86rem; }
.footer__note { color: rgba(255,255,255,.5); max-width: 46ch; }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  width: 60px; height: 60px;
  display: grid; place-items: center;
  background: var(--wa);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 14px 30px -8px rgba(37, 211, 102, .7);
  transition: transform .2s var(--ease);
}
.wa-float::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, .55);
  animation: pulse-ring 2.4s infinite;
}
.wa-float:hover { transform: scale(1.08); }

/* ---------- Animations ---------- */
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }
@keyframes pulse-dot  { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.6); } 70% { box-shadow: 0 0 0 7px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.cards .reveal:nth-child(2), .steps .reveal:nth-child(2) { transition-delay: .08s; }
.cards .reveal:nth-child(3), .steps .reveal:nth-child(3) { transition-delay: .16s; }
.cards .reveal:nth-child(4), .steps .reveal:nth-child(4) { transition-delay: .24s; }
.cards .reveal:nth-child(5) { transition-delay: .32s; }
.cards .reveal:nth-child(6) { transition-delay: .40s; }

/* ---------- Responsive ---------- */
@media (max-width: 1160px) {
  .nav {
    position: absolute;
    top: var(--header-h); left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--paper);
    padding: 16px 24px 24px;
    box-shadow: var(--shadow);
    border-bottom: 1px solid var(--line);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: transform .28s var(--ease), opacity .28s var(--ease);
  }
  .nav.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__link { padding: 13px 14px; font-size: 1.05rem; }
  .nav__link::after { display: none; }
  .nav__cta { margin: 8px 0 0; }
  .nav-toggle { display: flex; }
}

@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__lead { margin-inline: auto; }
  .hero__cta, .hero__trust { justify-content: center; }
  .hero__media { order: -1; max-width: 380px; margin-bottom: 12px; }

  .split { grid-template-columns: 1fr; }
  .split__media { max-width: 540px; margin: 0 auto 14px; }
  .split__content { text-align: center; }
  .split__content .eyebrow { margin-inline: auto; }
  .feature { text-align: left; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .cards, .cards--3, .pricing { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3)::before, .stat + .stat::before { display: none; }
  .stat:nth-child(2)::after, .stat:nth-child(4)::after { content: ""; position: absolute; left: 0; top: 22%; height: 56%; width: 1px; background: var(--line); }
  .stat:nth-child(3), .stat:nth-child(4) { border-top: 1px solid var(--line); }
  .steps { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
  .steps::before { display: none; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; text-align: left; }
  .cta-band__title { max-width: none; }
}

@media (max-width: 480px) {
  .container { padding-inline: 18px; }
  .steps { grid-template-columns: 1fr; }
  .hero__badge { left: 0; }
  .hero__title { font-size: 2.1rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom-inner { flex-direction: column; align-items: flex-start; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .wa-float::before, .hero__chip-dot { animation: none; }
  * { transition-duration: .01ms !important; }
}
