:root {
  --paper: #fff8ed;
  --paper-2: #fffdf8;
  --ink: #18241f;
  --muted: #5e6a62;
  --orange: #ff8a1f;
  --orange-2: #ffb23f;
  --emerald: #0f7f67;
  --emerald-2: #0a5f4f;
  --line: #eadcca;
  --shadow: 0 18px 45px rgba(32, 38, 34, .12);
  --radius: 8px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  overflow-x: hidden;
  overflow-wrap: break-word;
}

body.locked { overflow: hidden; }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.image-figure {
  margin: 0;
}

.image-figure figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.fleet-top .image-figure figcaption {
  position: absolute;
}

a { color: inherit; }

:focus-visible {
  outline: 4px solid #10231e;
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 14px;
  top: -80px;
  z-index: 1000;
  background: var(--ink);
  color: #fff;
  padding: 12px 16px;
  border-radius: var(--radius);
}

.skip-link:focus { top: 14px; }

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

.topbar {
  background: #14382f;
  color: #fff;
  font-size: 14px;
}

.topbar .container {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.phone-row, .quick-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.phone-row a, .quick-links a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  border-radius: var(--radius);
  text-decoration: none;
  background: rgba(255,255,255,.08);
}

.phone-row a:hover, .quick-links a:hover,
.phone-row a:active, .quick-links a:active {
  background: var(--orange);
  color: #111;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 237, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 146px;
  flex-shrink: 1;
}

.brand-mark {
  width: 52px;
  height: 34px;
  position: relative;
  display: inline-block;
}

.brand-mark::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 6px;
  width: 35px;
  height: 21px;
  border-radius: 6px 9px 5px 5px;
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
  box-shadow: 0 0 0 3px rgba(15,127,103,.16);
  animation: logoFloat 4.5s ease-in-out infinite;
}

.brand-mark::after {
  content: "";
  position: absolute;
  right: 1px;
  top: 14px;
  width: 18px;
  height: 13px;
  border-radius: 3px 7px 3px 3px;
  background: var(--emerald);
  box-shadow: -28px 17px 0 -10px #14382f, 4px 17px 0 -10px #14382f;
}

