/* ===== Variables ===== */
:root {
  --bg: #f4f7fb;
  --bg-alt: #e8eef6;
  --surface: #ffffff;
  --text: #0f1c2e;
  --text-muted: #5a6b82;
  --primary: #0b5cad;
  --primary-dark: #084a8f;
  --accent: #e8872b;
  --accent-dark: #cf7318;
  --border: #d5e0ef;
  --shadow: 0 12px 40px rgba(15, 28, 46, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --header-h: 72px;
  --font: "Manrope", system-ui, -apple-system, sans-serif;
  --transition: 0.2s ease;
}

/* ===== Reset ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, p {
  margin: 0;
}

button, input, select, textarea {
  font: inherit;
}

.container {
  width: min(1140px, calc(100% - 32px));
  margin-inline: auto;
}

/* ===== Typography ===== */
.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.15rem;
  font-weight: 700;
}

.section__desc {
  margin-top: 12px;
  max-width: 620px;
  color: var(--text-muted);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--accent);
  color: #fff;
}

.btn--primary:hover {
  background: var(--accent-dark);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn--block {
  width: 100%;
}

.btn--sm {
  padding: 10px 18px;
  font-size: 0.85rem;
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn--outline:hover {
  background: rgba(11, 92, 173, 0.08);
}

/* ===== Header ===== */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo__mark {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
}

.logo__sub {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--transition);
}

.nav a:hover {
  color: var(--primary);
}

.nav__cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff !important;
}

.nav__cta:hover {
  background: var(--primary-dark);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  margin-inline: auto;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 48px) 0 80px;
  overflow: hidden;
  color: #fff;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(8, 42, 84, 0.92) 0%, rgba(11, 92, 173, 0.78) 55%, rgba(15, 60, 110, 0.9) 100%),
    radial-gradient(circle at 80% 20%, rgba(232, 135, 43, 0.25), transparent 40%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M60 0L72 48H120L84 78L96 120L60 90L24 120L36 78L0 48H48z'/%3E%3C/g%3E%3C/svg%3E");
  background-color: #0a2f5c;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.75);
}

.hero__lead {
  margin-top: 20px;
  max-width: 560px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.88);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.hero__stats li {
  padding: 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero__stats strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.hero__stats span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero__card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow);
}

.hero__card h2 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.hero__card > p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.contact-chip {
  padding: 14px 16px;
  margin-bottom: 12px;
  border-radius: var(--radius-sm);
  background: var(--bg);
  border: 1px solid var(--border);
}

.contact-chip__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-chip a {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  word-break: break-all;
}

.contact-chip a[href^="mailto"] {
  font-size: 1rem;
  font-weight: 700;
}

.contact-chip a:hover {
  color: var(--primary-dark);
}

.hero__card .btn {
  margin-top: 8px;
}

/* ===== Sections ===== */
.section {
  padding: 80px 0;
}

.section--alt {
  background: var(--bg-alt);
}

.section--cta {
  background: linear-gradient(180deg, var(--bg) 0%, #dfeaf7 100%);
}

.section__head {
  margin-bottom: 40px;
}

/* ===== Cards ===== */
.cards {
  display: grid;
  gap: 20px;
}

.cards--4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(15, 28, 46, 0.04);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  padding: 10px;
  border-radius: 12px;
  background: rgba(11, 92, 173, 0.1);
  color: var(--primary);
}

.card__icon svg {
  width: 100%;
  height: 100%;
}

.card h3 {
  margin-bottom: 8px;
}

.card p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* ===== Routes ===== */
.routes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.routes__map {
  position: relative;
  min-height: 320px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 30% 40%, rgba(11, 92, 173, 0.15), transparent 50%),
    linear-gradient(160deg, #0a2f5c, #1a5a9e);
  overflow: hidden;
}

.routes__line {
  position: absolute;
  inset: 20% 15% 25% 20%;
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 40% 60% 50% 40%;
}

