/* ==========================================================================
   ANA LUIZA — MENTORIA PREMIUM | Design System (preto joalheria + ouro)
   ========================================================================== */

:root {
  --bg: #0E0E0D;
  --bg-raise: #151413;
  --surface: rgba(255, 255, 255, .03);
  --surface-hover: rgba(255, 255, 255, .055);
  --hairline: rgba(230, 180, 119, .22);
  --hairline-soft: rgba(255, 255, 255, .08);

  --gold: #E6B477;
  --gold-light: #F3D9AF;
  --gold-dark: #C99A55;
  --gold-gradient: linear-gradient(120deg, #F0D9A8 0%, #E6B477 45%, #C99A55 100%);

  --text: #EDE9E3;
  --text-soft: #A8A29A;

  --font: 'Jost', system-ui, -apple-system, sans-serif;

  --radius: 18px;
  --radius-sm: 10px;
  --container: 1180px;
  --urgency-h: 42px;
  --header-h: 76px;

  --shadow-gold: 0 24px 60px -22px rgba(201, 154, 85, .55);
  --ease: cubic-bezier(.22, .8, .3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-weight: 400;
  letter-spacing: .02em;
  line-height: 1.14;
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .74rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold-dark);
}

.section-title {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  margin-bottom: 18px;
}
.section-title em {
  font-style: normal;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-soft);
  max-width: 640px;
}

.section {
  position: relative;
  padding: 100px 0;
  border-top: 1px solid var(--hairline-soft);
}
.section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 8%, rgba(230, 180, 119, .06), transparent 42%),
    radial-gradient(circle at 88% 82%, rgba(230, 180, 119, .05), transparent 46%);
}
.section > .container { position: relative; z-index: 1; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-size: .93rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.btn--gold {
  background: var(--gold-gradient);
  color: #1A1409;
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover { transform: translateY(-2px); }
.btn--ghost {
  border: 1px solid var(--hairline);
  color: var(--gold-light);
}
.btn--ghost:hover { background: var(--surface-hover); border-color: var(--gold); }
.btn--lg { padding: 19px 44px; font-size: 1rem; }
.btn__arrow { width: 18px; height: 18px; flex-shrink: 0; }

/* ---------- Cards ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--hairline-soft);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: border-color .3s var(--ease), transform .3s var(--ease), background .3s var(--ease);
}
.card:hover {
  border-color: var(--hairline);
  background: var(--surface-hover);
  transform: translateY(-2px);
}

/* ---------- Número em outline ---------- */
.num-outline {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold-dark);
  letter-spacing: .02em;
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* ---------- Barra de urgência ---------- */
.urgency {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--urgency-h);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-gradient);
  color: #1A1409;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-align: center;
  padding: 0 16px;
  z-index: 60;
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: var(--urgency-h); left: 0; right: 0;
  height: var(--header-h);
  z-index: 50;
  transition: background .3s var(--ease), height .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: rgba(14, 14, 13, .92);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--hairline-soft);
  height: 64px;
}
.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}
.header__brand { display: flex; align-items: center; gap: 12px; }
.header__brand img { width: 42px; height: auto; }
.header__brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.header__brand-text strong {
  font-size: .84rem; font-weight: 500; letter-spacing: .26em; color: #fff;
}
.header__brand-text small {
  font-size: .6rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold);
}
.header__nav { display: flex; gap: 26px; margin-left: auto; }
.header__nav a {
  font-size: .84rem;
  letter-spacing: .08em;
  color: var(--text-soft);
  transition: color .25s var(--ease);
}
.header__nav a:hover { color: var(--gold); }
.header__cta { padding: 12px 24px; font-size: .78rem; }
.header__burger { display: none; flex-direction: column; gap: 5px; padding: 8px; margin-left: auto; }
.header__burger span {
  display: block; width: 24px; height: 1.5px; background: var(--gold);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.header__burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.header__burger.is-open span:nth-child(2) { opacity: 0; }
.header__burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- Footer ---------- */
.footer {
  background: #0A0A09;
  border-top: 1px solid var(--hairline-soft);
  padding: 70px 0 40px;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--hairline-soft);
}
.footer__brand { display: flex; align-items: center; gap: 14px; }
.footer__brand img { width: 52px; }
.footer__brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.footer__brand-text strong { font-size: .95rem; letter-spacing: .26em; color: #fff; font-weight: 500; }
.footer__brand-text span { font-size: .65rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); }
.footer__tagline { margin-top: 18px; color: var(--text-soft); max-width: 380px; font-size: .95rem; }
.footer__social { display: flex; gap: 14px; }
.footer__social a {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  color: var(--gold);
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.footer__social a:hover { background: var(--surface-hover); transform: translateY(-2px); }
.footer__social svg { width: 20px; height: 20px; }
.footer__bottom {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .82rem;
  color: var(--text-soft);
}
.footer__bottom-links { display: flex; gap: 22px; }
.footer__bottom-links a:hover { color: var(--gold); }

/* ---------- Sticky CTA (mobile) ---------- */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 55;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 16px;
  background: rgba(10, 10, 9, .96);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--hairline);
  transform: translateY(110%);
  transition: transform .35s var(--ease);
}
.sticky-cta.is-visible { transform: none; }
.sticky-cta__price { font-size: .85rem; color: var(--text-soft); }
.sticky-cta__price strong { color: var(--gold); font-weight: 600; }
.sticky-cta .btn { padding: 12px 20px; font-size: .78rem; }

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
  position: fixed;
  right: 20px; bottom: 24px;
  z-index: 54;
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  box-shadow: 0 8px 20px rgba(37, 211, 102, .4);
  transition: transform .3s var(--ease);
}
.wa-float:hover { transform: scale(1.06); }
.wa-float svg { width: 26px; height: 26px; }

