:root {
  --navy-950: #171717;
  --navy-900: #222222;
  --navy-800: #2e2e2e;
  --navy-700: #9a7100;
  --blue-100: #fff0b0;
  --blue-50: #fffaf0;
  --yellow: #f6c945;
  --yellow-dark: #c99500;
  --green: #1fa463;
  --ink: #202020;
  --muted: #66635c;
  --white: #ffffff;
  --line: #eadfbd;
  --shadow-sm: 0 10px 30px rgba(35, 29, 13, 0.08);
  --shadow-md: 0 22px 55px rgba(35, 29, 13, 0.14);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1360px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}

body {
  min-width: 320px;
  overflow-x: clip;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

ul,
ol {
  list-style: none;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--navy-950);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.info-strip {
  position: relative;
  z-index: 20;
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.86rem;
}

.info-strip__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
  flex-wrap: wrap;
}

.info-strip a,
.info-strip span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.info-strip a:hover {
  color: var(--yellow);
}

.info-strip svg {
  width: 15px;
  height: 15px;
  fill: var(--yellow);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(220, 229, 240, 0.8);
  box-shadow: 0 8px 30px rgba(35, 29, 13, 0.05);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand img {
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  background: #171717;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(35, 29, 13, 0.14);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand__text strong {
  color: var(--navy-950);
  font-size: 1.13rem;
  letter-spacing: -0.02em;
}

.brand__text span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.75rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav > a {
  position: relative;
  color: #35322b;
  font-size: 0.94rem;
  font-weight: 700;
}

.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--yellow-dark);
  transition: transform 0.2s ease;
}

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

.nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink) !important;
  box-shadow: 0 10px 22px rgba(201, 149, 0, 0.22);
}

.nav-cta:hover {
  background: #ffda63;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
  place-items: center;
  align-content: center;
  gap: 5px;
}

.menu-toggle > span:not(.sr-only) {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--navy-950);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(2) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(3) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(4) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 82px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 88% 16%, rgba(246, 201, 69, 0.34), transparent 30%),
    linear-gradient(132deg, #ffffff 0%, #fffaf0 62%, #fff0b0 145%);
  color: var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image: linear-gradient(rgba(201, 149, 0, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(201, 149, 0, 0.12) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to right, #000, transparent 66%);
}

.hero__decor {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201, 149, 0, 0.22);
  pointer-events: none;
}

.hero__decor--one {
  width: 420px;
  height: 420px;
  top: -210px;
  right: 8%;
}

.hero__decor--two {
  width: 260px;
  height: 260px;
  right: -90px;
  bottom: -120px;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  gap: 62px;
  align-items: center;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--navy-700);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--yellow);
}

.hero h1,
.section h2,
.contact-section h2 {
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 780px;
}

.hero .eyebrow--light {
  color: #8a6500;
}

.hero__lead {
  max-width: 690px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

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

.button:focus-visible,
.main-nav a:focus-visible,
.menu-toggle:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(246, 201, 69, 0.6);
  outline-offset: 3px;
}

.button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.button--accent {
  background: var(--yellow);
  color: var(--navy-950);
  box-shadow: 0 14px 28px rgba(246, 201, 69, 0.24);
}

.button--accent:hover {
  background: #ffda63;
  box-shadow: 0 18px 34px rgba(246, 201, 69, 0.32);
}

.button--whatsapp {
  background: var(--green);
  color: var(--white);
}

.button--whatsapp:hover {
  background: #188651;
}

.button--ghost {
  border: 1px solid rgba(201, 149, 0, 0.45);
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
}

.button--ghost:hover {
  background: var(--white);
  box-shadow: 0 12px 26px rgba(35, 29, 13, 0.1);
}

.button--primary {
  background: var(--navy-800);
  color: var(--white);
}

.button--primary:hover {
  background: var(--navy-950);
}

.button--full {
  width: 100%;
}

.hero__checks {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 28px;
  color: #4f4b42;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero__checks li {
  position: relative;
  padding-left: 20px;
}

.hero__checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-weight: 900;
}

.hero-slider {
  position: relative;
  min-height: 505px;
  overflow: hidden;
  border: 7px solid var(--white);
  border-radius: var(--radius-lg);
  background: #171717;
  box-shadow: 0 30px 70px rgba(35, 29, 13, 0.2);
}

.hero-slider__status {
  position: absolute;
  z-index: 5;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(23, 23, 23, 0.76);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.75s ease, visibility 0.75s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.82) 0%, rgba(10, 10, 10, 0.08) 54%, transparent 75%);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide figcaption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 74px;
  left: 24px;
  color: var(--white);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 850;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.hero-slider__controls {
  position: absolute;
  z-index: 6;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.slider-arrow {
  width: 42px;
  height: 42px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(23, 23, 23, 0.72);
  color: var(--white);
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
  backdrop-filter: blur(8px);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.slider-arrow:hover,
.slider-arrow:focus-visible {
  background: var(--yellow);
  color: var(--ink);
  transform: scale(1.04);
}

.slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.slider-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  cursor: pointer;
  transition: width 0.2s ease, background-color 0.2s ease;
}

.slider-dots button.is-active {
  width: 28px;
  background: var(--yellow);
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 20px 20px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.28);
}

.hero-card::before {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  top: -100px;
  right: -70px;
  border-radius: 50%;
  background: rgba(246, 201, 69, 0.35);
}

.hero-card__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 4px 0;
  color: var(--navy-900);
  font-weight: 800;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(31, 164, 99, 0.12);
}

.vehicle-illustration {
  width: 100%;
  margin: 6px 0 2px;
}

.mini-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.mini-steps li {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border-radius: 12px;
  background: var(--blue-50);
}

.mini-steps > li > span {
  width: 26px;
  height: 26px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--navy-800);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 800;
}