.routes__dot {
  position: absolute;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

.routes__dot--main {
  top: 38%;
  left: 42%;
  background: var(--accent);
  border-color: var(--accent);
  font-size: 0.95rem;
}

.routes__dot:nth-child(2) { top: 62%; left: 28%; }
.routes__dot:nth-child(3) { top: 12%; left: 55%; }
.routes__dot:nth-child(4) { top: 48%; left: 68%; }
.routes__dot:nth-child(5) { top: 72%; left: 58%; font-size: 0.75rem; }
.routes__dot:nth-child(6) { top: 22%; left: 22%; font-size: 0.75rem; }

.routes__list li {
  position: relative;
  padding: 16px 0 16px 24px;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}

.routes__list li:last-child {
  border-bottom: none;
}

.routes__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.routes__list strong {
  color: var(--text);
}

.routes--cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.routes__col {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
}

.routes__col h3 {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.contacts-simple {
  margin-bottom: 32px;
}

.contacts-simple .contact-card {
  max-width: 480px;
}

.footer__desc a {
  color: rgba(255, 255, 255, 0.65);
}

.footer__desc a:hover {
  color: #fff;
}

/* ===== About ===== */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.about__text p {
  margin-top: 16px;
  color: var(--text-muted);
}

.checklist {
  margin-top: 24px;
}

.checklist li {
  position: relative;
  padding: 10px 0 10px 28px;
  color: var(--text-muted);
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 800;
}

.steps {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.steps h3 {
  margin-bottom: 20px;
}

.steps__list li {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.steps__list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.steps__num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
}

.steps__list p {
  margin-top: 4px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ===== Form ===== */
.request {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.request__info p {
  margin-top: 16px;
  color: var(--text-muted);
}

.request__phones {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
}

.phone-link {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
}

.phone-link:hover {
  color: var(--primary-dark);
}

.phone-link--email {
  font-size: 1.1rem;
  font-weight: 700;
}

.form {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field > span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(11, 92, 173, 0.15);
}

.field input.error,
.field select.error,
.field textarea.error {
  border-color: #d64545;
}

.field--check {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  margin: 16px 0 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
  cursor: pointer;
}

.field--check input {
  width: auto;
  margin-top: 3px;
  accent-color: var(--primary);
}

.form__note {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
  min-height: 1.2em;
}

.form__note.error {
  color: #d64545;
}

.form__note.success {
  color: #1a7a4c;
}

.form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* ===== Contacts ===== */
.contacts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
}

.contact-card h3 {
  margin-bottom: 10px;
}

.contact-card > p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.contact-card dl div {
  margin-bottom: 12px;
}

.contact-card dt {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.contact-card dd {
  margin: 4px 0 0;
}

.contact-card dd a {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
}

.contact-card .btn {
  margin-top: 8px;
}

.contact-card--accent {
  background: linear-gradient(145deg, #0a2f5c, #0b5cad);
  color: #fff;
  border: none;
}

.contact-card--accent p,
.contact-card--accent li {
  color: rgba(255, 255, 255, 0.85);
}

.contact-card__tips li {
  position: relative;
  padding: 8px 0 8px 20px;
}

.contact-card__tips li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* ===== News strip ===== */
.news-strip {
  background: linear-gradient(90deg, #0a2f5c, #0b5cad);
  color: #fff;
  padding: 20px 0;
}

.news-strip__inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

.news-strip__icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.news-strip strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
}

.news-strip p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.news-strip .btn {
  flex-shrink: 0;
  white-space: nowrap;
}

.news-badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(232, 135, 43, 0.15);
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero__social,
.request__social {
  display: flex;
  gap: 10px;
  margin: 12px 0;
}

.social-link {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  transition: background var(--transition);
}

.social-link:hover {
  background: rgba(11, 92, 173, 0.08);
}

.social-link--dark {
  background: var(--surface);
}

/* ===== Tariffs ===== */
.tariffs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tariff-card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(15, 28, 46, 0.04);
  display: flex;
  flex-direction: column;
}

.tariff-card--featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow);
}

.tariff-card--wide {
  grid-column: span 3;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}

.tariff-card--wide .tariff-card__desc {
  flex: 1;
  margin: 0;
  color: var(--text-muted);
}

.tariff-card__route {
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.tariff-card__price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}

.tariff-card__price span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
}

.tariff-card__note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  flex: 1;
}

.tariffs__disclaimer {
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

/* ===== Schedule ===== */
.schedule {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.schedule-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.schedule-card__num {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(11, 92, 173, 0.1);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.schedule-card h3 {
  margin-bottom: 16px;
}

.schedule-card__dates {
  display: grid;
  gap: 12px;
  margin-bottom: 12px;
}

.schedule-card__dates dt {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.schedule-card__dates dd {
  margin: 4px 0 0;
  font-size: 1.1rem;
  font-weight: 700;
}

.schedule-card__note {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* ===== Categories ===== */
.categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.category-card {
  padding: 20px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color var(--transition), transform var(--transition);
}

.category-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.category-card h3 {
  margin-bottom: 6px;
  font-size: 1rem;
}

.category-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ===== Gallery ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery__item {
  position: relative;
  padding: 0;
  border: none;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  background: var(--text);
  aspect-ratio: 4 / 3;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.gallery__item span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 12px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  text-align: left;
}

.gallery__item:hover img {
  transform: scale(1.06);
  opacity: 0.9;
}

/* ===== Lightbox ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(10, 26, 46, 0.92);
}

.lightbox[hidden] {
  display: none;
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
}

.lightbox__figure {
  margin: 0;
  max-width: 900px;
  width: 100%;
}

.lightbox__figure img {
  width: 100%;
  border-radius: var(--radius);
}

.lightbox__figure figcaption {
  margin-top: 12px;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

/* ===== Team contacts ===== */
.team {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.team-card {
  padding: 22px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
}

.team-card__role {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.team-card h3 {
  margin-bottom: 4px;
}

.team-card > p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.team-card__phone {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}

/* ===== Location ===== */
.location {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
  align-items: start;
}

.location__info {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
}

.location__info h3 {
  margin-bottom: 20px;
}

.location__block {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.location__block:last-of-type {
  border-bottom: none;
  margin-bottom: 16px;
  padding-bottom: 0;
}

.location__block strong {
  display: block;
  margin-bottom: 6px;
}

.location__block p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.location__hours {
  font-size: 0.85rem !important;
  margin-top: 4px;
}

.location__links {
  display: flex;
  gap: 16px;
}

.location__links a {
  font-weight: 700;
  color: var(--primary);
}

.location__map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 360px;
}

.location__map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

/* ===== Footer ===== */
.footer {
  padding: 40px 0 20px;
  background: #0a1a2e;
  color: rgba(255, 255, 255, 0.7);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__desc {
  margin-top: 10px;
  font-size: 0.88rem;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__nav a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer__nav a:hover {
  color: #fff;
}

.footer__legal {
  font-size: 0.85rem;
}

.footer__legal a {
  display: inline-block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.65);
}

.footer__legal a:hover {
  color: #fff;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer .logo__mark {
  color: #fff;
}

.footer .logo__sub {
  color: rgba(255, 255, 255, 0.5);
}

.footer__copy {
  font-size: 0.85rem;
}

.footer__top {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
}

.footer__top:hover {
  color: #fff;
}

/* ===== Toast ===== */
.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  max-width: 360px;
  padding: 20px 48px 20px 20px;
  border-radius: var(--radius);
  background: #0a2f5c;
  color: #fff;
  box-shadow: var(--shadow);
  animation: slideIn 0.3s ease;
}

.toast[hidden] {
  display: none;
}

.toast__title {
  font-weight: 800;
  margin-bottom: 4px;
}

.toast__text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.toast__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Legal page ===== */
.page-legal .header {
  position: static;
}

.legal {
  padding: 48px 0 80px;
}

.legal h1 {
  margin-bottom: 8px;
}

.legal__updated {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.legal h2 {
  font-size: 1.2rem;
  margin: 28px 0 12px;
}

.legal p,
.legal li {
  color: var(--text-muted);
  max-width: 720px;
}

.legal ul {
  list-style: disc;
  padding-left: 20px;
  max-width: 720px;
}

.legal a {
  color: var(--primary);
  font-weight: 600;
}

.field--check a {
  color: var(--primary);
  font-weight: 600;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .cards--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .tariffs {
    grid-template-columns: repeat(2, 1fr);
  }

  .tariff-card--wide {
    grid-column: span 2;
    flex-direction: column;
    align-items: stretch;
  }

  .team {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .categories {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero__inner,
  .about,
  .request,
  .routes,
  .routes--cols,
  .location {
    grid-template-columns: 1fr;
  }

  .hero__stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .burger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
  }

  .nav a:last-child {
    border-bottom: none;
    margin-top: 8px;
    text-align: center;
  }

  .section {
    padding: 56px 0;
  }

  .cards--4,
  .contacts,
  .form__row,
  .tariffs,
  .schedule,
  .team,
  .categories,
  .gallery,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .tariff-card--wide {
    grid-column: span 1;
  }

  .news-strip__inner {
    flex-direction: column;
    text-align: center;
  }

  .news-strip .btn {
    width: 100%;
  }

  .hero {
    padding-bottom: 56px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }
}
