/* ── Tokens ─────────────────────────────────────────────────────────────── */
:root {
  --dark:        #002d3a;
  --darker:      #001e27;
  --darkest:     #00121a;
  --card:        #003346;
  --card-hover:  #003d55;
  --cyan:        #00cfff;
  --cyan-dim:    rgba(0, 207, 255, .12);
  --cyan-border: rgba(0, 207, 255, .25);
  --cyan-glow:   rgba(0, 207, 255, .18);
  --coral:       #ff6b5f;
  --text:        #f0f4f8;
  --muted:       rgba(240, 244, 248, .62);
  --border:      rgba(255, 255, 255, .07);
  --white:       #ffffff;
  --radius:      10px;
  --shadow:      0 20px 60px rgba(0, 18, 26, .5);
  --font:        'Inter', Arial, sans-serif;
}

/* ── Reset ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { background: var(--dark); color: var(--text); font-family: var(--font); line-height: 1.6; overflow-x: hidden; }
a     { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, p { overflow-wrap: anywhere; }

/* ── Layout ────────────────────────────────────────────────────────────── */
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.narrow    { max-width: 860px; }

/* ── Urgency bar ───────────────────────────────────────────────────────── */
.urgency-bar {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  padding: 10px 20px;
  background: linear-gradient(90deg, #92400e, #b45309);
  color: #fff; font-size: .88rem; font-weight: 700; text-align: center;
}
.urgency-bar p { margin: 0; }
.bar-cta {
  color: #fef3c7; font-size: .84rem; font-weight: 900;
  border-bottom: 1px solid rgba(254,243,199,.4); white-space: nowrap;
  transition: .2s;
}
.bar-cta:hover { color: #fff; border-bottom-color: #fff; }

/* ── Nav ───────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(0, 30, 39, .94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}
.nav-shell {
  width: min(1120px, calc(100% - 40px));
  min-height: 68px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 1rem; font-weight: 800; color: var(--text);
}
.brand-logo { height: 38px; width: auto; mix-blend-mode: screen; filter: brightness(1.1); }
.brand-accent { color: var(--cyan); }
.nav-actions {
  display: flex; align-items: center; gap: 28px;
  font-size: .9rem; font-weight: 600; color: var(--muted);
}
.nav-actions a { transition: color .2s; }
.nav-actions a:hover { color: var(--text); }

/* ── Buttons ───────────────────────────────────────────────────────────── */
.primary-button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 14px 28px;
  background: var(--cyan); color: var(--darker);
  border: 0; border-radius: var(--radius);
  font-weight: 900; font-size: 1rem; cursor: pointer;
  transition: transform .18s, box-shadow .18s, background .18s;
}
.primary-button:hover, .primary-button:focus-visible {
  background: #33d9ff;
  box-shadow: 0 12px 40px rgba(0, 207, 255, .35);
  transform: translateY(-2px);
}

/* ── Eyebrow ───────────────────────────────────────────────────────────── */
.eyebrow {
  display: inline-block; margin-bottom: 16px;
  color: var(--cyan); font-size: .75rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
}

/* ── Headings ──────────────────────────────────────────────────────────── */
h1 { font-size: clamp(2.2rem, 5.5vw, 4.4rem); line-height: 1.06; letter-spacing: -.02em; margin-bottom: 20px; }
h2 { font-size: clamp(1.9rem, 3.8vw, 3.2rem); line-height: 1.08; letter-spacing: -.01em; }
h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 10px; line-height: 1.3; }

/* ── Sections ──────────────────────────────────────────────────────────── */
.section { padding: 96px 0; }

.section-dark {
  background:
    radial-gradient(ellipse 80% 60% at 80% 20%, rgba(0,207,255,.12) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(0,207,255,.07) 0%, transparent 50%),
    var(--darker);
}

