
:root {
  --navy: #062d5f;
  --navy-deep: #031c3b;
  --red: #e31b3d;
  --red-dark: #c90f30;
  --ink: #0d1728;
  --muted: #526174;
  --line: #dce3eb;
  --surface: #f3f6f9;
  --white: #ffffff;
  --shadow-sm: 0 10px 30px rgba(3, 28, 59, .08);
  --shadow-lg: 0 24px 70px rgba(3, 28, 59, .16);
  --radius: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.topbar { background: #06111f; color: #d9e2ee; font-size: .82rem; }
.topbar-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar strong { color: #fff; }
.topbar a { color: #fff; font-weight: 800; }

.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(6,45,95,.97); box-shadow: 0 10px 30px rgba(0,0,0,.14); backdrop-filter: blur(12px); }
.nav { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand img { width: 164px; max-height: 62px; object-fit: contain; object-position: left center; }
.nav-links { display: flex; align-items: center; gap: 28px; margin: 0; padding: 0; list-style: none; color: #eaf1f9; font-weight: 700; font-size: .94rem; }
.nav-links a:not(.button):hover { color: #fff; }
.nav-cta { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 20px; border-radius: 10px; background: var(--red); color: #fff; font-weight: 850; box-shadow: 0 10px 24px rgba(227,27,61,.24); transition: .2s ease; }
.nav-cta:hover { transform: translateY(-2px); background: var(--red-dark); }
.menu-toggle { position: relative; display: none; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.25); border-radius: 10px; background: transparent; color: #fff; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ""; position: absolute; left: 50%; width: 22px; height: 2px; margin: 0; background: currentColor; transform: translateX(-50%); transition: .2s ease; }
.menu-toggle::before { top: 14px; }
.menu-toggle span { top: 22px; }
.menu-toggle::after { top: 30px; }
.menu-open .menu-toggle span { opacity: 0; }
.menu-open .menu-toggle::before { top: 22px; transform: translateX(-50%) rotate(45deg); }
.menu-open .menu-toggle::after { top: 22px; transform: translateX(-50%) rotate(-45deg); }

.hero { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr); min-height: 720px; background: var(--surface); border-bottom: 1px solid var(--line); }
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 92px clamp(32px, 4vw, 72px) 92px max(5vw, calc((100vw - var(--max))/2 + 20px)); }
.hero-kicker { display: inline-flex; align-items: center; gap: 10px; width: fit-content; margin-bottom: 22px; color: var(--red); font-size: .78rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.hero-kicker::before { content: ""; width: 34px; height: 3px; border-radius: 99px; background: var(--red); }
.hero h1 { max-width: 730px; margin: 0 0 24px; font-size: clamp(3rem, 5vw, 5.5rem); line-height: .96; letter-spacing: -.055em; text-transform: uppercase; }
.hero h1 .blue { color: var(--navy); }
.hero h1 .red { color: var(--red); }
.hero h1 .service-line { display: block; margin-top: .2em; color: var(--navy); font-size: .48em; letter-spacing: -.035em; }
.hero p { max-width: 630px; margin: 0 0 34px; color: var(--muted); font-size: clamp(1.05rem, 1.5vw, 1.22rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 24px; border: 0; border-radius: 11px; font-weight: 850; transition: .2s ease; }
.button-primary { background: var(--red); color: #fff; box-shadow: 0 14px 30px rgba(227,27,61,.22); }
.button-primary:hover { transform: translateY(-2px); background: var(--red-dark); }
.button-secondary { border: 1px solid #b8c5d3; background: #fff; color: var(--navy); }
.button-secondary:hover { border-color: var(--navy); transform: translateY(-2px); }
.hero-note { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 28px; color: #334257; font-size: .9rem; font-weight: 700; }
.hero-note span { display: inline-flex; align-items: center; gap: 8px; }
.hero-note span::before { content: "✓"; display: grid; place-items: center; width: 21px; height: 21px; border-radius: 50%; background: #dce9f7; color: var(--navy); font-size: .75rem; }
.hero-media { position: relative; min-height: 560px; overflow: hidden; }
.hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, rgba(3,28,59,.05), rgba(3,28,59,.42)); }
.hero-badge { position: absolute; z-index: 2; right: 30px; bottom: 30px; max-width: 300px; padding: 20px 22px; border: 1px solid rgba(255,255,255,.22); border-radius: 15px; background: rgba(3,28,59,.9); color: #fff; box-shadow: var(--shadow-lg); backdrop-filter: blur(8px); }
.hero-badge strong { display: block; margin-bottom: 4px; font-size: 1.05rem; }
.hero-badge span { color: #d8e4ef; font-size: .88rem; }

.trust-strip { background: var(--navy); color: #fff; border-bottom: 4px solid var(--red); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { min-height: 96px; display: flex; align-items: center; justify-content: center; gap: 13px; padding: 22px; text-align: left; border-right: 1px solid rgba(255,255,255,.14); }
.trust-item:last-child { border-right: 0; }
.trust-item > .trust-icon { display: grid; place-items: center; width: 38px; height: 38px; flex: 0 0 38px; border-radius: 9px; background: rgba(255,255,255,.11); color: #fff; font-size: .82rem; font-weight: 900; line-height: 1; }
.trust-item strong { display: block; font-size: .88rem; text-transform: uppercase; letter-spacing: .04em; }
.trust-item > div > span { display: block; color: #cad8e7; font-size: .76rem; }

.section { padding: 100px 0; }
.section-alt { background: var(--surface); }
.section-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, .55fr); gap: 50px; align-items: end; margin-bottom: 48px; }
.section-heading.narrow { grid-template-columns: 1fr; max-width: 780px; }
.eyebrow { margin: 0 0 10px; color: var(--red); font-size: .78rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.section h2 { max-width: 760px; margin: 0; font-size: clamp(2.25rem, 4vw, 4rem); line-height: 1.04; letter-spacing: -.045em; text-transform: uppercase; }
.section h2 span { color: var(--navy); }
.section-lead { margin: 0; color: var(--muted); font-size: 1.05rem; }

.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card { min-height: 340px; display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); transition: .25s ease; }
.service-card:hover { transform: translateY(-6px); border-color: rgba(6,45,95,.32); box-shadow: var(--shadow-lg); }
.service-number { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 34px; border-radius: 10px; background: #e7eef7; color: var(--navy); font-weight: 900; }
.service-card:nth-child(2n) .service-number { background: #fde8ed; color: var(--red); }
.service-card h3 { margin: 0 0 14px; color: var(--navy); font-size: 1.17rem; line-height: 1.22; text-transform: uppercase; }
.service-card ul { display: grid; gap: 10px; margin: 0 0 24px; padding: 0; list-style: none; color: var(--muted); font-size: .92rem; }
.service-card li { position: relative; padding-left: 18px; }
.service-card li::before { content: ""; position: absolute; top: .65em; left: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--red); }
.service-card a { margin-top: auto; color: var(--red); font-size: .85rem; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; }

.split { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: 72px; align-items: center; }
.split-media { position: relative; min-height: 600px; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lg); }
.split-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.split-media .media-label { position: absolute; left: 22px; bottom: 22px; max-width: 300px; padding: 18px; border-radius: 14px; background: rgba(3,28,59,.92); color: #fff; }
.split-media .media-label strong { display: block; }
.split-media .media-label span { color: #d8e4ef; font-size: .86rem; }
.split-copy p { color: var(--muted); font-size: 1.04rem; }
.expectations { display: grid; gap: 15px; margin-top: 30px; }
.expectation { display: grid; grid-template-columns: 48px 1fr; gap: 16px; padding: 18px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.expectation b { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 11px; background: var(--navy); color: #fff; }
.expectation:nth-child(2) b { background: var(--red); }
.expectation h3 { margin: 0 0 4px; color: var(--navy); font-size: .95rem; text-transform: uppercase; }
.expectation p { margin: 0; font-size: .9rem; }

.market-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.market-card { position: relative; min-height: 470px; overflow: hidden; border-radius: 20px; box-shadow: var(--shadow-lg); }
.market-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.market-card:hover img { transform: scale(1.04); }
.market-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(3,28,59,.94) 0%, rgba(3,28,59,.08) 70%); }
.market-card-content { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; padding: 28px; color: #fff; }
.market-card-content span { display: block; margin-bottom: 8px; color: #ff8095; font-size: .75rem; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.market-card-content h3 { margin: 0 0 8px; font-size: 1.45rem; text-transform: uppercase; }
.market-card-content p { margin: 0; color: #dce5ef; font-size: .9rem; }

.commitments { display: grid; grid-template-columns: 1.15fr .85fr; gap: 30px; }
.commitment-main { padding: 44px; border-radius: 22px; background: var(--navy); color: #fff; }
.commitment-main h2 { max-width: 640px; color: #fff; }
.commitment-main p { max-width: 650px; color: #d2deea; }
.commitment-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 34px; }
.commitment-list div { padding: 18px; border: 1px solid rgba(255,255,255,.15); border-radius: 13px; background: rgba(255,255,255,.06); }
.commitment-list strong { display: block; margin-bottom: 3px; }
.commitment-list span { color: #c9d7e5; font-size: .83rem; }
.reference-card { display: flex; flex-direction: column; justify-content: space-between; padding: 38px; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: var(--shadow-sm); }
.reference-card .quote-mark { color: var(--red); font-size: 4rem; line-height: 1; font-weight: 900; }
.reference-card h3 { margin: 16px 0 10px; color: var(--navy); font-size: 1.5rem; text-transform: uppercase; }
.reference-card p { color: var(--muted); }
.reference-card small { color: #68778a; }

.contact-wrap { display: grid; grid-template-columns: minmax(280px,.8fr) minmax(0,1.2fr); gap: 34px; padding: 36px; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: var(--shadow-lg); }
.contact-copy { padding: 24px; border-radius: 18px; background: var(--navy); color: #fff; }
.contact-copy h2 { color: #fff; font-size: clamp(2rem, 3.5vw, 3.5rem); }
.contact-copy p { color: #d4e0ec; }
.contact-list { display: grid; gap: 18px; margin-top: 34px; }
.contact-list div { padding-top: 16px; border-top: 1px solid rgba(255,255,255,.15); }
.contact-list span { display: block; color: #aebfd0; font-size: .74rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-list a, .contact-list strong { display: block; margin-top: 4px; color: #fff; font-size: 1.02rem; }
.contact-form { display: grid; gap: 17px; padding: 8px 4px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label, .group-label { color: #2f4054; font-size: .78rem; font-weight: 850; letter-spacing: .045em; text-transform: uppercase; }
.field input, .field select, .field textarea { width: 100%; min-height: 52px; padding: 13px 14px; border: 1px solid #cbd5df; border-radius: 10px; background: #fff; color: var(--ink); transition: .15s ease; }
.field textarea { min-height: 125px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid rgba(6,45,95,.12); border-color: var(--navy); }
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.choice { position: relative; display: flex; align-items: center; gap: 10px; min-height: 50px; padding: 10px 12px; border: 1px solid #cbd5df; border-radius: 10px; background: #fff; color: #334257; font-size: .88rem; font-weight: 700; cursor: pointer; }
.choice:hover { border-color: var(--navy); }
.choice input { width: 18px; height: 18px; accent-color: var(--red); }
.form-note { margin: -4px 0 0; color: #6b7888; font-size: .78rem; }
.submit-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.submit-row .button { min-width: 220px; }
.form-status { min-height: 24px; color: var(--navy); font-size: .88rem; font-weight: 800; }
.form-status.error { color: #b00020; }
.form-status.success { color: #0f7a46; }

.site-footer { padding: 64px 0 24px; background: #040b13; color: #aab8c8; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 50px; }
.footer-brand img { width: 185px; max-height: 72px; object-fit: contain; object-position: left center; margin-bottom: 18px; }
.footer-brand p { max-width: 470px; }
.footer-col h3 { margin: 0 0 16px; color: #fff; font-size: .92rem; text-transform: uppercase; letter-spacing: .06em; }
.footer-col ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: .82rem; }
.footer-bottom strong { color: #fff; }
.powered { text-align: center; padding: 14px; background: #010509; color: #586777; font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }
.powered a { color: #7d8ca0; font-weight: 800; }
.mobile-call { display: none; }

/* Direct-response landing page */
.lander-body { background: var(--surface); }
.lander-nav { position: relative; }
.lander-nav .nav { min-height: 72px; }
.lander-nav .nav-cta { white-space: nowrap; }
.lander-hero { padding: 72px 0 60px; background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 55%, #e6edf5 100%); }
.lander-layout { display: grid; grid-template-columns: minmax(0,1.04fr) minmax(360px,.96fr); gap: 42px; align-items: center; }
.lander-copy h1 { margin: 0 0 22px; font-size: clamp(3rem, 6vw, 5.8rem); line-height: .94; letter-spacing: -.06em; text-transform: uppercase; }
.lander-copy h1 span { color: var(--red); }
.lander-copy > p { max-width: 620px; color: var(--muted); font-size: 1.12rem; }
.offer-points { display: grid; gap: 12px; margin: 28px 0 0; padding: 0; list-style: none; }
.offer-points li { display: flex; gap: 11px; align-items: flex-start; color: #2f4054; font-weight: 750; }
.offer-points li::before { content: "✓"; display: grid; place-items: center; width: 24px; height: 24px; flex: 0 0 24px; border-radius: 50%; background: #dce9f7; color: var(--navy); font-size: .78rem; }
.lander-form-card { padding: 30px; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: var(--shadow-lg); }
.lander-form-card h2 { margin: 0 0 8px; color: var(--navy); font-size: 1.85rem; text-transform: uppercase; }
.lander-form-card > p { margin: 0 0 22px; color: var(--muted); font-size: .9rem; }
.lander-proof { padding: 28px 0; background: var(--navy); color: #fff; }
.lander-proof .trust-grid { grid-template-columns: repeat(3, 1fr); }
.lander-proof .trust-item { min-height: 84px; }
.lander-services { padding: 72px 0; }
.lander-services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 34px; }
.lander-service { padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.lander-service h3 { margin: 0 0 8px; color: var(--navy); text-transform: uppercase; }
.lander-service p { margin: 0; color: var(--muted); font-size: .9rem; }
.lander-footer { padding: 25px 0; background: #040b13; color: #aab8c8; font-size: .82rem; text-align: center; }

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding: 82px max(5vw, 20px); }
  .hero-media { min-height: 540px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .split { gap: 42px; }
  .market-card { min-height: 410px; }
  .contact-wrap { grid-template-columns: 1fr; }
  .contact-copy { padding: 34px; }
  .lander-layout { grid-template-columns: 1fr; }
  .lander-copy { max-width: 760px; }
}

@media (max-width: 800px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .topbar-inner { min-height: 44px; justify-content: center; text-align: center; }
  .topbar-inner span:first-child { display: none; }
  .nav { min-height: 70px; }
  .brand img { width: 142px; max-height: 54px; }
  .menu-toggle { display: block; }
  .nav-links { position: fixed; inset: 114px 14px auto; display: grid; gap: 0; padding: 12px; border: 1px solid rgba(255,255,255,.15); border-radius: 14px; background: #062d5f; box-shadow: var(--shadow-lg); opacity: 0; transform: translateY(-10px); pointer-events: none; transition: .2s ease; }
  .menu-open .nav-links { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px; border-radius: 9px; }
  .nav-links .nav-cta { min-height: 48px; margin-top: 6px; text-align: center; }
  .hero { min-height: auto; }
  .hero-copy { padding: 64px 20px 54px; }
  .hero h1 { font-size: clamp(2.7rem, 13vw, 4.5rem); }
  .hero-media { min-height: 460px; }
  .hero-badge { right: 16px; bottom: 16px; left: 16px; max-width: none; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.14); }
  .section { padding: 74px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 16px; margin-bottom: 34px; }
  .split { grid-template-columns: 1fr; }
  .split-media { min-height: 480px; order: 2; }
  .market-grid { grid-template-columns: 1fr; }
  .market-card { min-height: 440px; }
  .commitments { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .lander-proof .trust-grid { grid-template-columns: 1fr; }
  .lander-proof .trust-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .lander-services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 580px) {
  .hero-copy { padding-inline: 16px; }
  .hero-actions { align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .hero-note { gap: 10px; }
  .hero-media { min-height: 380px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { justify-content: flex-start; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .split-media { min-height: 380px; }
  .commitment-main, .reference-card { padding: 28px; }
  .commitment-list { grid-template-columns: 1fr; }
  .contact-wrap { padding: 14px; border-radius: 18px; }
  .contact-copy { padding: 25px; }
  .form-grid, .choice-grid { grid-template-columns: 1fr; }
  .submit-row .button { width: 100%; }
  .footer-bottom { flex-direction: column; }
  .mobile-call { position: fixed; z-index: 999; right: 14px; bottom: 14px; display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 17px; border-radius: 999px; background: var(--red); color: #fff; font-weight: 900; box-shadow: 0 14px 34px rgba(0,0,0,.28); }
  .lander-hero { padding: 48px 0; }
  .lander-nav .nav-cta { min-height: 44px; padding-inline: 12px; font-size: .82rem; }
  .lander-form-card { padding: 22px; }
  .lander-copy h1 { font-size: clamp(2.75rem, 15vw, 4.3rem); }
}

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

/* Paid-ad multi-step form */
.multi-step-form { display: block; min-height: 610px; }
.multi-step-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 14px; }
.multi-step-header h2 { margin: 3px 0 0; }
.step-count { display: block; color: var(--red); font-size: .72rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.step-percent { flex: 0 0 auto; color: var(--navy); font-size: .8rem; font-weight: 900; }
.step-progress { height: 6px; margin-bottom: 30px; overflow: hidden; border-radius: 999px; background: #e7edf4; }
.step-progress span { display: block; width: 25%; height: 100%; border-radius: inherit; background: var(--red); transition: width .3s ease; }
.js .multi-step-form .form-step:not(.is-active) { display: none; }
.form-step { animation: step-in .24s ease both; }
.step-fieldset { min-width: 0; margin: 0; padding: 0; border: 0; }
.step-fieldset legend { width: 100%; margin: 0 0 6px; color: var(--ink); font-size: clamp(1.35rem, 2.2vw, 1.75rem); font-weight: 850; line-height: 1.2; letter-spacing: -.025em; }
.step-help { margin: 0 0 22px; color: var(--muted); font-size: .92rem; }
.answer-grid { display: grid; gap: 11px; }
.answer-card { position: relative; display: block; cursor: pointer; }
.answer-card input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.answer-card > span { position: relative; display: flex; flex-direction: column; justify-content: center; gap: 2px; min-height: 70px; padding: 14px 50px 14px 16px; border: 1px solid #cbd5df; border-radius: 12px; background: #fff; transition: border-color .16s ease, background .16s ease, box-shadow .16s ease, transform .16s ease; }
.answer-card > span::after { content: ""; position: absolute; top: 50%; right: 16px; width: 22px; height: 22px; border: 2px solid #aebdcb; border-radius: 50%; background: #fff; transform: translateY(-50%); transition: border-color .16s ease, background .16s ease; }
.answer-card > span::before { display: none; }
.answer-card strong { color: var(--navy); font-size: .93rem; line-height: 1.3; }
.answer-card small { color: var(--muted); font-size: .78rem; line-height: 1.4; }
.answer-card:hover > span { border-color: #8fa4b8; transform: translateY(-1px); }
.answer-card input:focus-visible + span { outline: 3px solid rgba(6,45,95,.16); outline-offset: 2px; }
.answer-card input:checked + span { border-color: var(--navy); background: #f1f6fc; box-shadow: 0 0 0 1px var(--navy); }
.answer-card input:checked + span::after { border-color: var(--navy); background: radial-gradient(circle at center, #fff 0 4px, var(--navy) 4.5px); }
.form-step .field + .field { margin-top: 15px; }
.step-actions { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 24px; }
.step-actions-end { justify-content: flex-end; }
.step-actions .button { min-width: 142px; }
.step-back { min-height: 48px; padding: 0 8px; border: 0; background: transparent; color: var(--navy); font-weight: 850; }
.step-back:hover { color: var(--red); }
.multi-step-success { min-height: 500px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 30px 10px; text-align: center; }
.multi-step-success[hidden] { display: none; }
.success-mark { display: grid; place-items: center; width: 64px; height: 64px; margin-bottom: 20px; border-radius: 50%; background: #e4f4ec; color: #0f7a46; font-size: 1.8rem; font-weight: 900; }
.multi-step-success h2 { margin: 0 0 8px; }
.multi-step-success p { max-width: 380px; margin: 0 0 24px; color: var(--muted); }

@keyframes step-in {
  from { opacity: 0; transform: translateX(10px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 580px) {
  .multi-step-form { min-height: 0; }
  .multi-step-header { margin-bottom: 12px; }
  .step-progress { margin-bottom: 24px; }
  .answer-card > span { min-height: 66px; padding: 13px 48px 13px 14px; }
  .step-actions { align-items: stretch; }
  .step-actions .button { flex: 1; min-width: 0; }
  .step-back { padding-inline: 12px; }
  .multi-step-success { min-height: 430px; }
}
