/* ══════════════════════════════════════════
   RESET & BASE
══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Space Grotesk', sans-serif;
  background: #fff;
  color: #001737;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-top: 48px;
}

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

/* ══════════════════════════════════════════
   TOP BAR
══════════════════════════════════════════ */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: 48px;
  background: #000c1a;
  border-bottom: 1px solid rgba(251,176,59,0.15);
}
.topbar-inner {
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.topbar-badge {
  background: rgba(74,222,128,0.15);
  border: 1px solid rgba(74,222,128,0.4);
  color: #4ade80;
  font-family: 'Figtree', sans-serif;
  font-weight: 900;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
}
.topbar-text {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
}
.topbar-countdown {
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar-countdown-label {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.topbar-countdown-timer {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.5px;
}
.topbar-cta {
  background: #fbb03b;
  color: #001737;
  font-family: 'Figtree', sans-serif;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 6px;
  white-space: nowrap;
  transition: opacity .2s;
}
.topbar-cta:hover { opacity: .85; }

/* Mobile sticky CTA bar — hidden by default */
.mobile-cta-bar { display: none; }

@media (max-width: 640px) {
  .topbar-text { display: none; }
  .topbar-countdown { display: none; }
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  background: #001737;
  width: 100%;
  min-height: calc(100vh - 48px);
  display: flex;
  align-items: center;
}
.hero-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 48px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: center;
}

/* ── Hero copy (left) ── */
.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.badge {
  font-family: 'Figtree', sans-serif;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
}
.badge--fill {
  background: #fbb03b;
  color: #001737;
}
.badge--outline {
  background: transparent;
  border: 1.5px solid #fbb03b;
  color: #fbb03b;
}
.badge--green {
  background: transparent;
  border: 1.5px solid #4ade80;
  color: #4ade80;
}

.hero-h1 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -1px;
  color: #fff;
}
.hero-h1 em {
  font-style: normal;
  color: #fbb03b;
}

.hero-sub {
  font-size: 19px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
  max-width: 540px;
}

.hero-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-bullets li {
  position: relative;
  padding-left: 20px;
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}
.hero-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background: #fbb03b;
}
.hero-bullets strong { color: #fff; font-weight: 700; }

.hero-event-info {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  width: fit-content;
  flex-wrap: wrap;
}
.event-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.event-info-sep {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.15);
}

.hero-instructor {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-instructor-photo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 2px solid #fbb03b;
  flex-shrink: 0;
}
.hero-instructor-name {
  font-family: 'Figtree', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}
.hero-instructor-title {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}

/* ── Form card (right) ── */
.hero-form-wrap { align-self: center; }

.form-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35), 0 4px 16px rgba(0,0,0,0.2);
}
.form-card-eyebrow {
  font-family: 'Figtree', sans-serif;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fbb03b;
  margin-bottom: 6px;
}
.form-card-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #001737;
  letter-spacing: -0.4px;
  margin-bottom: 8px;
}
.form-card-sub {
  font-size: 14px;
  color: rgba(0,23,55,0.5);
  line-height: 1.5;
  margin-bottom: 24px;
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.field-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.field-error {
  font-size: 12px;
  color: #e53e3e;
  min-height: 20px;
  padding: 3px 4px 0;
  line-height: 1.3;
}
.signup-form input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(0,23,55,0.12);
  border-radius: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  color: #001737;
  outline: none;
  transition: border-color .2s;
  background: #fafafa;
}
.signup-form input:focus {
  border-color: #fbb03b;
  background: #fff;
}
.signup-form input.invalid {
  border-color: #e53e3e;
  background: #fff8f8;
}
.signup-form input.valid {
  border-color: #48bb78;
}
.signup-form input::placeholder { color: rgba(0,23,55,0.35); }

.form-submit-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 20px;
  height: 56px;
  background: #fbb03b;
  border: none;
  border-radius: 8px;
  font-family: 'Figtree', sans-serif;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 1px;
  color: #001737;
  cursor: pointer;
  transition: background .18s, transform .18s;
  margin-top: 4px;
}
.form-submit-btn:hover:not(:disabled) { background: #e9a020; transform: translateY(-1px); }
.form-submit-btn:disabled { opacity: .65; cursor: not-allowed; }

.form-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.form-trust-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: rgba(0,23,55,0.4);
}
.form-trust-sep { color: rgba(0,23,55,0.2); font-size: 10px; }

/* ── Form success state ── */
.form-success {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  animation: fadeUp .5s ease;
  padding: 8px 0;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}
