/* ==========================================================================
   BOOST CLUB — DESIGN SYSTEM v3 "ALIVE"
   Premium wellness studio: deep green, gold, cream, organic motion.
   green #0D5645 · gold #C9A24B · cream #F5F3EE · ink #1A1F1C · Poppins
   ========================================================================== */

/* ---- 1. TOKENS ---- */
:root {
  --green:        #0D5645;
  --green-mid:    #11705A;
  --green-dark:   #0A4537;
  --green-deep:   #08382D;
  --gold:         #C9A24B;
  --gold-soft:    #E0BE6E;
  --sage:         #E6E9DE;
  --bg:           #F5F3EE;
  --card:         #FFFFFF;
  --text:         #1A1F1C;
  --text-soft:    #5C6660;
  --line:         #E2DED4;
  --error:        #B42318;
  --success:      #027A48;
  --whatsapp:     #25D366;

  --s1: 8px;  --s2: 16px;  --s3: 24px;  --s4: 32px;
  --s5: 40px;  --s6: 48px; --s8: 64px;  --s12: 96px;

  --radius: 20px;
  --radius-sm: 14px;
  --shadow: 0 8px 30px rgba(26, 31, 28, 0.08);
  --shadow-lg: 0 24px 60px rgba(8, 56, 45, 0.16);
  --shadow-cta: 0 10px 28px rgba(201, 162, 75, 0.35);

  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
  --ease-out: cubic-bezier(.22, .61, .36, 1);
  --header-h: 68px;
}

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

html { scroll-behavior: smooth; }
[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

body {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
@media (min-width: 768px) { body { font-size: 17px; } }

img { max-width: 100%; height: auto; display: block; border-radius: var(--radius-sm); }

/* ---- 3. TYPOGRAPHY ---- */
h1, h2, h3 {
  font-family: 'Poppins', system-ui, sans-serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-wrap: balance;
  font-weight: 700;
}
h1 { font-size: clamp(36px, 6.5vw, 58px); font-weight: 800; }
h2 { font-size: clamp(27px, 4vw, 40px);  font-weight: 800; }
h3 { font-size: clamp(18px, 2.2vw, 21px); line-height: 1.3; }

p  { max-width: 68ch; }
.lead  { font-size: clamp(17px, 2vw, 19px); line-height: 1.65; color: var(--text-soft); }
.small { font-size: 14.5px; line-height: 1.6; color: var(--text-soft); }

a { color: var(--green); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--green-dark); }
strong { font-weight: 600; }

/* ---- 4. LAYOUT ---- */
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 var(--s3); }
.container-text { max-width: 680px; margin: 0 auto; padding: 0 var(--s3); }

.section { padding: var(--s8) 0; }
.section-sage  { background: var(--sage); }
.section-white { background: var(--card); }
@media (min-width: 768px) { .section { padding: var(--s12) 0; } }

/* first dark section sits under the fixed transparent header */
main > .section-dark:first-child,
main > .section-dark:first-of-type {
  padding-top: calc(var(--s8) + var(--header-h)) !important;
}

.grid { display: grid; gap: var(--s3); grid-template-columns: 1fr; }
@media (min-width: 640px)  { .grid-2, .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); }
                             .grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* ---- 5. BUTTONS — pill, tactile ---- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s var(--ease-spring), box-shadow .25s var(--ease-out),
              background .2s, border-color .2s, color .2s;
  will-change: transform;
}
.btn:active { transform: scale(.97); }
@media (min-width: 768px) { .btn { min-height: 54px; padding: 15px 30px; font-size: 16px; } }

.btn-lg { min-height: 58px; padding: 17px 36px; font-size: 16.5px; }
@media (min-width: 768px) { .btn-lg { min-height: 62px; } }

/* Primary — gold, the conversion color */
.btn-primary {
  background: linear-gradient(180deg, #D5B05C, var(--gold));
  color: var(--green-deep);
  box-shadow: var(--shadow-cta);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(201, 162, 75, 0.48);
  color: var(--green-deep);
}
.section-dark .btn-primary { box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3), var(--shadow-cta); }

/* Secondary — quiet outline; ghost on dark */
.btn-secondary { background: transparent; color: var(--text); border-color: var(--line); }
.btn-secondary:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); box-shadow: var(--shadow); }
.section-dark .btn-secondary { color: #fff; border-color: rgba(255,255,255,0.35); background: rgba(255,255,255,0.06); }
.section-dark .btn-secondary:hover { border-color: rgba(255,255,255,0.8); color: #fff; }

/* Green button (used inside light sections when gold already present) */
.btn-green {
  background: linear-gradient(180deg, var(--green-mid), var(--green));
  color: #fff;
  box-shadow: 0 10px 28px rgba(13, 86, 69, 0.3);
}
.btn-green:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 16px 38px rgba(13, 86, 69, 0.4); }

/* WhatsApp */
.btn-whatsapp { background: var(--card); color: var(--text); border-color: var(--line); }
.btn-whatsapp:hover { border-color: var(--whatsapp); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(37, 211, 102, 0.22); }
.btn-whatsapp .wa-icon { width: 21px; height: 21px; fill: var(--whatsapp); flex-shrink: 0; }
.section-dark .btn-whatsapp { background: rgba(255,255,255,0.07); color: #fff; border-color: rgba(255,255,255,0.3); }
.section-dark .btn-whatsapp:hover { border-color: var(--whatsapp); background: rgba(37,211,102,0.12); }

/* breathing ring — WhatsApp CTAs inside dark sections + floating button */
@keyframes breath {
  0%   { transform: scale(1); opacity: .5; }
  60%  { transform: scale(1.16); opacity: 0; }
  100% { opacity: 0; }
}
.section-dark .btn-whatsapp::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  border: 2px solid var(--whatsapp);
  opacity: 0;
  animation: breath 4s ease-out infinite;
  pointer-events: none;
}

@media (max-width: 480px) { .btn-block-mobile { width: 100%; } }

/* ---- 6. CARDS — lean in ---- */
.card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--s4) var(--s3);
  overflow: hidden;
  transition: transform .35s var(--ease-out), box-shadow .35s, border-color .35s;
  will-change: transform;
}
@media (max-width: 767px) { .card { padding: var(--s3) 20px; } }
.card h3 { margin-bottom: var(--s1); }
.card p  { color: var(--text-soft); font-size: 15px; }
@media (hover: hover) {
  .card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(201, 162, 75, 0.5); }
}

