/* ===========================================================
   GO-LOG — site styles
   Palette: deep harbor navy + rust-orange container accent
   =========================================================== */

:root {
  --navy-900: #0E2A3D;
  --navy-800: #15384D;
  --navy-700: #1B3A4B;
  --rust-500: #D9692C;
  --rust-600: #C2581F;
  --sand-100: #F6F4EF;
  --sand-50:  #FBFAF7;
  --ink-900:  #1A2226;
  --ink-600:  #4B5760;
  --line:     #E2DED3;
  --white:    #FFFFFF;

  --font-display: 'Archivo Expanded', 'Archivo', sans-serif;
  --font-head: 'Archivo', sans-serif;
  --font-body: 'Inter', sans-serif;

  --container: 1140px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--sand-100);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--navy-900);
}

p { margin: 0 0 1em; color: var(--ink-600); }

.section-eyebrow {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rust-600);
  margin: 0 0 12px;
}

section { padding: 96px 0; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 4px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}

.btn-primary { background: var(--rust-500); color: var(--white); }
.btn-primary:hover { background: var(--rust-600); transform: translateY(-1px); }

.btn-ghost { background: transparent; border-color: rgba(255,255,255,0.4); color: var(--white); }
.btn-ghost:hover { border-color: var(--white); }

.btn-block { width: 100%; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy-900);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  height: 92px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
}

.brand-logo {
  height: 60px;
  width: auto;
  display: block;
  background: var(--white);
  padding: 8px 14px;
  border-radius: 8px;
}

.brand-logo--footer { height: 46px; }

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--rust-500);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  border-radius: 4px;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--white);
}

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
}

.main-nav a {
  color: rgba(255,255,255,0.78);
  font-size: 14.5px;
  font-weight: 500;
  transition: color 0.15s ease;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--white); }

.header-request-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255,255,255,0.08);
  font-weight: 600;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}

.header-request-link:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.36);
  transform: translateY(-1px);
}

.header-phone {
  text-align: right;
  justify-self: end;
}
.phone-label {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.phone-number {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background: transparent;
  overflow: hidden;
  padding: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14,42,61,0.60) 0%, rgba(14,42,61,0.70) 60%, rgba(14,42,61,0.80) 100%),
    url('images/for_main.png') center/cover no-repeat;
}

.hero-inner {
  position: relative;
  padding: 120px 24px 96px;
  max-width: 760px;
}

.hero .eyebrow {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rust-500);
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--font-display);
  color: rgba(255,255,255,0.95);
  text-shadow: 0 2px 12px rgba(0,0,0,0.30);
  font-size: clamp(36px, 5.5vw, 56px);
  line-height: 1.08;
  margin-bottom: 24px;
}

.hero-lede {
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 8px rgba(0,0,0,0.25);
  font-size: 17px;
  max-width: 540px;
  margin-bottom: 36px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }

.hero-stats {
  list-style: none;
  display: flex;
  gap: 40px;
  padding: 28px 0 0;
  margin: 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  flex-wrap: wrap;
}
.hero-stats li { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  color: var(--white);
}
.stat-label {
  font-size: 12.5px;
  color: rgba(255,255,255,0.6);
  max-width: 140px;
}

/* ---------- Route (signature element) ---------- */

.route {
  background: var(--sand-50);
  background-image: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(241,237,229,0.95));
}

/* Фон для секции "География работы" */
/* Замените путь на своё изображение, если хотите фон-карту или текстуру */
.route.route--with-background {
  background: linear-gradient(180deg, rgba(14,42,61,0.10), rgba(255,255,255,0.92)),
              url('images/route-bg.jpg') center/cover no-repeat;
}

.route h2 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 56px; max-width: 640px; }

.route-line-full {
  width: 100%;
  margin: 0 auto;
  padding: 36px 0 20px;
}

.route-line-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(90%, 1120px);
  margin: 0 auto;
  gap: 32px;
}

.route-graphic {
  width: 100%;
  max-width: 420px;
  min-width: 280px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
}

