/* ===================================================
   SAFFS Automotive — Dark Theme Static Clone
   =================================================== */

/* ---------- Custom Font ---------- */
@font-face {
  font-family: 'SAFFS_Font';
  src: url('../fonts/Dharma_Gothic_E_Light-1.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ---------- CSS Variables ---------- */
:root {
  --bg:           #0a0a0a;
  --bg-section:   #0d0d0d;
  --bg-card:      #141414;
  --bg-dark:      #000000;
  --text:         #ffffff;
  --text-muted:   rgba(255, 255, 255, 0.65);
  --text-dim:     rgba(255, 255, 255, 0.45);
  --red:          #e02b20;
  --red-dark:     #c42419;
  --blue:         #2ea3f2;
  --border:       rgba(255, 255, 255, 0.1);
  --font-heading: 'SAFFS_Font', 'Dharma Gothic E Light', Helvetica, Arial, sans-serif;
  --font-body:    'Exo 2', Helvetica, Arial, sans-serif;
  --container:    1440px;
  --radius:       4px;
  --transition:   0.25s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--text); }
ul { list-style: none; }
address { font-style: normal; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

/* ---------- Section defaults ---------- */
section { position: relative; }

.section-label {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.section-label--light { color: var(--red); }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(52px, 7vw, 110px);
  font-weight: 500;
  line-height: 1.05;
  color: var(--text);
  text-transform: uppercase;
  margin-bottom: 40px;
  letter-spacing: 1px;
}
.section-title--large {
  font-size: clamp(46px, 6.5vw, 100px);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: var(--radius);
  padding: 14px 32px;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  line-height: 1;
  white-space: nowrap;
}

.btn-red {
  background: var(--red);
  color: var(--text);
  border-color: var(--red);
}
.btn-red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--text);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.6);
}
.btn-outline:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

.btn-outline-red {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn-outline-red:hover {
  background: var(--red);
  color: var(--text);
}

/* ===================================================
   NAVIGATION
   =================================================== */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
#header.scrolled {
  background: rgba(0, 0, 0, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}

.nav-logo img {
  filter: brightness(0) invert(1);
  width: 160px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-cta-mobile {
  display: inline-block;
}
.nav-cta-mobile a.btn-nav-cta {
  background: #e02b20;
  color: #fff !important;
  border: none;
  border-radius: 4px;
  padding: 8px 18px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  transition: background 0.25s ease;
}
.nav-cta-mobile a.btn-nav-cta:hover {
  background: #c42419;
}
.nav-links li a {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav-links li a:hover {
  color: var(--red);
  background: rgba(255,255,255,0.05);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ===================================================
   HERO
   =================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background: var(--bg-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.05);
  transition: transform 0.1s linear;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  padding: 0 40px 0 clamp(60px, 12vw, 240px);
  max-width: 1000px;
}

.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(100px, 18vw, 200px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -2px;
  color: var(--text);
  text-transform: uppercase;
  margin-bottom: 0;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(28px, 5vw, 72px);
  font-weight: 500;
  letter-spacing: 12px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
}

.hero-desc {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 500;
  color: rgba(255,255,255,0.95);
  line-height: 1.3;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.hero-body {
  font-family: var(--font-body);
  font-size: clamp(16px, 2vw, 22px);
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 650px;
}

.btn-hero {
  font-size: 12px;
  padding: 16px 40px 16px 28px;
  letter-spacing: 2.5px;
  position: relative;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-line {
  display: block;
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.4);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ===================================================
   INTRO
   =================================================== */
.intro-section {
  background: var(--bg-section);
  padding: 60px 0;
  border-top: 1px solid var(--border);
}

.intro-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.intro-lead {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 500;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 20px;
}

.intro-body {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.8;
}

.intro-image-block {
  display: flex;
  justify-content: center;
  align-items: center;
}

.intro-img {
  max-width: 380px;
  width: 100%;
  filter: brightness(1.1) contrast(1.05);
  opacity: 0.9;
}

/* ===================================================
   WARUM SAFFS
   =================================================== */
.warum-section {
  background: var(--bg);
  padding: 70px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 16px;
}

.feature-item {
  text-align: center;
  padding: 28px 18px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg-card);
  transition: border-color var(--transition), transform var(--transition);
}
.feature-item:hover {
  border-color: rgba(224, 43, 32, 0.4);
  transform: translateY(-4px);
}

.feature-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 20px;
}
.feature-icon svg { width: 100%; height: 100%; }

.feature-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}

.feature-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===================================================
   LEASINGKUNDEN
   =================================================== */
.leasing-section {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
}

.leasing-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.leasing-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
}

.leasing-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.leasing-body {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 36px;
}

.leasing-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* ===================================================
   BESONDERE FAHRZEUGE
   =================================================== */
.special-section {
  background: var(--bg-dark);
  padding: 70px 0;
}

.special-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.special-text { }
.special-body {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

.special-image {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}
.special-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
  border-radius: 6px;
}
.special-image:hover img {
  transform: scale(1.03);
}

/* ===================================================
   LEISTUNGEN
   =================================================== */
.leistungen-section {
  background: var(--bg);
  padding: 70px 0;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 16px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), transform var(--transition);
}
.service-card:hover {
  border-color: rgba(224, 43, 32, 0.4);
  transform: translateY(-4px);
}

