/* ============================================================
   Prime Detailing — «Год без сколов»
   Premium automotive landing · dark graphite + gold
   ============================================================ */

:root {
  /* surfaces */
  --bg:        #0A0A0B;
  --bg-2:      #0D0D0F;
  --surface:   #141417;
  --surface-2: #191A1E;
  --surface-3: #212227;

  /* gold */
  --gold:       #C9A24E;
  --gold-light: #E7CE8A;
  --gold-deep:  #9C7B33;
  --gold-grad:  linear-gradient(105deg, #EBD49B 0%, #C9A24E 48%, #A87F35 100%);

  /* lines */
  --line:        rgba(201,162,78,0.16);
  --line-strong: rgba(201,162,78,0.38);
  --line-soft:   rgba(255,255,255,0.07);

  /* text */
  --text:    #F4F2EC;
  --text-2:  #C7C3B9;
  --muted:   #908C82;
  --muted-2: #65625B;

  /* status */
  --bad:  #B4554A;
  --good: var(--gold);

  --maxw: 1160px;
  --radius: 16px;
  --ease: cubic-bezier(.2,.7,.2,1);
  --shadow: 0 30px 80px -30px rgba(0,0,0,0.85);

  font-synthesis: none;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: -0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

::selection { background: rgba(201,162,78,0.32); color: #fff; }

/* ---------- layout primitives ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

section { position: relative; }

.section-pad { padding: 84px 0; }
@media (min-width: 880px){ .section-pad { padding: 120px 0; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
}
.eyebrow::before {
  content: ""; width: 30px; height: 1px;
  background: var(--gold-grad);
}

.kicker {
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--muted);
}

h1, h2, h3 { font-weight: 800; line-height: 1.04; letter-spacing: -0.03em; }

.section-title {
  font-size: clamp(28px, 6vw, 50px);
  margin-top: 18px;
  max-width: 16ch;
}
.section-lead {
  margin-top: 20px; max-width: 56ch;
  color: var(--text-2); font-size: clamp(16px, 2.4vw, 19px); line-height: 1.65;
}

.gold { color: var(--gold); }
.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.muted { color: var(--muted); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 11px;
  font-family: inherit; font-weight: 700; font-size: 16px; letter-spacing: -0.01em;
  padding: 17px 28px; border-radius: 100px; border: 1px solid transparent;
  cursor: pointer; text-decoration: none; text-align: center;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
  will-change: transform;
}
.btn svg { flex-shrink: 0; }

.btn-gold {
  background: var(--gold-grad); color: #14110A;
  box-shadow: 0 16px 40px -16px rgba(201,162,78,0.7), inset 0 1px 0 rgba(255,255,255,0.35);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 26px 56px -18px rgba(201,162,78,0.85), inset 0 1px 0 rgba(255,255,255,0.4); }

.btn-ghost {
  background: rgba(255,255,255,0.02); color: var(--text);
  border-color: var(--line-strong);
}
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--gold); background: rgba(201,162,78,0.07); }

.btn-block { display: flex; width: 100%; }

.wa-note {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; color: var(--muted); margin-top: 16px;
}
.wa-note b { color: var(--text-2); font-weight: 700; }

/* ============================================================
   HERO
   ============================================================ */
.site-hero {
  position: relative;
  padding: 28px 0 70px;
  background:
    radial-gradient(120% 90% at 88% 8%, rgba(201,162,78,0.10), transparent 55%),
    radial-gradient(90% 70% at 0% 0%, rgba(201,162,78,0.05), transparent 60%),
    linear-gradient(180deg, #0C0C0E 0%, var(--bg) 100%);
  overflow: hidden;
}
.topo {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image:
    repeating-radial-gradient(circle at 12% -10%, transparent 0 38px, rgba(201,162,78,0.04) 38px 39px);
  mask-image: linear-gradient(160deg, #000 0%, transparent 45%);
}

.topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 40px; position: relative; z-index: 3;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand .shield { width: 30px; height: 34px; }
.brand-name {
  display: flex; flex-direction: column; line-height: 1.1;
}
.brand-name b { font-size: 16px; font-weight: 800; letter-spacing: 0.02em; white-space: nowrap; }
.brand-name span { font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--muted); }
.topbar .btn { padding: 12px 20px; font-size: 14px; }
.topbar-wa { display: none; }
@media (min-width: 760px){ .topbar-wa { display: inline-flex; } }

.hero-grid { position: relative; z-index: 3; display: grid; gap: 38px; }
@media (min-width: 980px){
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 48px; }
}

.hero-eyebrow { margin-bottom: 26px; }
.hero h1 {
  font-size: clamp(38px, 9vw, 76px);
  line-height: 0.99; letter-spacing: -0.035em;
}
.hero h1 .line { display: block; }
.hero-sub {
  margin-top: 26px; max-width: 46ch;
  font-size: clamp(16px, 2.6vw, 19px); color: var(--text-2); line-height: 1.62;
}
.hero-price {
  margin-top: 26px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  font-size: 15px; color: var(--text-2);
}
.hero-price .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
.hero-price b { color: var(--text); font-weight: 700; white-space: nowrap; }

.hero-cta { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; }

.badges {
  margin-top: 34px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
  max-width: 480px;
}
@media (min-width: 540px){ .badges { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 980px){ .badges { grid-template-columns: repeat(2, 1fr); } }
.badge {
  display: flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 600; color: var(--text-2);
  padding: 11px 13px; border: 1px solid var(--line); border-radius: 12px;
  background: rgba(255,255,255,0.015);
}
.badge .tick { color: var(--gold); flex-shrink: 0; }

/* hero image */
.hero-media { position: relative; }
.hero-frame {
  position: relative; border-radius: 20px;
  border: 1px solid var(--line-strong);
  border-top-right-radius: 64px;
  padding: 10px;
  background: linear-gradient(160deg, rgba(201,162,78,0.06), transparent);
}
.hero-frame image-slot {
  width: 100%; height: 380px; display: block;
}
@media (min-width: 540px){ .hero-frame image-slot { height: 460px; } }
@media (min-width: 980px){ .hero-frame image-slot { height: 540px; } }

.image-slot-styled {
  --slot-bg: var(--surface);
}

/* ============================================================
   reusable image slot look
   ============================================================ */
image-slot {
  background: var(--surface);
  border: 1px dashed rgba(201,162,78,0.30);
  color: var(--muted);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px; letter-spacing: 0.04em;
}

/* ============================================================
   SECTION: Timeline (что Алматы делает с кузовом)
   ============================================================ */
.timeline { display: grid; gap: 0; margin-top: 56px; }
@media (min-width: 880px){ .timeline { grid-template-columns: repeat(4, 1fr); } }

.tl-item {
  position: relative; padding: 30px 24px 34px;
  border-top: 1px solid var(--line);
}
@media (min-width: 880px){
  .tl-item { border-top: 1px solid var(--line); border-left: 1px solid var(--line-soft); }
  .tl-item:first-child { border-left: none; }
}
.tl-num {
  font-size: 13px; font-weight: 800; letter-spacing: 0.05em;
  color: var(--gold); margin-bottom: 14px; display: flex; align-items: center; gap: 10px;
}
.tl-num::after { content:""; flex:1; height:1px; background: var(--line); }
.tl-item h3 { font-size: 24px; margin-bottom: 12px; }
.tl-item p { color: var(--text-2); font-size: 15.5px; line-height: 1.6; }
.tl-item .season {
  position: absolute; right: 24px; top: 30px; font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted-2);
}

/* ============================================================
   SECTION: Не просто PPF — 3 cards
   ============================================================ */
.cards-3 { display: grid; gap: 18px; margin-top: 52px; }
@media (min-width: 760px){ .cards-3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 30px 28px; transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-5px); border-color: var(--line-strong); box-shadow: var(--shadow); }
.card-ic {
  width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
  border: 1px solid var(--line); background: rgba(201,162,78,0.06); color: var(--gold);
  margin-bottom: 22px;
}
.card h3 { font-size: 21px; margin-bottom: 12px; }
.card p { color: var(--text-2); font-size: 15.5px; }

/* ============================================================
   SECTION: Зоны риска
   ============================================================ */
.zones-grid { display: grid; gap: 36px; margin-top: 52px; align-items: center; }
@media (min-width: 980px){ .zones-grid { grid-template-columns: 1fr 1fr; gap: 56px; } }

.zone-media .hero-frame { border-top-right-radius: 48px; }
.zone-media image-slot { width: 100%; height: 360px; }

.zone-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.zone-chip {
  display: flex; align-items: center; gap: 13px;
  padding: 16px 16px; border: 1px solid var(--line-soft); border-radius: 12px;
  background: rgba(255,255,255,0.015); transition: border-color .3s var(--ease), background .3s var(--ease);
}
.zone-chip:hover { border-color: var(--line-strong); background: rgba(201,162,78,0.05); }
.zone-chip .zn {
  width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0;
  display: grid; place-items: center; font-size: 13px; font-weight: 800;
  color: var(--gold); border: 1px solid var(--line); background: rgba(201,162,78,0.06);
}
.zone-chip span { font-weight: 600; font-size: 15px; }
.zone-note {
  grid-column: 1 / -1; margin-top: 8px; color: var(--muted); font-size: 14.5px; line-height: 1.6;
}

/* ============================================================
   SECTION: Галерея авто
   ============================================================ */
.gallery { display: grid; gap: 14px; margin-top: 44px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 680px){ .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 980px){ .gallery { grid-template-columns: repeat(5, 1fr); } }
.gal-item {
  position: relative; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--line-soft); aspect-ratio: 3 / 4; background: var(--surface);
}
@media (min-width: 680px){ .gallery .gal-item:first-child { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; } }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); filter: saturate(.95) contrast(1.02); }
.gal-item:hover img { transform: scale(1.06); }
.gal-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(8,8,9,0.75));
}
.gal-cap {
  position: absolute; left: 14px; bottom: 12px; z-index: 2;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.06em; color: var(--text);
  display: flex; align-items: center; gap: 8px;
}
.gal-cap::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

