/* =========================================================
   S.O.S EMAGRECIMENTO — PROTOCOLO DE 21 DIAS
   Design system + estilos da landing page
   ========================================================= */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol { margin: 0; }
ul[class], ol[class] { list-style: none; padding: 0; }
img, picture, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
html { -webkit-text-size-adjust: 100%; }
body { min-height: 100vh; }

/* ---------- Design tokens ---------- */
:root {
  /* Paleta — calibrada a partir das cores reais da logo */
  --teal-900: #082E30;   /* verde muito escuro */
  --teal-700: #06474C;   /* petróleo profundo (amostrado da logo) */
  --teal-600: #0E5F62;   /* petróleo médio, hover/gradientes */
  --teal-500: #156B6C;   /* teal secundário */
  --green-600: #23833F;  /* esmeralda escuro, contraste em texto sobre claro */
  --green-500: #2F9D50;  /* esmeralda (logo) */
  --green-400: #4CB565;  /* esmeralda claro, hovers */
  --bronze-500: #B57532; /* bronze/cobre, destaques premium */
  --bronze-600: #96601F;
  --sand-100: #F2E5D2;   /* areia clara */
  --offwhite: #FAF8F3;   /* fundo principal claro */
  --graphite-900: #151C1C;
  --white: #FFFFFF;

  --ink: var(--graphite-900);
  --ink-soft: #3C4747;
  --surface: var(--white);
  --surface-alt: var(--offwhite);
  --surface-sand: var(--sand-100);
  --surface-dark: var(--teal-900);
  --border-soft: rgba(8, 46, 48, 0.10);
  --border-soft-dark: rgba(255, 255, 255, 0.14);

  --brand-gradient: linear-gradient(135deg, var(--teal-700) 0%, var(--teal-900) 100%);
  --cta-gradient: linear-gradient(135deg, var(--green-500) 0%, var(--green-600) 100%);

  --font-heading: "Manrope", "Sora", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(8, 46, 48, 0.08);
  --shadow-md: 0 12px 32px rgba(8, 46, 48, 0.12);
  --shadow-lg: 0 24px 60px rgba(8, 46, 48, 0.18);

  --container-w: 1180px;
  --space-section: clamp(3.5rem, 6vw, 6.5rem);

  --header-h: 56px;
  --announcement-h: 40px;
}

/* ---------- Base ---------- */
body {
  font-family: var(--font-body);
  background: var(--surface-alt);
  color: var(--ink);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--teal-900);
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 800;
}

h1 { font-size: clamp(2rem, 4.4vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }

p { max-width: 62ch; }
p.no-measure { max-width: none; }

.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: 20px;
}

@media (min-width: 768px) {
  .container { padding-inline: 32px; }
}

section { position: relative; }

.section-pad {
  padding-block: var(--space-section);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-600);
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--bronze-500);
  border-radius: 2px;
}

.eyebrow--on-dark { color: var(--green-400); }

.section-head {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.section-head p { margin-top: 0.9rem; font-size: 1.05rem; color: var(--ink-soft); }

.bg-white { background: var(--surface); }
.bg-sand { background: var(--surface-sand); }
.bg-offwhite { background: var(--surface-alt); }
.bg-dark { background: var(--brand-gradient); color: var(--white); }
.bg-dark h2, .bg-dark h3 { color: var(--white); }
.bg-dark p { color: rgba(255,255,255,0.82); }

/* ---------- Skip link / accessibility ---------- */
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  background: var(--teal-900);
  color: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  z-index: 1000;
  transition: top 0.2s ease;
  font-weight: 600;
}
.skip-link:focus { top: 12px; }

:focus-visible {
  outline: 3px solid var(--bronze-500);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

html { scroll-behavior: smooth; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.01em;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  text-align: center;
  white-space: normal;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--cta-gradient);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(47, 157, 80, 0.35);
}
.btn-primary:hover { filter: brightness(1.06); box-shadow: 0 14px 30px rgba(47, 157, 80, 0.42); }

.btn-secondary {
  background: var(--white);
  color: var(--teal-900);
  border: 2px solid var(--teal-900);
}
.btn-secondary:hover { background: var(--teal-900); color: var(--white); }

.btn-block { width: 100%; }

.btn-lg { min-height: 58px; padding: 16px 32px; font-size: 1.05rem; }