.section-muted {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ── Hero ──────────────────────────────────────────────────────────────── */
.hero {
  padding: 100px 0 112px;
  background:
    radial-gradient(ellipse 70% 70% at 90% 10%, rgba(0,207,255,.15) 0%, transparent 50%),
    radial-gradient(ellipse 40% 50% at 5% 90%, rgba(0,207,255,.08) 0%, transparent 50%),
    var(--darkest);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(300px,.72fr);
  gap: 64px; align-items: center;
}

.hero-copy { max-width: 680px; }

.hero-subtitle {
  font-size: 1.18rem; color: var(--muted); line-height: 1.75;
  margin: 0 0 28px; max-width: 580px;
}

/* ── Checklist ─────────────────────────────────────────────────────────── */
.check-list {
  list-style: none; display: grid; gap: 14px; margin: 0 0 36px;
}
.check-list li {
  position: relative; padding-left: 30px;
  font-weight: 600; color: var(--text);
}
.check-list li::before {
  content: '';
  position: absolute; left: 0; top: .15em;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--cyan);
}
.check-list li::after {
  content: '';
  position: absolute; left: 6px; top: .46em;
  width: 5px; height: 9px;
  border: solid var(--darker); border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* ── Hero panel ────────────────────────────────────────────────────────── */
.hero-panel {
  background: rgba(0,207,255,.06);
  border: 1px solid var(--cyan-border);
  border-radius: 16px; padding: 28px;
  box-shadow: 0 0 60px rgba(0,207,255,.08);
}
.panel-header {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin-bottom: 24px;
}
.panel-header span, .panel-header strong {
  display: inline-flex; border-radius: 999px;
  padding: 8px 14px;
  background: rgba(0,207,255,.1);
  border: 1px solid var(--cyan-border);
  color: var(--cyan); font-size: .82rem; font-weight: 800;
}

.signal-stack { display: grid; gap: 10px; margin-bottom: 20px; }
.signal-stack div {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 18px;
}
.signal-stack span {
  font-size: .75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .06em; color: var(--muted);
}
.signal-stack strong { font-size: 1rem; color: var(--text); }

.route-visual {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 8px;
}
.route-visual span {
  min-height: 72px;
  display: flex; align-items: center; justify-content: center; text-align: center;
  background: rgba(0,207,255,.08);
  border: 1px solid var(--cyan-border);
  border-radius: var(--radius);
  color: var(--cyan); font-size: .8rem; font-weight: 800;
}

/* ── Two-column layouts ────────────────────────────────────────────────── */
.two-column, .value-grid, .revenue-grid, .apply-grid, .faq-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(300px,.72fr);
  gap: 56px; align-items: center;
}

.section-text { color: var(--muted); font-size: 1.05rem; line-height: 1.8; margin-top: 18px; }

/* ── Cards (pain / bonus) ──────────────────────────────────────────────── */
.pain-grid, .bonus-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 16px;
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px; padding: 24px;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.card:hover {
  border-color: var(--cyan-border);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,207,255,.08);
}
.card p { color: var(--muted); font-size: .94rem; line-height: 1.7; margin: 0; }

/* ── Section heading ───────────────────────────────────────────────────── */
.section-heading { max-width: 720px; margin-bottom: 48px; }

/* ── Pillar grid ───────────────────────────────────────────────────────── */
.pillar-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 18px;
}
.pillar-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px; padding: 26px;
  display: grid; gap: 12px;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.pillar-card:hover {
  border-color: var(--cyan-border);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,207,255,.08);
}
.pillar-card span {
  width: max-content;
  color: var(--coral); font-size: .8rem; font-weight: 900;
  border-bottom: 2px solid var(--cyan); padding-bottom: 2px;
}
.pillar-card p { color: var(--muted); font-size: .9rem; line-height: 1.7; margin: 0; }

/* ── Deliverables grid ─────────────────────────────────────────────────── */
.deliverables-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 14px;
}
.deliverables-grid span {
  display: flex; align-items: center;
  background: rgba(0,207,255,.07);
  border: 1px solid var(--cyan-border);
  border-radius: var(--radius); padding: 20px 18px;
  color: var(--text); font-size: .9rem; font-weight: 700; line-height: 1.5;
}