.route-graphic__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
  border: none;
}

.route-point {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.route-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy-800);
  border: 4px solid var(--sand-50);
  box-shadow: 0 0 0 2px var(--navy-800);
}
.route-dot--origin, .route-dot--dest {
  background: var(--rust-500);
  box-shadow: 0 0 0 2px var(--rust-500);
}

.route-point-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  color: var(--navy-900);
  line-height: 1.2;
}

.route-arrows {
  display: grid;
  gap: 22px;
  width: 100%;
}

.route-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 24px;
  width: 100%;
  color: var(--navy-900);
  font-family: 'Courier New', Courier, monospace;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0;
  white-space: nowrap;
}

.route-arrow::before {
  content: '------------------->';
}

.route-arrow--to-export::before {
  content: '<-------------------';
}

/* ---------- About ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.about h2 { font-size: clamp(26px, 3.2vw, 34px); margin-bottom: 20px; }

.about-points {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-points li {
  position: relative;
  padding-left: 34px;
  font-size: 15px;
  color: var(--ink-900);
}
.about-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--rust-500);
}
.about-points li::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--white);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M4 12.5l5 5L20 7' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M4 12.5l5 5L20 7' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
}

.about-media {
  position: relative;
}
.about-media img {
  border-radius: 6px;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-media-placeholder {
  display: none;
  position: absolute;
  inset: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  border-radius: 6px;
  border: 1.5px dashed var(--line);
  background: var(--sand-50);
  color: var(--ink-600);
  aspect-ratio: 4/5;
}
.about-media-placeholder p { margin: 0; font-size: 13.5px; color: var(--ink-600); }
.about-media-placeholder code {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 12.5px;
  color: var(--navy-900);
}
.about-media--empty img { display: none; }
.about-media--empty .about-media-placeholder { display: flex; }

/* ---------- Services ---------- */

.services { background: var(--navy-900); }
.services .section-eyebrow { color: var(--rust-500); }
.services h2 { color: var(--white); font-size: clamp(26px, 3.2vw, 34px); margin-bottom: 48px; max-width: 600px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  position: relative;
}

.service-card {
  position: relative;
  background: var(--navy-900);
  padding: 0 0 32px;
  display: flex;
  flex-direction: column;
}

.service-body { padding: 24px 36px 0; color: var(--white); }

/* Тонкие разделители сетки */
.service-card:nth-child(odd) { border-right: none; }
.service-card:not(:nth-last-child(-n+2)) { border-bottom: none; }

/* Пунктирный коннектор между карточками в одной строке — продолжение маршрутной линии */
.service-card:nth-child(odd)::after {
  content: '';
  position: absolute;
  top: 270px;
  right: -1px;
  width: 30px;
  height: 0;
  border-top: 2px dashed rgba(217,105,44,0.55);
  transform: translate(50%, 0);
  z-index: 2;
}
@media (max-width: 900px) {
  .service-card:nth-child(odd)::after { display: none; }
}

/* ---- Изображение/иллюстрация услуги ---- */
.service-media {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: var(--navy-900);
  border-radius: 16px;
}
.service-media img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 0;
}
.service-media--empty img { display: none; }

.service-media--illustration {
  background: var(--navy-900);
}
.service-media--illustration img {
  object-fit: contain;
  padding: 0;
}

.service-media-placeholder {
  display: none;
  position: absolute;
  inset: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  border: none;
}
.service-media--empty .service-media-placeholder { display: flex; }
.service-media-placeholder svg { color: rgba(255,255,255,0.3); width: 32px; height: 32px; }
.service-media-placeholder p {
  margin: 0;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}
.service-media-placeholder code {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 11.5px;
  color: rgba(255,255,255,0.7);
}

.service-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
  margin: 20px 0 10px;
}

.service-card h3 {
  color: var(--white);
  font-size: 19px;
  margin-bottom: 10px;
}
.service-card p { color: rgba(255,255,255,0.62); font-size: 14.5px; margin-bottom: 0; }

