:root {
  --black: #050608;
  --ink: #10131a;
  --panel: #171b24;
  --panel-soft: #f4f6f8;
  --white: #ffffff;
  --text: #e9edf2;
  --muted: #9ca4af;
  --dark-muted: #59616d;
  --line: rgba(255, 255, 255, 0.12);
  --red: #e01f2f;
  --red-dark: #9e1420;
  --blue: #1c64f2;
  --gold: #d8aa38;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.is-loading {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

.loader {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  background: var(--black);
  opacity: 0;
  visibility: hidden;
  transition: opacity 280ms ease, visibility 280ms ease;
}

.is-loading .loader {
  opacity: 1;
  visibility: visible;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-road {
  position: relative;
  width: min(280px, 70vw);
  height: 4px;
  overflow: visible;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.loader-car {
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 54px;
  height: 20px;
  border-radius: 18px 22px 8px 8px;
  background: var(--white);
  animation: drive 1.2s ease-in-out infinite;
}

.loader-car::before,
.loader-car::after {
  position: absolute;
  bottom: -6px;
  width: 12px;
  height: 12px;
  content: "";
  border-radius: 50%;
  background: var(--red);
}

.loader-car::before {
  left: 8px;
}

.loader-car::after {
  right: 8px;
}

@keyframes drive {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(210px);
  }
  100% {
    transform: translateX(0);
  }
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 14px clamp(18px, 4vw, 58px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-solid {
  border-bottom: 1px solid var(--line);
  background: rgba(5, 6, 8, 0.9);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 242px;
  gap: 12px;
}

.brand img {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(216, 170, 56, 0.45);
  border-radius: 50%;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2.2vw, 28px);
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 800;
}

.main-nav a:hover {
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--white);
}

.nav-call {
  min-height: 42px;
  border: 1px solid rgba(224, 31, 47, 0.55);
  border-radius: var(--radius);
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(224, 31, 47, 0.14);
  color: var(--white);
  font-weight: 900;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: start;
  overflow: hidden;
  padding: clamp(132px, 16vh, 178px) clamp(18px, 6vw, 88px) 80px;
}

.hero-bg,
.hero-overlay,
.hero-motion {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  object-position: 62% center;
  transform: translateY(var(--parallax, 0px)) scale(1.05);
  animation: heroTruckCruise 7s ease-in-out infinite;
  transition: transform 80ms linear;
  will-change: transform;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.9), rgba(5, 6, 8, 0.46) 48%, rgba(5, 6, 8, 0.08)),
    linear-gradient(180deg, rgba(5, 6, 8, 0.82), rgba(5, 6, 8, 0.14) 46%, rgba(5, 6, 8, 0.68));
}

.hero-motion {
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.road-line {
  position: absolute;
  right: -42vw;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.82), rgba(209, 33, 43, 0.72), transparent);
  filter: blur(0.2px);
  opacity: 0.74;
  transform: skewX(-18deg);
  animation: roadRush 2.8s linear infinite;
}

.line-one {
  bottom: 18%;
  width: 42vw;
}

.line-two {
  bottom: 13%;
  width: 58vw;
  animation-delay: -0.8s;
  opacity: 0.52;
}

.line-three {
  bottom: 8%;
  width: 34vw;
  animation-delay: -1.7s;
  opacity: 0.42;
}

.truck-shadow {
  position: absolute;
  right: 8%;
  bottom: 9%;
  width: min(460px, 46vw);
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.52), transparent 68%);
  animation: shadowPulse 2.6s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 960px;
}

.home-main {
  min-height: calc(100vh - 92px);
}

.home-hero {
  min-height: calc(100vh - 92px);
  align-items: center;
}

.home-hero-content {
  width: min(820px, 100%);
}

.home-service-text {
  width: min(720px, 100%);
  margin: 0 0 28px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.65;
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.home-actions .button {
  min-height: 62px;
  padding-inline: 24px;
  font-size: 16px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 150px 7vw 70px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(5, 6, 8, 0.92), rgba(16, 18, 23, 0.74)),
    url("assets-web/iveco-abschleppwagen.jpg") center / cover;
}

.page-hero-inner {
  width: min(880px, 100%);
}

.page-hero h1 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: clamp(38px, 7vw, 76px);
  line-height: 0.96;
}

.page-hero p {
  width: min(720px, 100%);
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.65;
}

.page-actions {
  margin-top: 28px;
}

.stacked-actions {
  flex-wrap: wrap;
  margin-top: 26px;
}

.request-section {
  background: var(--white);
}