.microcopy {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 10px;
  text-align: center;
}

.cta-wrap { display: flex; flex-direction: column; align-items: center; gap: 0; }

/* ---------- Announcement bar ---------- */
.announcement-bar {
  background: var(--teal-900);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 9px 16px;
  min-height: var(--announcement-h);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 2px;
}
.announcement-bar strong { color: var(--green-400); font-weight: 800; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 243, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--border-soft);
  height: var(--header-h);
}
.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--teal-900);
}
.brand img { height: 34px; width: 34px; border-radius: 8px; }
.brand span { font-size: 0.95rem; line-height: 1.1; }
.brand small { display: block; font-weight: 600; color: var(--ink-soft); font-size: 0.7rem; }

.btn-header {
  flex-shrink: 0;
  min-height: 40px;
  padding: 10px 18px;
  font-size: 0.85rem;
}

/* Abaixo de 640px o CTA fixo do rodapé (.mobile-sticky-cta) já cobre a ação
   de compra; esconder o botão do header evita quebra de linha e mantém a
   altura fixa de --header-h (evitando sobreposição de conteúdo ao rolar). */
@media (max-width: 639px) {
  .btn-header { display: none; }
}

@media (max-width: 380px) {
  .announcement-bar { font-size: 0.68rem; letter-spacing: 0.02em; padding-inline: 8px; }
}

/* ---------- Hero ---------- */
.hero {
  padding-block: clamp(2.25rem, 5vw, 4.5rem);
  background: linear-gradient(180deg, var(--surface-sand) 0%, var(--surface-alt) 100%);
  overflow: hidden;
}
.hero .container {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 960px) {
  .hero .container { grid-template-columns: 1.05fr 0.95fr; gap: 3rem; }
}

.hero-copy { display: flex; flex-direction: column; gap: 1.1rem; }
.hero-copy h1 { color: var(--teal-900); }
.hero-copy h1 .accent { color: var(--green-600); }
.hero-sub { font-size: 1.08rem; color: var(--ink-soft); max-width: 56ch; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 0.25rem;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-pill);
  padding: 7px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal-700);
  box-shadow: var(--shadow-sm);
}
.badge svg { width: 16px; height: 16px; color: var(--green-600); flex-shrink: 0; }

.hero-cta { margin-top: 0.5rem; }

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.mockup-stack {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(90px, 1fr));
  gap: 14px;
  max-width: 460px;
  width: 100%;
}
.mockup-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--white);
  border: 1px solid var(--border-soft);
  aspect-ratio: 3 / 4.2;
  transition: transform 0.25s ease;
}
.mockup-card:nth-child(2) { transform: translateY(-18px); }
.mockup-card:hover { transform: translateY(-6px); }
.mockup-card:nth-child(2):hover { transform: translateY(-24px); }
.mockup-card img { width: 100%; height: 100%; object-fit: cover; }

.hero-seal {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
  padding: 10px 18px;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--teal-900);
  white-space: nowrap;
  border: 1px solid var(--border-soft);
}

/* ---------- Pain / cards grid ---------- */
.pain-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .pain-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .pain-grid { grid-template-columns: repeat(3, 1fr); } }

.pain-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.3rem;
  display: flex;
  gap: 14px;
  box-shadow: var(--shadow-sm);
}
.pain-card .icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--surface-sand);
  color: var(--bronze-600);
  display: flex; align-items: center; justify-content: center;
}
.pain-card p { font-size: 0.98rem; color: var(--ink-soft); margin: 0; }

.pain-closer {
  margin-top: 2.2rem;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  color: var(--teal-900);
  max-width: 720px;
  margin-inline: auto;
}

.section-cta { display: flex; justify-content: center; margin-top: 2rem; }

/* ---------- Belief break ---------- */
.belief-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 3rem);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-soft);
  display: grid;
  gap: 1.75rem;
}
@media (min-width: 900px) { .belief-panel { grid-template-columns: 1.1fr 0.9fr; align-items: center; } }
.belief-highlight {
  background: var(--brand-gradient);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  text-align: center;
}

/* ---------- Pillars ---------- */
.pillars-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 860px) { .pillars-grid { grid-template-columns: repeat(3, 1fr); } }