@keyframes logoFloat {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(3px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

.brand-name {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 0;
  color: #14382f;
  line-height: 1;
}

.brand-tag {
  display: block;
  font-size: 12px;
  color: var(--orange);
  font-weight: 800;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.menu-toggle, .lang-toggle, .button, .fleet-toggle, .chat-toggle, .chat-close {
  border: 0;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform .16s ease, background .16s ease, color .16s ease, box-shadow .16s ease;
  overflow-wrap: anywhere;
}

.header-phone {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border-radius: var(--radius);
  color: #fff;
  background: #14382f;
  text-decoration: none;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 8px 0 #0a211b;
  transition: transform .16s ease, background .16s ease, color .16s ease, box-shadow .16s ease;
}

.header-phone:hover {
  transform: translateY(-2px);
  background: var(--emerald);
}

.header-phone:active {
  transform: translateY(2px);
  box-shadow: none;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 14px;
  color: #fff;
  background: var(--emerald);
  box-shadow: 0 8px 0 #094d40;
}

.hamburger {
  width: 25px;
  display: grid;
  gap: 5px;
}

.hamburger span {
  display: block;
  height: 3px;
  border-radius: 3px;
  background: #fff;
}

.lang-toggle {
  min-height: 48px;
  padding: 0 14px;
  background: var(--orange);
  color: #111;
  box-shadow: 0 8px 0 #c65f0b;
}

.menu-toggle:hover, .lang-toggle:hover, .button:hover, .fleet-toggle:hover, .chat-toggle:hover {
  transform: translateY(-2px);
}

.menu-toggle:active, .lang-toggle:active, .button:active, .fleet-toggle:active, .chat-toggle:active {
  transform: translateY(2px);
  box-shadow: none;
}

.main-nav {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(420px, 92vw);
  background: #fffdf8;
  box-shadow: -20px 0 60px rgba(24,36,31,.18);
  padding: 24px;
  transform: translateX(110%);
  transition: transform .22s ease;
  z-index: 200;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.main-nav.open { transform: translateX(0); }

.nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.nav-close {
  border: 0;
  background: #14382f;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 24px;
}

.main-nav a {
  display: block;
  text-decoration: none;
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.main-nav a:hover, .main-nav a:active {
  background: #eafff8;
  color: var(--emerald-2);
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 22, 19, .42);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 150;
}

.overlay.show {
  opacity: 1;
  pointer-events: auto;
}

main {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

main > section {
  content-visibility: auto;
  contain-intrinsic-size: 720px;
}

main > section { order: 10; }
main > section:nth-of-type(1) { order: 1; }
#fleet { order: 2; }
#services { order: 3; }
#coverage { order: 4; }
main > section:nth-of-type(5) { order: 5; }
main > section:nth-of-type(6) { order: 6; }
#reviews { order: 7; }
#faq { order: 8; }
main > section:nth-of-type(9) { order: 9; }

.hero {
  padding: 42px 0 34px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 540px);
  align-items: center;
  gap: 34px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--emerald-2);
  background: #eafff8;
  border: 1px solid #bfe9dc;
  padding: 7px 10px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 14px;
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  margin-top: 16px;
  font-size: clamp(38px, 6vw, 72px);
  max-width: 900px;
  overflow-wrap: anywhere;
}

h2 {
  font-size: clamp(28px, 4vw, 46px);
  margin-bottom: 16px;
}

h3 { font-size: 22px; }

p { margin: 0; }

.lead {
  font-size: clamp(18px, 2.2vw, 23px);
  color: var(--muted);
  margin-top: 18px;
  max-width: 780px;
}

.hero-actions, .section-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  text-decoration: none;
  background: var(--emerald);
  color: #fff;
  box-shadow: 0 8px 0 #094d40;
  text-align: center;
}

.button.alt {
  background: var(--orange);
  color: #111;
  box-shadow: 0 8px 0 #c65f0b;
}

.button.ghost {
  background: #fffdf8;
  color: var(--ink);
  border: 2px solid var(--emerald);
  box-shadow: none;
}

.hero-card {
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.trust-item {
  padding: 14px;
  border: 1px solid var(--line);
  background: #fffdf8;
  border-radius: var(--radius);
}

.trust-item strong {
  display: block;
  color: var(--emerald-2);
  font-size: 24px;
}

.section {
  padding: 70px 0;
  border-top: 1px solid rgba(234,220,202,.72);
}

.section.alt {
  background: #fffdf8;
}

.section-intro {
  max-width: 840px;
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 24px;
}

.grid {
  display: grid;
  gap: 16px;
}

.services-grid {
  grid-template-columns: repeat(3, 1fr);
}

.fleet-grid {
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}

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

.review-grid, .faq-grid {
  grid-template-columns: repeat(3, 1fr);
}

.card, .fleet-card, .area-card, .review, .faq-item, .route-card, .case-feature {
  border: 1px solid var(--line);
  background: #fffdf8;
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 26px rgba(32,38,34,.06);
}

.card img {
  border-radius: var(--radius);
  margin-bottom: 14px;
  border: 1px solid var(--line);
}

.card h3, .fleet-card h3, .route-card h3 {
  margin-bottom: 8px;
}

.card p, .fleet-card p, .area-card p, .review p, .faq-item p, .route-card p {
  color: var(--muted);
}

.case-feature {
  display: grid;
  grid-template-columns: minmax(220px, 34%) 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 18px;
}

.case-feature .image-figure {
  margin: 0;
}

.case-feature img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.case-feature h3 {
  margin-bottom: 10px;
}

.case-feature p {
  color: var(--muted);
  margin-bottom: 10px;
}

.tag-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 9px;
  border-radius: var(--radius);
  background: #eafff8;
  color: var(--emerald-2);
  font-weight: 800;
  font-size: 13px;
}

.fleet-card img {
  width: 116px;
  height: 72px;
  object-fit: contain;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  margin-bottom: 0;
}

.fleet-top {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.price-line {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 5px 9px;
  margin: 8px 0 4px;
  border-radius: var(--radius);
  background: #fff2dc;
  color: #8a3b00;
  font-weight: 900;
}

.price-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 18px;
}

.price-card {
  border: 1px solid var(--line);
  background: #fffdf8;
  border-radius: var(--radius);
  padding: 18px;
}

.price-card strong {
  color: var(--emerald-2);
}

.fleet-toggle {
  margin-top: 14px;
  min-height: 42px;
  padding: 0 12px;
  color: #fff;
  background: var(--emerald);
}

.fleet-info {
  display: none;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.fleet-info.open { display: block; }

.fleet-info ul, .keyword-cloud ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

.coverage-note {
  background: #14382f;
  color: #fff;
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
}

.area-card h3 {
  color: var(--emerald-2);
  margin-bottom: 8px;
}

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

.link-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.link-card {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 14px 16px;
  border: 2px solid rgba(15, 127, 103, .22);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fffdf8 0%, #f4fff9 100%);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 8px 0 rgba(15, 95, 79, .16), 0 12px 24px rgba(32,38,34,.06);
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease, background .16s ease, color .16s ease;
}

.link-card strong {
  color: var(--emerald-2);
  font-size: 18px;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.link-card span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.link-card:hover,
.link-card:active {
  transform: translateY(-2px);
  border-color: var(--orange);
  background: #fff8ed;
  box-shadow: 0 8px 0 #c65f0b, 0 16px 30px rgba(32,38,34,.1);
}

.link-card:hover strong,
.link-card:active strong {
  color: #8a3b00;
}

.text-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 14px;
  color: var(--emerald-2);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.text-link:hover {
  color: #8a3b00;
}

.keyword-cloud {
  columns: 3;
  column-gap: 22px;
  color: var(--muted);
}

.review {
  display: flex;
  flex-direction: column;
  min-height: 96px;
  padding: 12px 14px;
}

.review:hover {
  border-color: rgba(15, 127, 103, .42);
  box-shadow: 0 16px 34px rgba(32,38,34,.1);
}

.stars {
  color: #ff9a22;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 7px;
  text-shadow: 0 1px 0 rgba(138, 59, 0, .18);
}

.review p {
  flex: 1;
  font-size: 14px;
  line-height: 1.34;
}

.review strong {
  display: block;
  margin-top: 8px;
  color: var(--emerald-2);
  font-size: 14px;
  line-height: 1.25;
}

.faq-item h3 {
  overflow-wrap: anywhere;
}

.cta-band {
  background: #14382f;
  color: #fff;
  border-radius: var(--radius);
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}

.cta-band p { color: #dceee8; }

.site-footer {
  padding: 36px 0;
  background: #11251f;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 20px;
}

.footer-grid a {
  display: block;
  color: #fff;
  text-decoration: none;
  margin: 7px 0;
}

.footer-grid a:hover { color: var(--orange-2); }

[data-lang-block="ru"] { display: none; }
html[data-lang="ru"] [data-lang-block="uk"] { display: none; }
html[data-lang="ru"] [data-lang-block="ru"] { display: initial; }
html[data-lang="ru"] div[data-lang-block="ru"],
html[data-lang="ru"] section[data-lang-block="ru"],
html[data-lang="ru"] p[data-lang-block="ru"],
html[data-lang="ru"] span[data-lang-block="ru"],
html[data-lang="ru"] h1[data-lang-block="ru"],
html[data-lang="ru"] h2[data-lang-block="ru"],
html[data-lang="ru"] h3[data-lang-block="ru"],
html[data-lang="ru"] li[data-lang-block="ru"] { display: block; }

.chat-widget {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 140;
}

.chat-toggle {
  min-height: 54px;
  padding: 0 16px;
  background: var(--orange);
  color: #111;
  box-shadow: 0 8px 0 #c65f0b;
}

.chat-panel {
  position: absolute;
  left: 0;
  bottom: 70px;
  width: min(320px, calc(100vw - 36px));
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 14px;
  display: none;
}

.to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 140;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: #14382f;
  color: #fff;
  text-decoration: none;
  font-size: 25px;
  font-weight: 900;
  box-shadow: 0 8px 0 #0a211b;
  transition: transform .16s ease, background .16s ease, box-shadow .16s ease;
}

.to-top:hover {
  transform: translateY(-2px);
  background: var(--emerald);
}

.to-top:active {
  transform: translateY(2px);
  box-shadow: none;
}

.chat-panel.open { display: block; }

.chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.chat-close {
  width: 36px;
  height: 36px;
  background: #14382f;
  color: #fff;
}

.chat-panel a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 46px;
  padding: 0 12px;
  margin-top: 8px;
  background: #eafff8;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 800;
}

.page-hero {
  padding: 56px 0 36px;
  background: linear-gradient(130deg, #fff8ed 0%, #fffdf8 52%, #eafff8 100%);
}

.breadcrumbs {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
}

.content-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 22px;
}

.content-list article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf8;
}

.seo-note {
  display: none !important;
}

@media (max-width: 980px) {
  .hero-grid, .cta-band, .footer-grid {
    grid-template-columns: 1fr;
  }
  .services-grid, .fleet-grid, .review-grid, .faq-grid, .route-grid, .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .link-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .area-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .keyword-cloud { columns: 2; }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 24px, 1180px);
  }
  .topbar .container { align-items: stretch; }
  .phone-row a { flex: 1 1 140px; justify-content: center; }
  .nav-shell {
    min-height: 68px;
    gap: 10px;
  }
  .brand {
    min-width: 0;
    gap: 8px;
  }
  .brand-name { font-size: 26px; }
  .menu-toggle .menu-text { display: inline; }
  .hero { padding-top: 24px; }
  h1 {
    font-size: clamp(31px, 9vw, 42px);
  }
  h2 {
    font-size: clamp(25px, 7vw, 34px);
  }
  h3 {
    font-size: 20px;
  }
  .lead {
    font-size: 17px;
  }
  .section-intro {
    font-size: 16px;
    line-height: 1.5;
  }
  .trust-strip, .services-grid, .fleet-grid, .area-grid, .review-grid, .faq-grid, .route-grid, .content-list, .price-grid, .link-grid {
    grid-template-columns: 1fr;
  }
  .case-feature {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 14px;
  }
  .case-feature img {
    max-height: 300px;
  }
  .area-grid {
    gap: 10px;
  }
  .area-card {
    padding: 12px 14px;
  }
  .area-card h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .area-card p {
    font-size: 15px;
    line-height: 1.42;
  }
  .fleet-top {
    grid-template-columns: 92px 1fr;
  }
  .fleet-card img {
    width: 92px;
    height: 58px;
  }
  .keyword-cloud { columns: 1; }
  .section { padding: 48px 0; }
  .hero-actions .button, .section-actions .button {
    width: 100%;
  }
  .nav-actions { gap: 7px; }
  .lang-toggle { padding: 0 10px; }
  .header-phone {
    min-height: 42px;
    padding: 0 10px;
    font-size: 14px;
  }
  .cta-band {
    padding: 22px;
  }
  .chat-widget {
    left: 12px;
    bottom: 12px;
  }
  .to-top {
    right: 12px;
    bottom: 12px;
  }
  .site-footer {
    padding-bottom: 92px;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 20px, 1180px);
  }
  .brand-mark {
    width: 42px;
    height: 30px;
  }
  .brand-mark::before {
    width: 30px;
    height: 19px;
  }
  .brand-mark::after {
    width: 16px;
    height: 12px;
    box-shadow: -23px 15px 0 -9px #14382f, 3px 15px 0 -9px #14382f;
  }
  .brand-name {
    font-size: 23px;
  }
  .brand-tag {
    display: none;
  }
  .header-phone {
    width: 44px;
    min-width: 44px;
    padding: 0;
    font-size: 0;
  }
  .header-phone::before {
    content: none;
    display: none;
  }
  .lang-toggle {
    min-height: 44px;
    padding: 0 9px;
    font-size: 13px;
  }
  .menu-toggle {
    width: 50px;
    min-height: 44px;
    padding: 0;
  }
  .menu-toggle .menu-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
  .hamburger {
    width: 24px;
  }
  .topbar {
    font-size: 13px;
  }
  .phone-row a,
  .quick-links a {
    min-height: 34px;
    padding-inline: 7px;
  }
  .main-nav {
    width: min(360px, 94vw);
    padding: 18px;
  }
  .link-card,
  .card,
  .fleet-card,
  .area-card,
  .faq-item,
  .route-card,
  .price-card,
  .content-list article {
    padding: 14px;
  }
  .review {
    min-height: 0;
    padding: 14px;
  }
  .link-card {
    min-height: 0;
  }
  .link-card strong {
    font-size: 17px;
  }
  .link-card span {
    font-size: 14px;
  }
  .faq-item h3 {
    font-size: 18px;
  }
  .faq-item p,
  .area-card p,
  .route-card p {
    font-size: 15px;
    line-height: 1.45;
  }
  .area-card {
    padding: 10px 12px;
    box-shadow: 0 6px 16px rgba(32,38,34,.05);
  }
  .area-card h3 {
    font-size: 17px;
    margin-bottom: 4px;
  }
  .area-card p {
    font-size: 14px;
    line-height: 1.38;
  }
  .chat-toggle {
    min-height: 48px;
    padding: 0 12px;
    font-size: 14px;
  }
  .to-top {
    width: 42px;
    height: 42px;
    font-size: 22px;
  }
}

