/* ============================================================
   M.R. Vehicle Transfer - Stylesheet
   Um Farben zu ändern: Suchen Sie nach --red oder --dark
   ============================================================ */

/* ---- Montserrat lokal (DSGVO-konform, kein Google-Server) ---- */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('../fonts/montserrat-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('../fonts/montserrat-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --dark:       #0d1520;
  --dark2:      #1a2a4a;
  --red:        #e5332a;
  --red-dark:   #c92a22;
  --white:      #ffffff;
  --light:      #f4f6f9;
  --gray:       #6b7280;
  --border:     #e5e7eb;
  --gold:       #c9a84c;
  --font:       'Montserrat', Arial, sans-serif;
  --shadow:     0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.15);
  --radius:     6px;
  --radius-lg:  12px;
  --transition: all 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--dark); background: var(--white); line-height: 1.6; }
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 4px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-red { background: var(--red); color: white; }
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(229,51,42,0.4); }
.btn-outline { background: transparent; color: white; border: 2px solid white; }
.btn-outline:hover { background: white; color: var(--dark); }
.btn-dark { background: rgba(255,255,255,0.12); color: white; border: 2px solid rgba(255,255,255,0.4); }
.btn-dark:hover { background: white; color: var(--dark); }
.btn-lg { padding: 16px 36px; font-size: 0.9rem; }
.btn i { font-size: 1rem; }

/* ---- Topbar ---- */
.topbar {
  background: var(--dark);
  padding: 9px 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
}
.topbar-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.topbar-left { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.topbar-left a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.topbar-left a:hover { color: var(--red); }
.topbar-left a i { color: var(--red); font-size: 0.72rem; }
.topbar-right { display: flex; align-items: center; gap: 16px; }
.topbar-social { display: flex; gap: 12px; }
.topbar-social a { color: rgba(255,255,255,0.85); font-size: 0.95rem; transition: color 0.2s; }
.topbar-social a:hover { color: white; }

.lang-switcher { display: flex; gap: 4px; margin-left: 8px; }
.lang-switcher button {
  background: none;
  border: 1px solid rgba(255,255,255,0.45);
  color: rgba(255,255,255,0.85);
  padding: 2px 9px;
  border-radius: 3px;
  font-size: 0.72rem;
  font-family: var(--font);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.5px;
}
.lang-switcher button.active,
.lang-switcher button:hover {
  background: var(--red);
  border-color: var(--red);
  color: white;
}

/* ---- Navbar ---- */
.navbar {
  background: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  transition: box-shadow 0.3s;
}
.navbar-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 16px;
}

