/* =====================================================================
   e-Cardápio BR — style.css
   Reconstruído a partir da estrutura HTML existente (o CSS original
   foi perdido). Paleta e tipografia seguem os tokens já fixados no
   HTML: theme-color #9E2E17, Fraunces (display) + Work Sans (texto)
   + IBM Plex Mono (rótulos/eyebrow).
   ===================================================================== */

/* ---------- Reset básico ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, p, ul, figure { margin: 0; }
ul { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
svg { display: block; }

/* ---------- Tokens ---------- */
:root {
  /* cor */
  --ink: #2B1D16;
  --ink-soft: #74604F;
  --ink-faint: #A5927F;
  --bg: #FBF6EC;
  --panel: #FFFFFF;
  --line: #E8DBC5;
  --line-soft: #F0E6D4;

  --accent: #9E2E17;
  --accent-dark: #7A2310;
  --accent-soft: #F4E1D8;
  --accent-ink: #FFF8F3;

  --green: #3F6B4F;
  --green-soft: #E4EEE3;

  /* tipografia */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;

  /* layout */
  --wrap: 1160px;
  --radius-s: 10px;
  --radius-m: 16px;
  --radius-l: 26px;
  --shadow-card: 0 1px 2px rgba(43, 29, 22, 0.06);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.15;
}
h1 { font-size: clamp(2.1rem, 4.6vw, 3.2rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); letter-spacing: -0.01em; }
h3 { font-size: 1.2rem; }

p { color: var(--ink); }
p + p { margin-top: 12px; }

a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

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

.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.03em;
  color: var(--accent);
  margin-bottom: 10px;
}