@media (max-width: 380px) {
  .brand-name {
    font-size: 21px;
  }
  .brand-mark {
    width: 38px;
  }
  .nav-actions {
    gap: 5px;
  }
  .lang-toggle {
    padding: 0 7px;
  }
  .header-phone {
    width: 42px;
    min-width: 42px;
  }
  .menu-toggle {
    width: 46px;
  }
  .chat-toggle {
    width: 48px;
    padding: 0;
    font-size: 0;
  }
  .chat-toggle::before {
    content: "";
    font-size: 0;
    line-height: 1;
  }
}

/* Final mobile/action controls */
.call-widget {
  position: relative;
  display: inline-flex;
}

.header-phone {
  position: relative;
  border: 0;
  width: 74px;
  min-width: 74px;
  min-height: 56px;
  padding: 6px 8px;
  flex-direction: column;
  gap: 4px;
  font-size: 11px;
  line-height: 1;
  letter-spacing: .04em;
  overflow: visible;
}

.header-phone::before {
  content: none !important;
  display: none !important;
}

.call-glyph {
  display: block;
  width: 24px;
  height: 24px;
  color: #fff;
}

.call-label {
  display: block;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.call-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  z-index: 170;
  width: min(244px, calc(100vw - 24px));
  display: none;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf8;
  box-shadow: var(--shadow);
}

