/* ============================================================
   Criativos GS — style.css
   Design: Dark editorial · DM Sans + DM Mono
   Same system as estrutura-invisivel — clean, no decorative noise
   ============================================================ */

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

:root {
  --bg:      #09090b;
  --s1:      #111116;
  --s2:      #18181f;
  --b1:      #22222e;
  --b2:      #2e2e3e;
  --b3:      #44445a;
  --text:    #eceae2;
  --muted:   #80808e;
  --dim:     #404050;
  --acc:     #a8f060;   /* lime-green accent */
  --acc2:    #60d0a0;   /* teal variant */
  --danger:  #e05050;
  --warn:    #d09030;

  --fm: 'DM Mono', monospace;
  --fb: 'DM Sans', sans-serif;
  --r:  8px;
  --rl: 14px;

  --shadow: 0 4px 28px rgba(0,0,0,.5);
  --shadow-acc: 0 0 32px rgba(160,240,80,.15);
}

html { scroll-behavior: smooth }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--fb);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* subtle dot grid same as estrutura */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none; z-index: 0;
}

img { max-width: 100%; display: block }
a { color: inherit; text-decoration: none }
strong { font-weight: 500; color: var(--text) }

/* ── PROGRESS BAR ── */
#pbar {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0; z-index: 200;
  background: linear-gradient(90deg, var(--acc), var(--acc2));
  transition: width .08s;
}

/* ── CONTAINER ── */
.container { max-width: 1040px; margin: 0 auto; padding: 0 1.25rem }

/* ── URGENCY BAR ── */
.urgency-bar {
  position: sticky; top: 0; z-index: 100;
  background: #0d110a;
  border-bottom: 1px solid rgba(160,240,80,.12);
  color: var(--acc);
  font-family: var(--fm);
  font-size: 12px;
  letter-spacing: .04em;
  text-align: center;
  padding: 9px 20px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  flex-wrap: wrap;
}
.urgency-bar strong { color: #fff; font-weight: 500 }
.u-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--acc); flex-shrink: 0;
  animation: blink 1.2s ease-in-out infinite;
}
#bar-countdown { font-weight: 500; color: #fff; font-variant-numeric: tabular-nums }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.25} }

/* ── SHARED SECTION TOKENS ── */
.section-tag {
  display: inline-block;
  font-family: var(--fm);
  font-size: 13px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--acc);
  border: 1px solid rgba(160,240,80,.2);
  background: rgba(160,240,80,.05);
  border-radius: 100px;
  padding: 8px 20px;
  margin-bottom: 1rem;
}
.section-headline {
  font-family: var(--fb);
  font-size: clamp(1.65rem, 4vw, 2.6rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-sub { font-size: 17px; color: var(--text); max-width: 580px; margin-bottom: 2.5rem }
.slabel {
  font-family: var(--fm); font-size: 9px; letter-spacing: .14em;
  color: var(--dim); text-transform: uppercase;
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 8px;
}
.slabel::after { content: ''; flex: 1; height: 1px; background: var(--b1) }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--acc), var(--acc2));
  color: #000;
  font-family: var(--fm);
  font-size: 15px; font-weight: 700; letter-spacing: .05em;
  padding: 16px 32px;
  border-radius: 100px;
  transition: transform .18s, box-shadow .18s;
  box-shadow: 0 3px 20px rgba(160,240,80,.22);
  cursor: pointer; border: none; text-transform: uppercase;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 32px rgba(160,240,80,.38) }
.btn-primary svg { width: 16px; height: 16px }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(160,240,80,.4);
  color: var(--acc);
  font-family: var(--fm);
  font-size: 13px; letter-spacing: .05em;
  padding: 11px 24px; border-radius: 100px;
  transition: background .18s, color .18s;
  text-transform: uppercase;
}
.btn-secondary:hover { background: var(--acc); color: #000 }

/* ── HERO ── */
.hero {
  position: relative;
  padding: clamp(2rem,5vw,4rem) 0 clamp(3rem,7vw,6rem);
  text-align: center;
  overflow: hidden;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--fm); font-size: 9px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--acc);
  border: 1px solid rgba(160,240,80,.2);
  background: rgba(160,240,80,.05);
  border-radius: 100px; padding: 5px 16px;
  margin-bottom: 1.75rem;
}
.badge-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--acc) }
.hero-headline {
  font-size: clamp(1.9rem, 5vw, 3.4rem);
  font-weight: 500;
  line-height: 1.15;
  max-width: 820px;
  margin: 0 auto 1.25rem;
}
.hero-headline .hl { color: var(--acc) }
.hero-sub {
  font-size: clamp(16px, 2.2vw, 18px);
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 2.25rem;
}
.hero-sub strong { color: var(--text) }
/* video / imagem hero */
.hero-img-wrap {
  max-width: 680px;
  margin: 0 auto 2.25rem;
}
.hero-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--rl);
  border: 1px solid var(--b2);
}
/* hero bullets */
.hero-bullets {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
  text-align: left; max-width: 620px; width: 100%; margin: 0 auto 2rem;
}
.hero-bullets li {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--s1); border: 1px solid var(--b1);
  border-radius: var(--r); padding: 12px 16px;
  font-size: 15px; color: var(--text);
  transition: border-color .18s;
}
.hero-bullets li:hover { border-color: var(--b2) }
.bul-icon {
  width: 22px; height: 22px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--acc), var(--acc2));
  color: #000; font-weight: 700; font-size: 12px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