.request-panel {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: clamp(22px, 4vw, 40px);
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

@keyframes heroTruckCruise {
  0%,
  100% {
    transform: translateY(var(--parallax, 0px)) translateX(0) scale(1.055);
  }

  50% {
    transform: translateY(calc(var(--parallax, 0px) - 5px)) translateX(-24px) scale(1.075);
  }
}

@keyframes roadRush {
  from {
    transform: translateX(0) skewX(-18deg);
  }

  to {
    transform: translateX(-160vw) skewX(-18deg);
  }
}

@keyframes shadowPulse {
  50% {
    opacity: 0.72;
    transform: translateX(-10px) scaleX(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg,
  .road-line,
  .truck-shadow {
    animation: none;
  }
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  max-width: 980px;
  font-size: clamp(42px, 7vw, 94px);
  line-height: 0.95;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4.2vw, 58px);
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.12;
}

.hero-subline {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.45;
}

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

.tow-request-details {
  margin-top: 22px;
}

.tow-request-details summary {
  width: fit-content;
  list-style: none;
  cursor: pointer;
}

.tow-request-details summary::-webkit-details-marker {
  display: none;
}

.tow-request-details[open] summary {
  margin-bottom: 16px;
}

.tow-request-form {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: clamp(18px, 3vw, 26px);
  background: rgba(12, 15, 21, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.tow-request-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.tow-request-form input,
.tow-request-form select,
.tow-request-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
}

.tow-request-form textarea {
  resize: vertical;
}

.tow-request-form .full {
  grid-column: 1 / -1;
}

.tow-location-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.mini-button {
  border: 0;
  border-radius: 8px;
  padding: 0 14px;
  color: var(--white);
  background: var(--red);
  font-weight: 900;
  cursor: pointer;
}

.tow-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tow-form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 0 22px;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  box-shadow: 0 18px 38px rgba(224, 31, 47, 0.26);
}

.button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.button.small {
  min-height: 40px;
  width: 100%;
  background: var(--ink);
  color: var(--white);
}

.pulse::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: translateX(-120%);
  animation: shine 2.8s ease-in-out infinite;
}

@keyframes shine {
  60%,
  100% {
    transform: translateX(120%);
  }
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
  background: var(--ink);
}

.stats div {
  padding: 26px clamp(18px, 5vw, 60px);
  border-right: 1px solid var(--line);
}

.stats div:last-child {
  border-right: 0;
}

.stats strong,
.stats span {
  display: block;
}

.stats strong {
  font-size: 28px;
}

.stats span {
  color: var(--muted);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  padding: 24px clamp(18px, 3vw, 34px);
  background: #0c0f15;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 6px;
  color: var(--white);
  font-size: 18px;
}

.trust-strip span {
  color: var(--muted);
  font-size: 14px;
}

.trust-button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  border-radius: 8px;
  padding: 0 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(224, 31, 47, 0.24);
}

.section {
  width: min(1200px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(70px, 9vw, 120px) 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head p {
  color: var(--muted);
  font-size: 18px;
}

.market-link {
  margin-top: 8px;
}

.vehicle-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.vehicle-filter button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.vehicle-filter button:hover,
.vehicle-filter button.is-active {
  border-color: rgba(224, 31, 47, 0.58);
  background: var(--red);
}

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.featured-car {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.54fr);
  gap: clamp(22px, 5vw, 56px);
  align-items: center;
  margin-bottom: 28px;
  border: 1px solid rgba(224, 31, 47, 0.28);
  border-radius: var(--radius);
  padding: clamp(18px, 3vw, 28px);
  background:
    linear-gradient(135deg, rgba(224, 31, 47, 0.12), transparent 34%),
    var(--panel);
  box-shadow: var(--shadow);
}

.featured-main {
  width: 100%;
  aspect-ratio: 1.55;
  border-radius: var(--radius);
  object-fit: cover;
}

.featured-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 8px;
}

.featured-thumbs img {
  width: 100%;
  aspect-ratio: 1.35;
  border-radius: var(--radius);
  object-fit: cover;
  opacity: 0.86;
  transition: opacity 180ms ease, transform 180ms ease;
}

.featured-thumbs img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.featured-copy p {
  color: var(--muted);
  font-size: 18px;
}

.featured-copy h3 {
  font-size: clamp(30px, 3.8vw, 54px);
}

.price-tag {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  margin: 4px 0 18px;
  border-radius: var(--radius);
  padding: 0 18px;
  background: var(--red);
  color: var(--white);
  font-size: 26px;
  font-weight: 900;
}

.spec-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.spec-grid div {
  display: grid;
  gap: 2px;
  justify-content: stretch;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
}

.spec-grid dd {
  text-align: left;
}

.feature-list {
  display: grid;
  gap: 8px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 24px;
  color: var(--white);
  font-weight: 800;
}

