/* ============================================================
   EqSeed — LP Captação (variação v5: quiz de qualificação)
   Self-contained. Base visual: v4-glass-imersivo.
   Jornada: copy da LP original (Diana) — quiz de qualificação
   de 5 passos (4 perguntas + captura) -> simulador DEPOIS.

   Mudanças sobre a v4:
   1. Hero sem simulador (sem pin/tilt): H1 + subline + 2 CTAs
   2. Quiz de qualificação vira a seção de conversão (#simulacao),
      em fundo escuro com shader — card branco no estilo sim-shell
   3. Lógica de qualificação por resposta (qualifica/neutro/
      desqualifica); desqualificado -> tela do Preparação p/ Captação
   4. Removidas: usos dos recursos, garantias, especialista
   5. Mantidas: faixa de prova CVM, elegibilidade (feature),
      como funciona, galeria circular (OGL), FAQ (7 da LP original)

   Paleta: verdes oficiais (guia v4) + teal/sage da referência.
   Sem dourado, sem preto puro (verde-tinta #133113).
   ============================================================ */

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

:root {
  --green-principal: #49BB59;
  --green-deep:      #0A490A;
  --green-tinta:     #133113;
  --green-claro:     #A8D5A8;
  --alert:           #B11505;

  --teal-900:  #0A1F17;
  --teal-800:  #0E3B2E;
  --sage-panel:#DCE9D6;
  --sage-cta:  #A8C99A;
  --sage-cta-hover:#95BA86;

  --green-t40: #92D69B;
  --green-t20: #6DC97A;
  --green-s20: #3CA449;
  --green-s40: #308D39;

  --ink:        #133113;
  --secondary:  #555555;
  --line:       #D6D6D6;
  --surface:    #F0F6F0;
  --white:      #ffffff;

  --on-dark:        #F3F8F2;
  --on-dark-soft:   #C7D6C7;
  --on-dark-mint:   #A8D5A8;

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

  --step-xs: 12px; --step-sm: 14px; --step-md: 16px; --step-lg: 20px;
  --radius: 10px; --radius-sm: 6px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);

  --z-nav: 100;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font); background: var(--white); color: var(--ink);
  font-size: var(--step-md); line-height: 1.65;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: var(--green-deep); }
:where(a, button, input, [tabindex]):focus-visible { outline: 3px solid var(--green-principal); outline-offset: 2px; border-radius: 4px; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }

/* ============================ NAV ============================ */
.nav { position: fixed; inset: 0 0 auto 0; z-index: var(--z-nav); background: rgba(255,255,255,0); backdrop-filter: blur(0); border-bottom: 1px solid transparent; height: 68px; transition: background 0.3s var(--ease), backdrop-filter 0.3s var(--ease), border-color 0.3s var(--ease); }
.nav.scrolled { background: rgba(255,255,255,0.92); backdrop-filter: blur(14px); border-bottom-color: var(--line); }
.nav-inner { max-width: 1200px; margin: 0 auto; height: 100%; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; height: 68px; }
.nav-logo img { height: 26px; width: auto; filter: brightness(0) saturate(100%) invert(13%) sepia(35%) saturate(1200%) hue-rotate(76deg) brightness(95%) contrast(90%); }
.nav-right { display: flex; align-items: center; gap: 24px; }
.nav-link { font-size: var(--step-sm); font-weight: 500; color: var(--secondary); text-decoration: none; transition: color 0.2s var(--ease); }
.nav-link:hover { color: var(--ink); }
.nav-cta { background: var(--green-deep); color: var(--white); padding: 10px 20px; border-radius: var(--radius-sm); font-size: var(--step-sm); font-weight: 600; text-decoration: none; transition: background 0.2s var(--ease), transform 0.15s var(--ease); }
.nav-cta:hover { background: var(--green-s40); transform: translateY(-1px); }