/* watermark leaf injected by JS into cards */
.card .wm-leaf {
  position: absolute;
  right: -22px; bottom: -22px;
  width: 105px; height: 105px;
  opacity: .05;
  transition: transform .5s var(--ease-out), opacity .35s;
  pointer-events: none;
}
.card .wm-leaf path { fill: var(--green); }
.card:hover .wm-leaf { transform: rotate(14deg) scale(1.08); opacity: .1; }

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px; height: 50px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(201,162,75,0.16), rgba(13,86,69,0.1));
  border: 1px solid rgba(201,162,75,0.4);
  margin-bottom: var(--s2);
}
.card-icon svg { width: 24px; height: 24px; stroke: var(--green); fill: none; stroke-width: 1.8; }
.card-icon svg path, .card-icon svg circle, .card-icon svg line {
  stroke-dasharray: 80; stroke-dashoffset: 80;
  transition: stroke-dashoffset 1.2s .3s var(--ease-out);
}
.in .card-icon svg path, .in .card-icon svg circle, .in .card-icon svg line { stroke-dashoffset: 0; }

/* intent cards — the mirror: hovering one dims siblings */
.card-intent { display: flex; flex-direction: column; }
.card-intent::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .35s var(--ease-out);
}
.card-intent p { flex: 1; }
.card-intent a { margin-top: var(--s2); font-weight: 600; font-size: 14.5px; text-decoration: none; }
.card-intent a:hover { text-decoration: underline; }
@media (hover: hover) {
  .grid:hover .card-intent { opacity: .55; }
  .grid .card-intent:hover { opacity: 1; }
  .card-intent:hover::before { transform: scaleY(1); }
}
.card-intent { transition: transform .35s var(--ease-out), box-shadow .35s, border-color .35s, opacity .3s; }

.accent-line { display: block; width: 40px; height: 3px; background: var(--gold); border-radius: 2px; margin-bottom: var(--s2); }

/* ---- 7. FORMS ---- */
label { display: block; font-weight: 600; font-size: 14.5px; margin-bottom: 8px; }

input, select, textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 16px;
  font: inherit;
  color: var(--text);
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color .15s ease, box-shadow .15s ease;
}
input:hover, select:hover, textarea:hover { border-color: #C7C2B4; }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(13, 86, 69, 0.14);
}
select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230D5645' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.form-group { margin-bottom: var(--s3); }
.form-error { color: var(--error); font-size: 14.5px; margin-top: 6px; }

fieldset { border: 0; padding: 0; margin: 0; }
fieldset legend { font-weight: 600; font-size: 14.5px; margin-bottom: 8px; padding: 0; }

.pill-group { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 420px) { .pill-group { grid-template-columns: 1fr; } }
.pill-group input[type="radio"] {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.pill-group .pill {
  display: flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 10px 12px;
  text-align: center; font-weight: 600; font-size: 14.5px;
  color: var(--text); background: var(--card);
  border: 1.5px solid var(--line); border-radius: 100px;
  cursor: pointer;
  transition: border-color .15s, background .15s, box-shadow .15s, transform .15s var(--ease-spring);
}
.pill-group .pill:hover { border-color: var(--green); }
.pill-group .pill:active { transform: scale(.97); }
.pill-group input[type="radio"]:checked + .pill {
  background: rgba(13, 86, 69, 0.08);
  border-color: var(--green);
  box-shadow: inset 0 0 0 1px var(--green);
  color: var(--green-dark);
}
.pill-group input[type="radio"]:focus-visible + .pill { outline: 3px solid var(--gold); outline-offset: 2px; }

/* pill variants: 3-up grid + two-line pills (day/time pickers) */
.pill-group-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 420px) { .pill-group-3 { grid-template-columns: repeat(2, 1fr); } }
.pill-group .pill { flex-direction: column; line-height: 1.25; padding: 9px 8px; }
.pill-group .pill small { display: block; font-weight: 400; font-size: 11.5px; color: var(--text-soft); }
.pill-group input[type="radio"]:checked + .pill small { color: var(--green-dark); }

/* sticky bar + floating WA step aside while a form is on screen */
.sticky-bar { transition: transform .3s var(--ease-out); }
body.form-in-view .sticky-bar { transform: translateY(115%); }
body.form-in-view .wa-float { opacity: 0; pointer-events: none; }