/* ---------- Responsivo ---------- */
@media (max-width: 960px) {
  body { padding-top: var(--urgency-h); }
  .header { position: static; top: auto; }
  .header__nav {
    position: fixed;
    inset: calc(var(--urgency-h) + var(--header-h)) 0 auto 0;
    z-index: 56;
    flex-direction: column;
    gap: 0;
    background: rgba(10, 10, 9, .98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--hairline-soft);
    padding: 10px 24px 24px;
    margin-left: 0;
    display: none;
  }
  .header__nav.is-open { display: flex; }
  .header__nav a { padding: 15px 0; border-bottom: 1px solid var(--hairline-soft); font-size: .95rem; }
  .header__cta { display: none; }
  .header__burger { display: flex; }
}

@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .sticky-cta { display: flex; }
  .wa-float { bottom: 86px; }
  .footer__bottom { flex-direction: column; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: calc(var(--urgency-h) + var(--header-h) + 70px) 0 90px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(230, 180, 119, .12), transparent 55%),
    radial-gradient(ellipse at 85% 90%, rgba(230, 180, 119, .07), transparent 50%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.7rem);
  font-weight: 300;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  font-weight: 500;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lead {
  font-size: 1.1rem;
  color: var(--text-soft);
  max-width: 540px;
  margin-bottom: 34px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }
.hero__badges {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 30px;
  justify-content: start;
  padding-top: 28px;
  border-top: 1px solid var(--hairline);
}
.hero__badges li { display: flex; flex-direction: column; gap: 2px; }
.hero__badges strong {
  font-size: 1.6rem;
  font-weight: 500;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__badges span {
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.hero__figure {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--hairline);
  box-shadow: 0 40px 90px -40px rgba(0, 0, 0, .9);
}
.hero__figure::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(14, 14, 13, .6) 100%);
}
.hero__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.85) contrast(1.05);
  transition: filter .5s var(--ease), transform .6s var(--ease);
}
.hero__figure:hover img { filter: none; transform: scale(1.02); }

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  background: var(--gold-gradient);
  color: #1A1409;
  padding: 13px 0;
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 22px;
  width: max-content;
  animation: marquee 42s linear infinite;
}
.marquee__track span {
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee__track i { font-style: normal; font-size: .5rem; opacity: .55; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

@media (max-width: 960px) {
  .hero { padding-top: 70px; }
  .hero__inner { grid-template-columns: 1fr; gap: 44px; }
  .hero__figure { order: -1; max-height: 420px; }
}
@media (max-width: 640px) {
  .hero { padding-top: 40px; }
  .hero__badges { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .hero__actions .btn { width: 100%; }
}

/* ---------- Cabeçalho de seção ---------- */
.section-head { max-width: 720px; margin-bottom: 54px; }

/* ---------- Split (dores / virada) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.split__col {
  background: var(--surface);
  border: 1px solid var(--hairline-soft);
  border-radius: var(--radius);
  padding: 38px 34px;
}
.split__col--gain { border-color: var(--hairline); }
.split__title {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--hairline-soft);
}
.split__title--pain { color: var(--text-soft); }
.split__list { display: grid; gap: 16px; }
.split__list li {
  position: relative;
  padding-left: 28px;
  color: var(--text-soft);
  font-size: 1rem;
}
.split__list li::before {
  content: '';
  position: absolute;
  left: 0; top: .62em;
  width: 12px; height: 1px;
  background: var(--gold-dark);
}
.split__col--gain .split__list li { color: var(--text); }
.split__col--gain .split__list li::before { background: var(--gold); }

/* ---------- Sobre ---------- */
.about__inner {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 60px;
  align-items: center;
}
.about__figure {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--hairline);
}
.about__figure img { width: 100%; object-fit: cover; filter: saturate(.85); }
.about__content p { color: var(--text-soft); margin-bottom: 18px; max-width: 620px; }
.about__close {
  color: var(--gold-light) !important;
  border-left: 1px solid var(--hairline);
  padding-left: 20px;
  margin-top: 28px;
}

@media (max-width: 960px) {
  .split { grid-template-columns: 1fr; }
  .about__inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- Como funciona ---------- */
.how { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.how .card h3 { font-size: 1.08rem; font-weight: 500; margin: 18px 0 10px; }
.how .card p { color: var(--text-soft); font-size: .95rem; }

/* ---------- Accordion ---------- */
.acc {
  border-top: 1px solid var(--hairline-soft);
  border-radius: var(--radius);
  overflow: hidden;
}
.acc__item { border-bottom: 1px solid var(--hairline-soft); }
.acc__head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 24px 20px;
  text-align: left;
  transition: background .3s var(--ease);
}
.acc__head:hover { background: var(--surface); }
.acc__head .num-outline { font-size: 1.5rem; flex-shrink: 0; min-width: 42px; }
.acc__head[aria-expanded="true"] .num-outline {
  -webkit-text-stroke: 1px var(--gold);
  color: rgba(230, 180, 119, .12);
}
.acc__title {
  flex: 1;
  font-size: 1.06rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: .01em;
}
.acc__head[aria-expanded="true"] .acc__title { color: var(--gold-light); }
.acc__icon {
  position: relative;
  width: 16px; height: 16px;
  flex-shrink: 0;
}
.acc__icon::before,
.acc__icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.acc__icon::before { top: 50%; left: 0; width: 100%; height: 1.5px; transform: translateY(-50%); }
.acc__icon::after { left: 50%; top: 0; width: 1.5px; height: 100%; transform: translateX(-50%); }
.acc__head[aria-expanded="true"] .acc__icon::after { opacity: 0; transform: translateX(-50%) rotate(90deg); }

.acc__panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s var(--ease);
}
.acc__body { padding: 0 20px 26px 84px; }
.acc__body p { color: var(--text-soft); max-width: 640px; }
.acc__list { display: grid; gap: 10px; }
.acc__list li {
  position: relative;
  padding-left: 22px;
  color: var(--text-soft);
}
.acc__list li::before {
  content: '';
  position: absolute;
  left: 0; top: .62em;
  width: 8px; height: 1px;
  background: var(--gold);
}

@media (max-width: 960px) {
  .how { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .how { grid-template-columns: 1fr; }
  .acc__head { gap: 14px; padding: 20px 14px; }
  .acc__head .num-outline { font-size: 1.2rem; min-width: 32px; }
  .acc__title { font-size: .98rem; }
  .acc__body { padding: 0 14px 22px 60px; }
}

/* ---------- Bônus (perks) ---------- */
.perks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.perk {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--hairline-soft);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.perk:hover { border-color: var(--hairline); background: var(--surface-hover); }
.perk__check {
  position: relative;
  width: 22px; height: 22px;
  flex-shrink: 0;
  border: 1px solid var(--gold-dark);
  border-radius: 50%;
}
.perk__check::before {
  content: '';
  position: absolute;
  left: 7px; top: 4px;
  width: 5px; height: 10px;
  border: solid var(--gold);
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}

/* ---------- Módulos do curso ---------- */
.modules { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.modules__tag {
  display: inline-block;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.modules .card h3 { font-size: 1.05rem; font-weight: 500; margin-bottom: 10px; }
.modules .card p { color: var(--text-soft); font-size: .93rem; }
.card--bonus { border-color: var(--hairline); background: rgba(230, 180, 119, .045); }
.modules__note { margin-top: 34px; text-align: center; }
.modules__link {
  color: var(--gold);
  font-size: .92rem;
  letter-spacing: .06em;
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 3px;
  transition: color .3s var(--ease);
}
.modules__link:hover { color: var(--gold-light); }

@media (max-width: 960px) {
  .modules { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .perks { grid-template-columns: 1fr; }
  .modules { grid-template-columns: 1fr; }
}

/* ---------- Prova social ---------- */
.proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.proof__item {
  border: 1px solid var(--hairline-soft);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.proof__item:hover { border-color: var(--hairline); transform: translateY(-2px); }
.proof__item img { width: 100%; }

/* ---------- Oferta ---------- */
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

.offer {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 30px;
  align-items: stretch;
}
.offer__included {
  background: var(--surface);
  border: 1px solid var(--hairline-soft);
  border-radius: var(--radius);
  padding: 40px 36px;
}
.offer__included h3 {
  font-size: .78rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 26px;
}
.offer__included ul { display: grid; gap: 16px; }
.offer__included li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
}
.offer__included li::before {
  content: '';
  position: absolute;
  left: 0; top: .5em;
  width: 12px; height: 1px;
  background: var(--gold);
}

.offer__box {
  position: relative;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 44px 36px;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(230, 180, 119, .12), transparent 65%),
    var(--bg-raise);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.offer__label {
  font-size: .74rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
}
.offer__price { margin: 22px 0 6px; }
.offer__times {
  display: block;
  font-size: .95rem;
  color: var(--text-soft);
  margin-bottom: 4px;
}
.offer__price strong {
  font-size: clamp(3rem, 7vw, 4.2rem);
  font-weight: 500;
  line-height: 1;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.offer__price small { font-size: .4em; font-weight: 400; }
.offer__cash { color: var(--text-soft); margin-bottom: 30px; }
.offer__cash strong { color: var(--text); font-weight: 500; }
.offer__cash span { font-size: .85em; color: var(--gold-dark); }
.offer__cta { width: 100%; }
.offer__scarcity {
  margin-top: 20px;
  font-size: .85rem;
  color: var(--text-soft);
  letter-spacing: .04em;
}

/* ---------- CTA final ---------- */
.final-cta { text-align: center; }
.final-cta .eyebrow { justify-content: center; }
.final-cta .section-sub { margin: 0 auto 34px; }

@media (max-width: 960px) {
  .proof { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .offer { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .offer__included, .offer__box { padding: 32px 24px; }
  .final-cta .btn { width: 100%; }
}

/* ---------- FAQ ---------- */
.acc--faq .acc__head { gap: 20px; }
.acc--faq .acc__title { font-size: 1.02rem; }
.acc--faq .acc__body { padding-left: 20px; }

@media (max-width: 640px) {
  .acc--faq .acc__body { padding-left: 14px; }
}