.mini-steps div {
  min-width: 0;
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.mini-steps strong {
  font-size: 0.76rem;
}

.mini-steps small {
  overflow: hidden;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.65rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.trust-strip {
  position: relative;
  z-index: 5;
  margin-top: -1px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.trust-strip__grid {
  min-height: 102px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.trust-strip__grid > div {
  min-height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 28px;
  border-right: 1px solid var(--line);
}

.trust-strip__grid > div:first-child {
  padding-left: 0;
}

.trust-strip__grid > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.trust-strip strong {
  color: var(--navy-900);
  font-size: 0.98rem;
}

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

.section {
  padding: 104px 0;
}

.section--soft {
  background: var(--blue-50);
}

.section--dark {
  position: relative;
  overflow: hidden;
  background: var(--navy-950);
  color: var(--white);
}

.section--dark::after {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  right: -210px;
  bottom: -250px;
  border-radius: 50%;
  border: 80px solid rgba(246, 201, 69, 0.07);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 48px;
}

.section-heading h2,
.content-panel h2,
.vehicle-copy h2,
.cost-box h2,
.faq-intro h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-heading > p,
.section-heading--light > p {
  max-width: 520px;
  color: var(--muted);
  font-size: 1.02rem;
}

.section-heading--light > p {
  color: rgba(255, 255, 255, 0.68);
}

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

.service-card {
  min-height: 295px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 14px 38px rgba(35, 29, 13, 0.055);
  transition: transform 0.23s ease, box-shadow 0.23s ease, border-color 0.23s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: #dfd1a6;
  box-shadow: var(--shadow-md);
}

.service-card--featured {
  border-color: var(--navy-800);
  background: var(--navy-800);
  color: var(--white);
}

.service-icon {
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 14px;
  background: var(--blue-100);
  color: var(--navy-800);
  font-size: 1.18rem;
  font-weight: 900;
}

.service-card--featured .service-icon {
  background: var(--yellow);
  color: var(--navy-950);
}

.service-card h3 {
  font-size: 1.14rem;
  line-height: 1.25;
}

.service-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.93rem;
}

.service-card--featured p {
  color: rgba(255, 255, 255, 0.75);
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 20px;
  color: var(--navy-700);
  font-size: 0.88rem;
  font-weight: 800;
}

.service-card--featured a {
  color: var(--yellow);
}

.service-card a span,
.text-link span {
  transition: transform 0.2s ease;
}

.service-card a:hover span,
.text-link:hover span {
  transform: translateX(4px);
}

.split-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: stretch;
}

.visual-panel {
  position: relative;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 38px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, rgba(201, 149, 0, 0.14), transparent 45%),
    var(--navy-950);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.visual-panel::before,
.visual-panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.visual-panel::before {
  width: 300px;
  height: 300px;
  top: -120px;
  right: -90px;
  border: 55px solid rgba(246, 201, 69, 0.13);
}

.visual-panel::after {
  width: 230px;
  height: 230px;
  left: -115px;
  bottom: 80px;
  background: rgba(47, 99, 162, 0.18);
}

.visual-panel__badge { display: none; }

.visual-panel blockquote {
  position: relative;
  z-index: 1;
  max-width: 410px;
  margin-top: 175px;
  font-size: clamp(1.35rem, 2.25vw, 2rem);
  font-weight: 750;
  line-height: 1.22;
  letter-spacing: -0.035em;
}

.visual-panel__contact {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.visual-panel__contact span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
}

.visual-panel__contact a {
  color: var(--yellow);
  font-weight: 850;
}

.content-panel {
  align-self: center;
}

.content-panel .lead-copy {
  margin-top: 24px;
  color: var(--navy-700);
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1.55;
}

.content-panel > p:not(.eyebrow):not(.lead-copy) {
  margin-top: 18px;
  color: var(--muted);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.value-grid > div {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--white);
}

.value-grid span {
  color: var(--yellow-dark);
  font-size: 0.75rem;
  font-weight: 900;
}

.value-grid strong {
  margin-top: 8px;
  font-size: 1.04rem;
}

.value-grid small {
  margin-top: 4px;
  color: var(--muted);
}

.vehicle-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.vehicle-copy > p:not(.eyebrow) {
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.02rem;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 30px 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #4a463c;
  font-weight: 650;
}

.feature-list span {
  width: 27px;
  height: 27px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: rgba(246, 201, 69, 0.24);
  color: #8a6500;
  font-size: 0.78rem;
  font-weight: 900;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--navy-800);
  font-weight: 850;
}

.vehicle-showcase {
  overflow: hidden;
  padding: 12px;
  border-radius: var(--radius-lg);
  background: var(--blue-50);
  box-shadow: var(--shadow-md);
}

.vehicle-showcase__header,
.vehicle-showcase__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.vehicle-showcase__header {
  padding: 6px 8px 0;
}

.vehicle-showcase__header span {
  color: var(--navy-900);
  font-weight: 850;
}

.vehicle-showcase__header small {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  font-weight: 700;
}

.vehicle-showcase img {
  width: 100%;
  margin: 18px 0 6px;
}

.vehicle-showcase__footer {
  padding: 18px;
  border-radius: 18px;
  background: var(--white);
}

.vehicle-showcase__footer > div {
  display: flex;
  flex-direction: column;
}

.vehicle-showcase__footer strong {
  color: var(--navy-900);
}

.vehicle-showcase__footer span {
  color: var(--muted);
  font-size: 0.8rem;
}

.vehicle-showcase__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin: 10px 0 0;
  border-radius: 22px;
  background: #ece7d8;
}

.vehicle-showcase__media img {
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
}

.vehicle-showcase__media span,
.fleet-card__image span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(23, 23, 23, 0.78);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 750;
  backdrop-filter: blur(8px);
}

.fleet-overview {
  margin-top: 34px;
}

.fleet-overview__heading {
  margin-bottom: 28px;
}

.fleet-overview__heading h3 {
  font-size: clamp(1.65rem, 2.4vw, 2rem);
  color: var(--navy-900);
}

.fleet-overview__heading p {
  max-width: 760px;
}

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

.fleet-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.fleet-card--highlight {
  border-color: rgba(201, 149, 0, 0.16);
  background: linear-gradient(180deg, rgba(240, 246, 255, 0.92) 0%, rgba(255, 255, 255, 1) 100%);
}

.fleet-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  background: #ece7d8;
}

.fleet-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.fleet-card:hover .fleet-card__image img {
  transform: scale(1.035);
}

.fleet-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.fleet-card__top h4 {
  margin: 0;
  color: var(--navy-900);
  font-size: 1.2rem;
}

.fleet-card__top span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--blue-50);
  color: var(--navy-800);
  font-size: 0.84rem;
  font-weight: 800;
  white-space: nowrap;
}

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

.fleet-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fleet-tags li {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(201, 149, 0, 0.1);
  color: var(--navy-800);
  font-size: 0.84rem;
  font-weight: 750;
}

.steps-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.steps-grid li {
  min-height: 280px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
}

.step-number {
  display: block;
  margin-bottom: 55px;
  color: var(--yellow);
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.steps-grid h3 {
  font-size: 1.25rem;
}

.steps-grid p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.64);
}

.cost-box {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.cost-box__icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: var(--yellow);
  color: var(--navy-950);
  font-size: 1.8rem;
  font-weight: 900;
}

.cost-box h2 {
  font-size: clamp(1.65rem, 3vw, 2.45rem);
}

.cost-box p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 12px;
  color: var(--muted);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 82px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 135px;
}

.faq-intro > p:not(.eyebrow) {
  margin: 20px 0 24px;
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 52px 24px 0;
  cursor: pointer;
  color: var(--navy-900);
  font-size: 1.05rem;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 4px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--navy-800);
  font-size: 1.25rem;
  transition: transform 0.2s ease;
}

.faq-list details[open] summary::after {
  content: "−";
  transform: translateY(-50%) rotate(180deg);
}

.faq-list details p {
  max-width: 780px;
  padding: 0 54px 24px 0;
  color: var(--muted);
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 104px 0;
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: var(--white);
}

.contact-section::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  top: -300px;
  left: -250px;
  border-radius: 50%;
  border: 90px solid rgba(246, 201, 69, 0.07);
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}

.contact-copy h2 {
  font-size: clamp(2.2rem, 4vw, 3.7rem);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 500px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.04rem;
}

.direct-contact {
  display: grid;
  gap: 14px;
  margin-top: 36px;
}

.direct-contact a {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.direct-contact a:hover {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.1);
}

.direct-contact__icon {
  width: 42px;
  height: 42px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  background: var(--yellow);
  color: var(--navy-950);
  font-weight: 900;
}