.pillar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.9rem 1.6rem;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--green-500);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.pillar-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.pillar-card:nth-child(2) { border-top-color: var(--teal-600); }
.pillar-card:nth-child(3) { border-top-color: var(--bronze-500); }

.pillar-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--surface-sand);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-700);
}
.pillar-icon svg { width: 26px; height: 26px; }

.pillar-card ul { display: flex; flex-direction: column; gap: 0.5rem; }
.pillar-card li {
  font-size: 0.93rem;
  color: var(--ink-soft);
  padding-left: 22px;
  position: relative;
}
.pillar-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.5em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green-500);
}

/* ---------- Deliverables ---------- */
.deliverables-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1fr;
}
@media (min-width: 860px) { .deliverables-grid { grid-template-columns: repeat(3, 1fr); } }

.deliverable-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
}
.deliverable-cover {
  aspect-ratio: 3 / 4;
  background: var(--surface-sand);
  overflow: hidden;
}
.deliverable-cover img { width: 100%; height: 100%; object-fit: cover; }
.deliverable-body { padding: 1.4rem 1.3rem 1.6rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.deliverable-meta {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.chip {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--teal-700);
  background: var(--surface-sand);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.deliverable-body ul { margin-top: 0.4rem; display: flex; flex-direction: column; gap: 0.4rem; }
.deliverable-body li {
  font-size: 0.9rem;
  color: var(--ink-soft);
  padding-left: 20px;
  position: relative;
}
.deliverable-body li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-600);
  font-weight: 800;
  font-size: 0.85em;
}

.deliverables-total {
  margin-top: 2.25rem;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--teal-900);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  background: var(--surface-sand);
  border-radius: var(--radius-pill);
  padding: 14px 24px;
  max-width: 560px;
  margin-inline: auto;
}

/* ---------- Timeline ---------- */
.timeline {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  position: relative;
}
@media (min-width: 860px) { .timeline { grid-template-columns: repeat(3, 1fr); } }

.timeline-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.4rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
  position: relative;
}
.timeline-week {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--brand-gradient);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  margin-bottom: 0.9rem;
}
.timeline-item h3 { margin-bottom: 0.6rem; }
.timeline-item ul { display: flex; flex-direction: column; gap: 0.45rem; }
.timeline-item li {
  font-size: 0.92rem; color: var(--ink-soft);
  padding-left: 18px; position: relative;
}
.timeline-item li::before {
  content: "";
  position: absolute; left: 0; top: 0.55em;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--bronze-500);
}

/* ---------- Benefits ---------- */
.benefits-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }

.benefit-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--border-soft);
}
.benefit-item .icon {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--surface-sand);
  color: var(--green-600);
  display: flex; align-items: center; justify-content: center;
}
.benefit-item p { margin: 0; font-size: 0.96rem; color: var(--ink-soft); }

/* ---------- Experts ---------- */
.experts-wrap {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) { .experts-wrap { grid-template-columns: 0.85fr 1.15fr; } }

.experts-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.experts-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
  aspect-ratio: 3 / 4;
}

.expert-block {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.5rem;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
}
.expert-block + .expert-block { margin-top: 1.1rem; }
.expert-block h3 { margin-bottom: 0.5rem; }
.expert-block p { font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 0.5rem; }
.expert-credential {
  display: inline-block;
  margin-top: 0.3rem;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--teal-700);
  background: var(--surface-sand);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

/* ---------- Testimonials / prova social ---------- */
.testimonial-editorial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 3rem);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
  max-width: 780px;
  margin-inline: auto;
}
.testimonial-editorial blockquote {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  color: var(--teal-900);
  line-height: 1.4;
}
.testimonial-editorial cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-weight: 600;
}

/* ---------- Audience (para quem é / não é) ---------- */
.audience-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) { .audience-grid { grid-template-columns: repeat(2, 1fr); } }

.audience-card {
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.6rem;
  border: 1px solid var(--border-soft);
}
.audience-card.is {
  background: var(--white);
  border-top: 4px solid var(--green-500);
}
.audience-card.isnot {
  background: var(--surface-sand);
  border-top: 4px solid var(--bronze-500);
}
.audience-card h3 { margin-bottom: 1rem; }
.audience-card ul { display: flex; flex-direction: column; gap: 0.7rem; }
.audience-card li {
  font-size: 0.95rem; color: var(--ink-soft);
  padding-left: 24px; position: relative;
}
.audience-card.is li::before {
  content: "✓"; position: absolute; left: 0; color: var(--green-600); font-weight: 800;
}
.audience-card.isnot li::before {
  content: "✕"; position: absolute; left: 0; color: var(--bronze-600); font-weight: 800;
}