/* ---- Logo ---- */
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.logo-badge {
  background: var(--dark);
  color: white;
  font-size: 1.35rem;
  font-weight: 900;
  font-style: italic;
  padding: 7px 13px;
  border-radius: 4px;
  border-bottom: 3px solid var(--red);
  line-height: 1;
  letter-spacing: -1px;
}
.logo-info { line-height: 1.15; }
.logo-name {
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--dark);
  text-transform: uppercase;
}
.logo-name .red { color: var(--red); }
.logo-tagline {
  font-size: 0.5rem;
  color: var(--gray);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ---- Nav Menu ---- */
.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-menu a {
  padding: 8px 11px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: color 0.2s;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.nav-menu a:hover,
.nav-menu a.active { color: var(--red); border-bottom-color: var(--red); }
.nav-cta { margin-left: 12px; flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- Hero ---- */
.hero {
  min-height: 88vh;
  background:
    linear-gradient(to right,
      rgba(10,18,32,0.82) 0%,
      rgba(10,18,32,0.55) 45%,
      rgba(10,18,32,0.15) 100%
    ),
    url('../images/hero.png') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.022) 1px, transparent 0);
  background-size: 38px 38px;
}
.hero-deco {
  position: absolute;
  right: 0; top: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, transparent 40%, rgba(229,51,42,0.06) 100%);
  pointer-events: none;
}
.hero-deco-line { display: none; }
.hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 24px;
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-content { max-width: 640px; }
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.hero h1 .red { color: var(--red); }
.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 32px;
  line-height: 1.75;
  max-width: 520px;
}
.hero-badges {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero-badge i { color: var(--red); font-size: 1.1rem; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---- Section Base ---- */
section { padding: 88px 0; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 900;
  color: var(--dark);
  text-transform: uppercase;
  line-height: 1.2;
}
.section-title.white { color: white; }
.section-line { width: 48px; height: 3px; background: var(--red); margin: 14px auto 0; }
.section-line.left { margin-left: 0; }

/* ---- Services ---- */
.services { background: var(--light); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 1.35fr;
  gap: 20px;
  align-items: stretch;
}
.service-card {
  background: white;
  padding: 32px 22px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service-card p { flex: 1; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  transition: background 0.3s;
}
.service-card:hover .service-icon { background: var(--red); }
.service-icon i { color: white; font-size: 1.4rem; }
.card-top {
  width: 100%;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.card-top .service-icon { margin-bottom: 0; }
.service-card h3 {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--dark);
  margin-bottom: 6px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
  padding-bottom: 6px;
  text-align: center;
}
.service-card p { font-size: 0.8rem; color: var(--gray); line-height: 1.65; margin-top: 12px; }

.service-card-map {
  background: var(--dark2);
  padding: 32px;
  border-radius: var(--radius-lg);
  color: white;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-card-map:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card-map h3 {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
  margin-bottom: 14px;
  display: block;
  border-bottom: 2px solid var(--red);
  padding-bottom: 6px;
  width: fit-content;
}
.service-card-map p { font-size: 0.82rem; color: rgba(255,255,255,0.72); line-height: 1.7; margin-bottom: 20px; }
.service-card-map .map-icon {
  font-size: 3rem;
  color: rgba(255,255,255,0.15);
  display: block;
  margin-bottom: 14px;
}
.btn-map {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.btn-map:hover { border-color: white; }

/* ---- About ---- */
.about { background: var(--dark); }
.about-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.about-text .section-title { color: white; }
.about-desc { color: rgba(255,255,255,0.68); font-size: 0.95rem; line-height: 1.85; margin: 20px 0 28px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.about-feature { text-align: center; }
.about-feature i { font-size: 2rem; color: rgba(255,255,255,0.3); margin-bottom: 10px; display: block; }
.about-feature h4 {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: white;
  margin-bottom: 8px;
}
.about-feature p { font-size: 0.78rem; color: rgba(255,255,255,0.8); line-height: 1.65; }

/* ---- Calculator ---- */
.calculator { background: var(--light); }
.calc-box {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 48px;
  max-width: 920px;
  margin: 0 auto;
}
.calc-step { margin-bottom: 32px; }
.calc-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--dark);
  margin-bottom: 14px;
}
/* ---- Achse-Auswahl (Eigenachse / Fremdachse) ---- */
.achse-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.achse-option {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
}
.achse-option:hover { border-color: var(--red); }
.achse-option.selected {
  border-color: var(--red);
  background: rgba(229,51,42,0.04);
}
.achse-icon {
  width: 52px; height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.achse-option.selected .achse-icon,
.achse-option:hover .achse-icon { background: var(--red); }
.achse-icon i { color: white; font-size: 1.3rem; }
.achse-info { display: flex; flex-direction: column; gap: 3px; }
.achse-info strong {
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--dark);
}
.achse-info span {
  font-size: 0.76rem;
  color: var(--gray);
  line-height: 1.4;
}
.result-achse-badge {
  display: inline-block;
  margin-left: 10px;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  vertical-align: middle;
}
@media (max-width: 600px) {
  .achse-options { grid-template-columns: 1fr; }
}

.vehicle-options { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.vehicle-option {
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 12px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
}
.vehicle-option:hover { border-color: var(--red); }
.vehicle-option.selected { border-color: var(--red); background: rgba(229,51,42,0.04); }
.vehicle-option i { font-size: 1.7rem; color: var(--dark); margin-bottom: 8px; display: block; transition: color 0.3s; }
.vehicle-option.selected i { color: var(--red); }
.vehicle-option span { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--dark); }

.calc-inputs { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.input-group { display: flex; flex-direction: column; gap: 6px; }
.input-group label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.input-group input {
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
  background: var(--light);
}
.input-group input:focus { border-color: var(--red); background: white; }

.calc-actions { display: flex; gap: 12px; margin-top: 8px; flex-wrap: wrap; }

.calc-result {
  margin-top: 28px;
  padding: 28px 32px;
  background: var(--dark);
  border-radius: var(--radius-lg);
  display: none;
}
.calc-result.visible { display: block; }
.result-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
}
.result-price {
  font-size: 2.2rem;
  font-weight: 900;
  color: white;
  margin-bottom: 6px;
}
.result-price span { color: var(--red); white-space: nowrap; }
.result-note { font-size: 0.78rem; color: rgba(255,255,255,0.78); margin-bottom: 20px; }
.result-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---- Vehicle Types ---- */
.vehicle-types { background: white; }
.vt-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.vt-card {
  display: flex;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--light);
  transition: var(--transition);
}
.vt-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.vt-icon-wrap {
  background: var(--dark);
  padding: 32px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  transition: background 0.3s;
}
.vt-card:hover .vt-icon-wrap { background: var(--red); }
.vt-icon-wrap i { font-size: 2.2rem; color: white; }
.vt-content { padding: 24px 28px; }
.vt-content h3 {
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--dark);
  margin-bottom: 8px;
}
.vt-content p { font-size: 0.82rem; color: var(--gray); line-height: 1.7; margin-bottom: 10px; }
.vt-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.vt-tag {
  background: var(--dark);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

/* ---- B2B Section ---- */
.b2b-section { background: var(--dark); padding: 96px 0; }
.b2b-section .section-eyebrow { color: var(--red); }
.b2b-section .section-title { color: white; }
.b2b-section .section-line { background: var(--red); }
.b2b-section .section-subtitle { color: rgba(255,255,255,0.65); max-width: 640px; margin: 0 auto; font-size: 1rem; line-height: 1.7; }
.b2b-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 48px 0 40px;
}
.b2b-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: var(--transition);
}
.b2b-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--red);
  transform: translateY(-4px);
}
.b2b-icon {
  width: 52px; height: 52px;
  background: var(--red);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.b2b-icon i { color: white; font-size: 1.3rem; }
.b2b-card h3 { color: white; font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.b2b-card p { color: rgba(255,255,255,0.6); font-size: 0.85rem; line-height: 1.65; }
.b2b-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- Testimonials ---- */
.testimonials { background: var(--light); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.testimonial-stars { color: #f59e0b; font-size: 0.85rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { font-size: 0.86rem; color: var(--gray); line-height: 1.75; margin-bottom: 18px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--dark2);
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 800; font-size: 0.9rem;
  flex-shrink: 0;
}
.testimonial-name { font-size: 0.82rem; font-weight: 700; color: var(--dark); }
.testimonial-role { font-size: 0.72rem; color: #f59e0b; font-weight: 600; }

.google-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 50px;
  padding: 10px 20px;
  margin-top: 20px;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
}
.google-rating-badge:hover { border-color: #4285f4; box-shadow: 0 4px 16px rgba(66,133,244,0.15); }
.google-favicon { width: 18px; height: 18px; }
.google-rating-stars { color: #f59e0b; font-size: 0.9rem; letter-spacing: 1px; }
.google-rating-score { font-size: 1.1rem; font-weight: 900; color: var(--dark); }
.google-rating-count { font-size: 0.78rem; color: var(--gray); font-weight: 600; }

.testimonials-cta { text-align: center; margin-top: 36px; }
.testimonials-cta .btn-outline { border-color: var(--dark2); color: var(--dark); }
.testimonials-cta .btn-outline:hover { background: var(--dark); color: white; }

/* ---- Contact ---- */
.contact { background: white; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start; }
.contact-info-title {
  font-size: 1.15rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}
.contact-item { display: flex; gap: 16px; margin-bottom: 22px; }
.contact-item-icon {
  width: 46px; height: 46px; min-width: 46px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.contact-item-icon i { color: white; font-size: 1rem; }
.contact-item-text h4 {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--gray);
  margin-bottom: 3px;
}
.contact-item-text a,
.contact-item-text span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
}
.contact-item-text a:hover { color: var(--red); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.88rem;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  background: var(--light);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); background: white; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; cursor: pointer; }
.form-success {
  display: none;
  padding: 16px;
  background: #dcfce7;
  border-radius: var(--radius);
  color: #16a34a;
  font-weight: 600;
  text-align: center;
  margin-top: 12px;
  font-size: 0.88rem;
}

/* ---- Footer ---- */
.footer { background: var(--dark); color: rgba(255,255,255,0.82); padding: 64px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand-desc {
  font-size: 0.82rem;
  line-height: 1.75;
  max-width: 240px;
  margin: 16px 0 20px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.88rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--red); border-color: var(--red); color: white; }

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: white;
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.footer-col ul li a::before { content: '›'; color: var(--red); font-size: 1rem; }
.footer-col ul li a:hover { color: white; }

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 0.82rem;
}
.footer-contact-item i { color: var(--red); margin-top: 3px; min-width: 14px; font-size: 0.85rem; }
.footer-contact-item a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-contact-item a:hover { color: white; }

.footer-bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.65);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom-links { display: flex; gap: 20px; }

.trust-badge {
  width: 78px; height: 78px;
  border: 3px solid var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.55rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  line-height: 1.4;
  flex-shrink: 0;
}
.trust-badge .num { font-size: 1.2rem; font-weight: 900; letter-spacing: 0; }

/* ---- Page Header (Impressum / AGB) ---- */
.page-header { background: var(--dark); padding: 64px 0; text-align: center; }
.page-header h1 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 900; text-transform: uppercase; color: white; margin-bottom: 10px; }
.page-header p { color: rgba(255,255,255,0.55); font-size: 0.9rem; }
.page-content { padding: 64px 0; }
.page-content .content-box { max-width: 860px; margin: 0 auto; }
.page-content h2 { font-size: 1.05rem; font-weight: 800; text-transform: uppercase; color: var(--dark); margin: 36px 0 12px; letter-spacing: 0.5px; }
.page-content h2:first-child { margin-top: 0; }
.page-content p { font-size: 0.88rem; color: var(--gray); line-height: 1.85; margin-bottom: 12px; }
.page-content ul { padding-left: 20px; margin-bottom: 12px; }
.page-content ul li { list-style: disc; font-size: 0.88rem; color: var(--gray); line-height: 1.85; margin-bottom: 4px; }
.page-content .highlight-box {
  background: var(--light);
  border-left: 4px solid var(--red);
  padding: 16px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 20px 0;
  font-size: 0.86rem;
  color: var(--gray);
}

