:root {
  --ink: #0b1f3a;
  --ink-soft: #24405f;
  --muted: #6b7b8f;
  --line: #dfe7ef;
  --paper: #ffffff;
  --soft: #f5f8fb;
  --soft-2: #eef5f4;
  --brand: #12b886;
  --brand-dark: #0f8d69;
  --shadow: 0 18px 50px rgba(11, 31, 58, 0.10);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--brand-dark); }
img { max-width: 100%; display: block; }

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  background: var(--ink);
  color: rgba(255,255,255,.84);
  font-size: 14px;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 9px 0;
}
.topbar a { color: #fff; font-weight: 700; }
.topbar__links { display: flex; gap: 18px; flex-wrap: wrap; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(223, 231, 239, .85);
}
.header-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo { display: inline-flex; align-items: center; }
.logo img { height: 60px; width: auto; }
.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-soft);
}
.nav a { white-space: nowrap; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 14px 30px rgba(18, 184, 134, .28);
}
.btn-primary:hover { color: #fff; background: var(--brand-dark); }
.btn-secondary {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}
.btn-secondary:hover { background: var(--soft); color: var(--ink); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 78px;
  background:
    radial-gradient(circle at 78% 22%, rgba(18,184,134,.18), transparent 29%),
    linear-gradient(135deg, #f7fbff 0%, #ffffff 48%, #eff8f5 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(11,31,58,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(11,31,58,.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 54px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--brand-dark);
  background: rgba(18,184,134,.11);
  font-weight: 800;
  font-size: 14px;
}
.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand);
}
h1, h2, h3 { line-height: 1.12; margin: 0; color: var(--ink); }
h1 {
  font-size: clamp(42px, 6vw, 70px);
  letter-spacing: -0.055em;
  max-width: 760px;
}
.hero-text {
  margin: 22px 0 28px;
  max-width: 650px;
  color: var(--ink-soft);
  font-size: 19px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
  max-width: 650px;
}
.meta-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.72);
}
.meta-card strong { display: block; font-size: 18px; }
.meta-card span { color: var(--muted); font-size: 14px; }

.hero-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
}
.route-card {
  border-radius: 22px;
  background: linear-gradient(145deg, var(--ink) 0%, #14385d 100%);
  color: #fff;
  padding: 26px;
  min-height: 380px;
  position: relative;
  overflow: hidden;
}
.route-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -70px;
  bottom: -90px;
  border-radius: 50%;
  background: rgba(18,184,134,.22);
}
.route-card h2 { color: #fff; font-size: 28px; max-width: 360px; }
.route-line {
  position: relative;
  margin: 42px 0 24px;
  padding-left: 24px;
  border-left: 2px dashed rgba(255,255,255,.35);
}
.route-stop { margin-bottom: 24px; position: relative; }
.route-stop::before {
  content: "";
  position: absolute;
  left: -33px;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 3px solid var(--brand);
  background: #fff;
}
.route-stop b { display: block; }
.route-stop span { color: rgba(255,255,255,.72); font-size: 14px; }
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-weight: 800;
}
.status-pill::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand);
}

.section { padding: 86px 0; }
.section-soft { background: var(--soft); }
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}
.section-label {
  margin: 0 0 10px;
  color: var(--brand-dark);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .10em;
  font-size: 13px;
}
h2 { font-size: clamp(30px, 4vw, 48px); letter-spacing: -0.04em; }
.section-head p,
.lead {
  color: var(--ink-soft);
  margin: 0;
  max-width: 590px;
  font-size: 18px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 35px rgba(11,31,58,.06);
}
.icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--brand-dark);
  background: rgba(18,184,134,.12);
  font-size: 25px;
  margin-bottom: 18px;
}
.card h3 { font-size: 22px; margin-bottom: 12px; }
.card p { color: var(--muted); margin: 0; }
.card ul { color: var(--muted); margin: 16px 0 0; padding-left: 18px; }

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 44px;
  align-items: center;
}
.panel {
  border-radius: 28px;
  background: var(--ink);
  color: #fff;
  padding: 36px;
  box-shadow: var(--shadow);
}
.panel h2, .panel h3 { color: #fff; }
.panel p { color: rgba(255,255,255,.78); }
.check-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}
.check-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--ink-soft);
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}
.check-item::before {
  content: "✓";
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 900;
}

.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.step {
  counter-increment: step;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  position: relative;
}
.step::before {
  content: "0" counter(step);
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--brand-dark);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: .12em;
}
.step h3 { font-size: 21px; margin-bottom: 10px; }
.step p { color: var(--muted); margin: 0; }

.cta {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--ink) 0%, #123a5f 100%);
  color: #fff;
}
.cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}
.cta h2 { color: #fff; max-width: 720px; }
.cta p { color: rgba(255,255,255,.74); margin: 14px 0 0; max-width: 700px; }
.cta .btn-secondary { background: #fff; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
}
.contact-item {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--soft);
  border: 1px solid var(--line);
}
.contact-item span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 6px;
}
.contact-item b { font-size: 18px; }

.footer {
  padding: 46px 0 28px;
  background: #08182b;
  color: rgba(255,255,255,.76);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-logo {
  height: 100px;
  width: auto;
  filter: none;
  background: #fff;
  padding: 10px 14px;
  border-radius: 14px;
}
.footer p { margin: 14px 0 0; max-width: 520px; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; font-weight: 800; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 22px;
  font-size: 14px;
}

.legal-hero {
  padding: 72px 0;
  background: linear-gradient(135deg, #f7fbff 0%, #eef8f4 100%);
  border-bottom: 1px solid var(--line);
}
.legal-hero h1 { font-size: clamp(38px, 5vw, 58px); }
.legal-layout {
  padding: 68px 0 86px;
}
.legal-card {
  max-width: 900px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 10px 35px rgba(11,31,58,.06);
  background: #fff;
}
.legal-card h2 { font-size: 28px; margin: 34px 0 14px; }
.legal-card h2:first-child { margin-top: 0; }
.legal-card p, .legal-card li { color: var(--ink-soft); }
.legal-card a { color: var(--brand-dark); font-weight: 800; }
.notice {
  padding: 18px;
  border-left: 4px solid var(--brand);
  border-radius: 16px;
  background: var(--soft-2);
  color: var(--ink-soft);
}

@media (max-width: 980px) {
  .nav { display: none; }
  .hero-grid, .split { grid-template-columns: 1fr; }
  .cards, .steps, .contact-grid { grid-template-columns: 1fr 1fr; }
  .cta-box, .section-head, .footer-top { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1120px); }
  .topbar .container { flex-direction: column; align-items: flex-start; }
  .header-inner { height: 70px; }
  .logo img { height: 46px; }
  .hero { padding: 58px 0 54px; }
  .hero-meta, .cards, .steps, .contact-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .hero-card, .legal-card { padding: 20px; }
  .route-card { min-height: auto; }
  .btn { width: 100%; }
  .footer-bottom { flex-direction: column; }
}