.lede {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 56ch;
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 22px;
  border-radius: 999px;
  transition: transform 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
  border: 1px solid var(--accent);
}
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- Barra social superior ---------- */
.social-topbar {
  background: var(--ink);
}
.social-topbar .wrap {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.social-topbar a {
  color: var(--bg);
  opacity: 0.75;
  width: 16px; height: 16px;
  transition: opacity 0.15s ease;
}
.social-topbar a:hover { opacity: 1; }
.social-topbar svg { width: 16px; height: 16px; }

/* ---------- Header / navegação ---------- */
.site-nav {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo img { height: 34px; width: auto; }
.links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14.5px;
  font-weight: 500;
}
.links a { color: var(--ink-soft); transition: color 0.15s ease; }
.links a:hover, .links a[aria-current="page"] { color: var(--accent); }
.links .btn-outline { padding: 9px 18px; font-size: 14px; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn-primary { padding: 11px 20px; font-size: 14px; }

.menu-toggle {
  display: none;
  width: 34px; height: 34px;
  position: relative;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  content: '';
  position: absolute;
  left: 6px; right: 6px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}
.menu-toggle span { top: 16px; }
.menu-toggle span::before { top: -8px; }
.menu-toggle span::after { top: 8px; }
.menu-toggle[aria-expanded="true"] span { background: transparent; }
.menu-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

/* ---------- Hero (home) ---------- */
.hero { padding: 56px 0 40px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero h1 { margin-bottom: 16px; }
.hero .lede { margin-bottom: 26px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.phone-mock-wrap { display: flex; justify-content: center; }
.phone-mock {
  position: relative;
  width: 250px;
  aspect-ratio: 622 / 1140;
  background: var(--ink);
  border-radius: 34px;
  padding: 10px;
  box-shadow: 0 20px 44px rgba(43, 29, 22, 0.18);
  margin: 0 auto;
}
.phone-notch {
  position: absolute;
  top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 76px; height: 18px;
  background: var(--ink);
  border-radius: 0 0 12px 12px;
  z-index: 2;
}
.phone-carousel {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: var(--panel);
}
.phone-carousel .slide {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.phone-carousel .slide.active { opacity: 1; }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.carousel-dots .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--line);
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.carousel-dots .dot.active { background: var(--accent); transform: scale(1.2); }
.phone-caption {
  text-align: center;
  font-size: 13px;
  color: var(--ink-faint);
  margin-top: 10px;
}

/* ---------- Hero leve (páginas internas) ---------- */
.hero-lite { padding: 40px 0 8px; }
.crumb {
  display: block;
  font-size: 13px;
  color: var(--ink-faint);
  margin-bottom: 14px;
}
.crumb a { color: var(--ink-faint); }
.crumb a:hover { color: var(--accent); }
.hero-lite h1 { margin-bottom: 14px; }

/* ---------- Vídeo ---------- */
.video-section { padding: 32px 0 8px; }
.video-frame {
  position: relative;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-m);
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 12px 30px rgba(43, 29, 22, 0.12);
}
.video-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ---------- Perfuração decorativa (estilo ticket/cardápio) ---------- */
.perforation {
  height: 1px;
  margin: 44px 0;
  background-image: radial-gradient(circle, var(--line) 2.5px, transparent 2.6px);
  background-size: 16px 1px;
  background-repeat: repeat-x;
  background-position: center;
}

/* ---------- Cabeçalho de seção ---------- */
.section-head { max-width: 640px; margin: 0 auto 34px; text-align: left; }
section { padding: 56px 0; }
section#faq, section#planos, section#vantagens-nicho,
section#faq-nicho, section#vantagens, section#como-funciona,
section#posts-blog, section#vitrine { padding: 56px 0; }

/* ---------- Como funciona (paths) ---------- */
.paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.path-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 28px;
}
.path-card h3 { margin-bottom: 4px; }
.path-sub { color: var(--ink-faint); font-size: 13.5px; margin-bottom: 18px; }
.step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
  border-top: 1px solid var(--line-soft);
}
.step:first-of-type { border-top: 0; }
.step-num {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.step p { font-size: 14.5px; color: var(--ink-soft); }
.step p strong { color: var(--ink); font-weight: 600; }

/* ---------- Cards de vantagem ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.adv-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 26px;
}
.adv-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.adv-icon svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.check-badge {
  position: absolute;
  top: 20px; right: 20px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
}
.check-badge svg { width: 12px; height: 12px; fill: none; stroke: currentColor; stroke-width: 2.4; }
.adv-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.adv-card p { font-size: 14.5px; color: var(--ink-soft); }
.adv-card p a { color: var(--accent); font-weight: 600; }

/* ---------- Teaser (planos / vitrine / demo do nicho) ---------- */
.plans-teaser { background: var(--panel); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.plans-teaser-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding: 40px 0;
}
.plans-teaser-text { flex: 1 1 380px; }
.plans-teaser-text h2 { margin-bottom: 10px; }
.plans-teaser-text p { color: var(--ink-soft); max-width: 52ch; }
.plans-teaser-from { flex: 0 1 auto; text-align: center; }
.from-label { display: block; font-family: var(--font-mono); font-size: 12px; color: var(--ink-faint); }
.from-price { display: block; font-family: var(--font-display); font-size: 2rem; color: var(--accent); margin: 4px 0 16px; }
.plans-teaser-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- Cards de planos (preços) ---------- */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.plan-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}
.plan-card.featured {
  border-color: var(--accent);
  box-shadow: 0 14px 34px rgba(158, 46, 23, 0.12);
  transform: translateY(-6px);
}
.plan-card.promo-highlight {
  border-color: var(--green);
  background: linear-gradient(180deg, var(--green-soft) 0%, var(--panel) 120px);
}
.plan-tag {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.02em;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 14px;
}
.plan-card.featured .plan-tag { background: var(--accent); color: var(--accent-ink); }
.plan-tag.promo-tag { background: var(--green-soft); color: var(--green); }
.plan-card h3 { margin-bottom: 2px; }
.plan-desc { color: var(--ink-faint); font-size: 13.5px; margin-bottom: 20px; }
.plan-price-block { margin-bottom: 14px; }
.step-tag {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-faint);
  margin-bottom: 3px;
}
.plan-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink);
}
.plan-price span { font-family: var(--font-body); font-size: 13px; color: var(--ink-faint); font-weight: 400; }
.plan-price .price-new { color: var(--green); }
.plan-price-sub { font-size: 1.5rem; color: var(--accent); }
.plan-list { margin: 18px 0 26px; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.plan-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--ink-soft); }
.plan-list li svg {
  flex: none; width: 16px; height: 16px; margin-top: 3px;
  fill: none; stroke: var(--accent); stroke-width: 2.4;
}
.plan-card .btn-primary { justify-content: center; width: 100%; }

