:root {
  --ink: #17232c;
  --muted: #61717c;
  --navy: #0c2c49;
  --blue: #15507e;
  --cyan: #2ea6d8;
  --cream: #f4f0e8;
  --ice: #eef3f8;
  --line: #d6e0e7;
  --white: #ffffff;
  --page-width: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #dfe6ea;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.page {
  width: min(var(--page-width), calc(100% - 32px));
  margin: 32px auto;
  background: var(--white);
  box-shadow: 0 18px 60px rgba(12, 44, 73, .14);
  overflow: hidden;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 44px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .96);
}

.topbar__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.topbar__brand img { width: auto; height: 34px; max-width: 180px; }

.topbar__context {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-align: right;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr);
  gap: 44px;
  padding: 62px 58px 58px;
  color: var(--white);
  background: var(--navy);
}

.hero--lc {
  background:
    radial-gradient(circle at 100% 0%, rgba(46, 166, 216, .34), transparent 38%),
    linear-gradient(135deg, #0c2c49 0%, #15507e 68%, #1f6596 100%);
}

.hero--big5 {
  background:
    radial-gradient(circle at 100% 0%, rgba(208, 177, 106, .28), transparent 38%),
    linear-gradient(135deg, #18262d 0%, #273c44 72%, #38545b 100%);
}

.hero--sun {
  background:
    radial-gradient(circle at 100% 0%, rgba(124, 171, 137, .32), transparent 38%),
    linear-gradient(135deg, #263d3a 0%, #43695a 70%, #527968 100%);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 300;
  letter-spacing: -.045em;
  line-height: .98;
}

.hero h1 strong { font-weight: 800; }

.hero__lede {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
  line-height: 1.5;
}

.hero__aside {
  align-self: end;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 6px;
  background: rgba(255, 255, 255, .08);
}

.hero__aside-label {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, .65);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero__aside p { margin: 0; font-size: 16px; line-height: 1.48; }

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 11px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  color: rgba(255, 255, 255, .9);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .04em;
}

.section { padding: 44px 58px; }

.section--cream { background: var(--cream); }
.section--ice { background: var(--ice); }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 24px;
}

.section-head h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(27px, 3.4vw, 42px);
  font-weight: 300;
  letter-spacing: -.035em;
  line-height: 1.03;
}

.section-head h2 strong { font-weight: 800; }

.section-head p {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.card {
  min-height: 160px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--white);
}

.card__number {
  display: block;
  margin-bottom: 16px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .14em;
}

.card h3 { margin: 0 0 8px; font-size: 17px; line-height: 1.15; }
.card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }

.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.list-card {
  padding: 22px 24px;
  border-left: 4px solid var(--blue);
  background: var(--white);
}

.list-card--accent { border-left-color: var(--cyan); }

.list-card h3 { margin: 0 0 9px; font-size: 18px; }
.list-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }

.list-card ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.step { padding-top: 14px; border-top: 3px solid var(--cyan); }
.step__number { color: var(--blue); font-size: 26px; font-weight: 850; }
.step h3 { margin: 8px 0 7px; font-size: 14px; }
.step p { margin: 0; color: var(--muted); font-size: 12.5px; line-height: 1.5; }

.quote {
  margin: 28px 0 0;
  padding: 18px 22px;
  border-left: 5px solid var(--cyan);
  color: var(--navy);
  background: rgba(255, 255, 255, .72);
  font-size: 18px;
  font-weight: 750;
  line-height: 1.35;
}

.cta-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 34px 58px;
  color: var(--white);
  background: var(--navy);
}

.cta-band h2 { margin: 0 0 7px; font-size: 26px; font-weight: 750; }
.cta-band p { max-width: 650px; margin: 0; color: rgba(255, 255, 255, .72); font-size: 14px; line-height: 1.5; }

.actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .02em;
  text-decoration: none;
  white-space: nowrap;
}

.button--primary { color: var(--navy); background: var(--cyan); }
.button--outline { border-color: rgba(255, 255, 255, .42); color: var(--white); }
.button--light { color: var(--navy); background: var(--white); }

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 58px 24px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.footer p { margin: 0; }
.footer a { color: var(--blue); font-weight: 750; text-decoration: none; }

.note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

@media (max-width: 820px) {
  .page { width: 100%; margin: 0; box-shadow: none; }
  .topbar, .section, .cta-band, .footer { padding-left: 24px; padding-right: 24px; }
  .hero { grid-template-columns: 1fr; gap: 28px; padding: 42px 24px 40px; }
  .hero__aside { max-width: 580px; }
  .section-head, .cta-band { align-items: flex-start; flex-direction: column; }
  .card-grid, .two-column { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .actions { justify-content: flex-start; }
}

@media (max-width: 500px) {
  .topbar { align-items: flex-start; flex-direction: column; gap: 12px; }
  .topbar__context { text-align: left; }
  .hero h1 { font-size: 42px; }
  .steps { grid-template-columns: 1fr; }
  .footer { flex-direction: column; }
  .button { width: 100%; }
}

@media print {
  @page { size: A4; margin: 10mm; }
  body { background: #fff; }
  .page { width: 100%; margin: 0; box-shadow: none; }
  .topbar, .hero, .section, .cta-band, .footer { break-inside: avoid; }
  .button { print-color-adjust: exact; -webkit-print-color-adjust: exact; }
}