/* ---------- Request form ---------- */

.request { background: var(--sand-50); }

.request-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
}

.request h2 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 16px; }

.request-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.field { display: flex; flex-direction: column; gap: 8px; }
.field span {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  color: var(--navy-900);
}

.field input, .field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 14px;
  border: 1.5px solid var(--line);
  border-radius: 4px;
  background: var(--sand-50);
  color: var(--ink-900);
  resize: vertical;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--rust-500);
  background: var(--white);
}

.form-note { font-size: 12.5px; color: var(--ink-600); margin: 0; }

.form-success {
  display: none;
  background: #EAF3DE;
  border: 1px solid #C0DD97;
  color: #27500A;
  padding: 16px;
  border-radius: 6px;
  font-size: 14.5px;
}
.form-success.is-visible { display: block; }

.form-error {
  display: none;
  background: #FCEBEB;
  border: 1px solid #F0BCBC;
  color: #791F1F;
  padding: 16px;
  border-radius: 6px;
  font-size: 14.5px;
}
.form-error.is-visible { display: block; }

/* ---------- Contacts ---------- */

.contacts {
  background-color: var(--navy-900);
  background-image: linear-gradient(rgba(14,42,61,0.84), rgba(14,42,61,0.84)), url('images/contact.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 64px 0;
  color: #fff;
}

.contacts-grid {
  display: grid;
  gap: 48px;
}

.contacts-top {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
  padding: 0 20px;
}

.contacts-top .contact-block {
  width: 60%;
  max-width: 860px;
  margin: 0 auto;
}

.contacts-details-heading {
  display: block;
  padding-left: 28px;
  margin-bottom: 0;
}

.contacts-details-heading .section-eyebrow {
  margin: 0 0 6px;
  letter-spacing: 0.12em;
  color: #B8D4FF;
}

.contacts-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 28px;
  align-items: stretch;
}

 .contacts h2, .contacts h3, .contact-block h2, .contact-block h3 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 16px;
  line-height: 1.1;
}

 .contacts-top .contact-block > h2 {
   color: #fff;
 }

 /* Make the eyebrow/section label "Контакты" blue, keep the H2 white */
 .contacts .section-eyebrow {
   color: var(--navy-900);
 }

 .contacts-top .contact-block > p,
 .contacts-top .contact-block .contact-list a,
 .contacts-top .contact-block .contact-list span,
 .contacts-top .contact-block .contact-list li {
  color: #fff;
}

.contacts-details .contact-block {
  display: flex;
  flex-direction: column;
}

.contacts .contact-block {
  background: var(--rust-500);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  border-radius: 24px;
  padding: 32px;
}

.contacts .contact-list li,
.contacts .contact-label,
.contacts .contact-list a,
.contacts .contact-list span {
  color: #fff;
}

.contacts .contact-list a:hover { color: #FFE0B8; }

.contacts .contact-list li {
  border-color: rgba(255,255,255,0.18);
}

.contacts .contact-photo__placeholder {
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: #fff;
}

.contact-list, .legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-list li, .legal-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 15.5px;
  color: var(--ink-900);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.contact-label, .legal-list li span {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-600);
}
 .contacts .contact-label,
 .contacts .contact-list li,
 .contacts .contact-list a,
 .contacts .contact-list span {
   color: #fff;
 }

 .contact-photo__placeholder {
   width: 100%;
   min-height: 100%;
   padding: 28px;
   border-radius: 20px;
   border: 1px dashed rgba(255,255,255,0.15);
   background: rgba(255,255,255,0.04);
   color: rgba(255,255,255,0.7);
   display: grid;
   place-items: center;
   font-family: var(--font-head);
   font-weight: 700;
   letter-spacing: 0.08em;
   text-transform: uppercase;
 }

 .contact-block h2,
 .contact-block h3 {
   margin: 0 0 18px;
   font-size: clamp(24px, 3vw, 32px);
   line-height: 1.2;
 }

 .contact-photo {
   overflow: hidden;
   border-radius: 20px;
   height: 100%;
 }

 .contact-photo__img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
 }

 .contact-photo--bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 24px;
  min-height: 360px;
}

 .contact-photo__placeholder {
   width: 100%;
   min-height: 100%;
   padding: 28px;
   border-radius: 20px;
   border: 1px dashed rgba(255,255,255,0.15);
   background: rgba(255,255,255,0.04);
   color: rgba(255,255,255,0.7);
   display: grid;
   place-items: center;
   font-family: var(--font-head);
   font-weight: 700;
   letter-spacing: 0.08em;
   text-transform: uppercase;
 }

 .contacts-top .contact-block {
   padding: 28px;
 }

 .contacts-top .contact-block > h2 {
   color: var(--navy-900);
 }

 .contacts .contact-block .contact-list {
   margin-top: 12px;
 }

 .contacts-details .contact-block {
   padding: 22px 24px;
   display: flex;
   flex-direction: column;
   justify-content: flex-start;
 }

 .contact-block + .contact-block {
   margin-top: 12px;
 }