.direct-contact a > span:last-child {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.direct-contact small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
}

.direct-contact strong {
  overflow-wrap: anywhere;
  font-size: 0.92rem;
}

.form-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.27);
}

.form-card__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.form-card__heading span {
  color: var(--navy-900);
  font-size: 1.25rem;
  font-weight: 850;
}

.form-card__heading small {
  padding: 6px 10px;
  border-radius: 999px;
  background: #e8f7ef;
  color: #147847;
  font-weight: 800;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 14px;
}

.field label {
  color: #3f3b33;
  font-size: 0.82rem;
  font-weight: 800;
}

.field label span {
  color: var(--muted);
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #e5d9b6;
  border-radius: 11px;
  background: #fffdf7;
  color: var(--ink);
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.field input,
.field select {
  min-height: 48px;
  padding: 10px 12px;
}

.field textarea {
  min-height: 108px;
  resize: vertical;
  padding: 12px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--navy-700);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(201, 149, 0, 0.1);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #b42318;
  box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.08);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 3px 0 15px;
  color: var(--muted);
  font-size: 0.78rem;
  cursor: pointer;
}

.consent input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 2px;
  accent-color: var(--navy-800);
}

.form-status {
  min-height: 20px;
  margin-bottom: 8px;
  color: #b42318;
  font-size: 0.82rem;
  font-weight: 700;
}

.form-note {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.75rem;
  text-align: center;
}

.site-footer {
  padding: 68px 0 26px;
  background: #111111;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 0.65fr);
  gap: 50px;
}

.brand--footer .brand__text strong {
  color: var(--white);
}

.brand--footer .brand__text span {
  color: rgba(255, 255, 255, 0.55);
}

.footer-brand p {
  max-width: 290px;
  margin-top: 18px;
  font-size: 0.9rem;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-grid h2 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 0.9rem;
}

.footer-grid a,
.footer-grid span {
  font-size: 0.84rem;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
}

.footer-bottom a:hover {
  color: var(--yellow);
}

.mobile-actions {
  display: none;
}

.legal-page {
  min-height: 100vh;
  background: var(--blue-50);
}