/* hero CTA + urgency bar empilhados */
.hero-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  width: 100%;
  max-width: 620px;
  margin: 0 auto .5rem;
}
.hero-cta-wrap .btn-primary {
  display: flex;
  width: fit-content;
}
.hero-cta-wrap .urgency-bar {
  position: relative;
  top: auto;
  width: 100%;
}
.hero-guarantee {
  font-family: var(--fm);
  font-size: 11px;
  color: var(--dim);
  margin-top: .5rem;
  display: block;
  text-align: center;
}

/* ── SECTION SPACING ── */
section { padding: clamp(2rem,4vw,4rem) 0 }

/* ── AMPLIFY / PROBLEM ── */
.amplify { border-top: 1px solid var(--b1) }
.amplify-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start;
  margin-top: 2.5rem;
}
@media (max-width: 780px) { .amplify-inner { grid-template-columns: 1fr } }
.amplify-text p { color: var(--text); margin-bottom: 1.1rem; font-size: 15.5px }

.callout-block {
  font-family: var(--fm); font-size: 13px; letter-spacing: .02em;
  color: var(--acc);
  border-left: 2px solid var(--acc);
  background: rgba(160,240,80,.05);
  padding: 12px 16px; border-radius: 0 var(--r) var(--r) 0;
  margin: 1.25rem 0;
  line-height: 1.6;
}

/* chart box */
.chart-wrap {
  background: var(--s1); border: 1px solid var(--b1);
  border-radius: var(--rl); padding: 20px 16px;
  overflow: hidden;
}
.chart-title {
  font-family: var(--fm); font-size: 9px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--dim); margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.chart-title::after { content: ''; flex: 1; height: 1px; background: var(--b1) }
.chart-legend {
  display: flex; gap: 16px; margin-top: 12px; flex-wrap: wrap;
}
.chart-legend span {
  font-family: var(--fm); font-size: 10px; letter-spacing: .05em;
  color: var(--muted); display: flex; align-items: center; gap: 6px;
}
.chart-legend span::before {
  content: ''; width: 20px; height: 2px;
  background: var(--leg-c, var(--acc)); display: block; border-radius: 1px;
}

/* stat cards */
.stat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 16px }
.stat-card {
  background: var(--s1); border: 1px solid var(--b1); border-radius: var(--r);
  padding: 14px 10px; text-align: center;
}
.stat-n {
  display: block; font-family: var(--fm); font-size: 1.5rem; font-weight: 500;
  color: var(--acc); line-height: 1;
}
.stat-l { display: block; font-family: var(--fm); font-size: 9px; color: var(--muted); margin-top: 4px; letter-spacing: .06em }

