:root {
  --red: #CB0D0C;
  --red-dark: #9E0909;
  --red-soft: #FFF1F1;
  --red-mid: #F7D4D4;
  --black: #040404;
  --ink: #161616;
  --muted: #5F5F5F;
  --line: #EDE4E4;
  --hero: #FFF3F3;
  --bg: #FFFCFC;
  --bg-2: #FFF6F6;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(203, 13, 12, 0.08);
  --shadow-lg: 0 30px 70px rgba(4, 4, 4, 0.12);
  --radius: 28px;
  --radius-sm: 18px;
  --max: 1180px;
  --header: 78px;
  --text: 1rem;
  --h3: 1.25rem;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: "Outfit", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  font-size: var(--text);
  font-weight: 400;
  line-height: 1.55;
  min-height: 100vh;
}
p, li, small, label, .lead, .disclaimer, .check, .form-msg, .legal-bar,
.footer a, .footer p, .choice small, .cta-visual span, .stat > span,
.hero-photo-placeholder p, .hero-note {
  font-size: var(--text);
  font-weight: 400;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.skip {
  position: absolute; left: -999px; top: 8px;
}
.skip:focus { left: 8px; background: #fff; padding: 8px 12px; z-index: 80; }

/* Header */
#site-header {
  position: sticky; top: 0; z-index: 60;
}
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(4,4,4,.06);
}
.header-inner {
  height: var(--header);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 52px; width: auto; display: block; }