.legal-header {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.legal-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.legal-back {
  color: var(--navy-800);
  font-weight: 800;
}

.legal-main {
  padding: 72px 0;
}

.legal-card {
  max-width: 850px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.legal-card h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.1;
}

.legal-card h2 {
  margin-top: 32px;
  font-size: 1.28rem;
}

.legal-card p,
.legal-card ul {
  margin-top: 12px;
  color: var(--muted);
}

.legal-card ul {
  padding-left: 20px;
  list-style: disc;
}

.legal-warning {
  margin-bottom: 28px;
  padding: 16px 18px;
  border: 1px solid #ecd179;
  border-radius: 12px;
  background: #fff8dd;
  color: #725700;
  font-weight: 700;
}

.placeholder {
  padding: 1px 5px;
  border-radius: 4px;
  background: #fff0f0;
  color: #9d1c16;
  font-weight: 700;
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 19px;
  }

  .hero__grid,
  .split-layout,
  .vehicle-section,
  .contact-grid {
    gap: 42px;
  }

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

  .fleet-grid {
    gap: 18px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(3, 0.7fr);
    gap: 30px;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 88px;
  }

  .info-strip__inner {
    justify-content: center;
    padding: 7px 0;
  }

  .info-strip__inner span:last-child {
    display: none;
  }

  .nav-wrap {
    min-height: 72px;
  }

  .menu-toggle {
    display: grid;
  }

  .main-nav {
    position: fixed;
    top: 110px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 20px 30px;
    transform: translateY(-12px);
    background: var(--white);
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .main-nav > a {
    padding: 17px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
  }

  .main-nav > a::after {
    display: none;
  }

  .main-nav .nav-cta {
    margin-top: 18px;
    padding: 14px 18px;
    border: 0;
    text-align: center;
  }

  .hero {
    padding-top: 72px;
  }

  .hero__grid,
  .split-layout,
  .vehicle-section,
  .contact-grid,
  .faq-layout,
  .fleet-grid {
    grid-template-columns: 1fr;
  }

  .hero__content {
    max-width: 760px;
  }

  .hero-slider,
  .hero-card {
    width: 100%;
    max-width: 660px;
  }

  .hero-slider {
    min-height: 460px;
  }

  .trust-strip__grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 18px 0;
  }

  .trust-strip__grid > div {
    min-height: 66px;
    padding: 10px 20px;
  }

  .trust-strip__grid > div:nth-child(2) {
    border-right: 0;
  }

  .trust-strip__grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .trust-strip__grid > div:nth-child(3) {
    padding-left: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .visual-panel {
    min-height: 470px;
  }

  .vehicle-showcase {
    order: -1;
  }

  .fleet-overview {
    margin-top: 22px;
  }

  .faq-intro {
    position: static;
  }

  .cost-box {
    grid-template-columns: auto 1fr;
  }

  .cost-box .button {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-grid > div:last-child {
    grid-column: 2;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .info-strip__inner {
    gap: 14px;
    font-size: 0.75rem;
  }

  .info-strip__inner span:nth-child(2) {
    display: none;
  }

  .main-nav {
    top: 110px;
  }

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

  .brand__text strong {
    font-size: 1rem;
  }

  .brand__text span {
    font-size: 0.68rem;
  }

  .hero {
    padding: 58px 0 64px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 11vw, 3.25rem);
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__actions {
    display: grid;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__checks {
    display: grid;
    gap: 9px;
  }

  .hero-slider {
    min-height: 410px;
    border-width: 5px;
    border-radius: 24px;
  }

  .hero-slider__status {
    top: 12px;
    left: 12px;
    max-width: calc(100% - 24px);
    padding: 8px 11px;
    font-size: 0.72rem;
  }

  .hero-slide figcaption {
    right: 18px;
    bottom: 66px;
    left: 18px;
  }

  .hero-slider__controls {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .slider-arrow {
    width: 38px;
    height: 38px;
  }

  .hero-card {
    padding: 15px;
    border-radius: 24px;
  }

  .mini-steps {
    grid-template-columns: 1fr;
  }

  .mini-steps small {
    white-space: normal;
  }

  .trust-strip__grid {
    grid-template-columns: 1fr;
  }

  .trust-strip__grid > div,
  .trust-strip__grid > div:first-child,
  .trust-strip__grid > div:nth-child(3) {
    min-height: auto;
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip__grid > div:last-child {
    border-bottom: 0;
  }

  .section,
  .contact-section {
    padding: 78px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .services-grid,
  .value-grid,
  .steps-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .visual-panel {
    min-height: 440px;
    padding: 28px;
  }

  .visual-panel__contact {
    align-items: flex-start;
    flex-direction: column;
  }

  .vehicle-showcase {
    padding: 14px;
  }

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

  .fleet-card {
    padding: 22px;
    border-radius: 20px;
  }

  .fleet-card__top {
    align-items: flex-start;
    flex-direction: column;
  }

  .steps-grid li {
    min-height: auto;
  }

  .step-number {
    margin-bottom: 35px;
  }

  .cost-box {
    grid-template-columns: 1fr;
    padding: 26px;
  }

  .cost-box .button {
    grid-column: auto;
    width: 100%;
  }

  .faq-list summary {
    padding-right: 46px;
  }

  .faq-list details p {
    padding-right: 0;
  }

  .form-card {
    padding: 22px;
    border-radius: 24px;
  }

  .form-card__heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-actions {
    position: fixed;
    z-index: 90;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(35, 29, 13, 0.28);
  }

  .mobile-actions a {
    display: grid;
    min-height: 50px;
    place-items: center;
    background: var(--yellow);
    color: var(--navy-950);
    font-weight: 850;
  }

  .mobile-actions a:last-child {
    background: var(--green);
    color: var(--white);
  }

  .site-footer {
    padding-bottom: 92px;
  }

  .legal-card {
    padding: 26px;
  }
}

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

/* Version 4: vollflächiger Hero-Slider und direkter Standort-Link */
.hero {
  position: relative;
  min-height: clamp(620px, 74vh, 790px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 92px 0 118px;
  border-bottom: 0;
  background: #171717;
  color: var(--white);
  isolation: isolate;
}

.hero::before {
  display: none;
}

.hero-backgrounds,
.hero-shade,
.hero .hero-slide {
  position: absolute;
  inset: 0;
}

.hero-backgrounds {
  z-index: -3;
  background: #171717;
}

.hero .hero-slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.15s ease, visibility 1.15s ease;
}

.hero .hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero .hero-slide::after {
  display: none;
}

.hero .hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
  transition: transform 6.5s ease;
}

.hero .hero-slide.is-active img {
  transform: none;
}

.hero .hero-slide:nth-child(1) img,
.hero .hero-slide:nth-child(2) img {
  object-position: center center;
}

.hero .hero-slide:nth-child(3) img,
.hero .hero-slide:nth-child(4) img {
  object-position: center 72%;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(12, 12, 12, 0.82) 0%, rgba(12, 12, 12, 0.67) 38%, rgba(12, 12, 12, 0.38) 68%, rgba(12, 12, 12, 0.34) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.22) 60%, rgba(0, 0, 0, 0.52) 100%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero__content {
  max-width: 830px;
}

.hero__badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 9px 15px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 800;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
}

.hero .status-dot {
  width: 9px;
  height: 9px;
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(246, 201, 69, 0.18);
}

.hero h1 {
  max-width: 820px;
  color: var(--white);
  font-size: clamp(3rem, 5.3vw, 5.35rem);
  line-height: 0.99;
  letter-spacing: -0.055em;
  text-wrap: balance;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.48);
}

.hero__lead {
  max-width: 710px;
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.91);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.62;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.46);
}

.hero__actions {
  margin-top: 30px;
}

.button--hero-light {
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.button--hero-light:hover {
  background: var(--white);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.25);
}

.hero .hero-slider__controls {
  position: absolute;
  z-index: 6;
  right: 50%;
  bottom: 28px;
  left: auto;
  width: auto;
  transform: translateX(50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.hero .slider-arrow {
  width: 40px;
  height: 40px;
  background: rgba(20, 20, 20, 0.5);
}

.hero .slider-dots button {
  background: rgba(255, 255, 255, 0.58);
}

.hero .slider-dots button.is-active {
  background: var(--yellow);
}

.location-cta {
  padding: 44px 0;
  background: var(--blue-50);
}

.location-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 28px 30px;
  border: 1px solid rgba(201, 149, 0, 0.25);
  border-radius: 26px;
  background: var(--yellow);
  color: var(--ink);
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.location-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 58px rgba(35, 29, 13, 0.2);
}

.location-card__icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(35, 29, 13, 0.12);
}

.location-card__icon svg {
  width: 30px;
  height: 30px;
  fill: var(--ink);
}

.location-card__copy {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.location-card__copy small {
  margin-bottom: 4px;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.location-card__copy strong {
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
}

.location-card__copy > span {
  margin-top: 5px;
  color: rgba(32, 32, 32, 0.72);
  font-size: 0.94rem;
}

.location-card__button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--white);
  font-weight: 850;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .hero {
    min-height: 690px;
    padding: 84px 0 112px;
  }

  .hero__content {
    max-width: 720px;
  }

  .hero h1 {
    max-width: 700px;
    font-size: clamp(2.8rem, 8vw, 4.5rem);
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(12, 12, 12, 0.52) 0%, rgba(12, 12, 12, 0.34) 70%, rgba(12, 12, 12, 0.18) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.20) 72%, rgba(0, 0, 0, 0.38) 100%);
  }

  .location-card {
    grid-template-columns: auto 1fr;
  }

  .location-card__button {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: 670px;
    padding: 64px 0 106px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.45rem);
    line-height: 1.02;
  }

  .hero__badge {
    margin-bottom: 17px;
    font-size: 0.76rem;
  }

  .hero__lead {
    margin-top: 20px;
    font-size: 0.98rem;
  }

  .hero__actions {
    display: grid;
    margin-top: 25px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero .hero-slider__controls {
    bottom: 20px;
  }

  .hero .slider-arrow {
    width: 38px;
    height: 38px;
  }

  .location-cta {
    padding: 28px 0;
  }

  .location-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px;
  }

  .location-card__icon {
    width: 54px;
    height: 54px;
  }

  .location-card__button {
    grid-column: auto;
    width: 100%;
  }

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

  .mobile-actions a {
    padding-inline: 5px;
    font-size: 0.84rem;
  }

  .mobile-actions a:nth-child(3) {
    background: var(--white);
    color: var(--ink);
  }
}


/* ===== Version 5 fine-tuning ===== */
.hero__inner {
  display: flex;
  justify-content: center;
}

.hero__content {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.hero__badge {
  margin-right: auto;
  margin-left: auto;
}

.hero h1,
.hero__lead {
  margin-right: auto;
  margin-left: auto;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.services-grid {
  gap: 28px;
}

.service-card {
  min-height: 330px;
  padding: 30px;
  border-radius: 28px;
}

.service-card__media {
  width: 84px;
  height: 60px;
  margin-bottom: 22px;
}

.service-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.service-card h3 {
  font-size: 1.12rem;
}

.service-card p {
  font-size: 0.98rem;
  line-height: 1.6;
}

.cost-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  align-items: center;
}

.cost-copy {
  padding: 6px 0;
}

.cost-copy h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.cost-intro {
  max-width: 760px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.04rem;
}

.cost-partner-box {
  margin-top: 26px;
  padding: 22px 24px;
  border: 1px solid rgba(201, 149, 0, 0.2);
  border-radius: 24px;
  background: rgba(246, 201, 69, 0.12);
}

.cost-partner-box strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy-900);
  font-size: 1.1rem;
}

.cost-partner-box p {
  margin: 0;
  color: var(--muted);
}

.cost-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.cost-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  font-weight: 700;
}

.cost-points li::before {
  content: "✓";
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(246, 201, 69, 0.24);
  color: #9c7800;
  font-size: 0.8rem;
  font-weight: 900;
}

.cost-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}

.cost-visual {
  display: grid;
  gap: 16px;
}

.cost-visual__main {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow-md);
}

.cost-visual__main img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.cost-visual__main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.02) 0%, rgba(10, 10, 10, 0.46) 100%);
}