/* ── COMPARE ── */
.compare { border-top: 1px solid var(--b1); text-align: center }
.compare-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  margin-top: 2.5rem; text-align: left;
}
@media (max-width: 680px) { .compare-grid { grid-template-columns: 1fr } }
.compare-card { border-radius: var(--rl); overflow: hidden; border: 1px solid var(--b1) }
.compare-card.bad  { background: #150909; border-color: #3d1515 }
.compare-card.good { background: #0a140a; border-color: #1a3a1a }
.compare-head {
  padding: 18px 20px; border-bottom: 1px solid;
  display: flex; flex-direction: column; gap: 3px;
}
.compare-card.bad  .compare-head { border-color: #3d1515 }
.compare-card.good .compare-head { border-color: #1a3a1a }
.compare-label { font-family: var(--fb); font-size: 17px; font-weight: 500 }
.compare-card.bad  .compare-label { color: var(--danger) }
.compare-card.good .compare-label { color: var(--acc) }
.compare-desc { font-family: var(--fm); font-size: 13px; color: var(--text); letter-spacing: .05em }
.compare-list { list-style: none; padding: 18px 20px; display: flex; flex-direction: column; gap: 13px }
.compare-list li { display: flex; gap: 10px; font-size: 14.5px; color: var(--text); align-items: flex-start }
.compare-list li span { flex-shrink: 0; font-size: 15px; margin-top: 1px }

/* img placeholder */
.img-ph {
  background: var(--s2);
  border-radius: var(--r);
  display: block;
  margin: 16px 20px 0;
  border: 1px dashed var(--b2);
  overflow: hidden;
}
.img-ph img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r);
}
/* ── LESSONS ── */
.lessons { border-top: 1px solid var(--b1) }
.lessons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 16px;
  margin-top: 2.5rem;
}
.lesson-card {
  border-radius: var(--rl);
  overflow: hidden;
  transition: border-color .18s, transform .18s;
  position: relative;
}
.lesson-card:hover { transform: translateY(-2px) }
.lesson-img {
  position: relative;
  display: block;
  line-height: 0;
}
.lesson-img img {
  width: 100%;
  height: auto;
  display: block;
}
.lesson-num {
  position: absolute; top: 12px; left: 12px;
  background: var(--acc); color: #000;
  font-family: var(--fm); font-weight: 700; font-size: 12px; letter-spacing: .06em;
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.lesson-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.3) 60%, transparent 100%);
  padding: 28px 16px 14px;
  z-index: 2;
}
.lesson-overlay .niche-tag { margin-bottom: 5px }
.lesson-overlay h3 {
  font-size: 15px; font-weight: 500;
  color: #fff; line-height: 1.3;
}
.niche-tag {
  display: inline-block; font-family: var(--fm); font-size: 9px;
  letter-spacing: .08em; text-transform: uppercase;
  border-radius: 100px; padding: 3px 10px;
  border: 1px solid;
}
.nt-diabetes     { background: #130d1a; color: #c090f0; border-color: #4a2070 }
.nt-emag         { background: #0a1410; color: var(--acc); border-color: #1a4028 }
.nt-ed           { background: #150909; color: #f08080; border-color: #4a1a1a }
.nt-rejuv        { background: #130d16; color: #e080e0; border-color: #44185a }
.nt-dor          { background: #141000; color: #d0a040; border-color: #4a3a00 }
.lesson-body h3 { font-size: 14.5px; font-weight: 500; margin-bottom: 6px }
.lesson-body p  { font-size: 13.5px; color: var(--muted); line-height: 1.6 }

/* ── AUTHORITY ── */
.authority { border-top: 1px solid var(--b1); background: var(--s1) }
.auth-inner {
  display: grid; grid-template-columns: 340px 1fr; gap: 3.5rem; align-items: center;
}
@media (max-width: 780px) { .auth-inner { grid-template-columns: 1fr } }
.auth-img img { 
  width: 100%; 
  height: auto; 
  display: block; 
  border-radius: var(--rl); 
  border: 1px solid var(--b1); 
  max-height: 600px; 
  object-fit: cover; 
  object-position: center 8%; 
}
.auth-img .img-ph { aspect-ratio: 1/1 }
.auth-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 14px }
.auth-stat {
  background: var(--bg); border: 1px solid var(--b1); border-radius: var(--r);
  padding: 12px 8px; text-align: center;
}
.auth-n { display: block; font-family: var(--fm); font-size: 1.8rem; font-weight: 500; color: var(--acc); line-height: 1 }
.auth-l { display: block; font-family: var(--fm); font-size: 12px; color: var(--text); margin-top: 4px; letter-spacing: .06em }
.auth-text h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 500; margin-bottom: .3rem }
.auth-role { font-family: var(--fm); font-size: 11px; letter-spacing: .05em; color: var(--acc); margin-bottom: 1.25rem }
.auth-text p { color: var(--text); margin-bottom: 1rem; font-size: 15px }

/* ── REASONS ── */
.reasons { border-top: 1px solid var(--b1); text-align: center }
.reasons-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 2.5rem; text-align: left;
}
@media (max-width: 560px) { .reasons-grid { grid-template-columns: 1fr } }
.reason-card {
  background: var(--s1); border: 1px solid var(--b1); border-radius: var(--rl);
  padding: 24px; transition: border-color .18s;
}
.reason-card:hover { border-color: var(--acc) }
.reason-icon { font-size: 24px; margin-bottom: 12px }
.reason-card h3 { font-size: 14.5px; font-weight: 500; margin-bottom: 8px }
.reason-card p { font-size: 14px; color: var(--text) }

/* ── BONUS ── */
.bonuses { border-top: 1px solid var(--b1); background: var(--s1) }
.bonus-urgency {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--fm); font-size: 11px; letter-spacing: .05em;
  color: var(--warn);
  border: 1px solid rgba(208,144,48,.25);
  background: rgba(208,144,48,.06);
  border-radius: 100px; padding: 6px 14px; margin-bottom: .4rem;
}
.p-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--warn); animation: blink 1s infinite; flex-shrink: 0 }
.bonus-expire { font-family: var(--fm); font-size: 11px; color: var(--text); margin-bottom: 2rem }
#bonus-countdown { color: var(--text); font-weight: 500; font-variant-numeric: tabular-nums }