/* ── Value card ────────────────────────────────────────────────────────── */
.value-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 28px;
  box-shadow: var(--shadow);
}
.price-list { margin: 0; }
.price-list div {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  border-bottom: 1px solid var(--border); padding: 14px 0;
}
.price-list dt { color: var(--muted); font-weight: 600; font-size: .94rem; }
.price-list dd { margin: 0; color: var(--text); font-weight: 800; white-space: nowrap; }
.total-value  { margin: 20px 0 8px; color: var(--text); font-size: 1.2rem; font-weight: 800; }
.selected-value {
  margin: 0; border-left: 3px solid var(--cyan);
  padding-left: 12px; color: var(--cyan); font-weight: 800; font-size: .94rem;
}

/* ── Revenue calculator visual ─────────────────────────────────────────── */
.calculator-visual { display: grid; gap: 12px; }
.calculator-visual div {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px 20px;
}
.calculator-visual span {
  font-size: .75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .06em; color: var(--muted);
}
.calculator-visual strong { color: var(--text); font-size: 1.1rem; margin: 0; }

/* ── Offer card ────────────────────────────────────────────────────────── */
.offer-wrap { display: flex; justify-content: center; }
.offer-card {
  width: min(820px, 100%);
  background: rgba(0,207,255,.06);
  border: 1px solid var(--cyan-border);
  border-radius: 20px; padding: 48px;
  box-shadow: 0 0 80px rgba(0,207,255,.1);
}
.offer-card p { color: var(--muted); line-height: 1.75; margin-top: 14px; }
.two-cols { grid-template-columns: repeat(2,1fr); margin-top: 28px; }

.investment {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  border-top: 1px solid var(--cyan-border);
  border-bottom: 1px solid var(--cyan-border);
  margin: 32px 0; padding: 22px 0;
}
.investment span { font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.investment strong { color: var(--cyan); font-size: 1.05rem; text-align: right; }

/* ── Guarantee ─────────────────────────────────────────────────────────── */
.guarantee {
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(0,207,255,.07) 0%, transparent 70%),
    var(--darker);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.guarantee .narrow { margin: 0 auto; }

/* ── Authority ─────────────────────────────────────────────────────────── */
.authority { max-width: 900px; }
.signature {
  margin-top: 24px;
  color: var(--cyan); font-weight: 800; font-size: 1rem;
}

/* ── FAQ ───────────────────────────────────────────────────────────────── */
.faq-grid { align-items: start; }
.faq-list { display: grid; gap: 12px; }
details {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 22px;
  transition: border-color .2s;
}
details[open] { border-color: var(--cyan-border); }
summary {
  cursor: pointer; font-weight: 800; color: var(--text);
  list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
summary::after {
  content: '+'; color: var(--cyan); font-size: 1.4rem; font-weight: 300; flex-shrink: 0; transition: transform .25s;
}
details[open] summary::after { transform: rotate(45deg); }
details p { margin: 14px 0 0; color: var(--muted); font-size: .95rem; line-height: 1.75; }

/* ── Application form ──────────────────────────────────────────────────── */
.application-section {
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(0,207,255,.06) 0%, transparent 60%),
    var(--dark);
}
.apply-grid { align-items: start; }
.apply-form {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px; padding: 32px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; gap: 8px; }
.form-row.full, .form-button, .form-note, .full { grid-column: 1 / -1; }
label { color: var(--text); font-size: .88rem; font-weight: 700; }
input, select, textarea {
  width: 100%;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  color: var(--text); padding: 13px 14px; outline: none;
  transition: border-color .2s, box-shadow .2s;
}
input::placeholder, textarea::placeholder { color: var(--muted); }
select option { background: var(--card); color: var(--text); }
input:focus, select:focus, textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,207,255,.15);
}
textarea { resize: vertical; }
.form-button { width: 100%; margin-top: 4px; }
.form-button:disabled { opacity: .6; cursor: not-allowed; transform: none !important; box-shadow: none !important; }
.form-note { color: var(--muted); font-size: .88rem; min-height: 1.2em; }