.cost-visual__main span {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 800;
}

.cost-visual__aside {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.cost-mini-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.cost-mini-card img {
  width: 76px;
  height: 76px;
  border-radius: 18px;
  object-fit: cover;
}

.cost-mini-card strong {
  display: block;
  color: var(--navy-900);
}

.cost-mini-card span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.92rem;
}

.cost-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cost-chip-list span {
  padding: 11px 14px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(201, 149, 0, 0.18);
  color: var(--navy-800);
  font-size: 0.88rem;
  font-weight: 800;
}

.location-map {
  padding: 10px 0 110px;
  background: var(--blue-50);
}

.map-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.map-card iframe {
  width: 100%;
  height: 420px;
  display: block;
  border: 0;
}

.map-open-button {
  position: absolute;
  z-index: 3;
  top: 22px;
  left: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 18px;
  border-radius: 12px;
  background: var(--white);
  color: #2667d6;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
}

.map-card__info {
  padding: 24px 28px 28px;
}

.map-card__info small {
  display: inline-block;
  margin-bottom: 6px;
  color: #8c6e00;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.map-card__info h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--navy-900);
}

.map-card__info p {
  margin-top: 8px;
  color: var(--muted);
}

@media (max-width: 1080px) {
  .cost-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .hero__actions {
    justify-content: center;
  }

  .cost-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .hero__content {
    text-align: center;
  }

  .hero__actions {
    display: grid;
  }

  .service-card {
    min-height: auto;
  }

  .cost-mini-card {
    grid-template-columns: 1fr;
  }

  .map-card iframe {
    height: 360px;
  }

  .map-open-button {
    top: 14px;
    left: 14px;
  }

  .map-card__info {
    padding: 20px;
  }
}

@media (max-width: 680px) {
  .mobile-actions {
    grid-template-columns: repeat(3, 1fr);
  }

  .mobile-actions a {
    font-size: 0.82rem;
  }
}

/* ===== Code-Abschlussversion ===== */
:focus-visible {
  outline: 3px solid var(--yellow-dark);
  outline-offset: 4px;
}

.site-header {
  transition: min-height 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.985);
  box-shadow: 0 12px 34px rgba(35, 29, 13, 0.11);
}

.main-nav > a.is-current:not(.nav-cta) {
  color: var(--yellow-dark);
}

.main-nav > a.is-current:not(.nav-cta)::after {
  transform: scaleX(1);
}

.slider-pause {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(20, 20, 20, 0.5);
  color: var(--white);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
  backdrop-filter: blur(10px);
  transition: transform 0.2s ease, background 0.2s ease;
}

.slider-pause:hover {
  transform: translateY(-2px);
  background: rgba(20, 20, 20, 0.72);
}

.slider-pause[aria-pressed="true"] {
  background: var(--yellow);
  color: var(--navy-950);
}

.service-card__media {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 8px 18px rgba(35, 29, 13, 0.08);
}

.service-card__media img {
  transition: transform 0.28s ease;
}

.service-card:hover .service-card__media img {
  transform: scale(1.06);
}

.cost-partner-box strong,
.cost-points li {
  text-wrap: balance;
}

.form-card input[aria-invalid="true"],
.form-card select[aria-invalid="true"],
.form-card textarea[aria-invalid="true"] {
  border-color: #b52c23;
  box-shadow: 0 0 0 3px rgba(181, 44, 35, 0.12);
}

.reveal-item {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.55s ease var(--reveal-delay, 0ms),
    transform 0.55s ease var(--reveal-delay, 0ms);
}

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

@media (max-width: 680px) {
  .hero .hero-slider__controls {
    gap: 10px;
  }

  .slider-pause,
  .hero .slider-arrow {
    width: 38px;
    height: 38px;
  }

  .hero__badge {
    justify-content: center;
    text-align: center;
  }

  .service-card__media {
    width: 78px;
    height: 56px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-item,
  .reveal-item.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .service-card__media img,
  .site-header,
  .slider-pause {
    transition: none;
  }
}

/* ===== Finale Bildauswahl + Partnerbereich ===== */
.visual-panel--photo {
  isolation: isolate;
  background: #1d1b17;
}

.visual-panel--photo::before,
.visual-panel--photo::after {
  display: none;
}

.visual-panel__photo,
.visual-panel__shade {
  position: absolute;
  inset: 0;
}

.visual-panel__photo {
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.visual-panel__shade {
  z-index: -1;
  background: linear-gradient(180deg, rgba(16, 15, 12, 0.18) 0%, rgba(16, 15, 12, 0.38) 45%, rgba(16, 15, 12, 0.82) 100%);
}

.vehicle-showcase__media--real span {
  display: none;
}

.fleet-grid--solutions .fleet-card {
  overflow: hidden;
}

.fleet-grid--solutions .fleet-card__image {
  aspect-ratio: 4 / 3;
  margin: -26px -26px 0;
  border-radius: 24px 24px 0 0;
}

.fleet-grid--solutions .fleet-card__image--portrait img {
  object-position: center 56%;
}

.fleet-grid--solutions .fleet-card:nth-child(1) .fleet-card__image img {
  object-position: center 58%;
}

.fleet-grid--solutions .fleet-card:nth-child(2) .fleet-card__image img {
  object-position: center 48%;
}

.fleet-grid--solutions .fleet-card:nth-child(3) .fleet-card__image img {
  object-position: center 55%;
}

.fleet-card--treppensteiger {
  background: linear-gradient(180deg, #fff9e6 0%, #ffffff 72%);
}

.cost-visual__main img {
  object-position: center 48%;
}

.partner-section {
  overflow: hidden;
  padding: 90px 0 96px;
  background: #f7f8fa;
}

.partner-heading {
  max-width: 820px;
  margin: 0 auto 44px;
  text-align: center;
}

.partner-heading h2 {
  color: var(--navy-900);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.partner-heading > p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.partner-marquee {
  position: relative;
  overflow: hidden;
  padding: 10px 0 16px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
}

.partner-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 22px;
  animation: partner-scroll 28s linear infinite;
}

.partner-marquee:hover .partner-track,
.partner-marquee:focus-within .partner-track {
  animation-play-state: paused;
}

.partner-logo {
  width: 260px;
  flex: 0 0 260px;
  display: grid;
  place-items: center;
  padding: 10px;
  border: 1px solid #ece5cf;
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(35, 29, 13, 0.055);
}

.partner-logo img {
  width: 100%;
  height: 104px;
  display: block;
  object-fit: contain;
}

.partner-note {
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

@keyframes partner-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 11px)); }
}

@media (max-width: 900px) {
  .partner-section {
    padding: 74px 0 80px;
  }

  .partner-logo {
    width: 230px;
    flex-basis: 230px;
  }

  .partner-logo img {
    height: 94px;
  }
}

