﻿:root {
  --ink: #162033;
  --muted: #5f6978;
  --line: #d9e1e8;
  --surface: #ffffff;
  --soft: #f4f8fb;
  --navy: #12385f;
  --blue: #1f74b7;
  --green: #54a15d;
  --gold: #f0b84d;
  --shadow: 0 18px 48px rgba(18, 56, 95, 0.14);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Arial, Helvetica, sans-serif; color: var(--ink); background: var(--surface); line-height: 1.55; }
a { color: inherit; }
.site-header { position: sticky; top: 0; z-index: 10; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 14px clamp(18px, 4vw, 56px); background: rgba(255, 255, 255, 0.94); border-bottom: 1px solid var(--line); backdrop-filter: blur(12px); }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; min-width: 240px; }
.brand-mark { display: grid; place-items: center; width: 54px; height: 42px; color: #fff; background: var(--navy); border-radius: 6px; font-weight: 800; letter-spacing: 0; }
.brand strong, .brand small { display: block; }
.brand small { color: var(--muted); font-size: 0.78rem; }
nav { display: flex; gap: 18px; color: var(--muted); font-size: 0.95rem; }
nav a { text-decoration: none; }
nav a:hover { color: var(--blue); }
.hero { display: grid; grid-template-columns: minmax(280px, 1.04fr) minmax(300px, 0.96fr); min-height: calc(100vh - 72px); align-items: center; gap: clamp(24px, 5vw, 68px); padding: clamp(28px, 5vw, 72px) clamp(18px, 5vw, 72px); background: linear-gradient(130deg, #eef6fb 0%, #ffffff 48%, #f7fbf6 100%); }
.hero-media { border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); background: #0f1d2e; aspect-ratio: 16 / 9; }
.hero-media video { display: block; width: 100%; height: 100%; object-fit: cover; }
.eyebrow { margin: 0 0 10px; color: var(--green); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.11em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 18px; font-size: clamp(2.5rem, 5vw, 5rem); line-height: 0.96; max-width: 780px; }
h2 { margin-bottom: 16px; font-size: clamp(1.8rem, 3vw, 3.1rem); line-height: 1.05; }
h3 { margin-bottom: 10px; font-size: 1.2rem; }
.hero-copy > p:not(.eyebrow) { max-width: 640px; color: var(--muted); font-size: 1.12rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 18px; border-radius: 6px; font-weight: 800; text-decoration: none; }
.button.primary { color: #fff; background: var(--blue); box-shadow: 0 10px 28px rgba(31, 116, 183, 0.25); }
.button.secondary { color: var(--navy); background: #fff; border: 1px solid var(--line); }
.button.full { width: 100%; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 0; }
.hero-stats div { padding: 14px; background: rgba(255, 255, 255, 0.76); border: 1px solid var(--line); border-radius: 8px; }
dt { font-size: 1.45rem; font-weight: 900; color: var(--navy); }
dd { margin: 0; color: var(--muted); font-size: 0.9rem; }
.section, .band, .split-section, .cta-section { padding: clamp(54px, 7vw, 96px) clamp(18px, 5vw, 72px); }
.band { background: var(--soft); }
.intro, .split-section, .two-column, .cta-section { display: grid; grid-template-columns: minmax(260px, 0.86fr) minmax(280px, 1fr); gap: clamp(24px, 5vw, 72px); align-items: start; }
.intro p:last-child, .split-section p, .two-column p, .cta-copy p { color: var(--muted); font-size: 1.05rem; }
.section-heading { max-width: 760px; margin-bottom: 28px; }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.benefit-grid article { min-height: 220px; padding: 24px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.benefit-grid article:nth-child(2) { border-top: 5px solid var(--green); }
.benefit-grid article:nth-child(3) { border-top: 5px solid var(--gold); }
.benefit-grid article:nth-child(4) { border-top: 5px solid var(--blue); }
.benefit-grid p { color: var(--muted); }
.check-list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 14px 16px 14px 46px; background: #fff; border: 1px solid var(--line); border-radius: 8px; }
.check-list li::before { content: ""; position: absolute; left: 17px; top: 19px; width: 12px; height: 12px; border-radius: 50%; background: var(--green); box-shadow: inset 0 0 0 3px #dff0e2; }
.service-list { display: flex; flex-wrap: wrap; gap: 10px; }
.service-list span { padding: 10px 12px; border-radius: 999px; background: #ecf5fb; color: var(--navy); border: 1px solid #cce0f0; font-weight: 700; }
.timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; padding: 0; margin: 0; list-style: none; counter-reset: steps; }
.timeline li { counter-increment: steps; position: relative; padding: 58px 18px 20px; min-height: 230px; background: #fff; border: 1px solid var(--line); border-radius: 8px; }
.timeline li::before { content: counter(steps); position: absolute; top: 18px; left: 18px; display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--navy); color: #fff; font-weight: 900; }
.timeline strong, .timeline span { display: block; }
.timeline span { margin-top: 8px; color: var(--muted); font-size: 0.94rem; }
.cta-section { background: var(--navy); color: #fff; }
.cta-section .eyebrow { color: #95d59a; }
.cta-copy p { color: #d5e4ef; }
blockquote { margin: 24px 0 0; padding-left: 18px; border-left: 4px solid var(--gold); color: #edf5fa; font-size: 1.08rem; }
.form-panel { background: #fff; color: var(--ink); border-radius: 8px; padding: clamp(18px, 3vw, 32px); box-shadow: var(--shadow); }
.hubspot-form { min-height: 290px; display: grid; align-content: center; gap: 14px; }
.hubspot-form p { color: var(--muted); }
code { padding: 2px 5px; background: #eef2f4; border-radius: 4px; }
.site-footer { display: flex; justify-content: space-between; gap: 18px; padding: 28px clamp(18px, 5vw, 72px); background: #0d1827; color: #dbe6ee; }
.site-footer p { margin: 0; }
.site-footer a { color: #fff; font-weight: 800; }
@media (max-width: 980px) { .hero, .intro, .split-section, .two-column, .cta-section { grid-template-columns: 1fr; } .hero { min-height: auto; } .benefit-grid, .timeline { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) { .site-header { align-items: flex-start; flex-direction: column; } nav { width: 100%; overflow-x: auto; padding-bottom: 4px; } h1 { font-size: 2.55rem; } .hero-stats, .benefit-grid, .timeline { grid-template-columns: 1fr; } .hero-actions .button { width: 100%; } .site-footer { flex-direction: column; } }