.card-img-wrap {
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}
.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}
.service-card:hover .card-img-wrap img {
  transform: scale(1.06);
}

.card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.2;
}

.card-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}

.card-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition), gap var(--transition);
  margin-top: auto;
}
.card-link:hover {
  color: var(--text);
  gap: 10px;
}

/* ===================================================
   PARALLAX DIVIDER
   =================================================== */
.parallax-divider {
  position: relative;
  height: 360px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-bg {
  position: absolute;
  inset: -60px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.parallax-text {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.parallax-quote {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5.5vw, 76px);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text);
  line-height: 1.2;
}

/* ===================================================
   PREISE
   =================================================== */
.preise-section {
  background: var(--bg-section);
  padding: 70px 0;
}

.pricing-table-wrap {
  overflow-x: auto;
  margin-bottom: 40px;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table thead tr {
  border-bottom: 2px solid var(--red);
}

.pricing-table th {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 14px 20px;
  text-align: left;
}
.pricing-table th.price-col { text-align: right; }

.pricing-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.pricing-table tbody tr:hover {
  background: rgba(255,255,255,0.03);
}

.pricing-table td {
  padding: 20px;
  font-size: 14px;
  color: var(--text-muted);
  vertical-align: middle;
}
.pricing-table td.price-col { text-align: right; }

.tier-label {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text);
}
.tier-label--red { color: var(--red); }

.price {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}
.price--red { color: var(--red); }
.price-unit {
  font-size: 14px;
  color: var(--text-muted);
}

.highlight-row { background: rgba(224, 43, 32, 0.04); }

.pricing-note {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 16px;
  line-height: 1.6;
}

.pricing-cta { text-align: center; }
.pricing-cta .btn {
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

/* ===================================================
   KUNDENSTIMMEN
   =================================================== */
.testimonials-section {
  background: var(--bg);
  padding: 70px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 16px;
  align-items: start;
}

.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px 28px;
  transition: border-color var(--transition);
}
.testimonial:hover {
  border-color: rgba(224, 43, 32, 0.3);
}
.testimonial--featured {
  border-color: rgba(224, 43, 32, 0.35);
  background: linear-gradient(135deg, #141414, #1a0a09);
}

.testimonial-stars {
  color: var(--red);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-label {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}

.testimonial-quote {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-author {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
}

/* ===================================================
   CONTACT BAR
   =================================================== */
.contact-bar {
  background: var(--bg-dark);
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-brand {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
}

.contact-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 50%;
  opacity: 0.85;
}

.contact-item h4.section-label {
  margin-bottom: 14px;
}
.contact-body {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ===================================================
   FOOTER
   =================================================== */
.site-footer {
  background: var(--bg-dark);
  padding: 50px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}

.footer-name {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
  color: var(--text);
  letter-spacing: 2px;
}
.footer-sub {
  font-family: var(--font-heading);
  font-size: 16px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 24px;
}
.footer-copy {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.7;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}

.footer-nav ul,
.footer-address {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  font-size: 15px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--text); }

.footer-address p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}
.footer-address a {
  color: var(--blue);
}
.footer-address a:hover { color: var(--text); }
.footer-hours { color: var(--text-dim) !important; }

/* ===================================================
   RESPONSIVE — Tablet (< 1024px)
   =================================================== */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .special-inner {
    gap: 48px;
  }
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .contact-brand { display: none; }
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===================================================
   RESPONSIVE — Mobile (< 768px)
   =================================================== */
@media (max-width: 768px) {

  /* Nav */
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(12px);
    z-index: 999;
    padding: 60px 24px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
  }
  .nav-links.open {
    transform: translateX(0);
    pointer-events: auto;
  }
  .nav-links li a {
    font-size: 24px;
    letter-spacing: 4px;
    padding: 18px 0;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: block;
    width: 100%;
    text-align: center;
  }
  .nav-links li:last-child a { border-bottom: none; }

  /* Mobile CTA buttons */
  .nav-cta-mobile {
    display: block;
    margin-top: 16px;
  }
  .nav-cta-mobile a.btn-nav-cta {
    background: #e02b20 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 4px;
    padding: 16px 32px !important;
    font-size: 16px !important;
    letter-spacing: 2px !important;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    display: block;
    width: 100%;
  }

  /* Hero */
  .hero-title { font-size: clamp(80px, 20vw, 140px); }
  .hero-subtitle { font-size: clamp(20px, 6vw, 40px); letter-spacing: 8px; }
  .hero-eyebrow { font-size: 11px; letter-spacing: 4px; }
  .btn-hero { font-size: 10px; padding: 14px 24px; letter-spacing: 1.5px; }

  /* Parallax fix for mobile */
  .parallax-bg {
    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
    inset: 0;
  }
  .parallax-divider {
    height: 280px;
  }

  /* Intro */
  .intro-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .intro-img { max-width: 240px; margin: 0 auto; }

  /* Features */
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .features-grid .feature-item:last-child {
    grid-column: 1 / -1;
    max-width: 360px;
    margin: 0 auto;
  }

  /* Special */
  .special-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .special-image img { height: 280px; }

  /* Cards */
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* Leasing */
  .leasing-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .leasing-ctas .btn { text-align: center; }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Pricing table - clean 3 columns */
  .pricing-table-wrap {
    overflow-x: visible;
  }
  .pricing-table thead {
    display: none;
  }
  .pricing-table,
  .pricing-table tbody,
  .pricing-table tr,
  .pricing-table td {
    display: block;
    width: 100%;
  }
  .pricing-table tbody tr {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 8px;
    padding: 20px 16px;
    border-bottom: 1px solid var(--border);
  }
  .pricing-table td {
    padding: 0;
    text-align: center;
  }
  .pricing-table td.price-col {
    text-align: center;
  }
  .pricing-table td:nth-child(1) {
    text-align: left;
  }
  .pricing-table td:nth-child(2) {
    text-align: center;
    font-size: 12px;
  }
  .pricing-table td:nth-child(3) {
    text-align: right;
  }
  .tier-label {
    font-size: 16px;
  }
  .price {
    font-size: 26px;
  }

  /* Contact bar */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Section spacing */
  .intro-section,
  .warum-section,
  .special-section,
  .leistungen-section,
  .preise-section,
  .testimonials-section { padding: 48px 0; }

  .leasing-section { padding: 60px 0; }
  .contact-bar { padding: 48px 0; }
  .site-footer { padding: 40px 0 24px; }
}

/* ===================================================
   RESPONSIVE — Small Mobile (< 480px)
   =================================================== */
@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .features-grid .feature-item:last-child {
    max-width: 100%;
  }
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .hero-title { font-size: clamp(72px, 22vw, 120px); }
  .section-title { font-size: clamp(32px, 9vw, 48px); }
}

/* ===================================================
   UTILITIES
   =================================================== */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ===================================================
   LEGAL PAGES (Impressum, Datenschutz)
   =================================================== */
.legal-section {
  padding: 140px 0 80px;
  background: var(--bg);
}
.legal-content {
  max-width: 800px;
}
.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text);
  margin-top: 40px;
  margin-bottom: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.legal-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.legal-content h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--red);
  margin-top: 24px;
  margin-bottom: 8px;
}
.legal-content p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 12px;
}
.legal-content ul {
  margin: 12px 0 20px 24px;
  list-style: disc;
}
.legal-content ul li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 4px;
}
.legal-content a {
  color: var(--red);
}
.legal-content a:hover {
  color: var(--text);
}
.legal-date {
  margin-top: 40px;
  font-size: 13px;
  color: var(--text-dim);
  font-style: italic;
}