/* ---- Hero Scene (CSS Sonnenuntergang) ---- */
.hero-scene {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-sun {
  position: absolute;
  bottom: 18%;
  right: 22%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff8e0 0%, #ffcc44 30%, #ff8800 60%, transparent 80%);
  opacity: 0.75;
  animation: sunPulse 4s ease-in-out infinite;
}
.hero-sun-glow {
  position: absolute;
  bottom: 10%;
  right: 10%;
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at 60% 80%,
    rgba(255,140,20,0.45) 0%,
    rgba(220,80,10,0.25) 35%,
    rgba(150,40,5,0.12) 60%,
    transparent 80%
  );
  filter: blur(18px);
}
@keyframes sunPulse {
  0%, 100% { opacity: 0.75; transform: scale(1); }
  50%       { opacity: 0.9;  transform: scale(1.04); }
}
.hero-mountains {
  position: absolute;
  bottom: 58px;
  left: 0;
  width: 100%;
  height: auto;
}
.hero-road {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 62px;
  background: linear-gradient(180deg, transparent 0%, #050b14 55%, #010408 100%);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.hero-road-lines {
  position: absolute;
  top: 38%;
  left: 0; right: 0;
  height: 3px;
  background: repeating-linear-gradient(90deg,
    rgba(255,255,255,0.18) 0px, rgba(255,255,255,0.18) 50px,
    transparent 50px, transparent 100px
  );
}
.hero-vehicles {
  position: absolute;
  bottom: 58px;
  right: 0;
  width: 58%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 10px;
  padding-right: 32px;
}
.hero-vehicle {
  display: flex;
  align-items: flex-end;
  color: #04080e;
  filter: drop-shadow(0 -6px 18px rgba(255,130,20,0.55))
          drop-shadow(0 2px 6px rgba(0,0,0,0.9));
  animation: vehicleGlow 3.5s ease-in-out infinite;
}
.hero-vehicle:nth-child(2) { animation-delay: 0.6s; }
.hero-vehicle:nth-child(3) { animation-delay: 1.2s; }
.hero-vehicle:nth-child(4) { animation-delay: 1.8s; }
.hero-vehicle:nth-child(5) { animation-delay: 2.4s; }
@keyframes vehicleGlow {
  0%, 100% { filter: drop-shadow(0 -6px 18px rgba(255,130,20,0.55)) drop-shadow(0 2px 6px rgba(0,0,0,0.9)); }
  50%       { filter: drop-shadow(0 -8px 28px rgba(255,150,30,0.8))  drop-shadow(0 2px 6px rgba(0,0,0,0.9)); }
}
.v-moto  i { font-size: 3.2rem; }
.v-car   i { font-size: 3.6rem; }
.v-bus   i { font-size: 4.8rem; }
.v-van   i { font-size: 4.2rem; }
.v-truck i { font-size: 5.2rem; }
@media (max-width: 900px) {
  .hero-vehicles { width: 50%; gap: 6px; }
  .v-moto i  { font-size: 2.4rem; }
  .v-car i   { font-size: 2.8rem; }
  .v-bus i   { font-size: 3.6rem; }
  .v-van i   { font-size: 3.2rem; }
  .v-truck i { font-size: 4rem;   }
}
@media (max-width: 768px) {
  .hero-vehicles { display: none; }
  .hero-sun { right: 10%; bottom: 22%; width: 80px; height: 80px; }
}

/* ---- Language Toggle ---- */
/* DE ist Standard – EN-Inhalte versteckt, EN-Button sichtbar */
html.lang-de [data-lang="en"]:not(.lang-btn) { display: none; }
html.lang-en [data-lang="de"]:not(.lang-btn) { display: none; }
/* Fallback falls JS noch nicht geladen */
html:not(.lang-en) [data-lang="en"]:not(.lang-btn) { display: none; }

/* ---- Skip Navigation (Barrierefreiheit) ---- */
.skip-nav {
  position: absolute;
  top: -60px;
  left: 16px;
  background: var(--red);
  color: white;
  padding: 10px 18px;
  border-radius: 0 0 6px 6px;
  font-weight: 700;
  font-size: 0.85rem;
  z-index: 99999;
  transition: top 0.2s;
  text-decoration: none;
}
.skip-nav:focus { top: 0; outline: 3px solid white; outline-offset: 2px; }

/* ---- Focus-Visible (Barrierefreiheit / Tastaturnavigation) ---- */
:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
  border-radius: 3px;
}
/* Für Buttons und Links explizit */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

