
:root {
  --accent: #1d4ed8;
  --accent-2: #f59e0b;
  --dark: #101827;
  --light: #f3f7ff;
  --ink: #172033;
  --muted: #5f6b7a;
  --line: rgba(23,32,51,.12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; color: var(--ink); background: #fff; letter-spacing: 0; }
a { color: inherit; }
.site-shell { min-height: 100vh; background: #fff; }
.nav { position: sticky; top: 0; z-index: 10; background: rgba(255,255,255,.94); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.nav-inner { max-width: 1180px; margin: 0 auto; padding: 14px 22px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; color: var(--dark); text-decoration: none; }
.brand-mark { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; color: #fff; background: linear-gradient(135deg,var(--accent),var(--accent-2)); box-shadow: 0 10px 30px rgba(15,23,42,.18); }
.brand-mark span { width: 14px; height: 14px; border: 3px solid #fff; border-radius: 50%; display: block; }
.nav-links { display: flex; align-items: center; gap: 18px; font-size: 14px; font-weight: 700; color: #334155; }
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--accent); }
.hero { position: relative; min-height: 720px; display: grid; align-items: center; overflow: hidden; color: #fff; background: var(--dark); }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,13,24,.92) 0%, rgba(7,13,24,.74) 36%, rgba(7,13,24,.22) 78%, rgba(7,13,24,.08) 100%); }
.hero picture, .hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-inner { position: relative; z-index: 1; max-width: 1180px; margin: 0 auto; padding: 110px 22px 90px; width: 100%; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 18px; padding: 8px 12px; border: 1px solid rgba(255,255,255,.24); border-radius: 999px; background: rgba(255,255,255,.08); font-size: 13px; font-weight: 800; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent-2); }
h1 { max-width: 760px; margin: 0; font-size: clamp(44px, 7vw, 78px); line-height: .98; letter-spacing: 0; }
.hero-lead { max-width: 660px; margin: 24px 0 34px; color: rgba(255,255,255,.84); font-size: 19px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 18px; border-radius: 8px; border: 1px solid rgba(255,255,255,.24); text-decoration: none; font-weight: 800; }
.button.primary { background: var(--accent); border-color: var(--accent); color: #fff; }
.button.secondary { color: #fff; background: rgba(255,255,255,.08); }
.section { padding: 86px 22px; }
.section.alt { background: var(--light); }
.container { max-width: 1180px; margin: 0 auto; }
.section-head { max-width: 760px; margin-bottom: 34px; }
.kicker { color: var(--accent); font-size: 13px; font-weight: 900; text-transform: uppercase; margin-bottom: 10px; }
h2 { margin: 0 0 14px; color: var(--dark); font-size: clamp(30px, 4vw, 46px); line-height: 1.08; letter-spacing: 0; }
p { line-height: 1.72; }
.grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.card { padding: 26px; border: 1px solid var(--line); border-radius: 8px; background: #fff; box-shadow: 0 20px 60px rgba(15,23,42,.08); }
.card strong { display: block; margin-bottom: 10px; color: var(--dark); font-size: 18px; }
.card p { margin: 0; color: var(--muted); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.panel { padding: 34px; border-radius: 8px; background: var(--dark); color: #fff; box-shadow: 0 30px 80px rgba(15,23,42,.16); }
.panel p { color: rgba(255,255,255,.78); }
.steps { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; counter-reset: step; }
.steps li { counter-increment: step; display: flex; align-items: center; gap: 12px; padding: 14px; border-radius: 8px; background: rgba(255,255,255,.08); }
.steps li::before { content: counter(step); width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; flex: 0 0 auto; color: #fff; background: var(--accent-2); font-weight: 900; }
.note { padding: 18px 20px; border-left: 4px solid var(--accent); background: #fff; color: #475569; border-radius: 6px; }
.footer { padding: 64px 22px 28px; color: #fff; background: var(--dark); }
.footer-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 36px; align-items: start; }
.footer h3 { margin: 0 0 12px; font-size: 28px; }
.footer p { color: rgba(255,255,255,.74); }
.pref-form { padding: 24px; border: 1px solid rgba(255,255,255,.16); border-radius: 8px; background: rgba(255,255,255,.07); }
.pref-form label { display: block; margin-bottom: 10px; font-weight: 900; }
.pref-row { display: flex; gap: 10px; }
.pref-row input { flex: 1; min-width: 0; height: 46px; padding: 0 12px; border: 1px solid rgba(255,255,255,.24); border-radius: 7px; }
.pref-row button { height: 46px; padding: 0 16px; border: 0; border-radius: 7px; color: #fff; background: var(--accent-2); font-weight: 900; cursor: pointer; }
.legal { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 34px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.68); font-size: 13px; }
.legal a { color: rgba(255,255,255,.88); text-decoration: none; }
@media (max-width: 860px) { .nav-links { display: none; } .hero { min-height: 640px; } .grid, .two-col, .footer-grid { grid-template-columns: 1fr; } .section { padding: 68px 18px; } h1 { font-size: 42px; } }
@media (max-width: 560px) { .pref-row { flex-direction: column; } .pref-row button { width: 100%; } .hero-inner { padding-top: 82px; } }
