/* ============================================================
   PowerMan RX 20.000mg — Landing page (static, Vercel-ready)
   Palette: preto/grafite + branco · VERDE = CTA/preços · OURO = estrelas/selos
   Fonts: Archivo (display) + Instrument Sans (body)
   ============================================================ */

:root {
  /* base */
  --ink:        #0a0a0c;
  --ink-2:      #101014;
  --graphite:   #16161c;
  --graphite-2: #1d1d25;
  --line:       #2a2a33;
  --paper:      #ffffff;
  --paper-2:    #f4f5f2;
  --paper-line: #e4e5e0;

  /* accents */
  --green:      #16c65a;
  --green-hi:   #29e074;
  --green-deep: #0a7a37;
  --gold:       #f5b820;
  --gold-soft:  #ffcf4d;
  --red:        #e6392c;

  /* text */
  --on-dark:    #f6f6f4;
  --on-dark-mut:#9a9aa6;
  --on-light:   #0a0a0c;
  --on-light-mut:#5a5a63;

  --radius:     16px;
  --radius-sm:  10px;
  --shadow-cta: 0 10px 30px -8px rgba(22,198,90,.55);
  --maxw:       1120px;
  --font-body:  "Instrument Sans", ui-sans-serif, system-ui, sans-serif;
  --font-disp:  "Archivo", ui-sans-serif, system-ui, sans-serif;
}

*,*::before,*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--on-dark);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }

h1,h2,h3 {
  font-family: var(--font-disp);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0;
}

/* focus visibility — WCAG 2.2 (2.4.11) */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

.eyebrow {
  font-family: var(--font-disp);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .74rem;
  color: var(--green);
}
.eyebrow.gold { color: var(--gold); }

/* ============================================================
   BUTTONS / CTA
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  font-family: var(--font-disp);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  min-height: 48px;
}
.btn-cta {
  background: linear-gradient(180deg, var(--green-hi), var(--green));
  color: #04250f;
  padding: 1rem 2rem;
  font-size: 1.06rem;
  box-shadow: var(--shadow-cta);
  width: 100%;
  max-width: 460px;
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -10px rgba(22,198,90,.7); }
.btn-cta:active { transform: translateY(0); }
.btn-cta .arrow { transition: transform .2s ease; }
.btn-cta:hover .arrow { transform: translateX(4px); }

.btn-sm {
  padding: .6rem 1.15rem;
  font-size: .82rem;
  min-height: 40px;
  background: var(--green);
  color: #04250f;
}
.btn-sm:hover { background: var(--green-hi); }

.cta-note {
  margin-top: .7rem;
  font-size: .82rem;
  color: var(--on-dark-mut);
  display: flex; align-items: center; justify-content: center; gap: .4rem;
}

/* ============================================================
   STARS
   ============================================================ */