/* ---------- Offer ---------- */
.offer-card {
  max-width: 640px;
  margin-inline: auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--green-500);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  position: relative;
}
.offer-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-lg);
  background: var(--cta-gradient);
  z-index: -1;
  opacity: 0.06;
}
.offer-title { text-align: center; margin-bottom: 1.5rem; }
.offer-list { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.75rem; }
.offer-list li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.98rem; color: var(--ink);
  font-weight: 500;
}
.offer-list li svg { flex-shrink: 0; width: 20px; height: 20px; color: var(--green-600); margin-top: 2px; }
.offer-price-block {
  text-align: center;
  padding: 1.5rem 0;
  border-top: 1px dashed var(--border-soft);
  border-bottom: 1px dashed var(--border-soft);
  margin-bottom: 1.75rem;
}
.offer-price-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.offer-price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.5rem, 7vw, 3.5rem);
  color: var(--teal-900);
  line-height: 1.1;
  margin-top: 0.35rem;
}
.offer-price sup { font-size: 0.4em; vertical-align: super; }

/* ---------- Guarantee (condicional) ---------- */
.guarantee-panel {
  max-width: 720px;
  margin-inline: auto;
  background: var(--surface-sand);
  border: 1px dashed var(--bronze-500);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin-inline: auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 1.1rem 1.3rem;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--teal-900);
}
.faq-question .plus {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--surface-sand);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s ease;
  color: var(--teal-700);
}
.faq-item[data-open="true"] .plus { transform: rotate(45deg); background: var(--green-500); color: var(--white); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}
.faq-answer-inner { padding: 0 1.3rem 1.2rem; }
.faq-answer-inner p { font-size: 0.95rem; color: var(--ink-soft); }

/* ---------- Final CTA ---------- */
.final-cta {
  text-align: center;
}
.final-cta h2 { color: var(--white); max-width: 760px; margin-inline: auto; }
.final-cta p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 1rem auto 1.75rem; }

/* ---------- Mobile sticky CTA ---------- */
.mobile-sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: var(--white);
  border-top: 1px solid var(--border-soft);
  box-shadow: 0 -8px 24px rgba(8,46,48,0.14);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  display: none;
  align-items: center;
  gap: 10px;
  transform: translateY(100%);
  transition: transform 0.25s ease;
}
.mobile-sticky-cta.is-visible { transform: translateY(0); }
.mobile-sticky-cta .btn { flex: 1; min-height: 48px; font-size: 0.92rem; padding: 12px 16px; }
.mobile-sticky-cta .sticky-price { font-family: var(--font-heading); font-weight: 800; color: var(--teal-900); font-size: 0.85rem; white-space: nowrap; }
.mobile-sticky-close {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--surface-sand);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft);
  border: none;
}

@media (max-width: 767px) {
  .mobile-sticky-cta { display: flex; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--teal-900);
  color: rgba(255,255,255,0.82);
  padding-block: 3rem 6.5rem;
}
@media (min-width: 768px) { .site-footer { padding-bottom: 3.5rem; } }

.footer-top {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-soft-dark);
  margin-bottom: 1.75rem;
}
@media (min-width: 800px) { .footer-top { grid-template-columns: 1.2fr 1fr 1fr; } }

.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 0.75rem; }
.footer-brand img { height: 38px; width: 38px; border-radius: 8px; }
.footer-brand span { font-family: var(--font-heading); font-weight: 800; color: var(--white); }
.footer-col h4 { color: var(--white); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.9rem; font-family: var(--font-heading); }
.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col a { font-size: 0.9rem; }
.footer-col a:hover { color: var(--white); text-decoration: underline; }
.footer-credentials { font-size: 0.85rem; display: flex; flex-direction: column; gap: 0.35rem; }

.footer-legal-notice {
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 900px;
}

.footer-copy {
  margin-top: 1.75rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--cta-gradient);
  z-index: 200;
  width: 0%;
  transition: width 0.1s linear;
}

/* ---------- Utility ---------- */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