.form-success-check {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  flex-shrink: 0;
}
.form-success-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: #001737;
  letter-spacing: -0.4px;
}
.form-success-alert {
  background: rgba(37,211,102,0.08);
  border: 1.5px solid rgba(37,211,102,0.35);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 14px;
  color: rgba(0,23,55,0.8);
  line-height: 1.55;
}
.form-success-wpp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 60px;
  background: #25d366;
  border-radius: 10px;
  font-family: 'Figtree', sans-serif;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.8px;
  color: #fff;
  transition: background .18s, transform .15s;
  animation: pulse-wpp 2.2s ease infinite;
}
@keyframes pulse-wpp {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.45); }
  55%       { box-shadow: 0 0 0 10px rgba(37,211,102,0); }
}
.form-success-wpp:hover { background: #1db954; transform: translateY(-2px); animation: none; }
.form-success-wpp svg { fill: #fff; flex-shrink: 0; }
.form-success-note {
  font-size: 12px;
  color: rgba(0,23,55,0.3);
}

/* ══════════════════════════════════════════
   PROOF STRIP
══════════════════════════════════════════ */
.proof-strip {
  background: #fbb03b;
  padding: 0;
  width: 100%;
}
.proof-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Figtree', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.3px;
  color: #001737;
  white-space: nowrap;
}
.proof-sep {
  width: 1px;
  height: 20px;
  background: rgba(0,23,55,0.2);
}

/* ══════════════════════════════════════════
   SHARED TYPOGRAPHY
══════════════════════════════════════════ */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 88px 48px;
}

.eyebrow {
  font-family: 'Figtree', sans-serif;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
  display: block;
  margin-bottom: 16px;
}
.eyebrow--dark  { color: rgba(0,23,55,0.4); }
.eyebrow--light { color: rgba(255,255,255,0.45); }
.bio-section .eyebrow { text-align: left; }

