/* ── FLEET MARQUEE / SLIDER ───────────────────────── */
.fleet-marquee {
  padding: 64px 0 80px;
  background: var(--bg-card);
  border-top: 1.5px solid var(--border-strong);
  border-bottom: 1.5px solid var(--border-strong);
  overflow: hidden;
}
.fleet-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.fleet-head h2 {
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}
.fleet-head h2 .accent { color: var(--accent); }
.fleet-head p {
  font-size: 15px;
  color: var(--ink-dim);
  max-width: 380px;
  margin: 0;
  line-height: 1.5;
}
.fleet-track-wrap {
  position: relative;
  margin: 0 calc(50% - 50vw);
  overflow: hidden;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.fleet-track-wrap.is-dragging {
  cursor: grabbing;
}
.fleet-slider {
  position: relative;
}
.fleet-track {
  display: flex;
  gap: 16px;
  width: max-content;
}
.fleet-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.94);
  color: var(--ink);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 14px 34px rgba(17,17,16,0.11);
  transition: border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}
.fleet-arrow:hover {
  border-color: var(--ink);
  color: var(--accent);
}
.fleet-arrow:focus-visible {
  outline: 3px solid rgba(255,106,13,0.28);
  outline-offset: 3px;
}
.fleet-arrow svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fleet-arrow--prev { left: 24px; }
.fleet-arrow--next { right: 24px; }
.fleet-card {
  flex: 0 0 auto;
  width: 360px;
  height: 240px;
  border: 1.5px solid var(--border-strong);
  position: relative;
  overflow: hidden;
}
.fleet-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}
@media (max-width: 768px) {
  .fleet-card { width: 280px; height: 190px; }
  .fleet-marquee { padding: 48px 0 56px; }
  .fleet-arrow {
    width: 44px;
    height: 44px;
  }
  .fleet-arrow svg { width: 20px; height: 20px; }
  .fleet-arrow--prev { left: 12px; }
  .fleet-arrow--next { right: 12px; }
}
/* ── CONTACTS ─────────────────────────────────────── */
.contact {
  padding: 88px 0;
  background: var(--bg-card);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 56px;
  align-items: stretch;
}