/* ---------- FAQ (acordeão) ---------- */
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 780px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  background: var(--panel);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
}
.faq-icon {
  flex: none;
  font-family: var(--font-mono);
  font-size: 20px;
  line-height: 1;
  color: var(--accent);
  transition: transform 0.2s ease;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
  padding: 0 20px;
}
.faq-answer p { font-size: 14.5px; color: var(--ink-soft); padding-bottom: 18px; }
.faq-item.is-open .faq-answer { max-height: 400px; }

/* ---------- CTA final ---------- */
.cta-final {
  background: var(--ink);
  color: var(--bg);
  text-align: center;
  padding: 64px 0;
}
.cta-final .eyebrow { color: #E8B9A8; }
.cta-final h2 { color: #FFFBF6; margin-bottom: 10px; }
.cta-final p { color: #D9C9BC; max-width: 52ch; margin: 0 auto 26px; }
.cta-final .btn-primary { background: var(--accent-ink); color: var(--ink); border-color: var(--accent-ink); }
.cta-final .btn-primary:hover { background: #fff; }

/* ---------- Rodapé ---------- */
footer {
  background: var(--panel);
  border-top: 1px solid var(--line);
  padding: 48px 24px 30px;
  text-align: center;
}
.footer-logo { display: flex; justify-content: center; margin-bottom: 14px; }
.footer-logo img { height: 30px; width: auto; }
footer > p { color: var(--ink-soft); font-size: 14px; }
.footer-social {
  display: flex; justify-content: center; gap: 18px;
  margin: 18px 0;
}
.footer-social a { color: var(--ink-faint); width: 18px; height: 18px; transition: color 0.15s ease; }
.footer-social a:hover { color: var(--accent); }
.footer-social svg { width: 18px; height: 18px; }
.footer-links { font-size: 13.5px; color: var(--ink-faint); margin-bottom: 14px; }
.footer-links a { color: var(--ink-faint); }
.footer-links a:hover { color: var(--accent); }
.footer-copy { font-size: 12.5px; color: var(--ink-faint); }

/* ---------- Formulário de cadastro ---------- */
.form-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 36px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.form-field .hint { font-weight: 400; color: var(--ink-faint); }
.form-field input,
.form-field select,
.form-field textarea {
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  padding: 11px 14px;
  font-size: 14.5px;
  background: var(--bg);
  color: var(--ink);
}
.form-field textarea { min-height: 90px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: var(--accent);
}
.form-consent {
  grid-column: 1 / -1;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--ink-soft);
}
.form-consent input { margin-top: 3px; }
.form-consent a { color: var(--accent); text-decoration: underline; }
.form-submit { grid-column: 1 / -1; margin-top: 6px; }
.form-submit .btn-primary { width: 100%; justify-content: center; }
.form-note { text-align: center; font-size: 12.5px; color: var(--ink-faint); margin-top: 18px; }

/* ---------- Páginas legais / artigos de blog ---------- */
.legal-page .wrap { max-width: 760px; padding-top: 8px; padding-bottom: 40px; }
.legal-page h1 { margin-bottom: 8px; }
.legal-updated {
  display: block;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--ink-faint);
  margin-bottom: 22px;
}
.legal-page h2 { margin-top: 34px; margin-bottom: 12px; font-size: 1.25rem; }
.legal-page p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.7; }
.legal-page ul { margin-top: 12px; padding-left: 20px; list-style: disc; }
.legal-page ul li { color: var(--ink-soft); font-size: 15.5px; line-height: 1.7; margin-bottom: 6px; }
.legal-page ul li strong { color: var(--ink); }
.legal-page a { color: var(--accent); text-decoration: underline; }
.legal-page .faq-list { margin-top: 18px; }

/* ---------- Vitrine (showcase) ---------- */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
}
.showcase-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
}
/* Miniatura em coluna: celular inteiro em cima, pontinhos embaixo.
   O padding-top reserva o espaço da etiqueta do nicho para ela nunca
   encostar no aparelho. Sem altura fixa e sem overflow: nada é cortado. */
