:root {
  --navy: #0b2a5b;
  --navy-2: #0d3a7a;
  --azure: #1a6cb8;
  --teal: #00c5aa;
  --teal-2: #00a894;
  --ink: #122033;
  --muted: #5b6b80;
  --line: #d9e4f0;
  --card: #fff;
  --bg: #f3f7fb;
  --tint: #eaf2fb;
  --radius: 18px;
  --shadow: 0 12px 40px rgba(11, 42, 91, 0.12);
  --max: 1120px;
  --font: Manrope, "Segoe UI", Roboto, Arial, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: #fff;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--azure); }
svg { width: 36px; height: 36px; }

.wrap {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
}
.skip:focus { left: 8px; z-index: 10; background: #fff; padding: 8px 12px; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.top {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.top__grid {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 16px;
  align-items: center;
  min-height: 72px;
  padding-block: 10px;
}

.logo {
  display: grid;
  grid-template-columns: auto auto;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  color: var(--navy);
}

.logo__mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(160deg, var(--navy), var(--azure));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 26px;
}

.logo__text { display: grid; line-height: 1.2; }
.logo__text strong { font-size: 16px; }
.logo__text span { font-size: 12px; color: var(--muted); }

.top__geo { margin: 0; color: var(--muted); justify-self: start; }
.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.top__phone {
  font-weight: 800;
  font-size: 18px;
  color: var(--navy);
  text-decoration: none;
}

.btn {
  display: inline-grid;
  place-items: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 12px;
  font: inherit;
  font-weight: 800;
  letter-spacing: .02em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.btn--teal { background: var(--teal); color: #fff; }
.btn--teal:hover { background: var(--teal-2); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--xl { min-height: 56px; padding: 0 28px; font-size: 18px; }

.hero {
  background:
    radial-gradient(circle at 80% 20%, rgba(0, 197, 170, .18), transparent 28%),
    linear-gradient(165deg, #071a40 0%, #0d3a7a 48%, #1a6cb8 100%);
  color: #fff;
  padding: 48px 0 28px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: end;
}

.kicker {
  margin: 0 0 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: .85;
}

.hero h1 {
  margin: 0 0 14px;
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.08;
  text-transform: uppercase;
}

.hero__lead { margin: 0 0 22px; font-size: 18px; max-width: 36ch; }

.hero__bullets {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.hero__bullets li {
  padding-left: 22px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14'><circle cx='7' cy='7' r='6' fill='none' stroke='%2300c5aa' stroke-width='2'/></svg>") no-repeat left 4px;
}

.hero__visual {
  margin: 0;
  min-height: 280px;
}

.hero__visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, .35));
}

.section { padding: 64px 0; }
.section--tint { background: var(--bg); }

h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 3vw, 36px);
  color: var(--navy);
  line-height: 1.15;
}

.lead { margin: 0 0 28px; color: var(--muted); max-width: 62ch; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.cards--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 8px;
  align-content: start;
}

.card h3 { margin: 0; color: var(--navy); font-size: 18px; text-transform: uppercase; }
.card p { margin: 0; color: var(--muted); }
.card__price { color: var(--muted) !important; font-weight: 700; }
.card__icon { color: var(--azure); }
.card a { font-weight: 700; }

.band {
  background: linear-gradient(165deg, #0b2a5b, #1a6cb8);
  color: #fff;
  padding: 64px 0;
}

.band h2, .band h3 { color: #fff; }
.band__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 32px;
  align-items: start;
}

.route-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.route-list li {
  background: rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 16px 18px;
}

.route-list h3 { margin: 0 0 6px; font-size: 18px; }
.route-list p { margin: 0; opacity: .92; }

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: none;
}

.steps li {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}

.steps span {
  display: block;
  color: var(--teal-2);
  font-weight: 800;
  margin-bottom: 8px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.price-table th,
.price-table td {
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
}

.price-table tbody th { font-weight: 600; }
.price-table td { font-weight: 800; color: var(--navy); white-space: nowrap; }

.faq { display: grid; gap: 10px; }
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 18px;
}
.faq summary { cursor: pointer; font-weight: 700; color: var(--navy); }
.faq p { margin: 10px 0 0; color: var(--muted); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.ticks {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.ticks li {
  padding: 14px 16px 14px 42px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18'><path d='M3 9l4 4 8-8' fill='none' stroke='%2300c5aa' stroke-width='2'/></svg>");
  background-repeat: no-repeat;
  background-position: 14px 16px;
}

.form {
  display: grid;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.form label { display: grid; gap: 6px; font-weight: 700; color: var(--navy); }
.form .opt { font-weight: 500; color: var(--muted); }
.form input,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 12px;
  font: inherit;
}

.form__note { margin: 0; color: var(--muted); font-size: 13px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; }

.form-status {
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 700;
}
.form-status.is-ok { background: #e7faf4; color: #0b6b52; }
.form-status.is-err { background: #fdecea; color: #9b1c1c; }

.contacts {
  font-style: normal;
  display: grid;
  gap: 6px;
  max-width: 42ch;
}

.foot {
  background: #071427;
  color: #d7e3f2;
  padding: 48px 0 32px;
}

.foot h2 { color: #fff; font-size: 20px; margin-top: 28px; }
.foot a { color: #9fd7ff; }
.foot__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
}
.foot nav { display: grid; gap: 8px; align-content: start; }
.muted { color: #9bb0c8; }

@media (max-width: 980px) {
  .top__grid { grid-template-columns: 1fr auto; }
  .top__geo { display: none; }
  .top__phone {
    display: block;
    grid-column: 1 / -1;
    font-size: 22px;
    text-align: center;
    order: 3;
  }
  .hero__grid,
  .band__grid,
  .split,
  .cards,
  .cards--4,
  .steps,
  .foot__grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hero { padding-top: 28px; }
  .section, .band { padding: 44px 0; }
  .btn--xl { width: 100%; }
}