/* ============================================================
   SECTION: Программы / пакеты
   ============================================================ */
.programs { background: linear-gradient(180deg, var(--bg), #0C0C0E 50%, var(--bg)); }
.pkg-grid { display: grid; gap: 18px; margin-top: 56px; align-items: stretch; }
@media (min-width: 980px){ .pkg-grid { grid-template-columns: repeat(3, 1fr); } }

.pkg {
  position: relative; display: flex; flex-direction: column;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line-soft); border-radius: 20px;
  padding: 32px 28px; transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.pkg:hover { transform: translateY(-5px); border-color: var(--line); }

.pkg.featured {
  border-color: var(--gold); 
  background: linear-gradient(180deg, #1C1A14, #131210);
  box-shadow: 0 40px 90px -40px rgba(201,162,78,0.45);
}
@media (min-width: 980px){ .pkg.featured { transform: translateY(-14px); } .pkg.featured:hover { transform: translateY(-19px); } }

.pkg-tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold-grad); color: #14110A; font-size: 11.5px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase; padding: 7px 16px; border-radius: 100px;
  white-space: nowrap;
}
.pkg h3 { font-size: 26px; }
.pkg-subtitle { color: var(--muted); font-size: 14.5px; margin-top: 8px; min-height: 42px; }
.pkg-price {
  margin: 22px 0; font-size: 13px; color: var(--muted); display: flex; align-items: baseline; gap: 8px;
}
.pkg-price b { font-size: 30px; font-weight: 800; letter-spacing: -0.02em; color: var(--text); }
.pkg.featured .pkg-price b { color: var(--gold-light); }

.pkg-divider { height: 1px; background: var(--line-soft); margin: 4px 0 22px; }
.pkg-list { list-style: none; display: grid; gap: 12px; margin-bottom: 24px; }
.pkg-list li { display: flex; gap: 11px; font-size: 15px; color: var(--text-2); align-items: flex-start; }
.pkg-list li svg { color: var(--gold); flex-shrink: 0; margin-top: 3px; }

.pkg-for {
  font-size: 13.5px; color: var(--muted); line-height: 1.55; margin-bottom: 24px;
  padding: 14px 16px; border-radius: 12px; background: rgba(255,255,255,0.02);
  border: 1px solid var(--line-soft);
}
.pkg .btn { margin-top: auto; }

/* ============================================================
   SECTION: Кому подходит — qualifier
   ============================================================ */
.qual-grid { display: grid; gap: 18px; margin-top: 52px; }
@media (min-width: 820px){ .qual-grid { grid-template-columns: 1fr 1fr; } }

.qual-col {
  border: 1px solid var(--line-soft); border-radius: 18px; padding: 30px 28px;
  background: rgba(255,255,255,0.013);
}
.qual-col.yes { border-color: var(--line); }
.qual-head { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.qual-head h3 { font-size: 20px; }
.qual-badge { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; flex-shrink: 0; }
.qual-badge.ok { background: rgba(201,162,78,0.12); color: var(--gold); border: 1px solid var(--line-strong); }
.qual-badge.no { background: rgba(180,85,74,0.12); color: var(--bad); border: 1px solid rgba(180,85,74,0.35); }
.qual-list { list-style: none; display: grid; gap: 15px; }
.qual-list li { display: flex; gap: 12px; font-size: 15.5px; color: var(--text-2); line-height: 1.5; }
.qual-list li svg { flex-shrink: 0; margin-top: 3px; }
.qual-col.yes svg { color: var(--gold); }
.qual-col.no svg { color: var(--bad); }
.qual-col.no li { color: var(--muted); }

/* ============================================================
   SECTION: Почему выгоднее — comparison
   ============================================================ */
.compare-grid { display: grid; gap: 18px; margin-top: 52px; }
@media (min-width: 820px){ .compare-grid { grid-template-columns: 1fr 1fr; } }

.cmp {
  border-radius: 18px; padding: 30px 28px; border: 1px solid var(--line-soft);
}
.cmp.without { background: rgba(180,85,74,0.04); }
.cmp.with { background: linear-gradient(180deg, rgba(201,162,78,0.07), transparent); border-color: var(--line); }
.cmp h3 { font-size: 20px; margin-bottom: 22px; display: flex; align-items: center; gap: 12px; }
.cmp h3 .tagdot { width: 10px; height: 10px; border-radius: 50%; }
.cmp.without .tagdot { background: var(--bad); }
.cmp.with .tagdot { background: var(--gold); }
.cmp ul { list-style: none; display: grid; gap: 14px; }
.cmp li { display: flex; gap: 12px; font-size: 15.5px; color: var(--text-2); }
.cmp li svg { flex-shrink: 0; margin-top: 3px; }
.cmp.without li svg { color: var(--bad); }
.cmp.with li svg { color: var(--gold); }

.cmp-cost {
  margin-top: 44px; padding: 26px 28px; border-radius: 16px;
  border: 1px solid var(--line); background: var(--surface);
  display: flex; gap: 18px; align-items: flex-start;
}
.cmp-cost svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.cmp-cost p { font-size: 16px; color: var(--text-2); line-height: 1.6; }
.cmp-cost b { color: var(--text); font-weight: 700; }

/* ============================================================
   SECTION: Как проходит запись — steps
   ============================================================ */
.steps { display: grid; gap: 0; margin-top: 56px; }
@media (min-width: 880px){ .steps { grid-template-columns: repeat(4, 1fr); } }
.step { padding: 30px 22px; border-top: 1px solid var(--line); position: relative; }
@media (min-width: 880px){ .step { border-left: 1px solid var(--line-soft); } .step:first-child { border-left: none; } }
.step-n {
  font-size: 44px; font-weight: 800; letter-spacing: -0.04em;
  color: transparent; -webkit-text-stroke: 1px var(--line-strong); margin-bottom: 16px;
}
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 14.5px; }

/* ============================================================
   SECTION: WhatsApp CTA + checklist filter
   ============================================================ */
.cta-band {
  border: 1px solid var(--line); border-radius: 24px; overflow: hidden;
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(201,162,78,0.12), transparent 55%),
    linear-gradient(180deg, var(--surface-2), var(--surface));
  display: grid; gap: 0;
}
@media (min-width: 920px){ .cta-band { grid-template-columns: 1.1fr 0.9fr; } }
.cta-left { padding: 44px 36px; }
@media (min-width: 920px){ .cta-left { padding: 56px 48px; } }
.cta-left h2 { font-size: clamp(26px, 4.6vw, 38px); margin-bottom: 18px; }
.cta-left p { color: var(--text-2); font-size: 16px; max-width: 44ch; margin-bottom: 30px; }
.cta-left .prices { display: grid; gap: 10px; margin-top: 6px; }
.cta-left .prices .pr { display: flex; justify-content: space-between; align-items: center; padding: 13px 0; border-bottom: 1px solid var(--line-soft); }
.cta-left .prices .pr:last-child { border-bottom: none; }
.cta-left .prices .pr span { color: var(--text-2); font-size: 15px; }
.cta-left .prices .pr b { color: var(--gold-light); font-weight: 800; font-size: 16px; }