@media (max-width: 680px) {
  .fleet-grid--solutions .fleet-card__image {
    margin: -22px -22px 0;
  }

  .partner-heading {
    margin-bottom: 32px;
  }

  .partner-marquee {
    margin-right: -14px;
    margin-left: -14px;
  }

  .partner-logo {
    width: 205px;
    flex-basis: 205px;
    border-radius: 20px;
  }

  .partner-logo img {
    height: 86px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .partner-track {
    animation: none;
  }

  .partner-marquee {
    overflow-x: auto;
    mask-image: none;
    -webkit-mask-image: none;
  }
}


/* ===== Feinjustierung August 2026 ===== */
.hero .hero-slide img {
  transform: none;
}

.hero .hero-slide.is-active img {
  transform: none;
}

.hero .hero-slide:nth-child(1) img,
.hero .hero-slide:nth-child(2) img,
.hero .hero-slide:nth-child(3) img,
.hero .hero-slide:nth-child(4) img {
  object-position: center center;
}

.visual-panel__photo {
  object-position: right center;
}

.fleet-grid--solutions .fleet-card:nth-child(1) .fleet-card__image img {
  object-position: center 44%;
}

.fleet-grid--solutions .fleet-card:nth-child(3) .fleet-card__image img {
  object-position: center 38%;
}

.cost-visual__main span {
  display: none;
}


/* ===== Datenschutzfreundliche Google-Maps-2-Klick-Lösung ===== */
.map-consent {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 42px 28px;
  text-align: center;
  background: linear-gradient(145deg, #fffdf7 0%, #f5f1e7 100%);
}
.map-consent[hidden], .map-frame[hidden] { display: none !important; }
.map-consent__icon {
  width: 64px; height: 64px; display: grid; place-items: center;
  margin-bottom: 14px; border-radius: 20px; background: var(--yellow);
  color: var(--navy-950); font-size: 1.8rem; font-weight: 900;
}
.map-consent small { color: #8c6e00; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.map-consent h2 { max-width: 720px; margin-top: 8px; color: var(--navy-900); font-size: clamp(1.7rem, 3vw, 2.35rem); }
.map-consent > p { max-width: 760px; margin-top: 14px; color: var(--muted); }
.map-consent__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 24px; }
.map-consent__legal { max-width: 720px !important; font-size: .82rem; }
.map-consent__legal a, .consent a { text-decoration: underline; text-underline-offset: 2px; }
.map-frame iframe { width: 100%; height: 420px; display: block; border: 0; }
@media (max-width: 680px) {
  .map-consent { min-height: 420px; padding: 34px 20px; }
  .map-consent__actions { width: 100%; }
  .map-consent__actions .button { width: 100%; }
  .map-frame iframe { height: 360px; }
}

/* Ausführliche Rechtstexte */
.legal-card--wide {
  max-width: 980px;
}

.legal-lead {
  max-width: 760px;
  font-size: 1.02rem;
}

.legal-card section {
  scroll-margin-top: 24px;
}

.legal-card h2 {
  line-height: 1.3;
}

.legal-card li + li {
  margin-top: 8px;
}

.legal-card a:not(.brand):not(.legal-back) {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin: 28px 0 36px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--blue-50);
}

.legal-toc > strong {
  flex: 0 0 100%;
  margin-bottom: 4px;
  color: var(--navy-950);
}

.legal-toc a {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy-800);
  font-size: 0.84rem;
  font-weight: 750;
  text-decoration: none !important;
}

.legal-toc a:hover,
.legal-toc a:focus-visible {
  background: var(--yellow);
  color: var(--navy-950);
}

.legal-info-box {
  margin-top: 38px;
  padding: 20px 22px;
  border-left: 4px solid var(--yellow);
  border-radius: 12px;
  background: var(--blue-50);
}

.legal-info-box > strong {
  color: var(--navy-950);
  font-size: 1.05rem;
}

.legal-info-box p {
  margin-top: 6px;
}

@media (max-width: 680px) {
  .legal-toc {
    display: grid;
    grid-template-columns: 1fr;
  }

  .legal-toc > strong {
    grid-column: 1;
  }

  .legal-toc a {
    border-radius: 10px;
  }
}


/* Hero korrigiert: natürliche Bilder ohne schwarze Verzerrungen */
.hero .hero-slide img {
  object-fit: cover;
}
.hero .hero-slide:nth-child(1) img { object-position: center 46%; }
.hero .hero-slide:nth-child(2) img { object-position: center 48%; }
.hero .hero-slide:nth-child(3) img { object-position: center 58%; }


/* Echte Flotten- und Rollstuhlbilder */
.hero .hero-slide:nth-child(4) img {
  object-position: center 55%;
}

.vehicle-section.container {
  max-width: 1360px;
}

.vehicle-section {
  grid-template-columns: 0.7fr 1.3fr;
  gap: 46px;
}

.vehicle-showcase {
  padding: 10px;
}

.vehicle-showcase__header {
  padding: 6px 8px 2px;
}

.vehicle-showcase__media {
  margin-top: 8px;
}

@media (max-width: 900px) {
  .vehicle-section {
    grid-template-columns: 1fr;
  }
}

/* Inhaberbild: Zitat kleiner und weiter nach unten */
.visual-panel--photo {
  justify-content: flex-end;
}

.visual-panel--photo blockquote {
  max-width: 390px;
  margin: 0 0 18px;
  font-size: clamp(1.08rem, 1.75vw, 1.55rem);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

@media (max-width: 900px) {
  .visual-panel--photo blockquote {
    max-width: 360px;
    margin-bottom: 16px;
    font-size: clamp(1.05rem, 4.7vw, 1.4rem);
  }
}


/* ===== Hero kompakter, einheitliche Breite, weniger Zoom ===== */
.hero {
  width: min(1360px, calc(100% - 32px));
  margin: 18px auto 0;
  min-height: clamp(520px, 66vh, 700px);
  padding: 74px 0 92px;
  border-radius: 32px;
  overflow: hidden;
}

.hero__inner {
  padding-left: 24px;
  padding-right: 24px;
}

.hero__content {
  max-width: 760px;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3.2rem, 5.8vw, 5.2rem);
  line-height: 0.95;
}

.hero__lead {
  max-width: 620px;
  font-size: 1.02rem;
}

.hero .hero-slide img {
  object-fit: cover;
  object-position: center center;
}

.hero .hero-slide:nth-child(1) img { object-position: center 50%; }
.hero .hero-slide:nth-child(2) img { object-position: center 46%; }
.hero .hero-slide:nth-child(3) img { object-position: center 52%; }
.hero .hero-slide:nth-child(4) img { object-position: center 40%; }

.hero-shade {
  background:
    linear-gradient(90deg, rgba(12, 12, 12, 0.60) 0%, rgba(12, 12, 12, 0.44) 38%, rgba(12, 12, 12, 0.18) 68%, rgba(12, 12, 12, 0.10) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.16) 60%, rgba(0, 0, 0, 0.32) 100%);
}

.hero .hero-slider__controls {
  bottom: 18px;
}

@media (max-width: 1024px) {
  .hero {
    width: min(1360px, calc(100% - 24px));
    min-height: 600px;
    padding: 64px 0 86px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 7.2vw, 4.4rem);
  }
}