.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.stars svg { width: 1em; height: 1em; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(10,10,12,.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex; align-items: center; gap: 1rem;
  height: 66px;
}
.brand { display: flex; align-items: center; gap: .6rem; margin-right: auto; }
.brand img { height: 34px; width: auto; }
.brand .brand-name {
  font-family: var(--font-disp); font-weight: 900; font-size: 1.05rem;
  letter-spacing: -.01em; text-transform: uppercase;
}
.brand .brand-name span { color: var(--green); }
.nav { display: flex; gap: 1.5rem; }
.nav a {
  font-weight: 600; font-size: .92rem; color: var(--on-dark-mut);
  transition: color .15s ease;
}
.nav a:hover { color: var(--on-dark); }
.header-cta { display: inline-flex; }
@media (max-width: 860px) {
  .nav { display: none; }
  .brand .brand-name { display: none; }
}

/* ============================================================
   SECTION FRAME
   ============================================================ */
section { position: relative; }
.band-dark  { background: var(--ink); color: var(--on-dark); }
.band-dark2 { background: var(--ink-2); color: var(--on-dark); }
.band-light { background: var(--paper); color: var(--on-light); }
.band-tint  { background: var(--paper-2); color: var(--on-light); }
.pad { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.center { text-align: center; }
.section-title { font-size: clamp(1.7rem, 4.5vw, 2.6rem); }
.section-sub { max-width: 620px; margin: 1rem auto 0; color: var(--on-dark-mut); }
.band-light .section-sub, .band-tint .section-sub { color: var(--on-light-mut); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background:
    radial-gradient(120% 90% at 78% 10%, rgba(22,198,90,.16), transparent 55%),
    radial-gradient(90% 70% at 10% 90%, rgba(245,184,32,.10), transparent 60%),
    var(--ink);
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(120% 100% at 50% 0%, #000, transparent 75%);
}
.hero .wrap {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding-top: clamp(2.2rem, 5vw, 3.5rem);
  padding-bottom: clamp(2.2rem, 5vw, 3.5rem);
}
.hero-media { position: relative; order: 2; }
.hero-media .glow {
  position: absolute; inset: 8% 12%; z-index: 0;
  background: radial-gradient(circle, rgba(22,198,90,.4), transparent 62%);
  filter: blur(38px);
}
.hero-media img.frasco {
  position: relative; z-index: 1; margin: 0 auto;
  max-width: 420px; width: 100%;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,.6));
  border-radius: 20px;
}
.hero-badge-anvisa {
  position: absolute; z-index: 3; right: 2%; bottom: 4%;
  width: 88px; height: 88px;
  background: rgba(10,10,12,.7); border: 1px solid var(--line);
  border-radius: 50%; display: grid; place-items: center; padding: 10px;
  backdrop-filter: blur(4px);
}
.hero-badge-anvisa img { width: 100%; }

.hero-copy { order: 1; }
.hero-rating { display: inline-flex; align-items: center; gap: .55rem; font-weight: 600; font-size: .92rem; margin-bottom: 1.1rem; }
.hero-rating .num { color: var(--gold); font-family: var(--font-disp); font-weight: 800; }
.hero-rating .count { color: var(--on-dark-mut); }
.hero h1 {
  font-size: clamp(2.1rem, 6vw, 3.6rem);
  font-weight: 900;
  text-transform: uppercase;
}
.hero h1 em { font-style: normal; color: var(--green); }
.hero .mg {
  display: inline-block; margin-top: .3rem;
  font-family: var(--font-disp); font-weight: 800; font-size: .8rem;
  letter-spacing: .12em; color: var(--ink); background: var(--gold);
  padding: .25rem .6rem; border-radius: 6px; vertical-align: middle;
}
.hero .tagline {
  color: var(--red); font-family: var(--font-disp); font-weight: 700;
  text-transform: uppercase; letter-spacing: .04em;
  font-size: clamp(1rem, 2.4vw, 1.25rem); margin: 1rem 0 1.2rem;
}
.hero .lead { color: var(--on-dark-mut); font-size: 1.05rem; max-width: 46ch; margin-bottom: 1.6rem; }

.seal-row {
  display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.4rem;
}
.seal {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--graphite); border: 1px solid var(--line);
  border-radius: 999px; padding: .45rem .85rem;
  font-size: .8rem; font-weight: 600; color: var(--on-dark);
}
.seal svg { width: 15px; height: 15px; color: var(--green); flex: none; }
.seal.gold svg { color: var(--gold); }
.seal .k { color: var(--on-dark-mut); font-weight: 500; }

@media (max-width: 800px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-media { order: 1; }
  .hero-copy { order: 2; text-align: center; }
  .hero .lead { margin-left: auto; margin-right: auto; }
  .hero-rating, .seal-row { justify-content: center; }
  .hero-media img.frasco { max-width: 300px; }
}

/* ============================================================
   OFFER + COUNTDOWN
   ============================================================ */
.offer { text-align: center; }
.offer h2 { font-size: clamp(1.5rem, 4vw, 2.3rem); max-width: 15ch; margin: .6rem auto 0; }
.offer h2 .hl { color: var(--green); }
.countdown { display: inline-flex; gap: .7rem; margin: 1.6rem 0; }
.cd-box {
  background: var(--graphite); border: 1px solid var(--line);
  border-radius: 12px; padding: .7rem 1rem; min-width: 78px;
}
.band-light .cd-box, .band-tint .cd-box { background: var(--ink); border-color: var(--ink); }
.cd-box .val {
  font-family: var(--font-disp); font-weight: 900; font-size: 2rem;
  color: var(--on-dark); line-height: 1; font-variant-numeric: tabular-nums;
}
.cd-box .lab { font-size: .66rem; text-transform: uppercase; letter-spacing: .14em; color: var(--on-dark-mut); margin-top: .35rem; }
.cd-sep { align-self: center; font-family: var(--font-disp); font-weight: 900; font-size: 1.6rem; color: var(--green); }
.offer .cta-wrap { display: flex; flex-direction: column; align-items: center; }