.footer .brand img { height: 64px; }
.nav { display: flex; align-items: center; gap: 6px; }
.nav a, .nav-drop > span {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 12px; border-radius: 999px;
  font-size: var(--text); font-weight: 500; color: #2b2b2b;
}
.nav a:hover, .nav a.is-active, .nav-drop > span:hover { background: var(--red-soft); color: var(--red); }
.nav-drop { position: relative; }
.nav-drop > span { cursor: pointer; }
.nav-menu {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 260px; padding: 10px;
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  box-shadow: var(--shadow);
}
.nav-drop:hover .nav-menu, .nav-drop:focus-within .nav-menu { display: grid; gap: 4px; }
.nav-menu a { display: block; padding: 10px 12px; border-radius: 12px; }
.nav-menu small { display: block; color: var(--muted); font-weight: 400; font-size: var(--text); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.menu-btn {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line);
  background: #fff; border-radius: 12px; cursor: pointer;
}
.menu-btn span { display: block; width: 18px; height: 2px; background: var(--black); margin: 4px auto; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 54px; padding: 0 28px; border-radius: 12px;
  font-weight: 600; font-size: 17px; border: 1.5px solid transparent; cursor: pointer;
  transition: .2s ease;
}
.btn-primary { background: var(--red); color: #fff; border-color: var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-1px); }
.btn-outline, .btn-nav { background: transparent; color: var(--black); border-color: var(--black); }
.btn-outline:hover, .btn-nav:hover { background: var(--black); color: #fff; }
.btn-white { background: #fff; color: var(--red); }
.btn-white:hover { background: var(--red-soft); }
.btn-lg { min-height: 58px; padding: 0 32px; font-size: 17px; }
.header-actions .btn { min-height: 44px; padding: 0 18px; font-size: 17px; border-radius: 10px; }
.lbl-short { display: none; }

/* Hero */
.hero {
  position: relative; overflow: hidden;
  padding: 56px 0 72px;
  background: var(--hero);
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center;
}
.hero-media { position: relative; min-height: 280px; }
.hero-photo {
  display: none; width: 100%; height: auto; max-height: 520px; object-fit: cover;
  border-radius: 28px; filter: drop-shadow(0 28px 50px rgba(4,4,4,.12));
}
.hero-photo.is-on { display: block; }
.hero-photo-placeholder { text-align: center; color: var(--muted); }
.hero-photo-placeholder.is-off { display: none; }
.hero-photo-placeholder img { width: 100%; margin-bottom: 8px; }
.hero-photo-placeholder p { font-size: var(--text); }
.hero-photo-placeholder code { color: var(--red); font-weight: 700; }
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red-soft); color: var(--red);
  font-size: 13px; font-weight: 700; letter-spacing: .04em;
  padding: 6px 12px; border-radius: 999px; margin-bottom: 18px;
}
.hero .kicker {
  background: transparent; padding: 0; border-radius: 0;
  text-transform: uppercase; letter-spacing: .14em; font-size: 12px;
}
.hero h1 {
  font-size: clamp(2.3rem, 5vw, 4.15rem);
  line-height: 1.05; letter-spacing: -.04em; font-weight: 800; max-width: 16ch;
}
.hero h1 em, .accent {
  font-style: normal;
  background: linear-gradient(90deg, #CB0D0C, #f0473f);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.typed {
  color: var(--red);
  border-right: 2px solid var(--red);
  padding-right: 3px; animation: blink 1s step-end infinite;
  display: inline-block; min-width: 8ch;
}
@keyframes blink { 50% { border-color: transparent; } }
.lead { margin-top: 18px; color: var(--muted); max-width: 52ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-note { margin-top: 18px; color: #7a7a7a; }

.device {
  background: #fff; border-radius: 28px; box-shadow: var(--shadow-lg);
  border: 1px solid var(--line); overflow: hidden; transform: rotate(-1.5deg);
}
.device-bar {
  display: flex; align-items: center; gap: 6px; padding: 12px 16px; background: #f7f4f4;
  border-bottom: 1px solid var(--line);
}
.device-bar i { width: 9px; height: 9px; border-radius: 50%; background: #e6dede; display: block; }
.device-bar i:first-child { background: #CB0D0C; }
.device-screen { padding: 18px; }
.dash-top { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 14px; }
.dash-logo { height: 28px; width: auto; }
.chip { background: var(--red-soft); color: var(--red); font-size: 12px; font-weight: 700; padding: 6px 10px; border-radius: 999px; }
.dash-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.dash-card {
  border: 1px solid var(--line); border-radius: 16px; padding: 12px;
}
.dash-card strong { display: block; font-size: 22px; letter-spacing: -.03em; }
.dash-card span { color: var(--muted); font-size: 12px; }
.route { margin-top: 12px; border-radius: 16px; background: var(--black); color: #fff; padding: 14px; }
.route p { font-size: 12px; opacity: .7; }
.route b { display: block; margin-top: 4px; font-size: 15px; }

.stats-band {
  background: #fff;
  padding: 72px 0 64px;
}
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  justify-items: center; text-align: center;
}
.stat { padding: 8px 10px; width: 100%; }
.stat strong {
  display: block; font-size: clamp(2.4rem, 4vw, 3rem);
  letter-spacing: -.03em; color: var(--black); line-height: 1; font-weight: 600;
}
.stat strong span {
  display: inline; margin: 0; color: inherit; font-size: inherit; font-weight: inherit; line-height: inherit;
}
.stat > span { display: block; margin-top: 12px; color: var(--muted); }

.section { padding: 72px 0; position: relative; }
.section-soft, .section-tint { background: var(--hero); }
.section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  letter-spacing: -.04em; line-height: 1.12; font-weight: 800;
}
.section-head { text-align: center; max-width: 680px; margin: 0 auto 36px; }
.section-head p { margin-top: 12px; color: var(--muted); }

.profiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.profile-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 12px;
  transition: .2s ease;
}
.profile-card:hover { transform: translateY(-4px); border-color: var(--red-mid); }
.icon {
  width: 64px; height: 64px; border-radius: 20px; display: grid; place-items: center;
  background: var(--red-soft); color: var(--red); font-size: 22px; font-weight: 800;
  flex-shrink: 0;
}
.profile-icon {
  width: 88px; height: 88px; display: grid; place-items: center;
  background: transparent; color: var(--red); flex-shrink: 0;
}
.profile-icon svg { width: 68px; height: 68px; overflow: visible; }
.icon-bob { animation: icon-bob 2.4s ease-in-out infinite; }
.icon-lift { animation: icon-lift 2.8s ease-in-out infinite; }
.icon-pulse { animation: icon-pulse 2.2s ease-in-out infinite; }
.gift-lid { transform-origin: 8px 16px; animation: gift-lid 2.4s ease-in-out infinite; }
.rocket-flame { animation: rocket-flame .7s ease-in-out infinite alternate; }
.bldg-win { animation: bldg-win 1.8s ease-in-out infinite alternate; }
@keyframes icon-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes icon-lift { 0%, 100% { transform: translateY(3px); } 50% { transform: translateY(-7px); } }
@keyframes icon-pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.06); } }
@keyframes gift-lid { 0%, 70%, 100% { transform: translateY(0) rotate(0); } 40% { transform: translateY(-3px) rotate(-6deg); } }
@keyframes rocket-flame { from { opacity: .45; transform: scaleY(.7); } to { opacity: 1; transform: scaleY(1); } }
@keyframes bldg-win { from { opacity: .35; } to { opacity: 1; } }
.profile-card h3 { font-size: var(--h3); letter-spacing: -.02em; font-weight: 700; }
.profile-card p { color: var(--muted); flex: 1; }
.profile-card ul { list-style: none; display: grid; gap: 8px; }
.profile-card li::before { content: "•"; color: var(--red); margin-right: 8px; font-weight: 800; }

.coverage { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cover-card {
  background: #fff; border-radius: 24px; padding: 26px 22px 22px;
  border: 1px solid var(--line); text-align: center; box-shadow: var(--shadow);
}
.flag { font-size: 38px; line-height: 1; }
.cover-card h3 { margin: 10px 0 6px; font-size: var(--h3); font-weight: 700; }
.cover-card p { color: var(--muted); }
.cover-card .meta {
  margin: 16px 0; font-size: var(--h3); font-weight: 700; letter-spacing: -.02em; color: var(--black);
}
.cover-card .meta small { display: block; color: var(--muted); font-weight: 400; letter-spacing: 0; }

.allies { text-align: center; }
.allies-row {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: stretch; gap: 14px; margin-top: 22px;
}
.ally {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  width: 200px; min-height: 88px; padding: 14px 18px;
  display: grid; place-items: center;
}
.ally img { max-height: 48px; max-width: 168px; width: auto; height: auto; object-fit: contain; }
.disclaimer { margin-top: 16px; color: var(--muted); max-width: 720px; margin-left: auto; margin-right: auto; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.step {
  background: #fff; border-radius: 22px; padding: 22px; border: 1px solid var(--line);
}
.step-num {
  width: 36px; height: 36px; border-radius: 50%; background: var(--red); color: #fff;
  display: grid; place-items: center; font-weight: 800; margin-bottom: 12px;
}
.step h3 { margin-bottom: 8px; font-size: var(--h3); font-weight: 700; }
.step p { color: var(--muted); }

.process {
  position: relative;
  padding: 8px 0 4px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.process-track {
  position: relative;
  min-width: 960px;
}
.process-rail {
  position: absolute; left: 8%; right: 8%; top: 46px; height: 1px;
  background: #E8D6D6;
  border-radius: 99px; overflow: visible;
}
.process-rail::after {
  content: "";
  position: absolute; top: 50%; left: 0;
  width: 7px; height: 7px; margin-top: -3.5px;
  border-radius: 50%; background: var(--red);
  box-shadow: 0 0 0 3px rgba(203,13,12,.08);
  animation: process-run 9s linear infinite;
}
.process-steps {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px;
  position: relative; z-index: 1; list-style: none; margin: 0; padding: 0;
}
.process-step { text-align: center; }
.process-node {
  width: 92px; height: 92px; margin: 0 auto 16px;
  border-radius: 50%; background: #fff;
  border: 1px solid #E8D6D6;
  display: grid; place-items: center;
  box-shadow: 0 8px 18px rgba(4,4,4,.04);
  position: relative;
}
.process-node svg { width: 36px; height: 36px; }
.process-node .n {
  position: absolute; right: -1px; bottom: -1px;
  width: 22px; height: 22px; border-radius: 50%;
  background: #fff; color: var(--red);
  font-size: 12px; font-weight: 600;
  display: grid; place-items: center;
  border: 1px solid #E8D6D6;
}
.process-step h3 { font-size: var(--h3); font-weight: 700; letter-spacing: -.02em; margin-bottom: 6px; line-height: 1.25; }
.process-step p { color: var(--muted); }
@keyframes process-run {
  0% { left: 0; }
  100% { left: calc(100% - 7px); }
}
@keyframes process-run-v {
  0% { top: 0; }
  100% { top: calc(100% - 7px); }
}

.pillars { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.pillar {
  background: #fff; border-radius: 20px; padding: 18px 16px; border: 1px solid var(--line); text-align: center;
}
.pillar strong { display: block; margin-bottom: 6px; font-size: var(--h3); font-weight: 700; }
.pillar p { color: var(--muted); }

.cta-band {
  background: #fff; color: var(--ink);
  border: 1px solid var(--line); border-radius: 36px; overflow: hidden;
  display: grid; grid-template-columns: 1.2fr .8fr; align-items: center;
  box-shadow: var(--shadow);
}
.cta-copy { padding: 48px; }
.cta-copy h2 { color: var(--black); max-width: 16ch; }
.cta-copy p { color: var(--muted); margin: 14px 0 22px; max-width: 46ch; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cta-band-text { grid-template-columns: 1fr; text-align: center; }
.cta-band-text .cta-copy { max-width: 820px; margin: 0 auto; }
.cta-band-text .cta-copy h2,
.cta-band-text .cta-copy p { max-width: none; margin-left: auto; margin-right: auto; }
.cta-band-text .cta-actions { justify-content: center; }
.cta-visual {
  min-height: 280px;
  position: relative;
  padding: 18px;
  display: flex;
  background: transparent;
}
.cta-visual img {
  width: 100%; height: 100%; min-height: 284px; object-fit: cover; display: block;
  border-radius: 24px;
}
.cta-visual::before {
  content: "";
  position: absolute; top: 28px; right: 28px;
  width: 76px; height: 76px; border-radius: 18px;
  background: #fff url("../img/favicon.png") center / 68% no-repeat;
  box-shadow: 0 10px 24px rgba(203,13,12,.12);
}
.cta-visual:has(img)::before { display: none; }
.cta-visual span {
  position: absolute; left: 24px; bottom: 24px; background: #fff; color: var(--black);
  padding: 12px 14px; border-radius: 16px; font-weight: 500; max-width: 240px;
  border: 1px solid var(--line);
}

.page-hero { padding: 56px 0 48px; background: var(--hero); }
.page-hero h1 {
  font-size: clamp(2.3rem, 5vw, 4.15rem);
  line-height: 1.05; letter-spacing: -.04em; font-weight: 800; max-width: 24ch;
}
.page-hero p { margin-top: 16px; color: var(--muted); max-width: 58ch; line-height: 1.5; }
.about-hero-copy { max-width: 900px; }
.about-hero-copy h1 { max-width: 20ch; }
.about-hero-copy p { max-width: 72ch; }
.page-hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center;
}
.page-photo {
  width: 100%; height: 360px; object-fit: cover; border-radius: 28px;
  box-shadow: var(--shadow);
}

.quote-hero { padding: clamp(48px, 8vh, 96px) 0 12px; text-align: center; }
.quote-hero h1 { margin: 0 auto; max-width: 18ch; }
.quote-hero .lead { margin: 16px auto 0; max-width: 46ch; }
.quote-stage { padding-top: 48px; padding-bottom: clamp(64px, 10vh, 120px); }
.quote-form { width: min(720px, calc(100% - 40px)); margin: 0 auto; }
.quote-checks {
  list-style: none; display: flex; flex-wrap: wrap; justify-content: center;
  gap: 8px; margin-top: 22px;
}
.quote-checks li {
  background: var(--hero); border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 14px; color: var(--muted);
}

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.panel {
  background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 24px;
}
.panel h3 { margin-bottom: 10px; font-size: var(--h3); font-weight: 700; }
.panel p, .panel li { color: var(--muted); }
.panel ul { padding-left: 18px; display: grid; gap: 8px; margin-top: 10px; }

.legal { max-width: 800px; }
.legal h1 { font-size: 2.3rem; letter-spacing: -.03em; margin-bottom: 8px; }
.legal .meta { color: var(--muted); margin-bottom: 24px; }
.legal h2 { font-size: var(--h3); font-weight: 700; margin: 28px 0 8px; }
.legal p, .legal li { color: #444; margin-bottom: 10px; }
.legal ul { padding-left: 18px; }

/* Form */
.form-wrap { display: block; }
.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: 28px; padding: 32px;
  box-shadow: var(--shadow);
}
.progress { display: flex; gap: 8px; margin-bottom: 22px; }
.progress span {
  flex: 1; height: 6px; border-radius: 99px; background: var(--red-mid);
}
.progress span.is-on { background: var(--red); }
.form-step h3 { margin-bottom: 6px; font-size: var(--h3); font-weight: 700; }
.form-step > p { color: var(--muted); margin-bottom: 18px; }
.choice-grid { display: grid; grid-template-columns: 1fr; gap: 10px; }
.choice {
  border: 1.5px solid var(--line); border-radius: 16px; padding: 14px 16px; cursor: pointer;
  display: flex; gap: 12px; align-items: flex-start; background: #fff;
}
.choice input { margin-top: 4px; accent-color: var(--red); }
.choice.is-selected, .choice:hover { border-color: var(--red); background: var(--red-soft); }
.choice b { display: block; font-size: var(--h3); font-weight: 700; }
.choice small { color: var(--muted); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field { display: grid; gap: 6px; margin-bottom: 12px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 600; }
.field input, .field select, .field textarea {
  width: 100%; border: 1.5px solid var(--line); border-radius: 12px;
  min-height: 46px; padding: 10px 12px; background: #fff; font-size: var(--text);
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--red); box-shadow: 0 0 0 4px rgba(203,13,12,.1);
}
.check { display: flex; gap: 10px; align-items: flex-start; color: #444; }
.check input { margin-top: 3px; accent-color: var(--red); }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; }
.form-nav { display: flex; justify-content: space-between; gap: 10px; margin-top: 8px; }
.form-msg {
  display: none; margin-top: 12px; padding: 12px 14px; border-radius: 12px;
}
.form-msg.is-ok { display: block; background: #eefaf1; color: #146c2e; }
.form-msg.is-err { display: block; background: #fff1f1; color: #9E0909; }
.success-box { text-align: center; padding: 30px 10px; }
.success-box h3 { margin: 10px 0; }

.footer {
  background: #fff; border-top: 1px solid var(--line); padding: 42px 0 20px; margin-top: 20px;
}
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 24px; }
.footer h4 { margin-bottom: 12px; font-size: var(--h3); font-weight: 700; }
.footer a, .footer p { color: var(--muted); display: block; margin-bottom: 8px; }
.footer a:hover { color: var(--red); }
.socials { display: flex; gap: 8px; margin-top: 10px; min-height: 20px; }
.socials a {
  width: 36px; height: 36px; border: 1px solid var(--line); border-radius: 50%;
  display: grid; place-items: center; font-size: 12px; font-weight: 800;
}
.legal-bar {
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  border-top: 1px solid var(--line); margin-top: 28px; padding-top: 16px;
  color: #8a8a8a;
}

.hidden { display: none !important; }
.whatsapp-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 45;
  width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff;
  display: none; place-items: center; box-shadow: 0 10px 24px rgba(37,211,102,.4);
  transition: transform .2s ease, box-shadow .2s ease;
}
.whatsapp-float.is-on { display: grid; }
.whatsapp-float svg { width: 30px; height: 30px; }
.whatsapp-float:hover {
  color: #fff; transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 30px rgba(37,211,102,.48);
}

@media (max-width: 980px) {
  .hero-grid, .page-hero-grid, .two-col, .cta-band, .footer-grid { grid-template-columns: 1fr; }
  .page-photo { height: 240px; }
  .hero { text-align: center; }
  .hero h1, .hero .lead { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .page-hero { text-align: center; }
  .page-hero h1, .page-hero p { margin-left: auto; margin-right: auto; }
  .form-card { padding: 22px 18px; }
  .quote-hero { padding: 40px 0 8px; }
  .quote-stage { padding-top: 40px; }
  .profiles, .coverage, .steps { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 28px 12px; }
  .stat strong { font-size: clamp(2rem, 6vw, 2.5rem); font-weight: 600; }
  .nav { display: none; position: absolute; top: var(--header); left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line); padding: 12px; flex-direction: column; align-items: stretch; }
  .nav.is-open { display: flex; }
  .nav-menu { position: static; display: grid; box-shadow: none; border: 0; padding: 0 0 0 12px; }
  .menu-btn { display: inline-block; }
  .brand img { height: 42px; }
  .header-actions .btn-nav { display: none; }
  .lbl-full { display: none; }
  .lbl-short { display: inline; }
  .header-actions .btn-primary { min-height: 42px; padding: 0 14px; }
  .cta-copy { padding: 32px 24px 16px; }
  .cta-visual { padding: 0 18px 18px; }
  .cta-visual img { min-height: 220px; }
  .grid-2 { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .icon-bob, .icon-lift, .icon-pulse, .gift-lid, .rocket-flame, .bldg-win, .process-rail::after, .typed {
    animation: none;
  }
}