@media (max-width: 680px) {
  .hero {
    width: calc(100% - 16px);
    margin-top: 10px;
    min-height: 500px;
    padding: 42px 0 78px;
    border-radius: 24px;
  }

  .hero__inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.15rem, 10vw, 3.15rem);
    line-height: 1;
  }

  .hero__lead {
    max-width: 100%;
    margin-top: 16px;
    font-size: 0.96rem;
  }

  .hero__actions {
    gap: 10px;
  }

  .hero .hero-slider__controls {
    bottom: 14px;
  }

  .hero .slider-arrow,
  .hero .slider-pause {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 420px) {
  .hero {
    min-height: 470px;
    padding: 36px 0 72px;
  }

  .hero h1 {
    font-size: clamp(1.95rem, 9.8vw, 2.7rem);
  }
}


/* Rollstuhlbilder ohne künstliche Wide-Verzerrung */
.fleet-grid--solutions .fleet-card:nth-child(2) .fleet-card__image img,
.cost-visual__main img {
  object-fit: cover;
  object-position: center center;
  filter: none;
}


/* Hero wieder über die volle Browserbreite */
.hero {
  width: 100%;
  max-width: none;
  margin: 0;
  border-radius: 0;
}

@media (max-width: 1024px) {
  .hero {
    width: 100%;
    margin: 0;
    border-radius: 0;
  }
}

@media (max-width: 680px) {
  .hero {
    width: 100%;
    margin: 0;
    border-radius: 0;
    min-height: 500px;
  }
}


/* Partnerbereich bewusst reduziert */
.partner-heading--simple {
  max-width: 1100px;
  margin-bottom: 48px;
}

.partner-heading--simple h2 {
  font-size: clamp(2.8rem, 5.4vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

@media (max-width: 680px) {
  .partner-section {
    padding-top: 68px;
    padding-bottom: 74px;
  }

  .partner-heading--simple {
    margin-bottom: 34px;
  }

  .partner-heading--simple h2 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }
}


/* ===== Kostenbereich reduziert: Text links, Bild rechts ===== */
.cost-layout--simple {
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(44px, 6vw, 96px);
  align-items: center;
}

.cost-copy--simple {
  max-width: 760px;
}

.cost-copy--simple h2 {
  max-width: 680px;
  font-size: clamp(2.9rem, 4.8vw, 4.6rem);
  line-height: 1.02;
}

.cost-copy--simple .eyebrow {
  font-size: 0.92rem;
  letter-spacing: 0.24em;
}

.cost-text {
  margin-top: 26px;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.82;
}

.cost-text--copay {
  margin-top: 20px;
}

.cost-text strong {
  color: var(--ink);
}

.cost-visual--simple {
  display: block;
}

.cost-visual--simple .cost-visual__main {
  min-height: 0;
  aspect-ratio: 4 / 3;
  border-radius: 30px;
  box-shadow: var(--shadow-md);
}

.cost-visual--simple .cost-visual__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: none;
}

.cost-visual--simple .cost-visual__main--portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 460px;
  margin-left: auto;
  background: #f3f3f0;
  overflow: hidden;
}

.cost-visual--simple .cost-visual__main--portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 15, 12, 0) 48%, rgba(16, 15, 12, 0.76) 100%);
}

.cost-visual--simple .cost-visual__main--portrait img {
  object-fit: cover;
  object-position: center top;
}