.cta-check {
  padding: 44px 36px; border-top: 1px solid var(--line-soft);
  background: rgba(0,0,0,0.25);
}
@media (min-width: 920px){ .cta-check { border-top: none; border-left: 1px solid var(--line-soft); padding: 56px 44px; } }
.cta-check .kicker { margin-bottom: 22px; display: block; }
.check-list { list-style: none; display: grid; gap: 16px; margin-bottom: 30px; }
.check-list li { display: flex; gap: 13px; font-size: 15px; color: var(--text-2); line-height: 1.5; align-items: flex-start; }
.check-list li .cbx {
  width: 24px; height: 24px; border-radius: 7px; flex-shrink: 0;
  border: 1px solid var(--line-strong); background: rgba(201,162,78,0.08);
  display: grid; place-items: center; color: var(--gold);
}

/* ============================================================
   SECTION: FAQ
   ============================================================ */
.faq { max-width: 820px; margin: 56px auto 0; }
.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer; text-align: left;
  font-family: inherit; color: var(--text); font-size: clamp(17px, 2.6vw, 20px); font-weight: 700;
  padding: 26px 44px 26px 0; position: relative; letter-spacing: -0.01em;
  display: flex; transition: color .3s var(--ease);
}
.faq-q:hover { color: var(--gold-light); }
.faq-q .ic {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 26px; height: 26px; display: grid; place-items: center; color: var(--gold);
  transition: transform .4s var(--ease);
}
.faq-item.open .faq-q .ic { transform: translateY(-50%) rotate(45deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .45s var(--ease); }
.faq-a-inner { padding: 0 44px 28px 0; color: var(--text-2); font-size: 16px; line-height: 1.65; max-width: 62ch; }

/* ============================================================
   FINAL CTA + footer
   ============================================================ */
.final {
  text-align: center;
  background:
    radial-gradient(100% 120% at 50% 0%, rgba(201,162,78,0.12), transparent 55%),
    linear-gradient(180deg, var(--bg), #0C0C0E);
  border-top: 1px solid var(--line-soft);
}
.final h2 { font-size: clamp(30px, 6vw, 56px); max-width: 18ch; margin: 22px auto 0; }
.final p { color: var(--text-2); font-size: clamp(16px,2.4vw,19px); max-width: 52ch; margin: 22px auto 0; }
.final .hero-cta { justify-content: center; }
.final .hero-price { justify-content: center; }

.site-footer { border-top: 1px solid var(--line-soft); padding: 48px 0 56px; }
.footer-grid { display: grid; gap: 30px; }
@media (min-width: 760px){ .footer-grid { grid-template-columns: 1fr auto; align-items: center; } }
.footer-contacts { display: grid; gap: 14px; }
.footer-contacts a, .footer-contacts span {
  display: flex; align-items: center; gap: 12px; color: var(--text-2); text-decoration: none; font-size: 15px;
  transition: color .3s var(--ease);
}
.footer-contacts a:hover { color: var(--gold-light); }
.footer-contacts svg { color: var(--gold); flex-shrink: 0; }
.footer-legal { color: var(--muted-2); font-size: 13px; margin-top: 30px; line-height: 1.6; }

/* ---------- floating whatsapp ---------- */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold-grad); color: #14110A; font-weight: 800; font-size: 14.5px;
  padding: 14px 20px; border-radius: 100px; text-decoration: none;
  box-shadow: 0 18px 44px -16px rgba(201,162,78,0.8);
  transform: translateY(120px); opacity: 0; transition: transform .5s var(--ease), opacity .5s var(--ease);
}
.wa-float.show { transform: translateY(0); opacity: 1; }
.wa-float:hover { transform: translateY(-3px); }
.wa-float .lbl { display: none; }
@media (min-width: 560px){ .wa-float .lbl { display: inline; } }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce){
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   SMALL PHONES (<= 540px)
   ============================================================ */
@media (max-width: 540px){
  body { font-size: 16px; }
  .wrap { padding: 0 16px; }
  .section-pad { padding: 60px 0; }

  /* topbar: drop the phone pill, keep logo clean */
  .topbar { padding-bottom: 30px; }
  .topbar-wa { display: none !important; }

  .site-hero { padding: 18px 0 52px; }
  .hero-eyebrow { margin-bottom: 18px; }
  .hero h1 { font-size: clamp(34px, 11vw, 46px); }
  .hero-sub { margin-top: 20px; font-size: 16px; }
  .hero-price { margin-top: 20px; gap: 6px 12px; font-size: 14px; }
  .hero-cta { margin-top: 24px; }
  .hero-cta .btn { width: 100%; }
  .badges { margin-top: 26px; grid-template-columns: 1fr 1fr; }
  .hero-frame { border-top-right-radius: 40px; padding: 7px; }
  .hero-frame image-slot { height: 340px; }

  .section-title { font-size: clamp(26px, 8vw, 34px); margin-top: 14px; }
  .section-lead { margin-top: 16px; font-size: 16px; }

  /* timeline / steps: lighter padding */
  .tl-item { padding: 24px 4px 26px; }
  .tl-item h3 { font-size: 21px; }
  .step { padding: 24px 4px; }

  /* cards full width with tighter padding */
  .card { padding: 26px 22px; }
  .cards-3 { gap: 14px; }

  /* zones */
  .zones-grid { gap: 30px; }
  .zone-media image-slot { height: 320px; }

  /* programs */
  .pkg { padding: 28px 22px; }
  .pkg.featured { margin-top: 8px; }
  .pkg h3 { font-size: 23px; }
  .pkg-price b { font-size: 27px; }

  /* qualifier / compare */
  .qual-col, .cmp { padding: 26px 22px; }
  .cmp-cost { margin-top: 30px; padding: 22px 20px; flex-direction: column; gap: 12px; }

  /* gallery 2-up, no giant hero tile */
  .gallery { gap: 10px; }

  /* cta band */
  .cta-left, .cta-check { padding: 36px 24px; }
  .cta-left h2 { font-size: 28px; }

  /* faq */
  .faq-q { font-size: 17px; padding: 22px 40px 22px 0; }
  .faq-a-inner { padding-right: 36px; font-size: 15.5px; }

  /* footer */
  .footer-grid { gap: 24px; }

  /* floating WhatsApp: compact, never block content */
  .wa-float { right: 14px; bottom: 14px; padding: 13px 16px; }
}

/* extra-narrow safety (<=360px) */
@media (max-width: 360px){
  .hero h1 { font-size: 32px; }
  .badges { grid-template-columns: 1fr; }
  .hero-price { font-size: 13px; }
}