/* ============================================================
   FREE SHIPPING + GUARANTEE CARD
   ============================================================ */
.value-card {
  background: linear-gradient(180deg, var(--graphite), var(--ink-2));
  border: 1px solid var(--line); border-radius: 22px;
  padding: clamp(1.6rem, 4vw, 2.6rem);
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 2rem; align-items: center;
}
.value-card .vc-item { display: flex; align-items: center; gap: 1rem; }
.value-card .vc-item img { width: 92px; height: 92px; object-fit: contain; flex: none; }
.value-card .vc-icon {
  width: 60px; height: 60px; flex: none; border-radius: 14px;
  display: grid; place-items: center; background: rgba(22,198,90,.12);
  color: var(--green);
}
.value-card .vc-icon svg { width: 30px; height: 30px; }
.value-card h3 { font-size: 1.15rem; }
.value-card p { margin: .25rem 0 0; color: var(--on-dark-mut); font-size: .9rem; }
.value-card .vc-div { width: 1px; align-self: stretch; background: var(--line); }
@media (max-width: 760px) {
  .value-card { grid-template-columns: 1fr; gap: 1.4rem; text-align: left; }
  .value-card .vc-div { width: 100%; height: 1px; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.tst-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.3rem; margin-top: 2.6rem;
}
.tst-card {
  background: var(--graphite); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.4rem; display: flex; flex-direction: column;
}
.tst-head { display: flex; align-items: center; gap: .8rem; margin-bottom: .8rem; }
.tst-head img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid var(--green); }
.tst-head .who { font-weight: 700; font-family: var(--font-disp); }
.tst-head .loc { font-size: .8rem; color: var(--on-dark-mut); }
.tst-card .stars { font-size: 1rem; margin-bottom: .6rem; }
.tst-card p { margin: 0 0 1rem; color: #d6d6da; font-size: .95rem; }
.verified {
  margin-top: auto; display: inline-flex; align-items: center; gap: .4rem;
  font-size: .78rem; font-weight: 600; color: var(--green);
}
.verified svg { width: 15px; height: 15px; }
@media (max-width: 860px) { .tst-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PRICING
   ============================================================ */
.price-toggle {
  display: inline-flex; align-items: center; gap: .5rem; margin: 1.6rem auto 0;
  background: var(--ink); border: 1px solid var(--line); border-radius: 999px; padding: 5px;
}
.band-light .price-toggle, .band-tint .price-toggle { background: #eceee8; border-color: var(--paper-line); }
.price-toggle button {
  font-family: var(--font-disp); font-weight: 700; font-size: .85rem;
  border: none; background: transparent; color: var(--on-light-mut);
  padding: .55rem 1.1rem; border-radius: 999px; cursor: pointer; transition: all .18s ease;
}
.band-dark .price-toggle button, .band-dark2 .price-toggle button { color: var(--on-dark-mut); }
.price-toggle button[aria-pressed="true"] { background: var(--green); color: #04250f; }
.toggle-save { color: var(--green-deep); font-weight: 700; font-size: .8rem; }
.band-dark .toggle-save { color: var(--green-hi); }

.tiers { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.3rem; margin-top: 2.4rem; align-items: start; }
.tier {
  position: relative; background: var(--paper); color: var(--on-light);
  border: 2px solid var(--paper-line); border-radius: 20px; padding: 1.6rem 1.4rem;
  display: flex; flex-direction: column; cursor: pointer; transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.band-dark .tier, .band-dark2 .tier { background: var(--graphite); color: var(--on-dark); border-color: var(--line); }
.tier:hover { transform: translateY(-4px); }
.tier.selected {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(22,198,90,.16), 0 20px 40px -18px rgba(0,0,0,.5);
}
.tier.featured { border-color: var(--green); }
.tier-tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-disp); font-weight: 800; font-size: .72rem; letter-spacing: .08em;
  text-transform: uppercase; color: #04250f; background: var(--green);
  padding: .3rem .9rem; border-radius: 999px; white-space: nowrap;
}
.tier-tag.gold { background: var(--gold); color: var(--ink); }
.tier-radio {
  display: flex; align-items: center; gap: .5rem; font-weight: 700; font-family: var(--font-disp);
  font-size: 1rem; margin-bottom: .2rem;
}
.tier-radio .dot {
  width: 20px; height: 20px; border-radius: 50%; border: 2px solid currentColor; flex: none;
  display: grid; place-items: center; color: var(--on-light-mut);
}
.band-dark .tier-radio .dot, .band-dark2 .tier-radio .dot { color: var(--on-dark-mut); }
.tier.selected .tier-radio .dot { border-color: var(--green); color: var(--green); }
.tier.selected .tier-radio .dot::after { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--green); }
.tier-sub { font-size: .84rem; color: var(--on-light-mut); margin: 0 0 1rem; }
.band-dark .tier-sub, .band-dark2 .tier-sub { color: var(--on-dark-mut); }
.tier-img { height: 150px; object-fit: contain; margin: 0 auto 1rem; }
.tier-price { display: flex; align-items: baseline; gap: .4rem; justify-content: center; }
.tier-price .cur { font-family: var(--font-disp); font-weight: 700; font-size: 1.1rem; color: var(--green-deep); }
.band-dark .tier-price .cur, .band-dark2 .tier-price .cur { color: var(--green-hi); }
.tier-price .amt { font-family: var(--font-disp); font-weight: 900; font-size: 3.1rem; line-height: 1; color: var(--green-deep); }
.band-dark .tier-price .amt, .band-dark2 .tier-price .amt { color: var(--green-hi); }
.tier-price .per { font-size: .82rem; color: var(--on-light-mut); }
.band-dark .tier-price .per, .band-dark2 .tier-price .per { color: var(--on-dark-mut); }
.tier-save {
  text-align: center; font-weight: 700; color: var(--green-deep); font-size: .9rem; margin: .6rem 0;
}
.band-dark .tier-save, .band-dark2 .tier-save { color: var(--green-hi); }
.tier-total { text-align: center; font-size: .92rem; margin-bottom: 1.1rem; }
.tier-total .was { text-decoration: line-through; color: var(--on-light-mut); margin-right: .4rem; }
.band-dark .tier-total .was, .band-dark2 .tier-total .was { color: var(--on-dark-mut); }
.tier-total .now { font-weight: 700; }
.tier .btn { margin-top: auto; width: 100%; }
.tier-ship { text-align: center; font-size: .78rem; color: var(--on-light-mut); margin-top: .7rem; display: flex; align-items: center; justify-content: center; gap: .35rem; }
.band-dark .tier-ship, .band-dark2 .tier-ship { color: var(--on-dark-mut); }
@media (max-width: 860px) { .tiers { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; } }

/* ============================================================
   AGGREGATE RATING
   ============================================================ */
.agg { display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.agg .big { font-family: var(--font-disp); font-weight: 900; font-size: 3.4rem; color: var(--gold); line-height: 1; }
.agg .stars { font-size: 1.5rem; }
.agg .meta { color: var(--on-dark-mut); }
.band-light .agg .meta, .band-tint .agg .meta { color: var(--on-light-mut); }
.agg .links a { color: var(--green); font-weight: 600; }

/* ============================================================
   STATS
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.3rem; margin-top: 2.4rem; }
.stat {
  background: var(--graphite); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; text-align: center;
}
.stat .n { font-family: var(--font-disp); font-weight: 900; font-size: 2.8rem; color: var(--green); line-height: 1; }
.stat p { margin: .6rem 0 0; color: var(--on-dark-mut); font-size: .92rem; }
@media (max-width: 700px){ .stats { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 780px; margin: 2.4rem auto 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  color: var(--on-dark); font-family: var(--font-disp); font-weight: 700; font-size: 1.05rem;
  padding: 1.25rem 3rem 1.25rem 0; position: relative; display: flex; align-items: center;
}
.band-light .faq-q, .band-tint .faq-q { color: var(--on-light); }
.faq-q .ic {
  position: absolute; right: 0; width: 26px; height: 26px; flex: none; color: var(--green);
  transition: transform .25s ease;
}
.faq-q[aria-expanded="true"] .ic { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { margin: 0 0 1.25rem; color: var(--on-dark-mut); }
.band-light .faq-a p, .band-tint .faq-a p { color: var(--on-light-mut); }

/* ============================================================
   PITCH / HOW TO TAKE
   ============================================================ */
.pitch { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem,4vw,3rem); align-items: center; }
.pitch-media img { border-radius: 20px; box-shadow: 0 24px 50px -20px rgba(0,0,0,.6); }
.pitch h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 1rem; }
.pitch h2 .hl { color: var(--green); }
.pitch p { color: var(--on-dark-mut); margin: 0 0 1rem; }
.checklist { list-style: none; padding: 0; margin: 1.4rem 0; display: grid; gap: .7rem; }
.checklist li { display: flex; align-items: flex-start; gap: .7rem; font-weight: 500; }
.checklist svg { width: 22px; height: 22px; color: var(--green); flex: none; margin-top: 1px; }
@media (max-width: 800px){ .pitch { grid-template-columns: 1fr; } .pitch-media { max-width: 420px; margin: 0 auto; } }

/* ============================================================
   GUARANTEE
   ============================================================ */
.guarantee { text-align: center; display: flex; flex-direction: column; align-items: center; }
.guarantee img { width: 150px; height: 150px; object-fit: contain; margin-bottom: 1.2rem; }
.guarantee h2 { font-size: clamp(1.6rem,4vw,2.3rem); }
.guarantee p { max-width: 620px; color: var(--on-dark-mut); margin: 1rem auto 0; }

/* ============================================================
   REFERENCES / CREDIBILITY
   ============================================================ */
.cred-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.3rem; margin-top: 2.2rem; }
.cred-card {
  background: var(--paper); border: 1px solid var(--paper-line); border-radius: var(--radius);
  padding: 1.5rem; text-align: center;
}
.cred-card .cred-ic { width: 46px; height: 46px; color: var(--green-deep); margin: 0 auto .8rem; }
.cred-card h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.cred-card p { color: var(--on-light-mut); font-size: .9rem; margin: 0; }
@media (max-width: 760px){ .cred-grid { grid-template-columns: 1fr; } }