/* ── Footer ────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--darkest);
  border-top: 1px solid var(--border);
  padding: 28px 0;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-size: .9rem;
}
.footer-inner span:first-child { color: var(--text); font-weight: 800; }
.footer-inner span:last-child  { color: var(--muted); }

/* ── Vagas counter ─────────────────────────────────────────────────────── */
.vagas-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.15); border-radius: 20px;
  padding: 2px 10px; font-size: .82rem; font-weight: 900; margin-right: 6px;
}
.vagas-counter {
  display: flex; align-items: center; gap: 10px;
  margin-top: 28px; color: var(--muted); font-size: .9rem;
}
.vagas-counter strong { color: var(--cyan); }
.vagas-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #22c55e; flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(34,197,94,.25);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 3px rgba(34,197,94,.25); }
  50%      { box-shadow: 0 0 0 6px rgba(34,197,94,.1); }
}

/* ── Social proof badge ────────────────────────────────────────────────── */
.social-proof-badge {
  display: flex; align-items: center; gap: 14px;
  background: rgba(0,207,255,.07);
  border: 1px solid var(--cyan-border);
  border-radius: 14px; padding: 14px 18px;
  margin: 0 0 28px; max-width: 440px;
}
.sp-avatars {
  display: flex; flex-shrink: 0;
}
.sp-avatars span {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 900; color: var(--darker);
  margin-left: -8px; border: 2px solid var(--darker);
}
.sp-avatars span:nth-child(1) { background: var(--cyan); margin-left: 0; }
.sp-avatars span:nth-child(2) { background: #00b4d8; }
.sp-avatars span:nth-child(3) { background: #0096c7; }
.sp-avatars span:nth-child(4) { background: #0077b6; }
.sp-text { margin: 0; font-size: .88rem; color: var(--muted); line-height: 1.4; }
.sp-text strong { color: var(--text); }

/* ── Hero CTA spacing ──────────────────────────────────────────────────── */
.hero-cta { margin-top: 4px; }

/* ── Card icon ─────────────────────────────────────────────────────────── */
.card-icon { font-size: 1.8rem; margin-bottom: 10px; }

/* ── How it works ──────────────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0; align-items: center;
}
.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 32px 28px;
  text-align: center;
  transition: border-color .25s, transform .25s;
}
.step-card:hover {
  border-color: var(--cyan-border);
  transform: translateY(-4px);
}
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--cyan-dim); border: 2px solid var(--cyan-border);
  color: var(--cyan); font-size: 1rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step-card h3 { font-size: 1rem; margin-bottom: 10px; }
.step-card p  { color: var(--muted); font-size: .9rem; line-height: 1.7; margin: 0; }
.step-arrow {
  font-size: 2rem; color: var(--cyan); opacity: .5;
  padding: 0 16px; flex-shrink: 0;
}

/* ── Bonus preview cards ───────────────────────────────────────────────── */
.bonus-card { display: flex; flex-direction: column; }
.bonus-preview {
  background: var(--dark); border: 1px solid var(--border);
  border-radius: 10px; padding: 20px; margin-bottom: 16px;
  display: flex; justify-content: center;
}
.bonus-doc {
  width: 100px; background: rgba(255,255,255,.04);
  border: 1px solid var(--border); border-radius: 6px;
  padding: 14px 12px; display: flex; flex-direction: column; gap: 8px; align-items: center;
}
.bonus-doc-icon { font-size: 1.6rem; }
.bonus-doc-lines { display: flex; flex-direction: column; gap: 5px; width: 100%; }
.bonus-doc-lines i {
  display: block; height: 4px; border-radius: 2px;
  background: rgba(255,255,255,.12);
}
.bonus-doc-lines i:nth-child(1) { width: 100%; }
.bonus-doc-lines i:nth-child(2) { width: 80%; }
.bonus-doc-lines i:nth-child(3) { width: 90%; }
.bonus-doc-lines i:nth-child(4) { width: 60%; }
.bonus-tag {
  display: inline-block;
  background: var(--cyan-dim); border: 1px solid var(--cyan-border);
  color: var(--cyan); font-size: .75rem; font-weight: 800;
  border-radius: 20px; padding: 3px 10px; margin-bottom: 10px;
}
.bonus-card h3 { margin-bottom: 8px; }

/* ── Revenue total highlight ───────────────────────────────────────────── */
.calc-total { border: 1px solid var(--cyan-border) !important; }
.calc-total strong { color: var(--cyan) !important; }

/* ── Guarantee ─────────────────────────────────────────────────────────── */
.guarantee-icon { font-size: 3rem; margin-bottom: 16px; }

/* ── Multi-step form ──────────────────────────────────────────────────── */
.form-progress {
  display: flex; align-items: center; gap: 14px; margin-bottom: 4px;
}
.form-progress-track {
  flex: 1; height: 4px; background: rgba(255,255,255,.1); border-radius: 2px; overflow: hidden;
}
.form-progress-fill {
  height: 100%; background: var(--cyan); border-radius: 2px;
  transition: width .4s ease;
}
.form-progress-label { font-size: .82rem; color: var(--muted); white-space: nowrap; margin: 0; }

.form-step { display: contents; }
.form-step.hidden { display: none; }

.form-step-nav {
  display: flex; align-items: center; gap: 14px;
}
.btn-back {
  background: none; border: 1px solid rgba(255,255,255,.15);
  color: var(--muted); border-radius: var(--radius);
  padding: 13px 20px; font-weight: 700; cursor: pointer;
  transition: .2s; white-space: nowrap; font-size: .9rem;
}
.btn-back:hover { color: var(--text); border-color: rgba(255,255,255,.35); }
.form-button-submit { flex: 1; }

input.invalid, select.invalid, textarea.invalid {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 2px rgba(239,68,68,.2) !important;
}

/* ── WhatsApp float ────────────────────────────────────────────────────── */
.wpp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  display: flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff;
  padding: 13px 20px; border-radius: 999px;
  font-weight: 800; font-size: .9rem;
  box-shadow: 0 8px 30px rgba(37,211,102,.35);
  transition: transform .2s, box-shadow .2s;
}
.wpp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(37,211,102,.45);
}

/* ── Mobile sticky CTA ─────────────────────────────────────────────────── */
.mobile-sticky {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 990;
  background: var(--darkest); border-top: 1px solid var(--border);
  padding: 12px 16px;
  transform: translateY(100%);
  transition: transform .3s ease;
}
.mobile-sticky.visible { transform: translateY(0); }
.mobile-sticky .primary-button { width: 100%; }

/* ── Responsive — tablet ───────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid, .two-column, .value-grid,
  .revenue-grid, .apply-grid, .faq-grid {
    grid-template-columns: 1fr; gap: 36px;
  }
  .section  { padding: 72px 0; }
  .hero     { padding: 72px 0 84px; }
  .pillar-grid, .deliverables-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid { grid-template-columns: 1fr; gap: 0; }
  .step-arrow { transform: rotate(90deg); text-align: center; padding: 8px 0; }
  .mobile-sticky { display: block; }
  .wpp-float span { display: none; }
  .wpp-float { padding: 14px; border-radius: 50%; bottom: 80px; }
}

/* ── Responsive — mobile ───────────────────────────────────────────────── */
@media (max-width: 640px) {
  .container, .nav-shell { width: min(100% - 28px, 1120px); }

  .urgency-bar { flex-direction: column; align-items: stretch; gap: 6px; }

  .brand span:last-child { font-size: .9rem; }

  .hero-panel, .offer-card, .apply-form, .value-card { padding: 22px 18px; }

  .pain-grid, .bonus-grid, .pillar-grid,
  .deliverables-grid, .two-cols, .apply-form { grid-template-columns: 1fr; }

  .route-visual { grid-template-columns: repeat(2,1fr); }

  .calculator-visual div, .investment, .footer-inner {
    flex-direction: column; align-items: flex-start;
  }
  .investment strong { text-align: left; }

  h1 { font-size: 2.3rem; }
  h2 { font-size: 1.9rem; }

  .nav-actions a:not(:last-child) { display: none; }
}