/* ===================================================
   INTRO LOADING SCREEN
   =================================================== */
.intro-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.intro-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.intro-loader-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.8);
  animation: loaderFadeIn 1s ease forwards;
}
.intro-loader-title {
  font-family: var(--font-heading);
  font-size: clamp(60px, 15vw, 120px);
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text);
  margin-top: 20px;
  line-height: 0.9;
  opacity: 0;
  animation: loaderFadeIn 0.8s ease 0.3s forwards;
}
.intro-loader-text {
  font-family: var(--font-heading);
  font-size: clamp(14px, 3.5vw, 28px);
  font-weight: 700;
  letter-spacing: clamp(6px, 2vw, 18px);
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-top: 8px;
  opacity: 0;
  animation: loaderFadeIn 0.8s ease 0.5s forwards;
}
.intro-loader-line {
  width: 60px;
  height: 2px;
  background: var(--red);
  margin-top: 16px;
  opacity: 0;
  transform: scaleX(0);
  animation: loaderLineGrow 0.8s ease 0.7s forwards;
}
@keyframes loaderFadeIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes loaderLineGrow {
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

/* ===================================================
   KOSTENVORANSCHLAG FORM PAGE
   =================================================== */
.form-hero {
  padding: 140px 0 60px;
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border);
}
.form-hero-desc {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 700px;
}