/* ---- 8. UTILITIES ---- */
.text-center { text-align: center; }
.mt-2 { margin-top: var(--s2); }  .mt-3 { margin-top: var(--s3); }
.mt-4 { margin-top: var(--s4); }  .mt-6 { margin-top: var(--s6); }
.mb-2 { margin-bottom: var(--s2); } .mb-3 { margin-bottom: var(--s3); }
.mb-4 { margin-bottom: var(--s4); } .mb-6 { margin-bottom: var(--s6); }

.section-head { margin-bottom: var(--s6); max-width: 720px; }
.section-head p { color: var(--text-soft); margin-top: var(--s2); font-size: 16px; }
.section-head.text-center { margin-left: auto; margin-right: auto; }

/* ---- 9. ACCESSIBILITY ---- */
.skip-nav {
  position: absolute; top: -100px; left: var(--s3);
  background: var(--green); color: #fff;
  padding: 10px 20px; border-radius: var(--radius-sm);
  font-weight: 600; text-decoration: none; z-index: 9999;
  transition: top .15s;
}
.skip-nav:focus { top: var(--s2); }

a:focus-visible, button:focus-visible, .btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---- 10. REVEAL SYSTEM (JS assigns .rv automatically) ---- */
[data-reveal], .rv {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .65s var(--ease-out), transform .65s var(--ease-out);
}
[data-reveal].in, .rv.in { opacity: 1; transform: none; }
.rv-l { transform: translateX(-30px); }
.rv-r { transform: translateX(30px); }
.rv-l.in, .rv-r.in { transform: none; }

/* gold thread divider */
.divider-gold {
  width: 0; height: 2px; border: 0;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 0 0 var(--s3);
  transition: width 1.1s var(--ease-out);
}
.divider-gold.in, .in .divider-gold { width: 64px; }

/* ---- 11. PREMIUM LAYER — eyebrow, dark sections, hero ---- */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #7E641F; /* AA-compliant gold on cream */
  margin-bottom: var(--s2);
}

.section-dark {
  position: relative;
  background:
    radial-gradient(900px 500px at 85% -5%, rgba(201,162,75,0.18), transparent 60%),
    radial-gradient(700px 500px at -10% 110%, rgba(17,112,90,0.5), transparent 55%),
    linear-gradient(165deg, #10654F 0%, var(--green) 55%, var(--green-deep) 100%);
  color: #F2F5F3;
  overflow: hidden;
}
.section-dark h1, .section-dark h2, .section-dark h3 { color: #FFFFFF; }
.section-dark p, .section-dark .lead { color: rgba(242,245,243,0.85); }
.section-dark .eyebrow { color: var(--gold-soft); }
.section-dark a { color: #BFD9CF; }

/* parallax leaves injected by JS into the first dark section */
.bg-leaf { position: absolute; pointer-events: none; will-change: transform; z-index: 0; }
.bg-leaf path { fill: rgba(255,255,255,0.04); }
.bg-leaf.b1 { width: 44vw; max-width: 540px; top: -6%; right: -8%; rotate: 18deg; }
.bg-leaf.b2 { width: 32vw; max-width: 400px; bottom: -10%; left: -6%; rotate: -150deg; }
.section-dark > .container, .section-dark > .container-text { position: relative; z-index: 1; }

/* organic wave dividers (injected by JS) */
.wave { display: block; width: 100%; height: 64px; margin-top: -1px; }
@media (min-width: 768px) { .wave { height: 100px; } }
.wave.wave-bottom { margin-top: -64px; position: relative; z-index: 2; }
@media (min-width: 768px) { .wave.wave-bottom { margin-top: -100px; } }

/* hero */
.hero { display: flex; align-items: center; min-height: calc(96svh); padding: calc(var(--s8) + var(--header-h)) 0 calc(var(--s8) + 50px); }
@media (max-width: 899px) {
  .hero { min-height: auto; padding: calc(var(--s6) + var(--header-h)) 0 calc(var(--s8) + 56px); }
  .hero .img-frame, .section-dark .hero-grid .img-frame { max-width: 320px; margin-top: var(--s4); }
}
@media (min-width: 900px) {
  .hero { min-height: 96vh; }
  .hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: var(--s8); align-items: center; }
}
.hero h1 { max-width: 15ch; }
.hero .lead { max-width: 46ch; margin-top: var(--s3); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: var(--s2); margin-top: var(--s4); }

.proof-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: var(--s4); font-size: 13px; }
.proof-row span {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 100px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(242,245,243,0.92);
  font-weight: 500;
}
.proof-row span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-soft); flex-shrink: 0; }

/* hero portrait — organic leaf mask + orbiting gold ring (orbit injected by JS) */
.img-frame { position: relative; }
.section-dark .img-frame { max-width: 460px; margin: 0 auto; }
.section-dark .img-frame img {
  width: 100%;
  aspect-ratio: 0.84;
  object-fit: cover;
  border-radius: 58% 42% 55% 45% / 48% 55% 45% 52%;
  box-shadow: 0 40px 90px rgba(5, 40, 32, 0.5);
}
@media (max-width: 899px) { .section-dark .hero-grid .img-frame, .hero .img-frame { margin-top: var(--s6); } }
.orbit { position: absolute; inset: -7%; pointer-events: none; animation: spin 60s linear infinite; }
.orbit .ring { fill: none; stroke: rgba(201,162,75,0.4); stroke-width: 1; stroke-dasharray: 4 7; }
.orbit .sat { fill: var(--gold); }
@keyframes spin { to { transform: rotate(360deg); } }