.bonus-list { display: flex; flex-direction: column; gap: 10px; margin: 2rem 0 }
.bonus-item {
  display: grid; grid-template-columns: 40px 1fr auto;
  gap: 16px; align-items: center;
  background: var(--bg); border: 1px solid var(--b1); border-radius: var(--rl);
  padding: 18px 20px; transition: border-color .18s;
}
.bonus-item:hover { border-color: var(--b2) }
.bonus-item.hi { border-color: rgba(208,144,48,.3) !important }
@media (max-width: 540px) { .bonus-item { grid-template-columns: 1fr; gap: 10px } }
.bonus-n { font-family: var(--fm); font-size: 1.3rem; font-weight: 500; color: var(--acc); opacity: .45 }
.bonus-item.hi .bonus-n { color: var(--warn) }
.bonus-content h4 { font-size: 14px; font-weight: 500; margin-bottom: 4px }
.bonus-content p { font-size: 15px; color: var(--text) }
.bonus-val { display: flex; flex-direction: column; align-items: flex-end; gap: 3px; flex-shrink: 0; min-width: 72px; text-align: right }
.val-was { font-family: var(--fm); font-size: 16px; color: var(--text); text-decoration: line-through }.val-free {
  font-family: var(--fm); font-size: 11px; font-weight: 500;
  color: var(--acc);
  background: rgba(160,240,80,.08); border: 1px solid rgba(160,240,80,.2);
  border-radius: 100px; padding: 2px 10px;
}

.bonus-total {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
  gap: .75rem;
  background: linear-gradient(135deg, #0a1408, #080f12);
  border: 1px solid rgba(160,240,80,.18);
  border-radius: var(--rl); padding: 18px 22px; margin-bottom: 1.75rem;
}
.bonus-total > span:first-child { font-family: var(--fm); font-size: 11px; color: var(--text); letter-spacing: .04em }
.bonus-total-val {
  font-family: var(--fm); font-size: 1.35rem; font-weight: 500;
  color: var(--acc);
}
.bonus-total-val em { font-style: normal; font-size: .85rem; color: var(--muted) }

/* ── CTA ── */
.cta-section { border-top: 1px solid var(--b1); text-align: center }
.discount-pill { 
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--fm); font-size: 11px; letter-spacing: .05em;
  color: var(--text);
  background: #150d00; border: 1px solid rgba(208,144,48,.3);
  border-radius: 100px; padding: 8px 18px; margin-bottom: 2.25rem;
}
.disc-badge {
  background: #d06010; color: #fff;
  font-family: var(--fm); font-weight: 700; font-size: 11px;
  padding: 3px 10px; border-radius: 100px;
}
.cta-box {
  max-width: 580px; margin: 0 auto;
  background: var(--s1); border: 1px solid var(--b2);
  border-radius: var(--rl); padding: clamp(1.75rem,4vw,3rem);
  box-shadow: var(--shadow-acc);
}
.cta-box-title { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 500; margin-bottom: .3rem }
.cta-box-sub { font-family: var(--fm); font-size: 11px; color: var(--text); letter-spacing: .05em; margin-bottom: 1.75rem }

/* timer */
.timer-label { font-family: var(--fm); font-size: 13px; color: var(--text); margin-bottom: .6rem; letter-spacing: .04em }
.timer-display {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg); border: 1px solid var(--b2);
  border-radius: var(--r); padding: 14px 24px; margin-bottom: 1.75rem;
}
.timer-unit { display: flex; flex-direction: column; align-items: center; gap: 3px }
.timer-unit span {
  font-family: var(--fm); font-size: 2rem; font-weight: 500; color: var(--acc);
  font-variant-numeric: tabular-nums; min-width: 2.4ch;
}
.timer-unit small { font-family: var(--fm); font-size: 9px; color: var(--text); text-transform: uppercase; letter-spacing: .08em }
.timer-colon { font-family: var(--fm); font-size: 1.8rem; color: var(--b3); margin-bottom: 14px }