/* ============================ HERO (fundo claro + shader leve) ============================ */
.hero {
  position: relative;
  padding: 168px 0 120px;
  isolation: isolate;
  background: linear-gradient(180deg, #f6faf5 0%, #eef4ee 46%, #e7efe8 100%);
}
.hero-canvas { position: absolute; inset: 0; z-index: -1; width: 100%; height: 100%; }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none; background: radial-gradient(90% 70% at 50% 10%, rgba(255,255,255,0.5) 0%, transparent 60%); }
.hero-inner { position: relative; z-index: 1; max-width: 1080px; margin: 0 auto; padding: 0 24px; text-align: center; display: flex; flex-direction: column; align-items: center; }
.hero-head { display: flex; flex-direction: column; align-items: center; animation: heroUp 1.2s var(--ease-out-expo) both; }
@keyframes heroUp { from { opacity: 0; transform: translateY(44px); } to { opacity: 1; transform: none; } }
.hero h1 { font-size: clamp(38px, 5.2vw, 66px); font-weight: 700; line-height: 1.05; letter-spacing: -0.035em; color: var(--green-tinta); margin-bottom: 22px; }
.hero h1 .accent { color: var(--green-s40); font-weight: 900; }
.hero-sub { font-size: clamp(17px, 1.6vw, 21px); font-weight: 400; color: #33463a; max-width: 660px; line-height: 1.6; margin-bottom: 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; animation: heroUp 1.2s var(--ease-out-expo) 0.15s both; }
.btn-primary { display: inline-flex; align-items: center; gap: 9px; background: var(--green-deep); color: var(--white); font-size: var(--step-md); font-weight: 700; text-decoration: none; padding: 17px 32px; border-radius: var(--radius-sm); transition: background 0.2s var(--ease), transform 0.15s var(--ease), box-shadow 0.2s var(--ease); box-shadow: 0 18px 40px -18px rgba(10,73,10,0.55); }
.btn-primary:hover { background: var(--green-s40); transform: translateY(-2px); }
.btn-primary svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2.2; }
.btn-ghost { display: inline-flex; align-items: center; gap: 9px; background: rgba(255,255,255,0.6); color: var(--green-deep); border: 1.5px solid var(--green-deep); font-size: var(--step-md); font-weight: 600; text-decoration: none; padding: 17px 32px; border-radius: var(--radius-sm); transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.15s var(--ease); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: var(--green-deep); color: var(--white); transform: translateY(-2px); }
.btn-ghost svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2.2; }

/* ===================== SECTIONS BASE ===================== */
section { padding: 96px 0; }
.section-label { font-size: var(--step-xs); font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green-s40); margin-bottom: 16px; display: inline-flex; align-items: center; gap: 10px; }
.section-label::before { content: ""; width: 24px; height: 2px; background: var(--green-principal); border-radius: 2px; }
.section-label.on-dark { color: var(--on-dark-mint); }
.section-label.on-dark::before { background: var(--green-claro); }
.section-headline { font-size: clamp(28px, 3.6vw, 44px); font-weight: 700; line-height: 1.12; letter-spacing: -0.025em; color: var(--ink); max-width: 720px; }
.section-headline .accent { color: var(--green-s40); font-weight: 500; }
.section-intro { font-size: 17px; color: var(--secondary); max-width: 560px; margin-top: 18px; line-height: 1.65; }
.secao-cta { display: inline-flex; align-items: center; gap: 8px; margin-top: 40px; font-size: var(--step-md); font-weight: 600; color: var(--green-deep); text-decoration: none; border: 1.5px solid var(--green-deep); padding: 14px 28px; border-radius: var(--radius-sm); transition: background 0.2s var(--ease), color 0.2s var(--ease); }
.secao-cta:hover { background: var(--green-deep); color: var(--white); }
.secao-cta svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2.2; }
.center { text-align: center; }