.feature-list li::before {
  position: absolute;
  left: 0;
  content: "";
  width: 9px;
  height: 9px;
  top: 8px;
  border-radius: 50%;
  background: var(--red);
}

.vehicle-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.vehicle-card:hover {
  transform: translateY(-8px);
  border-color: rgba(224, 31, 47, 0.58);
  box-shadow: var(--shadow);
}

.vehicle-card[hidden] {
  display: none;
}

.vehicle-card img {
  width: 100%;
  aspect-ratio: 1.05;
  object-fit: cover;
}

.vehicle-body {
  padding: 18px;
}

.vehicle-body button {
  margin-top: auto;
}

.vehicle-title {
  min-height: 82px;
}

.vehicle-title strong {
  color: var(--red);
  font-size: 22px;
}

dl {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
}

dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}

dt,
dd {
  margin: 0;
}

dd {
  color: var(--white);
  font-weight: 800;
  text-align: right;
}

.tow-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  padding: clamp(74px, 10vw, 126px) clamp(18px, 6vw, 88px);
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.9), rgba(5, 6, 8, 0.55)),
    url("assets-web/transport-banner.jpg") center / cover fixed;
}

.tow-copy p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
}

.tow-visual {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 28px;
  background: rgba(23, 27, 36, 0.84);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.tow-truck {
  position: relative;
  height: 104px;
  margin-bottom: 24px;
  animation: towFloat 2.6s ease-in-out infinite;
}

.cab,
.bed,
.hook,
.wheel {
  position: absolute;
  display: block;
}

.cab {
  right: 42px;
  bottom: 28px;
  width: 92px;
  height: 58px;
  border-radius: 8px 18px 8px 8px;
  background: var(--red);
}

.bed {
  left: 22px;
  bottom: 28px;
  width: 188px;
  height: 18px;
  transform: rotate(-8deg);
  border-radius: 8px;
  background: var(--white);
}

.hook {
  left: 18px;
  bottom: 48px;
  width: 38px;
  height: 46px;
  border-left: 4px solid var(--red);
  border-bottom: 4px solid var(--red);
  animation: hookSwing 1.7s ease-in-out infinite;
  transform-origin: top;
}

.wheel {
  bottom: 14px;
  width: 30px;
  height: 30px;
  border: 7px solid var(--white);
  border-radius: 50%;
  background: var(--ink);
}

.wheel.one {
  right: 105px;
}

.wheel.two {
  right: 35px;
}

@keyframes towFloat {
  50% {
    transform: translateX(10px);
  }
}

@keyframes hookSwing {
  50% {
    transform: rotate(10deg);
  }
}

.tow-visual ul,
.trust-row {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tow-visual li {
  padding-left: 24px;
  position: relative;
  font-weight: 800;
}

.tow-visual li::before {
  position: absolute;
  left: 0;
  content: "";
  width: 9px;
  height: 9px;
  top: 8px;
  border-radius: 50%;
  background: var(--red);
}

.services {
  color: var(--ink);
  background: var(--panel-soft);
  width: 100%;
  padding-inline: clamp(18px, 6vw, 88px);
}

.services .section-head,
.services .service-grid {
  width: min(1200px, 100%);
  margin-inline: auto;
}

.services .section-head p {
  color: var(--dark-muted);
}

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

.service-card {
  min-height: 154px;
  border: 1px solid #dde3ea;
  border-radius: var(--radius);
  padding: 24px;
  background: var(--white);
  box-shadow: 0 16px 38px rgba(16, 19, 26, 0.08);
  transition: transform 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(224, 31, 47, 0.45);
}

.service-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 20px;
  font-weight: 900;
}

.service-card p {
  margin-bottom: 0;
  color: var(--dark-muted);
}

.about {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 0.92fr);
  gap: clamp(28px, 7vw, 100px);
  align-items: center;
  padding: clamp(74px, 10vw, 126px) clamp(18px, 6vw, 88px);
}

.about-image img {
  width: min(360px, 100%);
  border: 1px solid rgba(216, 170, 56, 0.42);
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.about-copy p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.trust-row {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
}

.trust-row span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  font-weight: 900;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 7vw, 96px);
  padding: clamp(74px, 10vw, 126px) clamp(18px, 6vw, 88px);
  background: var(--ink);
}

.car-modal {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.car-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.car-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(8px);
}