/* ---- Fade-in Animations ---- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ---- WhatsApp Float Button ---- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* ============================================================
   RESPONSIVE – Tablet & Mobile
   ============================================================ */

/* Tablet groß (bis 1100px) */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card-map { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Tablet (bis 900px) */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .vt-grid { grid-template-columns: 1fr; }
  .vehicle-options { grid-template-columns: repeat(3, 1fr); }
  .calc-inputs { grid-template-columns: 1fr 1fr; }
  .calc-box { padding: 36px 28px; }
  .hero-inner { padding: 60px 24px; }
  .hero h1 { font-size: clamp(1.8rem, 5vw, 2.8rem); }
}

/* Smartphone (bis 768px) */
@media (max-width: 768px) {
  /* Hero-Bild: stärkerer Overlay + Bildposition nach links → Logos unsichtbar */
  .hero {
    background:
      linear-gradient(rgba(10,18,32,0.90), rgba(10,18,32,0.80)),
      url('../images/hero.png') 20% center / cover no-repeat;
  }
  .topbar-left { display: none; }
  .hamburger { display: flex; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 76px;
    left: 0; right: 0;
    background: white;
    flex-direction: column;
    padding: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    gap: 0;
    z-index: 999;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    width: 100%;
    font-size: 0.85rem;
  }
  .nav-menu a:last-child { border-bottom: none; }
  .nav-cta { display: none; }
  .navbar { position: relative; }
  section { padding: 56px 0; }
  .hero { min-height: 75vh; }
  .hero-inner { padding: 48px 20px; }
  .hero h1 { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .hero-desc { font-size: 0.9rem; }
  .hero-badges { gap: 12px; }
  .hero-badge { font-size: 0.7rem; }
  .hero-btns { flex-direction: column; gap: 12px; }
  .hero-btns .btn { justify-content: center; width: 100%; }
  .btn-lg { padding: 15px 24px; font-size: 0.85rem; }
  .section-title { font-size: clamp(1.3rem, 4vw, 1.8rem); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .calc-box { padding: 24px 18px; overflow: hidden; }
  .result-price { font-size: 1.6rem; }
  .b2b-grid { grid-template-columns: repeat(2, 1fr); }
  .calc-inputs { grid-template-columns: 1fr; }
  .vehicle-options { grid-template-columns: repeat(2, 1fr); }
  .achse-options { grid-template-columns: 1fr; }
  .contact-grid { gap: 32px; }
  .about-grid { gap: 32px; }
  .topbar-right { gap: 10px; }
}

/* Smartphone klein (bis 520px) */
@media (max-width: 520px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card-map { grid-column: span 1; }
  .about-features { grid-template-columns: 1fr 1fr; }
  .vehicle-options { grid-template-columns: 1fr 1fr; }
  .hero-badges { flex-direction: column; gap: 10px; }
  /* Fremdachse/Eigenachse-Karten kompakter auf kleinen Screens */
  .achse-option { padding: 14px 14px; gap: 12px; }
  .achse-icon { width: 42px; height: 42px; min-width: 42px; }
  .achse-icon i { font-size: 1.1rem; }
  .achse-info strong { font-size: 0.82rem; }
  .achse-info span { font-size: 0.7rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .footer-bottom-links { justify-content: center; flex-wrap: wrap; }
  .calc-actions { flex-direction: column; }
  .calc-actions .btn { width: 100%; justify-content: center; }
  .result-price { font-size: 1.35rem; }
  .b2b-grid { grid-template-columns: 1fr; }
  .b2b-cta { flex-direction: column; }
  .b2b-cta .btn { width: 100%; justify-content: center; }
  .result-cta { flex-direction: column; }
  .result-cta .btn { width: 100%; justify-content: center; }
  .navbar-inner { height: 64px; }
  .logo-img { height: 40px; }
  .whatsapp-float { bottom: 16px; right: 16px; width: 50px; height: 50px; }
}

/* ---- Logo Bild (Navbar & Footer) ---- */
.logo-img {
  height: 64px;
  width: auto;
  display: block;
  object-fit: contain;
}
.footer-logo-img {
  height: 80px;
  width: auto;
  display: block;
  margin-bottom: 12px;
  background: white;
  border-radius: 10px;
  padding: 6px 12px;
  object-fit: contain;
}
@media (max-width: 768px) {
  .logo-img { height: 48px; }
}

/* ---- FAQ ---- */
.faq-section { background: var(--light); padding: 80px 0; }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s;
}
.faq-item.open { box-shadow: 0 4px 24px rgba(229,51,42,0.12); border-color: rgba(229,51,42,0.25); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--red); }
.faq-item.open .faq-question { color: var(--red); }
.faq-icon {
  font-size: 0.85rem;
  color: var(--red);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer { max-height: 400px; padding: 0 24px 20px; }
.faq-answer p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.85;
  margin: 0;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.faq-answer a { color: var(--red); text-decoration: underline; }

/* ---- AGB-Checkbox ---- */
.form-check-group { margin-bottom: 20px; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  color: var(--gray);
  font-size: 0.86rem;
  line-height: 1.5;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}
.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--red);
  cursor: pointer;
  border-radius: 3px;
}
.checkbox-label a { color: var(--red); text-decoration: underline; }
.checkbox-label a:hover { color: #c0271e; }

/* ---- Cookie-Consent-Banner (DSGVO) ---- */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(13, 21, 32, 0.98);
  border-top: 3px solid var(--red);
  z-index: 9998;
  backdrop-filter: blur(10px);
  box-shadow: 0 -4px 30px rgba(0,0,0,0.4);
}
.cookie-consent-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-consent-text { flex: 1; min-width: 260px; }
.cookie-consent-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: white;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cookie-consent-title i { color: var(--red); }
.cookie-consent-text p {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}
.cookie-consent-text a { color: var(--red); text-decoration: underline; font-weight: 600; }
.cookie-consent-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  align-items: center;
  flex-wrap: wrap;
}
.btn-cookie-info {
  padding: 10px 18px;
  border: 1.5px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.7);
  border-radius: var(--radius);
  font-size: 0.82rem;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  font-family: var(--font);
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-cookie-info:hover { border-color: white; color: white; }
.btn-cookie-ablehnen {
  padding: 10px 18px;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius);
  font-size: 0.82rem;
  background: transparent;
  cursor: pointer;
  font-weight: 700;
  font-family: var(--font);
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-cookie-ablehnen:hover { border-color: white; color: white; background: rgba(255,255,255,0.08); }
.btn-cookie-akzept {
  padding: 10px 22px;
  background: var(--red);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-size: 0.84rem;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}
.btn-cookie-akzept:hover { background: #c0271e; }
@media (max-width: 640px) {
  .cookie-consent-inner { padding: 16px 18px; }
  .cookie-consent-btns { width: 100%; justify-content: stretch; }
  .btn-cookie-info, .btn-cookie-ablehnen, .btn-cookie-akzept { flex: 1; justify-content: center; text-align: center; }
}

/* ---- Preisrechner Cookie-Overlay ---- */
.calc-cookie-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,21,32,0.92);
  backdrop-filter: blur(6px);
  border-radius: inherit;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  color: white;
}
.calc-cookie-overlay i { font-size: 2.8rem; color: var(--red); margin-bottom: 14px; }
.calc-cookie-overlay h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 10px; }
.calc-cookie-overlay p { font-size: 0.85rem; color: rgba(255,255,255,0.7); max-width: 320px; line-height: 1.6; }

/* ---- AGB-Seite h3 (Unterabschnitte) ---- */
.page-content h3 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
  margin: 20px 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-left: 3px solid var(--red);
  padding-left: 10px;
}