.showcase-thumb {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 56px 24px 0;
  background: var(--line-soft);
}
.showcase-niche {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  background: rgba(43, 29, 22, 0.72);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 11.5px;
  padding: 5px 12px;
  border-radius: 999px;
}

/* ---------- Mini-carrossel (celular inteiro, troca sozinho) ----------
   As imagens já são mockups de iPhone completos (696×1418, cantos
   transparentes). A caixa tem exatamente essa proporção e o object-fit
   é "contain": o aparelho aparece por inteiro em qualquer tela.
   Usado na Vitrine e no bloco "Exemplo real" das páginas de nicho. */
.mini-carousel {
  position: relative;
  width: 220px;
  max-width: 100%;
  aspect-ratio: 696 / 1418;
  margin: 0 auto;
  filter: drop-shadow(0 12px 18px rgba(43, 29, 22, 0.20));
}
.mini-carousel .mc-slide {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.45s ease;
}
.mini-carousel .mc-slide.active { opacity: 1; }
.mini-dots {
  display: flex;
  justify-content: center;
  padding: 8px 0 12px;
}
/* botão de 22px (área de toque confortável) com o pontinho de 7px dentro */
.mini-dots .mc-dot {
  position: relative;
  width: 22px; height: 22px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}
.mini-dots .mc-dot::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 7px; height: 7px;
  margin: -3.5px 0 0 -3.5px;
  border-radius: 50%;
  background: var(--ink-faint);
  opacity: 0.5;
  transition: background-color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}
.mini-dots .mc-dot.active::before {
  background: var(--accent);
  opacity: 1;
  transform: scale(1.25);
}
.mini-dots .mc-dot:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; border-radius: 50%; }
.showcase-body { padding: 22px; }
.showcase-body h3 { margin-bottom: 8px; }
.showcase-body p { font-size: 14px; color: var(--ink-soft); margin-bottom: 16px; }
.showcase-body .btn-outline { font-size: 13.5px; padding: 9px 16px; margin-right: 10px; }
.showcase-body p a { color: var(--accent); font-weight: 600; }

/* =====================================================================
   Responsivo
   ===================================================================== */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .phone-mock-wrap { order: -1; margin-bottom: 12px; }
  .paths { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card.featured { transform: none; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full, .form-consent, .form-submit { grid-column: 1; }
}

@media (max-width: 760px) {
  .menu-toggle { display: block; }
  .links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: var(--panel);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 90px 28px 28px;
    gap: 22px;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    box-shadow: -12px 0 30px rgba(43, 29, 22, 0.12);
  }
  .links.is-open { transform: translateX(0); }
  .links .btn-outline { margin-top: 6px; }
  .nav-cta .btn-primary { display: none; }
  .social-topbar .wrap { justify-content: center; }
  .plans-teaser-inner { flex-direction: column; text-align: center; }
  .plans-teaser-ctas { justify-content: center; }
}

@media (max-width: 520px) {
  h1 { font-size: 1.85rem; }
  section, .hero { padding-top: 40px; padding-bottom: 40px; }
  .form-card { padding: 24px; }
}
