:root {
  --ink: #0a0e17;
  --ink-soft: #3d4450;
  --muted: #6b7280;
  --bg: #e8ecf1;
  --surface: #ffffff;
  --surface-2: #f4f6f9;
  --line: rgba(10, 14, 23, 0.09);
  --line-strong: rgba(10, 14, 23, 0.14);
  --accent: #0d47a1;
  --accent-hover: #1565c0;
  --accent-glow: rgba(13, 71, 161, 0.22);
  --header-bg: rgba(10, 14, 23, 0.86);
  --radius: 8px;
  --radius-pill: 999px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm: 0 1px 2px rgba(10, 14, 23, 0.04);
  --shadow-md: 0 12px 40px rgba(10, 14, 23, 0.08);
  --font:
    "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto,
    sans-serif;
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-line {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-enter,
  .hero-enter-delay {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 10px;
  top: 10px;
  z-index: 9999;
  padding: 10px 14px;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--header-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar-row {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: #fff;
}

.brand-text {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav {
  display: inline-flex;
  gap: 8px 26px;
  flex-wrap: wrap;
  justify-content: center;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 6px 0;
  position: relative;
  transition: color 0.25s var(--ease-out);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #fff;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.topbar-actions {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.phone {
  color: #fff;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  opacity: 0.95;
  transition: opacity 0.2s ease;
}

.phone:hover {
  opacity: 1;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  transition:
    background 0.25s var(--ease-out),
    box-shadow 0.25s var(--ease-out),
    transform 0.2s var(--ease-out);
}

.cta-dark {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.cta-dark:hover,
.cta-dark:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-accent {
  background: #fff;
  color: var(--accent);
  border: none;
  box-shadow: var(--shadow-sm);
}

.cta-accent:hover,
.cta-accent:focus-visible {
  background: var(--surface-2);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  padding: clamp(48px, 8vw, 88px) 0;
  overflow: hidden;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 90% 60% at 100% 0%,
      rgba(13, 71, 161, 0.06),
      transparent 55%
    ),
    radial-gradient(
      ellipse 70% 50% at 0% 100%,
      rgba(10, 14, 23, 0.04),
      transparent 50%
    );
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
}

.hero-enter {
  animation: hero-enter 0.85s var(--ease-out) both;
}

.hero-enter-delay {
  animation-delay: 0.12s;
}

.hero-kicker {
  display: inline-block;
  margin: 0 0 12px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-kicker::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  margin-top: 10px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform-origin: left;
  animation: hero-line 0.9s var(--ease-out) 0.3s both;
}

h1 {
  margin: 0 0 18px;
  font-size: clamp(1.75rem, 3.2vw, 2.65rem);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  max-width: 22ch;
}

.hero-lead {
  margin: 0 0 22px;
  color: var(--ink-soft);
  font-size: 1.0625rem;
  max-width: 48ch;
  font-weight: 450;
}

.hero-points {
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-points li {
  position: relative;
  padding-left: 14px;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 1px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero .cta-accent {
  background: var(--accent);
  color: #fff;
}

.hero .cta-accent:hover,
.hero .cta-accent:focus-visible {
  background: var(--accent-hover);
  color: #fff;
  box-shadow: 0 8px 28px var(--accent-glow);
}

.hero-media {
  margin: 0;
  position: relative;
  isolation: isolate;
  height: 350px;
  max-height: 48vh;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

@media (min-width: 640px) {
  .hero-media {
    height: 400px;
    max-height: 52vh;
  }
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(13, 71, 161, 0.12),
    transparent 40%,
    transparent
  );
  z-index: -1;
  pointer-events: none;
  opacity: 0.9;
}

.hero-media img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition:
    transform 0.6s var(--ease-out),
    box-shadow 0.4s ease;
}

.hero-media:hover img {
  transform: scale(1.015);
  box-shadow: 0 20px 50px rgba(10, 14, 23, 0.12);
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fleet {
  background: var(--surface-2);
  padding: clamp(40px, 6vw, 64px) 0;
  border-bottom: 1px solid var(--line);
}

.section-title {
  margin: 0 0 20px;
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.vehicle-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(18px, 2vw, 24px);
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow 0.35s var(--ease-out),
    border-color 0.25s ease;
}

.vehicle-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}

.vehicle-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.vehicle-head h3 {
  margin: 0;
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.vehicle-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 22px;
}

.vehicle-main {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}

.vehicle-main-bottom {
  padding: 16px;
}

.carousel {
  position: relative;
  border-bottom: 1px solid var(--line);
}

.carousel-track {
  position: relative;
  aspect-ratio: 62 / 36;
  background: var(--surface-2);
}

.carousel-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  z-index: 0;
  transition: opacity 0.55s ease;
}

.carousel-image.is-active {
  opacity: 1;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-image {
    transition: none;
  }
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  background: rgba(10, 14, 23, 0.55);
  color: #fff;
  cursor: pointer;
  z-index: 2;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.carousel-arrow:hover {
  background: rgba(10, 14, 23, 0.75);
  transform: translateY(-50%) scale(1.05);
}

.carousel-arrow.prev {
  left: 12px;
}

.carousel-arrow.next {
  right: 12px;
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 4;
  align-items: center;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: rgba(10, 14, 23, 0.58);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: auto;
}

.dot {
  flex-shrink: 0;
  width: 28px;
  height: 4px;
  border: none;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition:
    background 0.25s ease,
    transform 0.2s ease;
}

.dot:hover {
  transform: scaleY(1.25);
  background: rgba(255, 255, 255, 0.85);
}

.dot.is-active {
  background: #fff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.vehicle-side {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
  padding: 18px;
  display: flex;
  flex-direction: column;
}

.side-title {
  margin: 0 0 12px;
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.price-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9375rem;
}

.price-list li:last-child {
  border-bottom: 0;
}

.price-list span {
  color: var(--ink-soft);
}

.price-list strong {
  white-space: nowrap;
  color: var(--ink);
  font-weight: 600;
}

.vehicle-description {
  margin: 0 0 14px;
  color: var(--ink-soft);
  font-size: 0.9375rem;
}

.vehicle-specs {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.vehicle-specs li {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 12px;
  display: grid;
  grid-template-columns: 32px 1fr;
  column-gap: 10px;
  row-gap: 2px;
  background: var(--surface-2);
  transition: border-color 0.2s ease;
}

.vehicle-specs li:hover {
  border-color: rgba(13, 71, 161, 0.25);
}

.spec-icon {
  grid-row: 1 / span 2;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
}

.spec-icon img {
  width: 22px;
  height: 22px;
  display: block;
  flex-shrink: 0;
}

.spec-name {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.spec-value {
  font-size: 0.9rem;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.2;
}

.side-cta {
  margin-top: auto;
  width: 100%;
}

.vehicle-side .cta-accent.side-cta {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px var(--accent-glow);
}

.vehicle-side .cta-accent.side-cta:hover,
.vehicle-side .cta-accent.side-cta:focus-visible {
  background: var(--accent-hover);
  color: #fff;
  box-shadow: 0 8px 24px var(--accent-glow);
  transform: translateY(-1px);
}

.about {
  background: var(--surface);
  padding: clamp(44px, 7vw, 72px) 0;
  border-bottom: 1px solid var(--line);
}

.about-head {
  text-align: left;
  max-width: 52ch;
  margin: 0 0 32px;
}

.about-head h2 {
  margin: 0 0 12px;
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.about-subtitle {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.6;
  font-size: 1rem;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.about-card {
  background: var(--surface-2);
  border-radius: var(--radius);
  padding: 18px 16px;
  text-align: left;
  border: 1px solid transparent;
  transition:
    border-color 0.3s var(--ease-out),
    background 0.3s ease,
    transform 0.35s var(--ease-out);
}

.about-card:hover {
  background: var(--surface);
  border-color: var(--line);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.about-marker {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 10px;
}

.about-card h3 {
  margin: 0 0 8px;
  font-size: 0.95rem;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.about-card p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

.about-copy {
  margin-top: 36px;
  max-width: 52rem;
}

.about-copy p {
  margin: 0 0 16px;
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: 0.98rem;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-copy-highlight {
  padding: 14px 0 14px 20px;
  border-left: 3px solid var(--accent);
  font-weight: 500;
  color: var(--ink);
  background: linear-gradient(90deg, rgba(13, 71, 161, 0.07), transparent 70%);
}

.services {
  background: var(--bg);
  padding: clamp(44px, 7vw, 72px) 0;
}

.services-head {
  max-width: 52ch;
  margin-bottom: 28px;
}

.services-kicker {
  margin: 0 0 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.services-lead {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  min-height: 200px;
  transition:
    border-color 0.3s ease,
    box-shadow 0.35s var(--ease-out),
    transform 0.35s var(--ease-out);
}

.service-card:hover {
  border-color: rgba(13, 71, 161, 0.2);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-marker {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 10px;
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.service-card p {
  margin: 0 0 14px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.5;
}

.service-card a {
  margin-top: auto;
  display: inline-block;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}

.service-card a:hover,
.service-card a:focus-visible {
  color: var(--accent-hover);
  border-bottom-color: var(--accent-hover);
}

.request {
  background: var(--surface-2);
  padding: clamp(44px, 7vw, 72px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.request-head {
  max-width: 40rem;
  margin: 0 auto 24px;
  text-align: center;
}

.request-head h2 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.request-lead {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.55;
  font-size: 0.98rem;
}

.request-form {
  max-width: 36rem;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.request-form input,
.request-form textarea {
  width: 100%;
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  padding: 14px 18px;
  font: inherit;
  font-size: 0.9375rem;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.request-form textarea {
  border-radius: var(--radius);
  resize: vertical;
  min-height: 112px;
}

.request-form input::placeholder,
.request-form textarea::placeholder {
  color: var(--muted);
}

.request-form input:focus,
.request-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.request-submit {
  border: none;
  border-radius: var(--radius-pill);
  min-height: 52px;
  padding: 0 28px;
  justify-self: center;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.28);
  transition:
    transform 0.25s var(--ease-out),
    box-shadow 0.25s ease,
    filter 0.2s ease;
}

.request-submit:hover,
.request-submit:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(37, 99, 235, 0.38);
  filter: brightness(1.05);
}

.request-status {
  margin: 2px 0 0;
  min-height: 1.25rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.contacts {
  background: linear-gradient(165deg, #0a0e17 0%, #121826 45%, #0d1119 100%);
  color: #e8eaef;
  padding: clamp(48px, 8vw, 80px) 0;
  position: relative;
  overflow: hidden;
}

.contacts::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -15%;
  width: 55%;
  height: 90%;
  background: radial-gradient(
    circle,
    rgba(13, 71, 161, 0.15) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.contacts-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: stretch;
}

.contacts-map-wrap {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.contacts-map {
  flex: 1;
  width: 100%;
  min-height: 360px;
}

.contacts-info h2 {
  margin: 0 0 14px;
  font-size: clamp(1.65rem, 2.8vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.contacts-intro {
  margin: 0 0 22px;
  max-width: 42ch;
  color: rgba(232, 234, 239, 0.72);
  line-height: 1.55;
  font-size: 0.95rem;
}

.contacts-label {
  margin: 14px 0 4px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(232, 234, 239, 0.45);
}

.contacts-link {
  display: inline-block;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition:
    color 0.2s ease,
    transform 0.25s var(--ease-out);
}

.contacts-link:hover {
  color: #93c5fd;
  transform: translateX(2px);
}

.contacts-social-label {
  margin-top: 22px;
}

.contacts-socials {
  display: flex;
  gap: 12px;
}

.contacts-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border: none;
  background: none;
  border-radius: var(--radius);
  transition:
    opacity 0.2s ease,
    transform 0.2s var(--ease-out);
}

.contacts-social-btn:hover,
.contacts-social-btn:focus-visible {
  opacity: 0.88;
  transform: scale(1.06);
}

.contacts-social-btn:focus-visible {
  outline: 2px solid rgba(147, 197, 253, 0.6);
  outline-offset: 3px;
}

.contacts-social-btn img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.contacts-social-btn.telegram img {
  width: 64px;
  height: 64px;
}

@media (max-width: 1040px) {
  .main-nav {
    display: none;
  }

  .phone {
    font-size: 0.95rem;
  }

  .about-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .topbar-row {
    flex-wrap: wrap;
    justify-content: center;
    padding: 12px 0;
    gap: 12px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .vehicle-layout {
    grid-template-columns: 1fr;
  }

  .vehicle-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .vehicle-specs {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .contacts-layout {
    grid-template-columns: 1fr;
  }

  .contacts-map-wrap {
    min-height: 280px;
  }

  .contacts-map {
    min-height: 280px;
  }

  .contacts-link {
    font-size: 1.1rem;
  }

  h1 {
    max-width: 100%;
  }
}