/* ---------- Requisites ---------- */
.requisites {
  background: var(--sand-50);
  padding: 64px 0;
}

.requisites .section-eyebrow {
  margin-bottom: 18px;
  color: var(--rust-500);
}

 .requisites-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

 .requisites-grid > .contact-block {
  display: flex;
  flex-direction: column;
  height: 100%;
  align-self: stretch;
}

 /* Ensure card interior stretches so all cards equal height */
 .requisites .contact-block {
  display: flex;
  flex-direction: column;
  height: 100%;
}

 .requisites .contact-block .legal-list {
  flex: 1 1 auto;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.requisites .contact-block {
  background: var(--white);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 20px 40px rgba(17, 23, 30, 0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.requisites .contact-block h2,
.requisites .contact-block h3 {
  margin-bottom: 16px;
  color: var(--navy-900);
}

.requisites .contact-block .legal-list {
  flex: 1;
}

.requisites .contact-block h2,
.requisites .contact-block h3 {
  margin-bottom: 16px;
  color: var(--navy-900);
}

.requisites .legal-list li {
  border-color: var(--line);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-900);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand--footer .brand-logo {
  height: 46px;
}

.footer-copy {
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  margin: 0;
}

.footer-top {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 500;
}

.footer-top:hover {
  color: var(--white);
}

@media (max-width: 900px) {
  .container { padding: 0 18px; }
  section { padding: 72px 0; }
  .header-inner {
    height: auto;
    flex-wrap: wrap;
    padding: 16px 0;
  }
  .main-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px 20px;
  }
  .header-phone { display: none; }
  .hero-inner { padding: 90px 18px 72px; }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }
  .about-grid,
  .request-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card:nth-child(odd) { border-right: none; }
  .service-card:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .service-body { padding: 24px 24px 0; }
  .route-line-content {
    grid-template-columns: 1fr;
    gap: 20px;
    width: min(92%, 1120px);
  }
  .route-graphic {
    max-width: none;
    min-width: 0;
    height: auto;
  }
  .contacts-top {
    min-height: auto;
    padding: 0;
  }
  .contacts-top .contact-block {
    width: 100%;
    max-width: none;
    padding: 24px;
  }
  .contacts-details,
  .requisites-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .request-form { padding: 24px; }
}

@media (max-width: 600px) {
  section { padding: 64px 0; }
  .brand-logo { height: 44px; padding: 6px 10px; }
  .hero-inner { padding: 84px 16px 60px; }
  .hero h1 { font-size: clamp(30px, 8vw, 40px); }
  .hero-lede { font-size: 16px; }
  .hero-stats { gap: 20px; }
  .service-media { height: 180px; }
  .route h2 { margin-bottom: 36px; }
  .route-point-label { font-size: 18px; }
  .route-arrows { gap: 18px; }
  .about-points li { font-size: 14px; }
  .request-form { padding: 20px; }
}