/* light-section image frames */
.section .img-frame img, .section-white .img-frame img, .section-sage .img-frame img { box-shadow: var(--shadow-lg); border-radius: var(--radius); }
.section-dark .img-frame::before { content: none; }
.img-frame::before {
  content: "";
  position: absolute;
  inset: -12px 12px 12px -12px;
  border: 1.5px dashed rgba(201,162,75,0.5);
  border-radius: var(--radius);
  pointer-events: none;
}

.img-placeholder {
  display: flex; align-items: center; justify-content: center; text-align: center;
  min-height: 340px; padding: var(--s3);
  background:
    radial-gradient(320px 180px at 70% 20%, rgba(201,162,75,0.14), transparent 70%),
    linear-gradient(145deg, #11604C, var(--green-deep));
  color: rgba(255,255,255,0.6);
  font-size: 13px; letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
}

/* ---- 12. QUOTES & REVIEWS ---- */
.quote {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 52px var(--s3) var(--s3);
  box-shadow: var(--shadow);
}
.quote::before {
  content: "\201C";
  position: absolute; top: 2px; left: 20px;
  font: 800 80px/1 Georgia, serif;
  color: var(--gold);
  opacity: 0;
  transform: scale(.4);
  transition: all .55s .2s var(--ease-spring);
}
.quote.in::before, .in .quote::before { opacity: .5; transform: none; }
.quote p { font-size: 15.5px; flex: 1; }
.quote footer {
  display: flex; align-items: center; gap: 12px;
  margin-top: var(--s3); padding-top: var(--s2);
  border-top: 1px solid var(--line);
  font-size: 14.5px; font-weight: 600;
}
.quote .avatar {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(13, 86, 69, 0.1); color: var(--green);
  font-weight: 800; font-size: 15px; flex-shrink: 0;
}
.quote .stars { color: #A07F35; letter-spacing: 2px; font-size: 12.5px; display: block; font-weight: 400; }

.review-tag {
  display: inline-block;
  font-size: 12.5px; font-weight: 600;
  padding: 3px 12px; border-radius: 20px;
  background: var(--sage); color: var(--green-dark);
  margin-left: auto;
}

.review-story {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--s4);
  position: relative;
  box-shadow: var(--shadow);
}
.review-story::before {
  content: "\201C";
  position: absolute; top: 6px; left: 20px;
  font: 800 80px/1 Georgia, serif;
  color: var(--gold); opacity: .5;
}
.review-story p { font-size: 16px; line-height: 1.7; padding-top: var(--s4); color: var(--text); }
.review-story footer {
  margin-top: var(--s3); padding-top: var(--s3);
  border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: var(--s2);
}
.review-story .reviewer-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--sage);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 17px; color: var(--green); flex-shrink: 0;
}
.review-story .reviewer-info strong { display: block; font-size: 15.5px; }
.review-story .reviewer-info span   { font-size: 13.5px; color: var(--text-soft); }

/* ---- 13. TRUST STRIP — floating stat band + counters ---- */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s3);
  padding: var(--s4);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
@media (min-width: 900px) {
  .trust-strip { grid-template-columns: repeat(4, 1fr); padding: var(--s4) var(--s6); }
  .trust-strip .item + .item { border-left: 1px solid var(--line); padding-left: var(--s3); }
}
.trust-strip .item strong {
  display: block;
  font: 800 clamp(19px, 2.4vw, 26px)/1.25 'Poppins';
  letter-spacing: -0.01em;
}
.trust-strip .item strong .gold { color: #A07F35; } /* 3:1+ large text */
.trust-strip .item span { font-size: 13.5px; color: var(--text-soft); }
.trust-overlap { margin-top: -56px; position: relative; z-index: 5; }

/* star fill animation (JS wraps ★ chars) */
.star-i { display: inline-block; opacity: 0; transform: scale(.4); transition: all .35s var(--ease-spring); }
.in .star-i { opacity: 1; transform: none; }
.in .star-i:nth-child(2) { transition-delay: .08s; }
.in .star-i:nth-child(3) { transition-delay: .16s; }
.in .star-i:nth-child(4) { transition-delay: .24s; }
.in .star-i:nth-child(5) { transition-delay: .32s; }

/* ---- 14. HEADER — transparent over hero, frosted on scroll ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .35s, box-shadow .35s, border-color .35s, transform .35s var(--ease-out);
}
.site-header .container { max-width: 1340px; }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--header-h);
  gap: var(--s3);
}
.site-header.scrolled {
  background: rgba(245, 243, 238, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(26, 31, 28, 0.08);
  border-bottom-color: var(--line);
}
.site-header.nav-away { transform: translateY(-110%); }

.logo {
  display: inline-flex; align-items: center;
  font: 800 21px 'Poppins';
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.01em;
  line-height: 1;
  white-space: nowrap;
  transition: color .35s;
}
.logo .dot { color: var(--gold); }
.logo .logo-leaf { width: 0.64em; height: 0.64em; margin: 0 0.5px; flex-shrink: 0; transform: translateY(0.06em); }
.logo .logo-leaf .leaf-body { fill: var(--gold); transition: fill .35s; }
.logo .logo-leaf .leaf-slash { fill: none; stroke: var(--green-deep); stroke-width: 1.6; stroke-linecap: round; transition: stroke .35s; }
.site-header.scrolled .logo { color: var(--text); }
.site-header.scrolled .logo .logo-leaf .leaf-body { fill: var(--green); }
.site-header.scrolled .logo .logo-leaf .leaf-slash { stroke: var(--bg); }
/* pages without a dark hero — header always frosted */
.site-header.solid { background: rgba(245, 243, 238, 0.92); border-bottom-color: var(--line); }
.site-header.solid .logo { color: var(--text); }
.site-header.solid .logo .logo-leaf .leaf-body { fill: var(--green); }
.site-header.solid .logo .logo-leaf .leaf-slash { stroke: var(--bg); }

.nav { display: none; }
@media (min-width: 920px) {
  .nav { display: flex; align-items: center; gap: 20px; flex-wrap: nowrap; }
  .nav a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    white-space: nowrap;
    font-size: 14px; font-weight: 500;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    transition: color .25s, border-color .25s;
  }
  .nav a:hover { color: var(--gold-soft); }
  .nav a[aria-current="page"] { color: var(--gold-soft); border-bottom-color: var(--gold); }
  .site-header.scrolled .nav a, .site-header.solid .nav a { color: var(--text-soft); }
  .site-header.scrolled .nav a:hover, .site-header.solid .nav a:hover { color: var(--green); }
  .site-header.scrolled .nav a[aria-current="page"], .site-header.solid .nav a[aria-current="page"] { color: var(--green); }
  .nav .btn { min-height: 42px; padding: 9px 22px; font-size: 14px; border-bottom: 0; }
}