.contact-data {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-row {
  min-height: 88px;
  padding: 14px 18px;
  border: 1px solid rgba(195, 188, 178, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  box-shadow: 0 12px 32px rgba(32, 28, 22, 0.04);
}

.contact-icon {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(195, 188, 178, 0.72);
  border-radius: 8px;
  background: var(--bg-card);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.contact-icon svg,
.contact-map-action svg,
.contact-map-note svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-row-content {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.contact-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.contact-value {
  font-family: var(--display);
  font-size: 20px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
}
.contact-value--compact {
  font-family: var(--body);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
}

.contact-value:hover { color: var(--accent); }

.contact-map-wrap {
  margin-top: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.contact-map-card {
  border: 1px solid rgba(195, 188, 178, 0.84);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(32, 28, 22, 0.06);
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.contact-map {
  background: var(--bg-section);
  min-height: 500px;
  flex: 1 1 auto;
  display: block;
  color: var(--ink-dim);
  position: relative;
  overflow: hidden;
}

.contact-map iframe {
  width: 100% !important;
  height: 100% !important;
  display: block;
  border: 0;
}

.contact-map-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.95);
  border-top: 1px solid rgba(195, 188, 178, 0.72);
}

.contact-map-action {
  min-height: 58px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.contact-map-action:hover {
  transform: translateY(-1px);
}

.contact-map-action--route {
  background: var(--accent);
  border: 1px solid var(--accent);
  color: #fff;
  box-shadow: 0 12px 28px rgba(249, 110, 16, 0.22);
}

.contact-map-action--route:hover {
  background: var(--accent-dk);
  border-color: var(--accent-dk);
}

.contact-map-action--call {
  background: #fff;
  border: 1px solid rgba(161, 153, 142, 0.78);
  color: var(--ink);
}

.contact-map-action--call svg {
  color: var(--accent);
}

.contact-map-action--call:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.contact-map-note {
  display: none;
  margin-top: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(195, 188, 178, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink-mid);
  font-size: 15px;
  line-height: 1.4;
  align-items: center;
  gap: 12px;
}

.contact-map-note svg {
  width: 24px;
  height: 24px;
  color: var(--ink-dim);
  flex: 0 0 auto;
}

/* ── SOCIAL ICONS ─────────────────────────────────── */

.contact-socials {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}
.contact-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 14px 18px;
  border: 1px solid rgba(195, 188, 178, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
  flex: 1;
  justify-content: center;
}
.contact-social:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}
.contact-social svg, .contact-social img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: block;
}
.contact-intro {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.55;
  margin-top: 16px;
  margin-bottom: 28px;
  max-width: 460px;
}
.contact-intro strong { color: var(--ink); font-weight: 600; }

/* ── FOOTER ─────────────────────────────────────── */
.footer {
  padding: 0;
  background: var(--bg);
  border-top: 1.5px solid rgba(200, 196, 188, 0.72);
}

.footer-panel {
  padding: 56px 18px 0;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.08fr) minmax(240px, 0.9fr) minmax(280px, 1fr);
  gap: 52px;
  align-items: start;
}

.footer-brand,
.footer-services,
.footer-contacts {
  min-width: 0;
}

.footer-services,
.footer-contacts {
  padding-left: 42px;
  border-left: 1.5px solid rgba(200, 196, 188, 0.78);
}

.footer-logo {
  display: inline-flex;
  width: 210px;
  max-width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(17, 17, 16, 0.08);
}

.footer-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-brand-text {
  margin-top: 20px;
  max-width: 310px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
}

.footer-location {
  margin-top: 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--ink-mid);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
}

.footer-location svg,
.footer-contact-row svg,
.footer-action svg {
  flex: 0 0 auto;
  color: var(--accent);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-location svg {
  width: 24px;
  height: 24px;
  fill: var(--accent);
  stroke: none;
}

.footer-location svg circle {
  fill: #fff;
}

.footer-rating {
  margin-top: 18px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--ink-mid);
  font-size: 16px;
  line-height: 1.2;
}

.footer-yandex-logo {
  display: block;
  width: 58px;
  height: auto;
  flex: 0 0 auto;
}

.footer-rating-score {
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
}

.footer-stars {
  color: var(--accent);
  letter-spacing: 0.07em;
  font-size: 15px;
  white-space: nowrap;
}

.footer-rating-note {
  white-space: nowrap;
}

.footer-title {
  position: relative;
  margin: 0 0 36px;
  font-family: var(--display);
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--ink);
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 42px;
  height: 2px;
  background: var(--accent);
}

.footer-services a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 52px;
  border-bottom: 1px solid rgba(200, 196, 188, 0.82);
  color: var(--ink);
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  transition: color 0.18s ease, border-color 0.18s ease;
}

.footer-services a span {
  color: var(--accent);
  font-size: 32px;
  line-height: 0.8;
  transition: transform 0.18s ease;
}

.footer-services a:hover {
  color: var(--accent);
  border-color: rgba(249, 110, 16, 0.42);
}

.footer-services a:hover span {
  transform: translateX(3px);
}

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  color: var(--ink);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
}

.footer-contact-row:first-of-type {
  margin-top: 14px;
}

.footer-title + .footer-contact-row {
  margin-top: 0;
}

.footer-contact-row svg {
  width: 21px;
  height: 21px;
}

.footer-contact-row--phone {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0;
}

.footer-actions {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.footer-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 14px 20px;
  border: 1.5px solid var(--accent);
  border-radius: 6px;
  color: var(--accent);
  background: transparent;
  text-decoration: none;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.footer-action svg {
  width: 18px;
  height: 18px;
}

.footer-action--primary {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 14px 28px rgba(249, 110, 16, 0.22);
}

.footer-action:hover {
  transform: translateY(-1px);
}

.footer-action--primary:hover {
  background: var(--accent-dk);
  border-color: var(--accent-dk);
  box-shadow: 0 18px 34px rgba(249, 110, 16, 0.28);
}

.footer-action--outline:hover {
  color: #fff;
  background: var(--accent);
}

.footer-bottom {
  margin-top: 42px;
  padding: 20px 0;
  border-top: 1.5px solid rgba(200, 196, 188, 0.82);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--ink-mid);
  font-size: 14px;
  line-height: 1.4;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-bottom a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s ease;
}