/* price */
.price-was { font-family: var(--fm); font-size: 15px; color: var(--text); text-decoration: line-through; margin-bottom: .2rem }
.price-label { font-family: var(--fm); font-size: 11px; color: var(--text); letter-spacing: .06em; text-transform: uppercase; margin-bottom: .2rem }
.price-main { display: flex; align-items: flex-start; justify-content: center; line-height: 1; margin-bottom: .3rem }
.price-cur { font-family: var(--fm); font-size: 1.8rem; font-weight: 500; color: var(--text); margin-top: .3rem; margin-right: 3px }
.price-num {
  font-family: var(--fm); font-size: 5rem; font-weight: 500;
  color: var(--acc); line-height: 1;
}
.price-install { font-family: var(--fm); font-size: 12px; color: var(--text); margin-bottom: 1.75rem }

/* big CTA btn */
.btn-cta {
  display: block; width: 100%;
  background: linear-gradient(135deg, var(--acc), var(--acc2));
  color: #000;
  font-family: var(--fm); font-size: 15px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 20px 24px; border-radius: 100px; text-align: center;
  transition: transform .18s, box-shadow .18s;
  box-shadow: 0 3px 24px rgba(160,240,80,.25);
  margin-bottom: 10px; cursor: pointer;
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 36px rgba(160,240,80,.45) }
.cta-sub-note { font-family: var(--fm); font-size: 10px; color: var(--text); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 1.25rem }

.cta-checklist { list-style: none; text-align: left; display: flex; flex-direction: column; gap: 7px; margin-bottom: 1.25rem }
.cta-checklist li { font-size: 15px; color: var(--text) }

.payment-row {
  display: flex; justify-content: center; gap: 18px;
  font-family: var(--fm); font-size: 10px; color: var(--text); letter-spacing: .05em;
  padding-top: .9rem; border-top: 1px solid var(--b1);
  text-transform: uppercase;
}

/* ── MAPPINGS ── */
.mappings { border-top: 1px solid var(--b1) }
.mapping-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 1.5rem;
  max-width: 760px;
}
.mapping-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  color: var(--text);
  line-height: 1.6;
}
.mapping-icon {
  color: var(--acc);
  font-family: var(--fm);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── GUARANTEE ── */
.guarantee { border-top: 1px solid var(--b1) }
.guarantee-inner {
  display: grid; grid-template-columns: auto 1fr; gap: 3rem; align-items: start;
  max-width: 760px; margin: 0 auto;
}
@media (max-width: 560px) { .guarantee-inner { grid-template-columns: 1fr } }
.guarantee-badge {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-family: var(--fm); font-size: 10px; letter-spacing: .06em; color: var(--acc);
  text-align: center; min-width: 88px;
}
.guarantee-badge svg { width: 76px; height: 86px }
.guarantee-text h2 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); font-weight: 500; margin-bottom: .85rem }
.guarantee-text p { color: var(--text); margin-bottom: .85rem; font-size: 15px }
.guarantee-text .g-promise { color: var(--text) !important }

/* ── FAQ ── */
.faq { border-top: 1px solid var(--b1); text-align: center }
.faq-list {
  max-width: 700px; margin: 2.5rem auto;
  text-align: left; display: flex; flex-direction: column; gap: 2px;
}
.faq-item {
  background: var(--s1); border: 1px solid var(--b1); border-radius: var(--r);
  overflow: hidden; transition: border-color .18s;
}
.faq-item[open] { border-color: var(--acc) }
.faq-item summary {
  cursor: pointer; list-style: none;
  padding: 17px 20px;
  font-size: 14.5px; font-weight: 500;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none }
.faq-item summary::after {
  content: '+'; font-size: 1.3rem; color: var(--acc); flex-shrink: 0;
  transition: transform .2s; font-weight: 300;
}
.faq-item[open] summary::after { transform: rotate(45deg) }
.faq-answer { padding: 0 20px 18px; font-size: 14px; color: var(--muted); line-height: 1.7 }

.final-cta-wrap { text-align: center; padding-top: .5rem }
.final-cta-wrap h3 { font-size: clamp(1.2rem, 2.5vw, 1.65rem); font-weight: 500; margin-bottom: 1.25rem }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--b1);
  padding: 2rem 0; text-align: center;
}
footer p { font-family: var(--fm); font-size: 10px; color: var(--text); letter-spacing: .06em; line-height: 2 }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease }
.reveal.visible { opacity: 1; transform: none }

/* ── RESPONSIVE ── */
@media (max-width: 440px) {
  .timer-unit span { font-size: 1.6rem }
  .price-num { font-size: 4rem }
  .stat-row { grid-template-columns: repeat(3,1fr) }
  .urgency-bar { font-size: 10.5px; gap: 5px }
}