.form-section {
  background: var(--bg);
  padding: 60px 0 80px;
}

.form-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px 36px;
  margin-bottom: 28px;
}

.form-block-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.form-block-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--red);
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  flex-shrink: 0;
}

.form-optional {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-dim);
  letter-spacing: 0;
  text-transform: none;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group--full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(224, 43, 32, 0.15);
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Upload Zone */
.upload-zone {
  position: relative;
  border: 2px dashed rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 40px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}
.upload-zone:hover,
.upload-zone.dragover {
  border-color: var(--red);
  background: rgba(224, 43, 32, 0.05);
}
.upload-zone-content {
  pointer-events: none;
}
.upload-icon {
  width: 48px;
  height: 48px;
  color: var(--text-dim);
  margin: 0 auto 12px;
}
.upload-text {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.upload-browse {
  color: var(--red);
  font-weight: 600;
  text-decoration: underline;
}
.upload-hint {
  font-size: 13px;
  color: var(--text-dim);
}
.upload-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

/* Upload Previews */
.upload-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}
.preview-item {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.preview-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 20px;
  height: 20px;
  background: var(--red);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Toggle Switch */
.toggle-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  color: var(--text);
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}
.toggle-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.toggle-switch input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-slider {
  width: 48px;
  height: 26px;
  background: rgba(255,255,255,0.15);
  border-radius: 13px;
  position: relative;
  transition: background var(--transition);
}
.toggle-slider::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: var(--text);
  border-radius: 50%;
  transition: transform var(--transition);
}
.toggle-switch input:checked + .toggle-slider {
  background: var(--red);
}
.toggle-switch input:checked + .toggle-slider::after {
  transform: translateX(22px);
}
.toggle-text-no,
.toggle-text-yes {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dim);
}
.toggle-switch input:checked ~ .toggle-text-yes {
  color: var(--red);
}

.insurance-fields {
  grid-column: 1 / -1;
}
.insurance-fields.visible {
  display: block !important;
}

/* Radio Group */
.radio-group {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.radio-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 15px;
  color: var(--text-muted);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.radio-item input {
  display: none;
}
.radio-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  transition: border-color var(--transition);
}
.radio-item input:checked + .radio-custom {
  border-color: var(--red);
}
.radio-item input:checked + .radio-custom::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
}

/* Submit */
.form-submit-wrap {
  text-align: center;
  padding-top: 20px;
}
.btn-submit {
  font-size: 14px;
  padding: 18px 48px;
  letter-spacing: 2.5px;
}
.form-privacy {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 16px;
  line-height: 1.6;
}

/* Form Messages */
.form-message {
  text-align: center;
  padding: 48px 32px;
  border-radius: 8px;
  margin-top: 32px;
}
.form-message--success {
  background: rgba(37, 211, 102, 0.05);
  border: 1px solid rgba(37, 211, 102, 0.3);
}
.form-message--success h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: #25D366;
  margin: 20px 0 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.form-message--success p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.form-message--error {
  background: rgba(224, 43, 32, 0.05);
  border: 1px solid rgba(224, 43, 32, 0.3);
}
.form-message--error p {
  font-size: 16px;
  color: var(--red);
}
.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Alternatives */
.form-alternatives {
  margin-top: 60px;
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.form-alt-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.form-alt-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  border-color: #25D366;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: var(--radius);
  padding: 14px 32px;
  transition: all var(--transition);
}
.btn-whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
  color: #fff;
}
.btn-whatsapp svg {
  width: 20px;
  height: 20px;
}

/* Form Responsive */
@media (max-width: 768px) {
  .form-hero {
    padding: 120px 0 40px;
  }
  .form-block {
    padding: 28px 20px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-block-title {
    font-size: 20px;
  }
  .toggle-label {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .radio-group {
    flex-direction: column;
    gap: 14px;
  }
  .btn-submit {
    width: 100%;
    padding: 18px 24px;
  }
  .form-alt-buttons {
    flex-direction: column;
    align-items: stretch;
    padding: 0 20px;
  }
  .form-alt-buttons .btn {
    text-align: center;
  }
}
