:root {
  --ink: #071a3d;
  --muted: #566989;
  --blue: #0747d9;
  --blue-dark: #0634a4;
  --pale: #edf4ff;
  --line: #dce6f6;
  --surface: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: #fbfcff;
  line-height: 1.55;
}
a { color: inherit; }
.site-header, main, footer { max-width: 1120px; margin: auto; }
.site-header {
  min-height: 88px;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand img { display: block; width: 150px; height: auto; }
nav { display: flex; gap: 26px; font-size: .93rem; font-weight: 600; }
nav a, footer a { text-decoration: none; color: var(--muted); }
nav a:hover, footer a:hover, .text-link:hover { color: var(--blue); }
.hero {
  min-height: 530px;
  padding: 92px 56px;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 80px;
  align-items: center;
  background: radial-gradient(circle at 85% 10%, #dcecff, transparent 34%), var(--surface);
  border-radius: 32px;
}
.eyebrow { color: var(--blue); font-weight: 800; font-size: .78rem; letter-spacing: .09em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 700px; font-size: clamp(2.65rem, 6vw, 4.8rem); line-height: 1.04; letter-spacing: -.045em; margin-bottom: 24px; }
h2 { font-size: clamp(1.8rem, 3vw, 2.7rem); line-height: 1.12; letter-spacing: -.03em; }
.lead { max-width: 600px; font-size: 1.16rem; color: var(--muted); }
.button { display: inline-block; padding: 14px 22px; border-radius: 10px; background: var(--blue); color: white; text-decoration: none; font-weight: 750; box-shadow: 0 10px 24px #0747d933; }
.button:hover { background: var(--blue-dark); }
.availability { margin: 16px 0 0; color: var(--muted); font-size: .9rem; }
.hero-card { padding: 34px; background: var(--ink); color: white; border-radius: 24px; box-shadow: 0 24px 60px #071a3d33; }
.hero-card span { color: #73a4ff; font-size: .8rem; font-weight: 800; }
.hero-card h2 { margin: 28px 0 12px; font-size: 2rem; }
.hero-card p { color: #c9d7ef; }
.section { padding: 108px 56px; }
.section > h2 { max-width: 680px; margin-bottom: 48px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.steps article { min-height: 230px; padding: 28px; background: var(--surface); border: 1px solid var(--line); border-radius: 18px; }
.steps span { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: var(--pale); color: var(--blue); font-weight: 800; }
.steps h3 { margin: 30px 0 8px; font-size: 1.2rem; }
.steps p, .split-section p { color: var(--muted); }
.split-section { display: grid; grid-template-columns: .8fr 1fr; gap: 130px; background: var(--pale); border-radius: 30px; }
.text-link { color: var(--blue); font-weight: 750; }
.contact-section { margin: 0 0 70px; padding: 76px 56px; background: var(--blue); color: white; border-radius: 30px; }
.contact-section .eyebrow { color: #bed4ff; }
.contact-section h2 { margin-bottom: 12px; }
.contact-section p { color: #e3edff; }
.button-light { background: white; color: var(--blue); box-shadow: none; }
.button-light:hover { background: #edf4ff; }
footer { padding: 0 28px 34px; display: flex; justify-content: space-between; color: var(--muted); font-size: .88rem; }
footer div { display: flex; gap: 20px; }
.legal-page { max-width: 820px; margin: 0 auto; padding: 72px 28px; }
.legal-page h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
.legal-page h2 { margin-top: 48px; font-size: 1.45rem; }
.legal-page p, .legal-page li { color: var(--muted); }
.notice { padding: 18px 20px; border-left: 4px solid var(--blue); background: var(--pale); border-radius: 8px; color: var(--ink) !important; }
.back { display: inline-block; margin-bottom: 34px; color: var(--blue); font-weight: 750; text-decoration: none; }
@media (max-width: 760px) {
  .site-header { padding: 18px 20px; }
  nav { display: none; }
  .hero, .split-section { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 60px 26px; border-radius: 0; }
  .section, .contact-section { padding: 70px 26px; border-radius: 0; }
  .steps { grid-template-columns: 1fr; }
  footer { gap: 18px; align-items: flex-start; flex-direction: column; }
}