.cost-visual__person {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cost-visual__person strong {
  color: var(--white);
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.18;
}

.cost-visual__person span {
  display: block;
  font-size: 0.98rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

@media (max-width: 1080px) {
  .cost-layout--simple {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .cost-copy--simple {
    max-width: 820px;
  }

  .cost-visual--simple {
    max-width: 820px;
  }

  .cost-visual--simple .cost-visual__main--portrait {
    max-width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 680px) {
  .cost-copy--simple h2 {
    font-size: clamp(2.3rem, 10vw, 3.2rem);
  }

  .cost-text {
    font-size: 1.03rem;
    line-height: 1.72;
  }

  .cost-visual--simple .cost-visual__main {
    border-radius: 22px;
  }

  .cost-visual__person {
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding-top: 14px;
  }

  .cost-visual__person strong {
    font-size: 1rem;
  }

  .cost-visual__person span {
    font-size: 0.9rem;
  }
}


/* Professionellere Service-Piktogramme */
.service-card__media {
  width: 96px;
  height: 68px;
  border-radius: 15px;
  box-shadow: 0 8px 22px rgba(35, 29, 13, 0.06);
}
.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.service-card:hover .service-card__media img {
  transform: none;
}
@media (max-width: 680px) {
  .service-card__media { width: 90px; height: 64px; }
}


/* ===== Fixierte Schnellkontakt-Leiste ===== */
.mobile-actions.sticky-actions {
  position: fixed;
  z-index: 120;
  right: auto;
  bottom: 18px;
  left: 50%;
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 10px;
  width: auto;
  padding: 8px;
  transform: translateX(-50%);
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.90);
  box-shadow: 0 16px 44px rgba(20, 20, 20, 0.20);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.mobile-actions.sticky-actions a {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  border-radius: 14px;
  text-decoration: none;
  white-space: nowrap;
  font-size: 0.95rem;
  font-weight: 850;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.mobile-actions.sticky-actions a:hover,
.mobile-actions.sticky-actions a:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 9px 22px rgba(20, 20, 20, 0.13);
}

.sticky-actions__call {
  background: var(--yellow) !important;
  color: var(--navy-950) !important;
}

.sticky-actions__whatsapp {
  background: var(--green) !important;
  color: var(--white) !important;
}

.sticky-actions__request {
  background: var(--white) !important;
  color: var(--ink) !important;
  border: 1px solid var(--line);
}

.site-footer {
  padding-bottom: 110px;
}

@media (max-width: 680px) {
  .mobile-actions.sticky-actions {
    right: 8px;
    bottom: max(8px, env(safe-area-inset-bottom));
    left: 8px;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    width: auto;
    padding: 6px;
    transform: none;
    border-radius: 16px;
  }

  .mobile-actions.sticky-actions a {
    min-width: 0;
    min-height: 48px;
    padding: 0 6px;
    border-radius: 11px;
    font-size: 0.78rem;
    line-height: 1.08;
    text-align: center;
  }

  .mobile-actions.sticky-actions .sticky-actions__call span {
    display: none;
  }

  .site-footer {
    padding-bottom: 92px;
  }
}

@media (max-width: 390px) {
  .mobile-actions.sticky-actions a {
    font-size: 0.72rem;
  }
}

@media print {
  .mobile-actions.sticky-actions {
    display: none !important;
  }
}


/* Kostenbereich: Text proportional größer + vollständige Rollenangabe im Porträt */
.cost-layout--simple {
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  gap: clamp(56px, 7vw, 110px);
}

.cost-copy--simple {
  max-width: 860px;
}

.cost-copy--simple h2 {
  max-width: 780px;
  font-size: clamp(3.45rem, 5.4vw, 5.25rem);
  line-height: 0.98;
}

.cost-copy--simple .eyebrow {
  font-size: 1rem;
}

.cost-text {
  max-width: 820px;
  font-size: clamp(1.28rem, 1.55vw, 1.52rem);
  line-height: 1.68;
}

.cost-text--copay {
  margin-top: 26px;
}

.cost-visual--simple .cost-visual__main--portrait {
  max-width: 500px;
}

.cost-visual__person {
  left: 26px;
  right: 26px;
  bottom: 24px;
  gap: 8px;
}

.cost-visual__person strong {
  font-size: 1.28rem;
}

.cost-visual__person span {
  display: block !important;
  color: rgba(255, 255, 255, 0.96) !important;
  font-size: 1.02rem;
  font-weight: 700;
}

@media (max-width: 1080px) {
  .cost-layout--simple {
    grid-template-columns: 1fr;
  }
  .cost-copy--simple { max-width: 900px; }
  .cost-visual--simple .cost-visual__main--portrait { max-width: 520px; }
}

@media (max-width: 680px) {
  .cost-copy--simple h2 { font-size: clamp(2.45rem, 11vw, 3.45rem); }
  .cost-text { font-size: 1.08rem; line-height: 1.7; }
  .cost-visual__person strong { font-size: 1.08rem; }
  .cost-visual__person span { font-size: 0.92rem; }
}


/* Cihan-Karte identisch ruhiger wie beim Inhaberbild */
.cost-visual__person--plain {
  left: 26px;
  right: 26px;
  bottom: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.22);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.cost-visual__person--plain span,
.cost-visual__person--plain strong {
  position: static !important;
  inset: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  display: block !important;
  width: auto !important;
  max-width: none !important;
}

.cost-visual__person--plain span {
  color: rgba(255,255,255,0.90) !important;
  font-size: 0.96rem !important;
  font-weight: 500 !important;
  line-height: 1.25 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.cost-visual__person--plain strong {
  color: #fff !important;
  font-size: 1.52rem !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.02em !important;
}

@media (max-width: 680px) {
  .cost-visual__person--plain {
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding-top: 14px;
    gap: 4px;
  }

  .cost-visual__person--plain span {
    font-size: 0.88rem !important;
  }

  .cost-visual__person--plain strong {
    font-size: 1.2rem !important;
  }
}


/* Cihan: Aufgaben links, Name rechts – wie beim Inhaberbild */
.cost-visual__person--footer {
  left: 26px;
  right: 26px;
  bottom: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.22);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cost-visual__person--footer span {
  position: static !important;
  inset: auto !important;
  display: block !important;
  width: auto !important;
  max-width: 48% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: rgba(255,255,255,0.66) !important;
  font-size: 0.84rem !important;
  font-weight: 500 !important;
  line-height: 1.3 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.cost-visual__person--footer span:last-child {
  text-align: right;
}

@media (max-width: 680px) {
  .cost-visual__person--footer {
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding-top: 14px;
    gap: 12px;
  }

  .cost-visual__person--footer span {
    font-size: 0.76rem !important;
  }
}


/* Kostenübernahme & Zuzahlung: im Verhältnis zum Porträt kompakter. */
@media (min-width: 1081px) {
  .cost-section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .cost-layout--simple {
    grid-template-columns: minmax(0, 1.12fr) minmax(310px, 0.88fr);
    gap: clamp(32px, 4.5vw, 72px);
  }

  .cost-copy--simple {
    max-width: 740px;
  }

  .cost-copy--simple h2 {
    font-size: clamp(2.7rem, 4vw, 4rem);
    line-height: 1.05;
  }

  .cost-copy--simple .eyebrow {
    font-size: 0.86rem;
  }

  .cost-copy--simple .cost-text {
    font-size: clamp(1.05rem, 1.25vw, 1.2rem);
    line-height: 1.65;
    margin-top: 20px;
  }

  .cost-copy--simple .cost-text--copay {
    margin-top: 18px;
  }

  .cost-visual--simple .cost-visual__main--portrait {
    width: 100%;
    max-width: 420px;
  }
}

/* Auch auf schmalen Bildschirmen im Verhältnis zum restlichen Inhalt halten. */
@media (max-width: 1080px) {
  .cost-copy--simple h2 {
    font-size: clamp(2.25rem, 6vw, 3.5rem);
  }
  .cost-copy--simple .cost-text {
    font-size: 1.08rem;
    line-height: 1.65;
  }
  .cost-visual--simple .cost-visual__main--portrait {
    width: 100%;
    max-width: 420px;
  }
}

@media (max-width: 680px) {
  .cost-copy--simple h2 {
    font-size: clamp(2rem, 8.6vw, 2.7rem);
  }
  .cost-copy--simple .cost-text {
    font-size: 1rem;
    line-height: 1.6;
  }
}

/* Neues Haustür-Service-Motiv im Hero-Karussell */
.hero .hero-slide:nth-child(5) img { object-position: center 45%; }

/* Hero: statische Dreiteilung – Servicefoto | Text | Fahrtszene */
.hero.hero--split {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(520px, 1.45fr) minmax(240px, 0.9fr);
  align-items: stretch;
  padding: 0;
  background: #171717;
  overflow: hidden;
}
.hero--split .hero-split__visual,
.hero--split .hero-split__center { position: relative; min-width: 0; }
.hero--split .hero-split__visual img,
.hero--split .hero-split__center-bg img {
  width: 100%; height: 100%; display: block; object-fit: cover;
}
.hero--split .hero-split__visual--left img { object-position: 48% center; }
.hero--split .hero-split__visual--right img { object-position: 50% center; }
.hero--split .hero-split__center {
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 62px 42px;
  isolation: isolate;
}
.hero--split .hero-split__center-bg,
.hero--split .hero-shade { position: absolute; inset: 0; }
.hero--split .hero-split__center-bg { z-index: -3; }
.hero--split .hero-shade {
  z-index: -2;
  background: linear-gradient(180deg, rgba(10,10,10,.48), rgba(10,10,10,.72));
}
.hero--split .hero__content { max-width: 760px; text-align: center; }
.hero--split h1 {
  max-width: 760px;
  margin-inline: auto;
  font-size: clamp(2.45rem, 4.1vw, 4.5rem);
  line-height: 1.01;
  opacity: .94;
}
.hero--split .hero__lead { max-width: 680px; margin: 22px auto 0; }
.hero--split .hero__actions { justify-content: center; }

@media (max-width: 1050px) {
  .hero.hero--split { grid-template-columns: .72fr 1.35fr .72fr; min-height: 520px; }
  .hero--split .hero-split__center { min-height: 520px; padding: 48px 28px; }
  .hero--split h1 { font-size: clamp(2.15rem, 5vw, 3.5rem); }
  .hero--split .hero__lead { font-size: .96rem; }
}

@media (max-width: 760px) {
  .hero.hero--split {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 230px auto;
    min-height: 0;
  }
  .hero--split .hero-split__visual { min-height: 230px; }
  .hero--split .hero-split__center {
    grid-column: 1 / -1;
    grid-row: 2;
    min-height: 0;
    padding: 38px 22px 42px;
  }
  .hero--split .hero-split__visual--left { grid-column: 1; grid-row: 1; }
  .hero--split .hero-split__visual--right { grid-column: 2; grid-row: 1; }
  .hero--split h1 { font-size: clamp(2rem, 9.4vw, 3rem); }
  .hero--split .hero__lead { margin-top: 17px; font-size: .94rem; }
  .hero--split .hero__actions { display: grid; width: min(100%, 390px); margin: 22px auto 0; }
  .hero--split .hero__actions .button { width: 100%; }
}

/* Hero Mitte: Flottenbild mittig ausrichten */
.hero-split__center-bg img {
  object-position: center center !important;
}