.car-modal-panel {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  max-height: min(860px, calc(100vh - 36px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
  gap: clamp(18px, 4vw, 36px);
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(18px, 3vw, 28px);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(5, 6, 8, 0.72);
  color: var(--white);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.modal-main-image {
  width: 100%;
  aspect-ratio: 1.45;
  border-radius: var(--radius);
  object-fit: cover;
  background: var(--ink);
}

.modal-gallery {
  position: relative;
}

.gallery-arrow {
  position: absolute;
  z-index: 2;
  top: min(42%, 300px);
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(5, 6, 8, 0.72);
  color: var(--white);
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
}

.gallery-arrow.prev {
  left: 10px;
}

.gallery-arrow.next {
  right: 10px;
}

.modal-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 8px;
}

.modal-thumbs button {
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 0;
  background: transparent;
  cursor: pointer;
  opacity: 0.68;
  transition: opacity 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.modal-thumbs button:hover,
.modal-thumbs button.is-active {
  opacity: 1;
  border-color: var(--red);
  transform: translateY(-2px);
}

.modal-thumbs img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
}

.modal-copy {
  padding-right: 20px;
}

.modal-copy p {
  color: var(--muted);
  font-size: 18px;
}

.modal-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.contact-copy > p {
  color: var(--muted);
}

.hours {
  display: grid;
  gap: 6px;
  margin: 24px 0;
  color: var(--muted);
}

.hours strong {
  color: var(--white);
}

.map-box {
  overflow: hidden;
  height: 280px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.25) contrast(1.05);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(224, 31, 47, 0.42);
  outline-offset: 2px;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.44);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 6vw, 88px);
  border-top: 1px solid var(--line);
  background: var(--black);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  object-fit: cover;
}

.footer strong,
.footer span,
.footer a {
  display: block;
}

.footer span {
  color: var(--muted);
}

.footer-links {
  text-align: right;
  font-weight: 900;
}

.whatsapp-float {
  position: fixed;
  z-index: 80;
  right: 18px;
  bottom: 18px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 18px;
  background: #25d366;
  color: #07120b;
  box-shadow: 0 18px 38px rgba(37, 211, 102, 0.32);
  font-weight: 1000;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 46px rgba(37, 211, 102, 0.42);
}

.legal-header {
  position: sticky;
}

.legal-page {
  min-height: 100vh;
  padding-top: 92px;
  background:
    linear-gradient(135deg, rgba(224, 31, 47, 0.12), transparent 36%),
    var(--black);
}

.legal-hero {
  width: min(1200px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 96px) 0 32px;
}

.legal-hero h1 {
  max-width: 900px;
}

.legal-hero p {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
}

.legal-content {
  width: min(1200px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding-bottom: clamp(70px, 9vw, 120px);
}

.legal-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 28px);
  background: var(--panel);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.legal-card.wide {
  grid-column: span 2;
}

.legal-card h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(24px, 2.8vw, 36px);
}

.legal-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.legal-card a {
  color: var(--white);
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

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

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 8px);
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(5, 6, 8, 0.96);
    box-shadow: var(--shadow);
  }

  .nav-open .main-nav {
    display: grid;
  }

  .main-nav a {
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

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

  .featured-car {
    grid-template-columns: 1fr;
  }

  .tow-section,
  .about,
  .contact-section,
  .car-modal-panel {
    grid-template-columns: 1fr;
  }

  .tow-request-form {
    grid-template-columns: 1fr;
  }

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

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .legal-content {
    grid-template-columns: 1fr;
  }

  .legal-card.wide {
    grid-column: auto;
  }

}

@media (max-width: 680px) {
  .site-header {
    gap: 10px;
    padding: 10px 14px;
  }

  .brand {
    min-width: 0;
    gap: 9px;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand strong {
    font-size: 15px;
    line-height: 1.08;
  }

  .brand small,
  .nav-call {
    display: none;
  }

  .hero {
    min-height: 80vh;
    padding: 96px 18px 44px;
  }

  .hero-bg {
    object-position: 62% center;
  }

  .hero-actions,
  .tow-actions,
  .button {
    width: 100%;
  }

  .tow-location-row,
  .tow-form-actions {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .mini-button {
    min-height: 44px;
  }

  .stats,
  .trust-strip,
  .vehicle-grid,
  .service-grid,
  .trust-row {
    grid-template-columns: 1fr;
  }

  .stats div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stats div:last-child {
    border-bottom: 0;
  }

  .tow-section {
    background-attachment: scroll;
  }

  .footer {
    display: grid;
  }

  .footer-links {
    text-align: left;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    width: 52px;
    min-height: 52px;
    padding: 0;
    font-size: 0;
  }

  .whatsapp-float::before {
    content: "WA";
    font-size: 14px;
    font-weight: 1000;
  }

  .car-modal {
    padding: 10px;
  }

  .car-modal-panel {
    max-height: calc(100vh - 20px);
    padding: 14px;
  }

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

  .modal-copy {
    padding-right: 0;
  }
}