.footer-bottom a:hover {
  color: var(--accent);
}

/* ── BRANDS STRIP ─────────────────────────────────────── */
.brands {
  padding: 0;
  background: var(--bg-section);
  border-bottom: 1.5px solid var(--border-strong);
  border-top: 1.5px solid var(--border-strong);
}

.brands-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0;
  align-items: center;
}

.brands-label-wrap {
  padding: 24px 28px;
  border-right: 1.5px solid var(--border-strong);
}

.brands-label {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--ink-dim);
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.brands-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.brand-item {
  border-right: 1.5px solid var(--border-strong);
  padding: 24px 20px;
  text-align: center;
  transition: background 0.15s;
}
.brand-item:last-child { border-right: none; }
.brand-item:hover { background: var(--accent-lt); }

.brand-icon {
  display: none;
}

.brand-name {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.brand-sub {
  font-size: 11px;
  color: var(--ink-dim);
  margin-top: 3px;
}

.brands-note {
  display: none;
}

/* ── STATS STRIP ─────────────────────────────────────── */
.stats {
  background: #fff;
  padding: 0;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--bg-card);
}

.stat-item {
  padding: 28px 24px;
}

.stat-num {
  font-family: var(--display);
  font-size: 44px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 12px;
  color: var(--ink-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* ── MOBILE CTA ─────────────────────────────────────── */
.mobile-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: rgba(246,244,240,0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1.5px solid rgba(176,170,160,0.5);
  padding: 10px 12px;
  gap: 8px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  opacity: 0;
  transform: translateY(110%);
  pointer-events: none;
  transition: opacity 0.24s ease, transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-cta .btn {
  flex: 1;
  padding: 14px 10px;
  font-size: 14px;
}

.phone-action-icon {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
}

.btn-call-menu,
.btn-mobile-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-call-menu .phone-action-icon,
.btn-mobile-call .phone-action-icon {
  color: #d83870;
}

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1100px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .contact-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 36px;
  }
  .footer-panel {
    padding: 46px 10px 0;
  }
  .footer-main {
    grid-template-columns: minmax(240px, 0.9fr) minmax(220px, 0.82fr) minmax(250px, 0.9fr);
    gap: 30px;
  }
  .footer-services,
  .footer-contacts {
    padding-left: 24px;
  }
  .footer-logo {
    width: 190px;
  }
  .footer-contact-row--phone {
    font-size: 21px;
  }
}

@media (max-width: 820px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
  }
  .contact-map-wrap {
    min-height: 0;
    display: block;
    margin-top: 0;
  }
  .contact-map-card {
    min-height: 0;
    display: block;
  }
  .contact-map {
    height: 380px;
    min-height: 0;
    flex: none;
  }
  .contact-map-note { display: flex; }
  .brands-inner { grid-template-columns: 1fr; }
  .brands-label-wrap { border-right: none; border-bottom: 1.5px solid var(--border-strong); }
  .brands-list { grid-template-columns: repeat(4, 1fr); }
  .footer {
    padding: 0;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-services,
  .footer-contacts {
    padding-left: 0;
    padding-top: 24px;
    border-left: 0;
    border-top: 1.5px solid rgba(200, 196, 188, 0.82);
  }
  .footer-bottom {
    margin-top: 30px;
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-bottom-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .container { padding: 0 16px; }

  .contact { padding: 56px 0 64px; }
  .contact-map { height: 340px; }
  .contact-grid { gap: 18px; }
  .contact-data { gap: 10px; margin-top: 26px; }
  .contact-row {
    min-height: 94px;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 16px;
    padding: 14px;
  }
  .contact-socials { gap: 12px; }
  .contact-social { min-height: 62px; padding: 12px 14px; }
  .contact-map-actions {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px;
  }
  .contact-map-action { min-height: 56px; }

  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-num { font-size: 34px; }

  .brands {
    padding: 48px 0 42px;
    background: #f4f1eb;
    border-top: 1px solid rgba(195, 188, 178, 0.55);
    border-bottom: 1px solid rgba(195, 188, 178, 0.55);
  }
  .brands-inner {
    display: block;
  }
  .brands-label-wrap {
    padding: 0;
    border: 0;
    margin-bottom: 26px;
  }
  .brands-label {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    color: var(--accent);
  }
  .brands-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--accent);
    flex-shrink: 0;
  }
  .brands-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .brand-item {
    min-height: 190px;
    padding: 26px 10px 22px;
    border: 1px solid rgba(195, 188, 178, 0.58);
    border-radius: 8px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.65);
  }
  .brand-item:last-child {
    border-right: 1px solid rgba(195, 188, 178, 0.58);
  }
  .brand-item:hover {
    background: #fff;
  }
  .brand-icon {
    width: 104px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 14px;
  }
  .brand-icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }
  .brand-icon svg {
    width: 76px;
    height: 48px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .brand-name {
    font-size: clamp(20px, 5.4vw, 22px);
    line-height: 1;
    letter-spacing: 0;
  }
  .brand-sub {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.25;
  }
  .brands-note {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--ink-dim);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    text-align: left;
  }
  .brands-note svg {
    width: 34px;
    height: 34px;
    color: var(--accent);
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-cta { display: flex; }
  body { padding-bottom: 25px; }

  .footer {
    padding: 0;
  }
  .footer-panel {
    max-width: 330px;
    margin: 0 auto;
    padding: 22px 0 0;
  }
  .footer-brand {
    text-align: left;
  }
  .footer-logo {
    display: flex;
    width: min(100%, 220px);
    margin: 0 auto;
  }
  .footer-brand-text {
    margin-top: 14px;
    max-width: 300px;
    font-size: 15px;
    line-height: 1.36;
  }
  .footer-location {
    margin-top: 12px;
    gap: 9px;
    font-size: 13px;
    line-height: 1.25;
    align-items: center;
  }
  .footer-location span {
    white-space: nowrap;
  }
  .footer-location svg {
    width: 19px;
    height: 19px;
  }
  .footer-rating {
    margin-top: 12px;
    flex-wrap: nowrap;
    gap: 6px;
    font-size: 13px;
  }
  .footer-yandex-logo {
    width: 58px;
  }
  .footer-rating-score {
    font-size: 15px;
  }
  .footer-stars {
    font-size: 13px;
    letter-spacing: 0.03em;
  }
  .footer-rating-note {
    flex-basis: auto;
    padding-left: 0;
    margin-top: 0;
    font-size: 13px;
  }
  .footer-services {
    padding-top: 22px;
  }
  .footer-contacts {
    border-top: 0;
    padding-top: 20px;
  }
  .footer-title {
    margin-bottom: 22px;
    font-size: 22px;
  }
  .footer-title::after {
    bottom: -11px;
    width: 34px;
  }
  .footer-services a {
    min-height: 44px;
    gap: 12px;
    font-size: 15px;
    font-weight: 400;
  }
  .footer-services a span {
    font-size: 26px;
  }
  .footer-contact-row {
    margin-top: 11px;
    gap: 11px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.25;
  }
  .footer-contact-row:first-of-type {
    margin-top: 11px;
  }
  .footer-title + .footer-contact-row {
    margin-top: 0;
  }
  .footer-contact-row svg {
    width: 19px;
    height: 19px;
  }
  .footer-contact-row--phone {
    font-family: var(--body);
    font-size: 15px;
    font-weight: 500;
  }
  .footer-actions {
    margin-top: 20px;
    gap: 10px;
  }
  .footer-action {
    min-height: 54px;
    padding: 13px 16px;
    border-radius: 7px;
    font-size: 16px;
  }
  .footer-action svg {
    width: 17px;
    height: 17px;
  }
  .footer-bottom {
    margin-top: 20px;
    padding: 10px 0 0;
    align-items: center;
    text-align: center;
    gap: 7px;
    font-size: 12px;
  }
  .footer-bottom-links {
    justify-content: center;
    gap: 5px;
  }
}