.menu-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: background .35s, border-color .35s;
}
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after {
  display: block; width: 18px; height: 2px;
  background: #fff; position: relative;
  transition: transform .2s ease, background .35s;
}
.menu-toggle span::before, .menu-toggle span::after { content: ""; position: absolute; }
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after  { top: 6px; }
.site-header.scrolled .menu-toggle, .site-header.solid .menu-toggle { background: var(--card); border-color: var(--line); }
.site-header.scrolled .menu-toggle span, .site-header.scrolled .menu-toggle span::before, .site-header.scrolled .menu-toggle span::after,
.site-header.solid .menu-toggle span, .site-header.solid .menu-toggle span::before, .site-header.solid .menu-toggle span::after { background: var(--text); }
@media (min-width: 920px) { .menu-toggle { display: none; } }

.mobile-menu {
  display: none;
  background: rgba(245, 243, 238, 0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-bottom: var(--s2);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 15px var(--s3);
  color: var(--text);
  text-decoration: none;
  font-weight: 600; font-size: 15.5px;
  border-bottom: 1px solid var(--line);
}
.mobile-menu a:last-of-type { border-bottom: 0; }

/* ---- 15. FOOTER ---- */
.site-footer {
  background: var(--green-deep);
  color: rgba(242,245,243,0.85);
  padding: var(--s8) 0 var(--s4);
  border-top: 2px solid rgba(201, 162, 75, 0.4);
}
.site-footer h3 { color: #fff; font-size: 17px; margin-bottom: var(--s2); }
.site-footer a { color: #BFD9CF; }
.footer-grid { display: grid; gap: var(--s4); grid-template-columns: 1fr; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-nap { font-style: normal; line-height: 2; }
.footer-legal {
  margin-top: var(--s4); padding-top: var(--s3);
  border-top: 1px solid rgba(255,255,255,0.14);
  font-size: 12.5px;
  color: rgba(242,245,243,0.55);
}
.footer-legal p { max-width: none; }

.site-footer .logo { color: #F2F5F3; font-size: 25px; }
.site-footer .logo .logo-leaf .leaf-body { fill: var(--gold); }
.site-footer .logo .logo-leaf .leaf-slash { stroke: var(--green-deep); }

.footer-brand { display: inline-flex; flex-direction: column; }
.footer-brand .brand-tagline { width: 100%; }
.footer-brand .brand-tagline::before,
.footer-brand .brand-tagline::after { flex: 1; width: auto; }

.brand-tagline {
  display: flex; align-items: center; gap: 12px;
  margin: 12px 0 var(--s2);
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold);
  max-width: none;
}
.brand-tagline.center { justify-content: center; margin-left: auto; margin-right: auto; }
.brand-tagline::before, .brand-tagline::after {
  content: ""; height: 1px; width: 26px;
  background: var(--gold); opacity: .65; flex-shrink: 0;
}

/* ---- 16. STICKY BAR + FLOATING WHATSAPP ---- */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 95;
  display: grid;
  grid-template-columns: 52px 52px 1fr;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(245, 243, 238, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 28px rgba(26, 31, 28, 0.1);
}
.sticky-bar .btn { min-height: 52px; padding: 8px; font-size: 15px; border-radius: 16px; }
.sticky-bar .btn-icon { padding: 8px; }
.sticky-bar .btn-icon svg { width: 23px; height: 23px; flex-shrink: 0; }
.sticky-bar .btn-icon .icon-phone { stroke: var(--green); fill: none; stroke-width: 1.8; }
@media (min-width: 920px) { .sticky-bar { display: none; } }
@media (max-width: 919px) { body { padding-bottom: 84px; } }

.wa-float { display: none; }
@media (min-width: 920px) {
  .wa-float {
    display: flex; align-items: center; justify-content: center;
    position: fixed;
    bottom: 26px; right: 26px;
    z-index: 90;
    width: 58px; height: 58px;
    border-radius: 50%;
    background: var(--whatsapp);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    transition: transform .25s var(--ease-spring), opacity .3s;
  }
  .wa-float:hover { transform: scale(1.08); }
  .wa-float svg { width: 30px; height: 30px; fill: #fff; }
  .wa-float::after {
    content: "";
    position: absolute; inset: 0;
    border-radius: 50%;
    border: 2px solid var(--whatsapp);
    animation: breath 5s ease-out infinite;
  }
  .wa-float.away { opacity: 0; pointer-events: none; transform: scale(.6); }
}

/* ---- 17. PAGE COMPONENTS ---- */
.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 4px solid transparent;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.faq-item:hover { border-color: rgba(13, 86, 69, 0.35); }
.faq-item.open { border-left-color: var(--gold); box-shadow: var(--shadow); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  gap: var(--s2);
  width: 100%;
  padding: 18px 20px;
  background: none; border: 0;
  font: 600 15.5px/1.4 'Poppins', sans-serif;
  text-align: left;
  color: var(--text);
  cursor: pointer;
  min-height: 56px;
}
.faq-q::after {
  content: "+";
  font: 700 24px 'Poppins';
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .35s var(--ease-spring);
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s var(--ease-out); }
.faq-a > * { overflow: hidden; }
.faq-a p { padding: 0 20px; color: var(--text-soft); font-size: 15px; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-item.open .faq-a p { padding-bottom: 20px; }

/* steps — numbers pop, path draws (path injected by JS on steps-grid) */
.steps-grid { position: relative; }
.steps-path {
  position: absolute;
  top: 26px; left: 8%; width: 84%; height: 60px;
  display: none;
  pointer-events: none;
}
@media (min-width: 1024px) { .steps-path { display: block; } }
.steps-path path {
  fill: none; stroke: var(--gold); stroke-width: 2;
  stroke-dasharray: 1000; stroke-dashoffset: 1000;
  transition: stroke-dashoffset 1.6s .2s var(--ease-out);
}
.in .steps-path path, .steps-grid.in .steps-path path { stroke-dashoffset: 0; }
.step { text-align: left; position: relative; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(180deg, var(--green-mid), var(--green));
  color: #fff;
  font: 800 19px 'Poppins';
  box-shadow: 0 8px 20px rgba(13, 86, 69, 0.3);
  margin-bottom: var(--s2);
  position: relative; z-index: 1;
  transform: scale(.5); opacity: 0;
  transition: all .5s var(--ease-spring);
}
.in .step-num, .steps-grid.in .step-num { transform: none; opacity: 1; }
.steps-grid > .step:nth-child(2) .step-num, .steps-grid > div:nth-child(3) .step-num { transition-delay: .5s; }
.steps-grid > .step:nth-child(3) .step-num, .steps-grid > div:nth-child(4) .step-num { transition-delay: 1s; }
.step h3 { margin-bottom: 6px; }
.step p { color: var(--text-soft); font-size: 15px; }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
.map-wrap iframe { display: block; width: 100%; height: 380px; border: 0; }

.photo-grid { display: grid; gap: 14px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 900px) { .photo-grid { grid-template-columns: repeat(3, 1fr); } }
.photo-grid .img-placeholder, .photo-grid img {
  min-height: 0;
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
  will-change: transform;
}
.photo-grid .img-placeholder { font-size: 12px; }

.hours { width: 100%; max-width: 360px; border-collapse: collapse; }
.hours td { padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 15.5px; }
.hours td:last-child { text-align: right; font-weight: 600; }

.lang-switcher {
  display: inline-flex; align-items: center; gap: 2px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.04em;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 20px;
  margin-left: var(--s1);
  flex-shrink: 0;
  transition: border-color .35s;
}
.lang-switcher a { color: rgba(255,255,255,0.7); text-decoration: none; padding: 1px 3px; border-bottom: 0 !important; }
.lang-switcher a:hover { color: var(--gold-soft); }
.lang-switcher .lang-active { color: var(--gold-soft); cursor: default; }
.lang-sep { color: rgba(255,255,255,0.3); margin: 0 1px; }
.site-header.scrolled .lang-switcher, .site-header.solid .lang-switcher { border-color: var(--line); }
.site-header.scrolled .lang-switcher a, .site-header.solid .lang-switcher a { color: var(--text-soft); }
.site-header.scrolled .lang-switcher a:hover, .site-header.solid .lang-switcher a:hover { color: var(--green); }
.site-header.scrolled .lang-switcher .lang-active, .site-header.solid .lang-switcher .lang-active { color: var(--green); }
.mobile-menu .lang-switcher { margin: var(--s2) var(--s3); border-color: var(--line); }
.mobile-menu .lang-switcher a { color: var(--text-soft); }
.mobile-menu .lang-switcher .lang-active { color: var(--green); }

/* ---- 18. FINAL CTA — halo + tagline ---- */
.cta-final { text-align: center; }
.cta-final h2 { font-size: clamp(30px, 4.5vw, 46px); }
.cta-final .lead { margin-left: auto; margin-right: auto; }
.cta-final .btn-primary::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 100px;
  background: radial-gradient(closest-side, rgba(201,162,75,0.35), transparent);
  animation: haloB 5s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}
@keyframes haloB {
  0%, 100% { transform: scale(1); opacity: .7; }
  50%      { transform: scale(1.08); opacity: 1; }
}
.section-dark .brand-tagline { color: var(--gold-soft); }

/* ---- 19. INTRO CURTAIN (injected by JS, once per session) ---- */
.curtain {
  position: fixed; inset: 0; z-index: 200;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .5s var(--ease-out), visibility .5s;
}
.curtain.done { opacity: 0; visibility: hidden; }
.curtain .mark {
  display: flex; align-items: center;
  font: 800 32px 'Poppins';
  color: var(--text);
  opacity: 0;
  animation: markIn .6s .15s var(--ease-out) forwards;
}
.curtain .mark .dot { color: var(--gold); }
.curtain .logo-leaf { width: 24px; height: 24px; margin: 0 2px; transform: translateY(2px); }
.curtain .logo-leaf .leaf-body { fill: var(--green); }
.curtain .logo-leaf .leaf-slash {
  fill: none; stroke: var(--bg); stroke-width: 1.6; stroke-linecap: round;
  stroke-dasharray: 14; stroke-dashoffset: 14;
  animation: drawSlash .5s .55s forwards;
}
@keyframes markIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes drawSlash { to { stroke-dashoffset: 0; } }

/* hero entrance — staggered, once on load (class added by JS) */
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
.hero-enter .eyebrow   { animation: fadeUp .6s .05s var(--ease-out) backwards; }
.hero-enter h1         { animation: fadeUp .7s .15s var(--ease-out) backwards; }
.hero-enter .lead      { animation: fadeUp .6s .3s  var(--ease-out) backwards; }
.hero-enter .hero-ctas { animation: fadeUp .6s .45s var(--ease-out) backwards; }
.hero-enter .proof-row { animation: fadeUp .6s .6s  var(--ease-out) backwards; }
.hero-enter .img-frame { animation: fadeUp .8s .35s var(--ease-out) backwards; }

/* ---- 20. REDUCED MOTION — the film becomes a photo album ---- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: opacity .3s ease !important; }
  [data-reveal], .rv { opacity: 1 !important; transform: none !important; }
  .curtain { display: none !important; }
  .nav .btn { opacity: 1; transform: none; pointer-events: auto; }
  .step-num { transform: none; opacity: 1; }
  .steps-path path { stroke-dashoffset: 0; }
  .divider-gold { width: 64px; }
  .card-icon svg path, .card-icon svg circle, .card-icon svg line { stroke-dashoffset: 0; }
  .quote::before { opacity: .5; transform: none; }
  .star-i { opacity: 1; transform: none; }
}


/* keep the nav on one line on narrower desktops */
@media (min-width: 920px) and (max-width: 1180px) {
  .nav { gap: 13px; }
  .nav a { font-size: 13px; }
  .nav .btn { padding: 8px 16px; font-size: 13px; }
  .logo { font-size: 19px; }
}

/* ---- 21. RESULTS / TRANSFORMATIONS GALLERY ---- */
.results-grid { display: grid; gap: 16px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 700px)  { .results-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .results-grid { grid-template-columns: repeat(4, 1fr); } }
.results-grid figure {
  position: relative; margin: 0;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  overflow: hidden; background: var(--card); box-shadow: var(--shadow);
}
.results-grid img { width: 100%; height: auto; display: block; border-radius: 0; }
.results-grid figcaption {
  position: absolute; top: 8px; left: 8px;
  background: rgba(8, 56, 45, 0.85); color: #fff;
  font: 700 12px/1 'Poppins', sans-serif; letter-spacing: .02em;
  padding: 4px 9px; border-radius: 20px;
}

/* ---- 22. CREDIBILITY COUNTERS ---- */
.counter-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s3); margin-top: var(--s4); }
@media (min-width: 700px) { .counter-row { grid-template-columns: repeat(4, 1fr); } }
.counter-item { text-align: center; }
.counter-item .num { display: block; font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 32px; line-height: 1; color: var(--green); }
.counter-item .lbl { display: block; font-size: 13px; color: var(--text-soft); margin-top: 6px; }
.section-dark .counter-item .num { color: var(--gold); }
.section-dark .counter-item .lbl { color: rgba(242,245,243,.82); }

/* ---- 23. TIMELINE ---- */
.bc-timeline { display: grid; gap: var(--s3); max-width: 760px; margin: 0 auto; }
.bc-tl-item { display: flex; gap: var(--s3); align-items: flex-start; background: var(--card); border: 1px solid var(--line); border-left: 4px solid var(--gold); border-radius: var(--radius-sm); padding: var(--s3); }
.bc-tl-num { width: 34px; height: 34px; min-width: 34px; border-radius: 50%; background: var(--green); color: #fff; font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 15px; display: flex; align-items: center; justify-content: center; }
.bc-tl-item h3 { font-size: 17px; margin: 3px 0 4px; }
.bc-tl-item p { font-size: 14px; color: var(--text-soft); margin: 0; }

/* ---- 24. VIDEO EMBED (lazy reel) ---- */
.video-embed { position: relative; max-width: 360px; margin: 0 auto; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); background: #000; aspect-ratio: 9 / 16; }
.video-embed iframe, .video-embed video { width: 100%; height: 100%; border: 0; display: block; object-fit: cover; }

/* ---- 25. RESULT / PULL-QUOTE CARD ---- */
.result-card {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: var(--s4);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}
.result-card .metric { align-self: flex-start; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 13px; color: var(--green-dark); background: var(--sage); border-radius: 20px; padding: 5px 14px; }
.result-card blockquote { font-size: 17px; line-height: 1.55; margin: 0; color: var(--text); font-style: italic; }
.result-card .who { margin-top: auto; font-weight: 700; font-size: 15px; color: var(--text); }
.result-card .who .stars { color: var(--gold); letter-spacing: 2px; margin-left: 6px; }
.result-card .small { margin-top: 0 !important; }

/* ---- 26. GOOGLE RATING BADGE ---- */
.google-badge { display: inline-flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px; box-shadow: var(--shadow); text-decoration: none; }
.google-badge .g { font-family: 'Poppins', sans-serif; font-weight: 700; color: #1a73e8; }
.google-badge .score { font-weight: 800; color: var(--text); }
.google-badge .gstars { color: #fbbc04; letter-spacing: 1px; }
.google-badge .cnt { font-size: 13px; color: var(--text-soft); }

/* ---- 27. SCAN INFOGRAPHIC ---- */
.scan-info { display: grid; gap: 12px; grid-template-columns: repeat(2, 1fr); max-width: 720px; margin: 0 auto; }
@media (min-width: 760px) { .scan-info { grid-template-columns: repeat(3, 1fr); } }
.scan-metric { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: var(--s3); text-align: center; }
.scan-metric .ico { font-size: 24px; }
.scan-metric strong { display: block; font-size: 15px; margin: 6px 0 2px; }
.scan-metric span { font-size: 13px; color: var(--text-soft); }

/* ---- 28. INTERACTIVE STEPPER ---- */
.stepper { max-width: 760px; margin: 0 auto; }
.stepper-track { display: flex; justify-content: space-between; position: relative; margin-bottom: var(--s4); }
.stepper-track::before { content: ""; position: absolute; top: 22px; left: 6%; right: 6%; height: 3px; background: var(--line); z-index: 0; }
.step-dot { position: relative; z-index: 1; background: none; border: 0; cursor: pointer; flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; color: var(--text-soft); font: 600 12px/1.2 'Poppins', sans-serif; padding: 0; }
.step-dot span { width: 44px; height: 44px; border-radius: 50%; background: #fff; border: 2px solid var(--line); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 16px; color: var(--text-soft); transition: background .25s, border-color .25s, color .25s, transform .25s, box-shadow .25s; }
.step-dot em { font-style: normal; max-width: 84px; text-align: center; }
.step-dot:hover span { border-color: var(--green); color: var(--green); }
.step-dot.is-done span { background: var(--sage); border-color: var(--green); color: var(--green); }
.step-dot.is-active span { background: var(--green); border-color: var(--green); color: #fff; transform: scale(1.08); box-shadow: 0 6px 18px rgba(15,107,85,.3); }
.step-dot.is-active { color: var(--green); }
.stepper-panels { background: var(--card); border: 1px solid var(--line); border-top: 4px solid var(--gold); border-radius: var(--radius); padding: var(--s4); box-shadow: var(--shadow); }
.step-panel { display: none; }
.step-panel.is-active { display: block; animation: stepIn .35s ease; }
@keyframes stepIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.step-panel .ico { font-size: 30px; }
.step-panel h3 { margin: 8px 0 6px; font-size: 20px; }
.step-panel p { color: var(--text-soft); margin: 0; font-size: 16px; }
@media (max-width: 560px) { .step-dot em { font-size: 11px; max-width: 58px; } .step-dot span { width: 38px; height: 38px; font-size: 14px; } .stepper-track::before { top: 19px; } }
@media (prefers-reduced-motion: reduce) { .step-panel.is-active { animation: none; } .step-dot span { transition: none; } }

/* ---- 29. HERO RATING CHIP + FLOATING BADGE ---- */
.rating-chip { display: inline-flex; align-items: center; gap: 8px; background: #fff; border-radius: 999px; padding: 8px 15px; box-shadow: var(--shadow); text-decoration: none; margin-top: var(--s3); }
.rating-chip .rc-g { font: 800 15px/1 'Poppins', sans-serif; color: #1a73e8; }
.rating-chip .rc-stars { color: #fbbc04; letter-spacing: 1px; }
.rating-chip .rc-score { font-weight: 800; color: var(--text); }
.rating-chip .rc-cnt { font-size: 13px; color: var(--text-soft); }
.hero .img-frame { position: relative; }
.hero-badge { position: absolute; left: -8px; bottom: 22px; z-index: 4; background: #fff; border-radius: 16px; padding: 10px 14px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 9px; animation: badgeFloat 4s ease-in-out infinite; }
.hero-badge .b-stars { color: #fbbc04; font-size: 17px; line-height: 1; }
.hero-badge .b-score { font: 800 18px/1 'Poppins', sans-serif; color: var(--text); }
.hero-badge .b-sub { font-size: 12px; font-weight: 700; color: var(--text-soft); }
@keyframes badgeFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@media (max-width: 760px) { .hero-badge { left: 8px; bottom: 8px; padding: 8px 11px; gap: 7px; } .hero-badge .b-score { font-size: 16px; } }
@media (prefers-reduced-motion: reduce) { .hero-badge { animation: none; } }