/* ===================== QUIZ (dark + shader mouse) ===================== */
.quiz { position: relative; background: var(--green-tinta); color: var(--on-dark); overflow: hidden; isolation: isolate; }
.quiz-canvas { position: absolute; inset: 0; z-index: -1; width: 100%; height: 100%; }
.quiz::after { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none; background: radial-gradient(120% 90% at 50% 0%, transparent 40%, rgba(10,31,23,0.5) 100%); }
.quiz .section-headline { color: var(--white); }
.quiz .section-headline .accent { color: var(--on-dark-mint); }
.quiz-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.quiz-trust { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.quiz-trust li { display: flex; gap: 12px; align-items: flex-start; font-size: var(--step-md); color: var(--on-dark-soft); line-height: 1.55; }
.quiz-trust li svg { width: 19px; height: 19px; flex-shrink: 0; margin-top: 3px; stroke: var(--green-principal); stroke-width: 2.2; fill: none; }

/* card do quiz (estilo sim-shell da v4) */
.sim-shell {
  width: 100%; max-width: 640px; margin: 0 auto;
  background: var(--white);
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.55), 0 10px 28px -14px rgba(0,0,0,0.35);
  overflow: hidden;
}
.sim-shell-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 18px 28px; border-bottom: 1px solid var(--line); background: linear-gradient(180deg, #f7fbf7 0%, #ffffff 100%); }
.sim-shell-title { display: flex; align-items: center; gap: 10px; font-size: 17px; font-weight: 700; color: var(--green-tinta); letter-spacing: -0.01em; }
.sim-shell-title svg { width: 21px; height: 21px; stroke: var(--green-deep); fill: none; stroke-width: 1.9; }
.sim-shell-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green-deep); background: rgba(10,73,10,0.08); padding: 6px 13px; border-radius: 100px; white-space: nowrap; }

.sim-progress { display: flex; align-items: center; gap: 12px; padding: 20px 28px 0; }
.sim-progress-label { font-size: var(--step-xs); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--green-deep); white-space: nowrap; }
.sim-progress-track { flex: 1; height: 5px; border-radius: 3px; background: rgba(19,49,19,0.12); overflow: hidden; }
.sim-progress-fill { height: 100%; width: 0%; border-radius: 3px; background: linear-gradient(90deg, var(--green-principal), var(--green-s40)); transition: width 0.4s var(--ease-out-expo); }