.call-panel.open {
  display: grid;
  gap: 8px;
}

.call-panel strong {
  color: var(--ink);
  font-size: 14px;
  text-align: center;
  letter-spacing: .04em;
}

.call-panel a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 10px;
  border-radius: var(--radius);
  background: #eafff8;
  color: var(--emerald-2);
  text-decoration: none;
  font-weight: 900;
}

.call-panel a:hover,
.call-panel a:focus-visible {
  background: var(--emerald);
  color: #fff;
}

.chat-toggle {
  position: relative;
  width: 62px;
  height: 62px;
  min-height: 62px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #5369cf;
  color: #fff;
  box-shadow: 0 8px 0 #3547a0;
  overflow: visible;
}

.chat-toggle::before {
  content: none !important;
  display: none !important;
}

.chat-icon {
  position: relative;
  width: 34px;
  height: 24px;
  border-radius: 13px;
  background: #fff;
}

.chat-icon::after {
  content: "";
  position: absolute;
  right: 6px;
  bottom: -7px;
  width: 12px;
  height: 12px;
  background: #fff;
  transform: rotate(45deg);
  border-radius: 2px;
}

.chat-icon::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #5369cf;
  box-shadow: 10px 0 0 #5369cf, 20px 0 0 #5369cf;
}

.chat-badge {
  position: absolute;
  right: -3px;
  top: -5px;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #d80000;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 0 0 2px #fffdf8;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.to-top {
  width: 40px;
  height: 40px;
  font-size: 22px;
}

@media (max-width: 720px) {
  .nav-actions {
    gap: 7px;
  }

  .header-phone {
    width: 68px;
    min-width: 68px;
    min-height: 52px;
    padding: 6px 7px;
    font-size: 11px;
  }

  .header-phone::before {
    content: none !important;
  }

  .call-label {
    font-size: 10px;
  }

  .call-panel {
    right: -74px;
    top: calc(100% + 9px);
  }

  .chat-toggle {
    width: 58px;
    height: 58px;
    min-height: 58px;
    padding: 0;
  }

  .chat-toggle::before {
    content: "";
    font-size: 0;
  }

  .to-top {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }
}

@media (max-width: 380px) {
  .header-phone {
    width: 62px;
    min-width: 62px;
  }

  .call-label {
    font-size: 10px;
  }

  .chat-toggle {
    width: 54px;
    height: 54px;
    min-height: 54px;
    padding: 0;
  }

  .chat-icon {
    transform: scale(.9);
  }

  .to-top {
    width: 36px;
    height: 36px;
    font-size: 19px;
  }
}
