﻿:root {
  color-scheme: light;
  --ink: #13233a;
  --muted: #5e6b7e;
  --line: #dce6f4;
  --soft: #f5f9ff;
  --blue: #0c64d8;
  --blue-dark: #06489d;
  --navy: #09284c;
  --green: #0d8b6f;
  --white: #ffffff;
}
* { box-sizing: border-box; }
img, svg, video { max-width: 100%; height: auto; }
main, section, header, footer, nav, div, article, aside { min-width: 0; }
a, button, span, strong, li { overflow-wrap: anywhere; word-break: break-word; }
html { scroll-behavior: smooth; max-width: 100%; overflow-x: hidden; }
body { overflow-x: hidden; margin: 0; font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--ink); background: #fff; line-height: 1.75; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,.94); border-bottom: 1px solid var(--line); backdrop-filter: blur(10px); }
.site-nav { width: min(1180px, calc(100% - 32px)); margin: 0 auto; min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { color: var(--navy); font-weight: 800; letter-spacing: .02em; }
.nav-links { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; font-size: 14px; }
.nav-links a { color: var(--ink); }
.nav-cta { background: var(--blue); color: #fff !important; padding: 10px 16px; border-radius: 999px; font-weight: 700; }
.hero { background: linear-gradient(135deg, #eef6ff, #ffffff 55%, #edf8f5); padding: 84px 0 72px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(280px, .8fr); gap: 36px; align-items: center; }
.eyebrow { margin: 0 0 10px; color: var(--blue); font-weight: 800; letter-spacing: .04em; }
h1, h2, h3, p { overflow-wrap: anywhere; word-break: break-word; }
h1 { margin: 0; font-size: clamp(34px, 5vw, 58px); line-height: 1.12; letter-spacing: 0; }
h2 { margin: 0 0 18px; font-size: clamp(26px, 3vw, 38px); line-height: 1.25; letter-spacing: 0; }
h3 { margin: 0 0 10px; font-size: 18px; }
.lead { color: var(--muted); font-size: 18px; margin: 22px 0 0; max-width: 760px; }
.lead span { display: block; max-width: 100%; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button { max-width: 100%; white-space: normal; text-align: center; display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 12px 18px; border-radius: 8px; border: 1px solid var(--line); background: #fff; color: var(--blue-dark); font-weight: 800; }
.button.primary { background: var(--blue); color: #fff; border-color: var(--blue); }
.hero-panel, .status-box { background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: 0 18px 48px rgba(15,56,105,.12); padding: 24px; }
.hero-panel strong { display: block; font-size: 22px; margin-bottom: 12px; }
.hero-panel ul { margin: 0; padding-left: 20px; color: var(--muted); }
.section { padding: 72px 0; }
.section.soft { background: var(--soft); }
.cards { min-width: 0; display: grid; gap: 18px; }
.cards.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards article, .price-grid article { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 22px; min-width: 0; }
.cards article p, .price-grid article p { color: var(--muted); margin: 0; }
.price-grid { min-width: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.price { font-size: 28px; font-weight: 900; color: var(--blue-dark) !important; margin-bottom: 6px !important; }
.note { color: var(--muted); margin-top: 18px; }
.split { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr); gap: 28px; align-items: center; }
.status-box { display: grid; gap: 10px; }
.status-box span { display: block; border: 1px solid #cfe1f6; background: #f7fbff; border-radius: 8px; padding: 12px; font-weight: 800; color: var(--blue-dark); }
.cta { background: var(--navy); color: #fff; padding: 72px 0; text-align: center; }
.cta p { color: #dbe8f7; max-width: 760px; margin: 0 auto 24px; }
.site-footer { background: #071d37; color: #eaf2ff; padding: 48px 0 24px; }
.footer-grid { width: min(1120px, calc(100% - 40px)); margin: 0 auto; display: grid; grid-template-columns: 1.4fr .8fr; gap: 28px; }
.site-footer a { display: block; color: #eaf2ff; margin: 6px 0; }
.copy { width: min(1120px, calc(100% - 40px)); margin: 28px auto 0; color: #a9bad0; font-size: 13px; }
@media (max-width: 900px) {
  .site-nav { align-items: flex-start; flex-direction: column; padding: 14px 0; }
  .hero-grid, .split, .footer-grid { grid-template-columns: 1fr; }
  .cards.three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .price-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .hero-grid, .split { grid-template-columns: minmax(0, 1fr); }
  .hero-panel, .status-box { width: 100%; }

  h1 { font-size: 30px; line-height: 1.18; }
  .nav-links { width: 100%; align-items: flex-start; }
  .nav-links a { white-space: normal; }

  .container, .site-nav, .footer-grid, .copy { width: min(100% - 24px, 1120px); }
  .hero { padding: 48px 0; }
  .section, .cta { padding: 48px 0; }
  .nav-links { gap: 10px; }
  .nav-links a { font-size: 13px; }
  .cards.three, .price-grid { grid-template-columns: 1fr; }
  .actions { flex-direction: column; }
  .button { width: 100%; }
}