.sim-flow { padding: 24px 28px 30px; }
.sim-step { display: none; }
.sim-step.active { display: block; animation: simIn 0.35s var(--ease-out-expo); }
@keyframes simIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.sim-question { font-size: 21px; font-weight: 700; color: var(--green-tinta); letter-spacing: -0.02em; line-height: 1.3; margin-bottom: 6px; }
.sim-hint { font-size: 14.5px; color: #4a5a4a; margin-bottom: 18px; }
.sim-question + .sim-options { margin-top: 16px; }
.sim-options { display: grid; grid-template-columns: 1fr; gap: 9px; }
.sim-options.cols-2 { grid-template-columns: 1fr 1fr; }
.sim-option { display: flex; align-items: flex-start; gap: 11px; width: 100%; text-align: left; background: var(--white); border: 1.5px solid var(--line); border-radius: 9px; padding: 14px 16px; font-family: var(--font); font-size: 15px; font-weight: 500; color: #2f3f2f; cursor: pointer; transition: border-color 0.15s var(--ease), background 0.15s var(--ease); }
.sim-option::before { content: ""; width: 17px; height: 17px; border-radius: 50%; flex-shrink: 0; margin-top: 2px; border: 2px solid rgba(19,49,19,0.3); transition: border-color 0.15s, background 0.15s, box-shadow 0.15s; }
.sim-option:hover { border-color: var(--green-principal); background: #f4faf4; }
.sim-option.selected { border-color: var(--green-deep); background: #eef7ee; font-weight: 600; color: var(--green-tinta); }
.sim-option.selected::before { border-color: var(--green-deep); background: var(--green-deep); box-shadow: inset 0 0 0 3px var(--white); }
.sim-option-body { display: flex; flex-direction: column; gap: 2px; }
.sim-option-title { font-weight: 600; color: var(--green-tinta); }
.sim-option-desc { font-size: 13.5px; font-weight: 400; color: var(--secondary); line-height: 1.45; }
.sim-nav-row { display: flex; align-items: center; justify-content: space-between; margin-top: 22px; min-height: 44px; }
.sim-back { visibility: hidden; background: none; border: none; font-family: var(--font); font-size: var(--step-sm); font-weight: 500; color: var(--secondary); cursor: pointer; padding: 8px 4px; display: inline-flex; align-items: center; gap: 6px; }
.sim-back.show { visibility: visible; }
.sim-back:hover { color: var(--ink); }
.sim-back svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }
.sim-continue { visibility: hidden; background: var(--green-deep); color: var(--white); border: none; border-radius: 8px; padding: 14px 28px; font-family: var(--font); font-size: var(--step-sm); font-weight: 600; cursor: pointer; transition: background 0.2s var(--ease); }
.sim-continue.show { visibility: visible; }
.sim-continue:hover { background: var(--green-s40); }
.sim-continue:disabled { background: rgba(19,49,19,0.2); color: #6a7a6a; cursor: not-allowed; }
.sim-field { margin-bottom: 15px; }
.sim-field label { display: block; font-size: 15px; font-weight: 600; color: var(--green-tinta); margin-bottom: 7px; }
.sim-field input { width: 100%; border: 1.5px solid var(--line); border-radius: 9px; padding: 15px 16px; font-family: var(--font); font-size: 16px; color: var(--ink); background: var(--white); outline: none; transition: border-color 0.15s var(--ease); }
.sim-field input:focus { border-color: var(--green-principal); }
.sim-field input.invalid { border-color: var(--alert); }
.sim-error { display: none; font-size: var(--step-xs); color: var(--alert); margin-top: 5px; font-weight: 500; }
.sim-field input.invalid ~ .sim-error { display: block; }
.sim-submit { display: flex; align-items: center; justify-content: center; gap: 9px; width: 100%; margin-top: 6px; background: var(--green-deep); color: var(--white); border: none; border-radius: 9px; padding: 16px 24px; font-family: var(--font); font-size: var(--step-md); font-weight: 700; cursor: pointer; text-decoration: none; transition: background 0.2s var(--ease), transform 0.15s var(--ease); }
.sim-submit:hover { background: var(--green-s40); transform: translateY(-1px); }
.sim-submit:disabled { opacity: 0.7; cursor: wait; transform: none; }
.sim-submit svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2.2; }
.sim-privacy { margin-top: 16px; font-size: 12.5px; color: #4a5a4a; line-height: 1.55; display: flex; gap: 8px; align-items: flex-start; }
.sim-privacy svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; stroke: var(--green-s40); fill: none; stroke-width: 2; }
.sim-result { text-align: center; padding: 16px 0 6px; }
.sim-result-icon { width: 62px; height: 62px; border-radius: 50%; margin: 0 auto 20px; background: var(--surface); border: 1.5px solid rgba(73,187,89,0.4); display: flex; align-items: center; justify-content: center; }
.sim-result-icon svg { width: 28px; height: 28px; stroke: var(--green-s40); fill: none; stroke-width: 2.2; }
.sim-result h3 { font-size: 22px; font-weight: 700; color: var(--green-tinta); letter-spacing: -0.01em; margin-bottom: 8px; }
.sim-result p { font-size: 15px; color: #4a5a4a; line-height: 1.6; max-width: 420px; margin: 0 auto; }
.sim-result p a { color: var(--green-deep); font-weight: 600; }
.sim-result .sim-submit { margin-top: 24px; max-width: 360px; margin-left: auto; margin-right: auto; }

/* ===================== ELEGIBILIDADE (imagem + texto) ===================== */
.feature { background: var(--white); }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.feature-media { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 4 / 3; box-shadow: 0 40px 80px -40px rgba(19,49,19,0.45); }
.feature-media img { width: 100%; height: 100%; object-fit: cover; }
.feature-media.duo img { filter: url(#eqseed-duotone) contrast(1.02); }
.feature-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(19,49,19,0.35) 100%); }
.feature-media-tag { position: absolute; left: 18px; bottom: 18px; z-index: 1; display: inline-flex; align-items: center; gap: 8px; background: rgba(10,31,23,0.68); backdrop-filter: blur(6px); color: var(--on-dark-mint); font-size: var(--step-xs); font-weight: 600; padding: 8px 14px; border-radius: 100px; border: 1px solid rgba(168,213,168,0.25); }
.feature-kicker { font-size: var(--step-sm); font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--green-deep); margin-top: 26px; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-top: 16px; }
.feature-list li { font-size: var(--step-md); color: #2f3f2f; line-height: 1.55; display: flex; gap: 12px; align-items: flex-start; }
.feature-list li svg { width: 19px; height: 19px; flex-shrink: 0; margin-top: 3px; stroke: var(--green-s40); stroke-width: 2.2; fill: none; }
.feature-note { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); font-size: var(--step-sm); color: var(--secondary); line-height: 1.6; }
.feature-note a { color: var(--green-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* ===================== COMO FUNCIONA ===================== */
.como { background: var(--surface); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 52px; }
.step { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; transition: border-color 0.2s var(--ease), transform 0.2s var(--ease); }
.step:hover { border-color: var(--green-principal); transform: translateY(-3px); }
.step-num { width: 44px; height: 44px; border-radius: 50%; background: var(--surface); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; color: var(--green-deep); margin-bottom: 20px; }
.step-title { font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 8px; letter-spacing: -0.01em; }
.step-desc { font-size: var(--step-sm); color: var(--secondary); line-height: 1.6; }

/* ===================== FAQ ===================== */
.faq { background: var(--surface); }
.faq-layout { display: grid; grid-template-columns: 340px 1fr; gap: 72px; align-items: start; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 22px 0; display: flex; align-items: center; justify-content: space-between; gap: 24px; font-family: var(--font); font-size: 17px; font-weight: 600; color: var(--ink); transition: color 0.15s var(--ease); }
.faq-q:hover { color: var(--green-s40); }
.faq-icon { width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--line); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease); }
.faq-icon svg { width: 13px; height: 13px; stroke: var(--secondary); stroke-width: 2.5; fill: none; }
.faq-item.open .faq-icon { background: var(--green-deep); border-color: var(--green-deep); transform: rotate(180deg); }
.faq-item.open .faq-icon svg { stroke: var(--white); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s var(--ease); }
.faq-a-inner { padding: 0 0 24px; font-size: var(--step-md); color: var(--secondary); line-height: 1.7; max-width: 680px; }

/* ===================== FOOTER ===================== */
.footer { background: var(--green-tinta); color: var(--on-dark-soft); padding: 64px 0 36px; }
.footer-top { display: flex; justify-content: space-between; gap: 48px; flex-wrap: wrap; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-logo img { height: 26px; width: auto; margin-bottom: 14px; }
.footer-tagline { font-size: var(--step-sm); color: var(--on-dark-soft); max-width: 300px; line-height: 1.6; }
.footer-cols { display: flex; gap: 72px; flex-wrap: wrap; }
.footer-col-title { font-size: var(--step-xs); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--on-dark-mint); margin-bottom: 18px; }
.footer-col-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col-links a { font-size: var(--step-sm); color: var(--on-dark-soft); text-decoration: none; transition: color 0.15s var(--ease); }
.footer-col-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; margin-top: 40px; align-items: flex-start; }
.footer-legal { font-size: var(--step-xs); color: #8fa98f; line-height: 1.7; max-width: 680px; }
.footer-meta { text-align: right; }
.mat-pub { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--on-dark-mint); border: 1px solid rgba(168,213,168,0.35); padding: 6px 12px; border-radius: 100px; margin-bottom: 12px; }
.footer-cvm { font-size: var(--step-xs); font-weight: 600; color: var(--on-dark-soft); white-space: nowrap; }

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

/* ===================== RESPONSIVO ===================== */
@media (max-width: 1000px) {
  .quiz-grid { grid-template-columns: 1fr; gap: 40px; }
  .feature-grid { grid-template-columns: 1fr; gap: 36px; }
  .feature-media { order: -1; aspect-ratio: 16 / 10; }
}
@media (max-width: 860px) {
  .steps { grid-template-columns: 1fr 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 18px; }
  section { padding: 64px 0; }
  .hero { padding: 128px 0 84px; }
  .hero-actions { width: 100%; flex-direction: column; }
  .btn-primary, .btn-ghost { justify-content: center; }
  .sim-flow { padding: 20px 20px 24px; }
  .sim-progress { padding: 18px 20px 0; }
  .sim-shell-head { padding: 16px 20px; }
  .sim-options.cols-2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .nav-link { display: none; }
}