.refs { max-width: 820px; margin: 2.4rem auto 0; }
.refs ol { color: var(--on-light-mut); font-size: .85rem; line-height: 1.7; padding-left: 1.2rem; margin: 0; }
.anvisa-line {
  display: inline-flex; align-items: center; gap: .8rem; margin-top: 1.6rem;
  background: var(--paper-2); border: 1px solid var(--paper-line); border-radius: 999px;
  padding: .6rem 1.2rem; font-weight: 600; font-size: .92rem;
}
.anvisa-line img { width: 30px; height: 34px; }
.anvisa-line strong { color: var(--green-deep); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #060608; border-top: 1px solid var(--line); padding: 3rem 0 2rem; }
.foot-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
.foot-brand img { height: 40px; margin-bottom: 1rem; }
.foot-brand p { color: var(--on-dark-mut); font-size: .85rem; max-width: 36ch; }
.foot-col h4 { font-family: var(--font-disp); font-size: .95rem; margin-bottom: .8rem; text-transform: uppercase; letter-spacing: .06em; }
.foot-col a { display: block; color: var(--on-dark-mut); font-size: .88rem; padding: .28rem 0; }
.foot-col a:hover { color: var(--on-dark); }
.pay-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .5rem; }
.pay-chip {
  height: 30px; min-width: 46px; padding: 0 8px; border-radius: 6px; background: #fff;
  display: inline-flex; align-items: center; justify-content: center;
}
.pay-chip img { height: 18px; width: auto; }
.pay-chip.txt { font-family: var(--font-disp); font-weight: 800; font-size: .72rem; color: #111; letter-spacing: .02em; }
.pay-chip.pix { background: #32bcad; color: #fff; }
.pay-chip.boleto { background: #1c1c22; color: #fff; border: 1px solid var(--line); }
.pay-chip.elo { background: #000; color: #fff; }
.pay-chip.hiper { background: #e6392c; color: #fff; }
.foot-legal { border-top: 1px solid var(--line); margin-top: 2.4rem; padding-top: 1.6rem; }
.foot-legal p { color: #6a6a76; font-size: .78rem; line-height: 1.7; margin: 0 0 .8rem; }
.foot-legal .company { color: var(--on-dark-mut); }
@media (max-width: 760px){ .foot-top { grid-template-columns: 1fr; gap: 1.6rem; } }

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  background: rgba(10,10,12,.94); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line); padding: .7rem 16px calc(.7rem + env(safe-area-inset-bottom));
  transform: translateY(120%); transition: transform .3s ease;
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .btn { max-width: none; }
@media (min-width: 861px){ .sticky-cta { display: none; } }

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
