/* As Leis da Riqueza — v2, gerado a partir do design final no Figma */

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

:root {
  --bg: #0a0a0a;
  --bg-card: #171717;
  --bg-card-2: #141414;
  --text: #f4f1ea;
  --text-muted: #dedede;
  --border: #2a2823;
  --accent: #c9a24b;
  --accent-text: #16130a;
  --gold-gradient: linear-gradient(-85deg, #e0ab56 18.6%, #e4cf9c 100%);
  --clock-bg: #1f1600;
  --clock-border: #3b2900;
  --red-border: #700101;
  --red-text: #ff0004;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Montserrat', -apple-system, sans-serif;
  font-weight: 500;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 { font-family: 'DM Serif Display', Georgia, serif; font-weight: 400; }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-gradient);
  color: var(--accent-text);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.3px;
  text-decoration: none;
  padding: 24px 32px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.btn:hover {
  background: linear-gradient(-85deg, #8a6423 18.6%, #a3894f 100%);
  color: var(--text);
  transform: translateY(-1px);
}
.btn-block { width: 100%; }

.mobile-br { display: none; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 24px; }

/* Logo */
.logo-img { height: 64px; width: auto; }
.logo-img.small { height: 52px; }

/* Countdown */
.countdown {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  justify-content: center;
}
.countdown-box {
  background: var(--clock-bg);
  border: 2px solid var(--clock-border);
  border-radius: 16px;
  padding: 18px 20px;
  text-align: center;
  min-width: 76px;
}
.countdown-box .num { display: block; font-size: 32px; font-weight: 600; line-height: 1.1; }
.countdown-box .label { display: block; font-size: 13px; color: var(--text-muted); margin-top: 4px; }

/* Urgency bar */
.urgency-bar {
  background: var(--gold-gradient);
  padding: 14px;
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
.urgency-bar p {
  color: var(--accent-text);
  font-weight: 700;
  font-size: clamp(11px, 1vw, 15px);
  letter-spacing: 0.3px;
  text-align: center;
  white-space: nowrap;
}
.urgency-bar .countdown { flex-shrink: 0; gap: 15.506px; }
.urgency-bar .countdown-box {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  min-width: 0;
  padding: 19.382px;
  border-radius: 8px;
  border-width: 1.938px;
}
.urgency-bar .countdown-box .num {
  display: inline;
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1;
}
.urgency-bar .countdown-box .label { display: inline; font-size: 12px; margin-top: 0; }

/* Hero */
.hero {
  position: relative;
  background: var(--bg);
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  aspect-ratio: 1920 / 603;
  overflow: hidden;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  display: block;
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 40.139%, #000 67.688%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 881px;
  margin: 0 auto;
  padding: 40px 24px 72px;
  padding-top: 344px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.hero-tag {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2.3px;
  text-transform: uppercase;
}
.hero h1 {
  font-size: 40px;
  line-height: 1.24;
  color: var(--text);
}
.hero .sub {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  color: var(--text-muted);
}
.hero .btn { width: 100%; max-width: 560px; font-size: 22px; }
.hero .note { font-size: 16px; color: var(--text-muted); }

/* Teaser */
.teaser {
  background: var(--gold-gradient);
  padding: 60px 24px;
  text-align: center;
}
.teaser p {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 34px;
  line-height: 1.22;
  color: #0a0a0a;
  max-width: 700px;
  margin: 0 auto;
}

/* Promise */
.promise { background: var(--bg); padding: 80px 24px; }
.promise-card {
  background: #f4f1ea;
  color: #0a0a0a;
  border-radius: 40px;
  padding: 40px;
  max-width: 854px;
  margin: 0 auto 32px;
}
.promise-card p { font-size: 20px; line-height: 1.55; font-weight: 600; }
.promise-card p + p { margin-top: 20px; }
.promise-card u { text-decoration-skip-ink: none; }

.checklist {
  max-width: 680px;
  margin: 0 auto;
  list-style: none;
}
.checklist li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
  font-size: 20px;
  color: #e0e0e0;
}
.checklist li:last-child { border-bottom: none; }
.checklist .check { color: var(--accent); flex-shrink: 0; }

/* Prova Inicial (Atenção) */
.proof-section {
  background: linear-gradient(to bottom, #610101, #0a0a0a 26%);
  padding: 80px 24px;
  display: flex;
  justify-content: center;
}
.proof-card {
  background: linear-gradient(to bottom, #310000, #000);
  border: 1px solid red;
  border-radius: 40px;
  padding: 40px;
  max-width: 680px;
  text-align: center;
}
.proof-card h2 {
  font-size: 60px;
  letter-spacing: 3.6px;
  margin-bottom: 28px;
}
.proof-card p { font-size: 18px; line-height: 1.55; text-align: left; }
.proof-card p + p { margin-top: 20px; }

/* Two-column sections (Problema, Culpado, Por Que Agora, Confiar) */
.two-col {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  max-width: 1140px;
  margin: 0 auto;
}
.two-col.vcenter { align-items: center; }
.two-col > div { flex: 1; min-width: 0; }
.two-col h2 { font-size: 32px; line-height: 1.25; margin-bottom: 24px; }
.two-col p { font-size: 18px; line-height: 1.5; color: var(--text); }
.two-col p + p { margin-top: 20px; }
.two-col img.side-photo { border-radius: 20px; width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }

/* Section 5 - Culpado */
.blame-section {
  position: relative;
  background: #0a0a0a;
  padding: 80px 24px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 794px;
}
.blame-bg { position: absolute; inset: 0; overflow: hidden; }
.blame-bg-img {
  position: absolute;
  top: -49%;
  left: 0;
  width: 100%;
  height: 136%;
  max-width: none;
  object-fit: cover;
  opacity: 0.9;
}
.blame-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0) 18%, #0a0a0a 34%);
}
.blame-content { position: relative; max-width: 574px; text-align: left; }
.blame-content h2 { font-size: 32px; margin-bottom: 24px; }
.blame-content p { font-size: 18px; line-height: 1.5; color: var(--text-muted); }
.blame-content p + p { margin-top: 20px; }

/* Section 6 - Por Que Agora */
.urgency-section {
  position: relative;
  padding: 80px 24px;
  overflow: hidden;
}
.urgency-glow {
  position: absolute;
  top: -50%; left: -35%;
  width: 140%; height: 180%;
  background: radial-gradient(circle, rgba(224,171,86,0.18) 0%, rgba(10,10,10,0) 65%);
  pointer-events: none;
}
.urgency-section img.hourglass { border-radius: 20px; width: 100%; max-width: 547px; aspect-ratio: 1/1; object-fit: cover; }
.urgency-section .underline-gold { text-decoration: underline; text-decoration-color: #e4cf9c; color: #e4cf9c; }

/* Author / Trust */
.author-photo {
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  height: 679px;
}
.author-photo img {
  position: absolute;
  top: -24.28%;
  left: 0;
  width: 100%;
  height: 145.13%;
  max-width: none;
  object-fit: cover;
}
.trust-text p { font-size: 15.5px; color: var(--text-muted); }

/* Section 8 - Como Funciona */
.method-section { background: var(--bg-card-2); border-bottom: 1px solid var(--border); padding: 80px 24px; }
.method-section h2 { text-align: center; font-size: 32px; color: var(--text); margin-bottom: 48px; max-width: 1080px; margin-left: auto; margin-right: auto; }

.method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 916px;
  margin: 0 auto 64px;
}
.method-card {
  background: linear-gradient(to bottom, #2e2000, #000);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
}
.method-card .icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #4f3700, #1e1400);
  margin-bottom: 16px;
}
.method-card .icon-badge img { width: 24px; height: 24px; }
.method-card .card-head { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.method-card .card-head .icon-badge { margin-bottom: 0; }
.method-card h3 { font-size: 24px; }
.method-card p { font-size: 15px; line-height: 1.48; color: var(--text-muted); }

.lesson-list { max-width: 720px; margin: 0 auto; text-align: center; }
.lesson-list h3 { font-size: 32px; margin-bottom: 24px; }
.lesson-list ol { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.lesson-list li {
  background: #050301;
  border: 1px solid #4a3300;
  border-radius: 10px;
  padding: 15px 25px;
  font-size: 16px;
  text-align: left;
  width: 100%;
}

/* Testimonials */
.testimonials-section { background: var(--bg); padding: 96px 24px; text-align: center; }
.testimonials-section h2 { font-size: 32px; max-width: 500px; margin: 0 auto 48px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1140px;
  margin: 0 auto;
  text-align: left;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
}
.testimonial-card .stars { color: var(--accent); font-size: 14px; margin-bottom: 12px; }
.testimonial-card p.quote { font-size: 14.5px; line-height: 1.5; margin-bottom: 12px; }
.testimonial-meta-row { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.testimonial-card .name { font-weight: 700; font-size: 16px; }
.testimonial-card .meta { font-size: 12.5px; color: var(--text-muted); }

/* Offer */
.offer-section { background: #f4f1ea; color: #0a0a0a; padding: 96px 24px; text-align: center; }
.offer-section > h2 { font-size: 32px; max-width: 615px; margin: 0 auto 32px; color: #0a0a0a; }
.offer-card {
  background: var(--bg-card);
  color: var(--text);
  border: 1px solid var(--accent);
  border-radius: 20px;
  padding: 40px 48px;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.offer-badge {
  background: #2b1d00;
  border: 1px solid #745101;
  border-radius: 100px;
  padding: 15px 25px;
  font-weight: 600;
  font-size: 20px;
  color: var(--text-muted);
}
.offer-items { width: 100%; display: flex; flex-direction: column; gap: 5px; }
.offer-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  font-size: 15px;
}
.offer-item .price { font-weight: 700; font-size: 20px; color: var(--text-muted); text-decoration: line-through; flex-shrink: 0; }
.offer-item .price.included { text-decoration: none; }

.offer-total-old { font-weight: 600; font-size: 32px; color: var(--red-text); }
.offer-total-old s { text-decoration-color: var(--red-text); }
.offer-por { font-weight: 600; font-size: 20px; }
.offer-price {
  font-family: 'DM Serif Display', serif;
  font-size: 90px;
  color: var(--accent);
  line-height: 1;
}
.offer-card .btn { font-size: 22px; padding: 24px 32px; }
.offer-fine { font-weight: 400; font-size: 14px; }

/* Guarantee */
.guarantee-section {
  position: relative;
  background: var(--bg-card-2);
  padding: 96px 24px;
  overflow: hidden;
  display: flex;
  justify-content: center;
}
.guarantee-glow {
  position: absolute;
  bottom: -30%;
  right: -20%;
  width: 70%;
  height: 120%;
  background: radial-gradient(circle, rgba(224,171,86,0.15) 0%, rgba(10,10,10,0) 65%);
}
.guarantee-card {
  position: relative;
  background: linear-gradient(210deg, #2d1c00 4%, #141414 74%);
  border: 1px solid var(--accent);
  border-radius: 40px;
  padding: 60px 40px;
  display: flex;
  gap: 40px;
  align-items: center;
  max-width: 844px;
}
.guarantee-seal { position: relative; width: 224px; height: 224px; flex-shrink: 0; }
.guarantee-seal img.ring { position: absolute; inset: 0; width: 100%; height: 100%; }
.guarantee-seal img.curved-text { position: absolute; inset: 18%; width: 64%; height: 64%; }
.guarantee-seal .seal-number {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 56px;
}
.guarantee-seal .seal-number span.dias { font-size: 22px; font-weight: 400; text-transform: uppercase; margin-left: 6px; }
.guarantee-text h2 { font-size: 44px; margin-bottom: 20px; white-space: nowrap; }
.guarantee-text p { font-size: 16px; line-height: 1.48; color: var(--text-muted); }

/* Closing */
.closing-section { background: var(--bg); padding: 96px 24px; text-align: center; }
.closing-section .inner { max-width: 1140px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 24px; }
.closing-section h2 { font-size: 44px; }
.closing-section .lead { font-size: 17px; color: var(--text-muted); max-width: 700px; }
.options-row { display: flex; gap: 20px; width: 100%; max-width: 894px; }
.option-card { flex: 1; border-radius: 20px; padding: 40px; text-align: left; }
.option-card.option-1 {
  background: linear-gradient(to bottom, #310000, #000);
  border: 1px solid var(--red-border);
}
.option-card.option-2 {
  background: linear-gradient(to bottom, #3c2a00, #000);
  border: 1px solid var(--accent);
}
.option-card h3 { font-size: 24px; margin-bottom: 14px; }
.option-card.option-1 h3 { color: var(--red-text); }
.option-card p { font-size: 14.5px; color: var(--text-muted); }
.closing-strong { font-weight: 700; font-size: 20px; }
.closing-note { font-size: 16px; }

/* FAQ (acordeão) */
.faq-section { background: var(--bg-card); padding: 96px 24px; text-align: center; }
.faq-section h2 { font-size: 32px; margin-bottom: 40px; }
.faq-list { max-width: 760px; margin: 0 auto 40px; text-align: left; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: #050301;
  border: 1px solid #4a3300;
  border-radius: 10px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 18px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q span:first-child { transition: color 0.2s ease; }
.faq-q:hover span:first-child { color: #f4e4bc; }
.faq-icon { color: var(--accent); font-size: 20px; flex-shrink: 0; transition: transform 0.2s ease; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; color: var(--text-muted); font-size: 15px; transition: max-height 0.25s ease; }
.faq-a-inner { padding: 0 25px 20px; line-height: 1.5; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-cta { display: inline-flex; }

/* Footer */
footer { padding: 56px 24px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px; }
footer .legal-line { font-size: 12.5px; color: var(--text-muted); line-height: 1.55; white-space: nowrap; }
footer .links { font-size: 13px; color: var(--text-muted); margin-top: 6px; }
footer .links a { color: inherit; text-decoration: none; }
footer .links a:hover { color: var(--accent); }

/* Sticky bottom bar (mobile) */
.sticky-bottom {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 40;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
  transform: translateY(100%);
  transition: transform 0.25s ease;
}
.sticky-bottom.visible { transform: translateY(0); }
.sticky-bottom .info strong { display: block; font-size: 14px; }
.sticky-bottom .info span { font-size: 12px; color: var(--text-muted); }
.sticky-bottom .btn { padding: 12px 20px; font-size: 14px; border-radius: 8px; white-space: nowrap; }

/* ============ RESPONSIVE (mobile) ============ */
@media (max-width: 900px) {
  .two-col, .options-row, .method-grid, .guarantee-card { flex-direction: column; }
  .method-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .offer-price { font-size: 90px; }
  .proof-card h2 { font-size: 44px; }
  .guarantee-card { text-align: center; }
  .guarantee-text { text-align: center; }
  .guarantee-text h2 { font-size: 8.5vw; white-space: normal; }
  .sticky-bottom { display: flex; }
  body { padding-bottom: 76px; }

  .mobile-br { display: inline; }
  .desktop-br { display: none; }
  .two-col.mobile-photo-first { flex-direction: column-reverse; }

  /* Padding vertical padrão 60px nas seções sem foto de fundo */
  .teaser, .promise, .proof-section, .section, .urgency-section,
  .method-section, .testimonials-section, .offer-section,
  .guarantee-section, .closing-section, .faq-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  /* Hero: garantir tudo na primeira dobra, headline em até 3 linhas com vw */
  .hero { min-height: 100svh; display: flex; align-items: flex-end; }
  .hero-photo { aspect-ratio: auto; inset: 0; }
  .hero-photo::after { background: linear-gradient(to bottom, rgba(0,0,0,0) 40.139%, #000 89.282%); }
  .hero-content { padding-top: 0; padding-bottom: 32px; gap: 12px; max-width: none; }
  .logo-img { height: 44px; }
  .hero h1 { font-size: clamp(20px, 6vw, 30px); line-height: 1.22; }
  .hero .sub { font-size: 16px; }
  .hero .btn { font-size: clamp(14px, 4.2vw, 18px); padding: 16px 12px; white-space: nowrap; }
  .hero .note { font-size: 13px; }

  /* Urgency bar: caixas grandes, igual ao frame "Urgency Bar - mobile" */
  .urgency-bar { flex-wrap: wrap; gap: 10px 16px; }
  .urgency-bar p { font-size: clamp(13px, 4vw, 20px); white-space: normal; max-width: 100%; }
  .urgency-bar .countdown { gap: clamp(8px, 4vw, 15.5px); }
  .urgency-bar .countdown-box { min-width: 0; padding: clamp(10px, 5vw, 19.4px); border-radius: 8px; border-width: 1.938px; gap: 5px; }
  .urgency-bar .countdown-box .num { font-size: clamp(18px, 7vw, 28px); }
  .urgency-bar .countdown-box .label { font-size: clamp(9px, 3vw, 12px); margin-top: 0; }

  .teaser p { font-size: 22px; }

  /* Seção 2 */
  .promise-card { padding: 32px; }
  .promise-card p { font-size: 16px; }
  .checklist li { font-size: 16px; }

  /* Seção 3 - Atenção */
  .proof-card { padding: 32px; }
  .proof-card p { font-size: 16px; }

  /* Seções com título 24px / corpo 16px */
  .two-col h2 { font-size: 24px; line-height: 1.4; }
  .two-col p { font-size: 16px; }
  .blame-content h2 { font-size: 24px; line-height: 1.4; }
  .blame-content p { font-size: 16px; }

  /* Seção 5 - fundo mobile específico: banda de foto no topo + texto abaixo */
  .blame-section { min-height: 0; padding: 0 24px 60px; display: block; }
  .blame-bg {
    position: relative;
    inset: auto;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    aspect-ratio: 800 / 478;
    overflow: hidden;
  }
  .blame-bg-img { top: -44.37%; left: -43.38%; width: 182.75%; height: 172%; opacity: 0.9; }
  .blame-gradient { background: linear-gradient(to bottom, rgba(10,10,10,0) 36.6%, #0a0a0a 100%); }
  .blame-content { position: relative; max-width: none; padding-top: 32px; }

  /* Seção 6 */
  .urgency-section h2 { font-size: 24px; line-height: 1.4; }
  .urgency-section p { font-size: 16px; }

  /* Seção 7 - foto acima, mesmo crop do desktop */
  .trust-row { flex-direction: column-reverse; }
  .author-photo { height: 0; padding-bottom: 123.5%; width: 100%; }
  .trust-text h2 { font-size: 24px; line-height: 1.4; }
  .trust-text p { font-size: 16px; }

  /* Seção 8 */
  .method-section h2 { font-size: 24px; line-height: 1.4; }
  .method-card p { font-size: 16px; }
  .lesson-list h3 { font-size: 24px; line-height: 1.4; }
  .lesson-list li { font-size: 16px; text-align: left; }

  /* Depoimentos */
  .testimonials-section h2 { font-size: 24px; line-height: 1.4; }
  .testimonial-card p.quote { font-size: 14px; }

  /* Oferta */
  .offer-section > h2 { font-size: 24px; line-height: 1.4; }
  .offer-card { padding: 32px 24px; }
  .offer-item { align-items: baseline; font-size: 14px; }
  .offer-item span:first-child { flex: 1 1 auto; min-width: 0; text-align: left; }
  .offer-item .price { flex-shrink: 0; font-size: 16px; margin-left: 8px; }
  .offer-fine { font-size: 14px; }
  .offer-card .btn { font-size: clamp(14px, 4.5vw, 18px); padding: 20px 16px; white-space: nowrap; }

  /* Garantia */
  .guarantee-card { padding: 40px 28px; }

  /* Fechamento */
  .closing-section h2 { font-size: 24px; }
  .closing-section .btn { font-size: clamp(14px, 4.5vw, 18px); white-space: nowrap; }

  /* FAQ */
  .faq-section h2 { font-size: 24px; line-height: 1.4; }
  .faq-cta { font-size: clamp(14px, 4.5vw, 18px); white-space: nowrap; }

  footer { padding: 40px 16px; }
  footer .legal-line { font-size: clamp(9px, 2.9vw, 12.5px); }
}