.section-h2 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: #001737;
  text-align: center;
  line-height: 1.2;
  letter-spacing: -0.6px;
  margin-bottom: 48px;
}
.section-h2 .highlight { color: #fbb03b; }

/* ══════════════════════════════════════════
   LEARN SECTION
══════════════════════════════════════════ */
.learn-section { background: #f7f8fa; }

.learn-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.learn-card {
  background: #fff;
  border-radius: 12px;
  padding: 36px 32px;
  border-top: 4px solid #fbb03b;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform .2s, box-shadow .2s;
}
.learn-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.learn-card-num {
  font-family: 'Figtree', sans-serif;
  font-weight: 900;
  font-size: 13px;
  color: #fbb03b;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.learn-card h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 19px;
  color: #001737;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
}
.learn-card p {
  font-size: 15px;
  color: rgba(0,23,55,0.6);
  line-height: 1.65;
}
.learn-card strong { color: #001737; font-weight: 700; }

/* ══════════════════════════════════════════
   BIO SECTION
══════════════════════════════════════════ */
.bio-section { background: #001737; }
.bio-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: center;
}
.bio-photo-wrap {
  position: relative;
}
.bio-photo-wrap::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 16px;
  border: 2px solid rgba(251,176,59,0.55);
  pointer-events: none;
}
.bio-photo {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  object-position: top;
  max-height: 480px;
  filter: brightness(0.95);
  box-shadow: 0 8px 32px rgba(0,0,0,0.45);
}
.bio-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bio-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 48px;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -1.5px;
}
.bio-name span { color: #fbb03b; }
.bio-role {
  font-size: 17px;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}
.bio-divider {
  width: 48px;
  height: 3px;
  background: #fbb03b;
  border-radius: 2px;
}
.bio-text {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}
.bio-text strong { color: #fff; font-weight: 700; }
.bio-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fbb03b;
  color: #001737;
  font-family: 'Figtree', sans-serif;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 8px;
  width: fit-content;
  margin-top: 8px;
  transition: background .18s;
}
.bio-cta:hover { background: #e9a020; }

/* ══════════════════════════════════════════
   DEPOIMENTOS
══════════════════════════════════════════ */
.dep-section { background: #fff; }

.dep-gallery {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.dep-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dep-col img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid rgba(0,23,55,0.08);
}

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.faq-section { background: #f7f8fa; }
.faq-inner { max-width: 720px; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(0,23,55,0.08);
}
.faq-item {
  border-bottom: 1px solid rgba(0,23,55,0.08);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 4px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #001737;
  text-align: left;
  transition: color .15s;
}
.faq-q:hover { color: #fbb03b; }
.faq-icon {
  font-size: 22px;
  font-weight: 400;
  color: #fbb03b;
  flex-shrink: 0;
  transition: transform .25s;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
}
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 20px; }
.faq-a p {
  font-size: 15px;
  color: rgba(0,23,55,0.6);
  line-height: 1.7;
  padding: 0 4px;
}

/* ══════════════════════════════════════════
   FINAL CTA
══════════════════════════════════════════ */
.final-section {
  background: #001737;
  text-align: center;
}
.final-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 96px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.final-h2 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 40px;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.8px;
}
.final-h2 span { color: #fbb03b; }
.final-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  max-width: 480px;
}
.final-cta-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #fbb03b;
  color: #001737;
  font-family: 'Figtree', sans-serif;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 1.2px;
  padding: 0 36px;
  height: 64px;
  border-radius: 8px;
  margin-top: 8px;
  transition: background .18s, transform .18s;
  min-width: 400px;
}
.final-cta-btn:hover { background: #e9a020; transform: translateY(-2px); }
.final-note {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.3px;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 13px;
  color: rgba(0,0,0,0.4);
}
.footer-links {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 13px;
  color: rgba(0,0,0,0.4);
}
.footer-links a { color: rgba(0,0,0,0.4); }
.footer-links a:hover { color: #fbb03b; }

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

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */

/* ══════════════════════════════════════════
   TABLET  (≤ 1024px)
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 56px 32px;
    gap: 40px;
  }
  .hero-form-wrap { max-width: 520px; width: 100%; }
  .hero-h1 { font-size: 38px; }

  .bio-inner { grid-template-columns: 1fr; gap: 40px; }
  .bio-photo { max-height: 360px; max-width: 340px; }

  .section-inner { padding: 72px 32px; }
  .proof-strip-inner { padding: 0 32px; gap: 20px; }
}

/* ══════════════════════════════════════════
   MOBILE  (≤ 680px)
══════════════════════════════════════════ */
@media (max-width: 680px) {

  /* Extra bottom padding so content isn't hidden behind sticky bar */
  body { padding-bottom: 76px; }

  /* ── Sticky bottom CTA bar ── */
  .mobile-cta-bar {
    display: block;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 850;
    background: rgba(0,12,26,0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(251,176,59,0.2);
    padding: 10px 20px;
    padding-bottom: max(10px, env(safe-area-inset-bottom));
  }
  .mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 50px;
    background: #fbb03b;
    border-radius: 8px;
    font-family: 'Figtree', sans-serif;
    font-weight: 900;
    font-size: 13px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #001737;
    transition: background .18s;
  }
  .mobile-cta-btn:hover { background: #e9a020; }

  /* ── Hero ── */
  .hero-inner { padding: 32px 20px 40px; gap: 28px; }
  .hero-copy { gap: 20px; }
  .hero-h1 { font-size: 27px; letter-spacing: -0.3px; line-height: 1.18; }
  .hero-sub { font-size: 16px; max-width: 100%; }
  .hero-badges { gap: 6px; }
  .badge { font-size: 10px; padding: 3px 10px; }
  .hero-bullets { gap: 12px; }
  .hero-bullets li { font-size: 15px; }
  /* Event date/time is in topbar; instructor is in bio section */
  .hero-event-info { display: none; }
  .hero-instructor { display: none; }
  .hero-form-wrap { max-width: 100%; }

  /* ── Form card ── */
  .form-card { padding: 24px 18px; border-radius: 14px; }
  .form-card-title { font-size: 19px; }
  .form-card-sub { font-size: 13px; margin-bottom: 18px; }
  .signup-form input { padding: 13px 14px; font-size: 15px; }
  .form-submit-btn { height: 52px; font-size: 13px; }

  /* ── Proof strip ── */
  .proof-strip-inner {
    height: auto;
    padding: 14px 20px;
    gap: 8px;
    flex-direction: column;
    align-items: flex-start;
  }
  .proof-sep { display: none; }
  .proof-item { font-size: 12px; }

  /* ── Sections ── */
  .section-inner { padding: 52px 20px; }
  .section-h2 { font-size: 23px; letter-spacing: -0.2px; margin-bottom: 28px; line-height: 1.25; }
  .eyebrow { font-size: 10px; letter-spacing: 2px; }

  /* ── Learn cards ── */
  .learn-cards { grid-template-columns: 1fr; gap: 12px; }
  .learn-card { padding: 22px 18px; }
  .learn-card h3 { font-size: 17px; }
  .learn-card p { font-size: 14px; }

  /* ── Bio ── */
  .bio-inner { gap: 24px; }
  .bio-photo-wrap { max-width: 260px; margin: 0 auto; }
  .bio-photo { max-height: 280px; max-width: 100%; }
  .bio-photo-wrap::after { inset: -4px; border-radius: 14px; }
  .bio-name { font-size: 34px; letter-spacing: -1px; }
  .bio-role { font-size: 14px; }
  .bio-text { font-size: 15px; }
  .bio-cta { width: 100%; justify-content: center; }

  /* ── Testimonials: horizontal scroll carrossel ── */
  .dep-section .section-inner { overflow: hidden; padding-left: 20px; padding-right: 0; }
  .dep-gallery {
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding-right: 20px;
    padding-bottom: 10px;
    scrollbar-width: none;
  }
  .dep-gallery::-webkit-scrollbar { display: none; }
  .dep-col {
    flex: 0 0 76vw;
    scroll-snap-align: start;
    min-width: 0;
  }

  /* ── FAQ ── */
  .faq-q { font-size: 15px; padding: 18px 4px; }
  .faq-a p { font-size: 14px; }

  /* ── Final CTA ── */
  .final-inner { padding: 52px 20px; gap: 16px; }
  .final-h2 { font-size: 25px; letter-spacing: -0.3px; line-height: 1.2; }
  .final-sub { font-size: 15px; }
  .final-cta-btn { min-width: 0; width: 100%; height: 54px; font-size: 13px; padding: 0 24px; }

  /* ── Footer ── */
  .footer-inner { padding: 24px 20px; flex-direction: column; text-align: center; gap: 10px; }
}
