/* ============================================================
   Klein Reinigungstechnik – Mobile Waschanlagen Landingpage
   ============================================================ */

/* ---------- Local Fonts (Inter) ---------- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter-latin-400-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/inter-latin-500-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/inter-latin-600-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/inter-latin-700-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/inter-latin-800-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('../fonts/inter-latin-900-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- Custom Properties ---------- */
:root {
  --navy:       #0d1b2a;
  --navy-mid:   #1e3a5f;
  --orange:     #E3010F;
  --orange-dk:  #c94a00;
  --white:      #ffffff;
  --gray-light: #f5f7fa;
  --gray-mid:   #e2e8f0;
  --gray-text:  #64748b;
  --text:       #1a202c;
  --radius:     10px;
  --shadow:     0 4px 24px rgba(0,0,0,.10);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.16);
  --transition: 0.25s ease;
  --max-w:      1240px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover { background: var(--orange-dk); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }

.section-label {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .75rem;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
}

.section-title.light { color: var(--white); }

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .1s !important; }
.delay-2 { transition-delay: .2s !important; }
.delay-3 { transition-delay: .3s !important; }
.delay-4 { transition-delay: .4s !important; }
.delay-5 { transition-delay: .5s !important; }

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.10);
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

#site-header.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.15);
  padding: 1.5rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header-logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.header-logo img { height: 60px; width: auto; display: block; }

.header-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-left: auto;
}

.header-nav a {
  color: var(--navy);
  font-size: .9rem;
  font-weight: 500;
  transition: color var(--transition);
}
.header-nav a:hover { color: var(--orange); }

.header-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}

.btn-website {
  color: var(--navy);
  font-size: .85rem;
  font-weight: 500;
  padding: .5rem 1rem;
  border: 1px solid rgba(13,27,42,.25);
  border-radius: 6px;
  transition: background var(--transition), border-color var(--transition);
}
.btn-website:hover {
  background: rgba(13,27,42,.07);
  border-color: var(--navy);
  color: var(--navy);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .5rem;
  margin-left: auto;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/speedywash-mobile-selbstfahrende-waschanlage-modell-easydrive-diesel.webp');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13,27,42,.9) 0%,
    rgba(13,27,42,.7) 55%,
    rgba(13,27,42,.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 7rem 0 5rem;
  max-width: 680px;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero-content h1 span { color: var(--orange); }

.hero-lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 2rem;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.15);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.8);
  font-size: .85rem;
}

.trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--orange);
  flex-shrink: 0;
}

/* ============================================================
   VORTEILE STRIP
   ============================================================ */
#vorteile {
  padding: 5rem 0;
  background: var(--white);
}

.vorteile-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.vorteile-intro p {
  color: var(--gray-text);
  margin-top: .75rem;
  font-size: 1.05rem;
}

.vorteile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.vorteil-card {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  border-top: 3px solid var(--orange);
  transition: transform var(--transition), box-shadow var(--transition);
}
.vorteil-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.vorteil-icon {
  width: 48px;
  height: 48px;
  background: rgba(244,92,0,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--orange);
}
.vorteil-icon svg { width: 26px; height: 26px; }

.vorteil-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
}

.vorteil-card p {
  font-size: .875rem;
  color: var(--gray-text);
  line-height: 1.55;
}

/* ============================================================
   WARUM INVESTIEREN
   ============================================================ */
#warum {
  padding: 5rem 0;
  background: var(--navy);
}

.warum-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.warum-intro p {
  color: rgba(255,255,255,.75);
  margin-top: .75rem;
  font-size: 1.05rem;
}

.warum-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.warum-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 2rem;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.warum-card:hover {
  background: rgba(255,255,255,.09);
  border-color: var(--orange);
  transform: translateY(-3px);
}

.warum-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(244,92,0,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--orange);
}
.warum-card-icon svg { width: 28px; height: 28px; }

.warum-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .75rem;
}

.warum-card p {
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
}

/* ============================================================
   SIE SUCHEN
   ============================================================ */
#sie-suchen {
  padding: 5rem 0;
  background: var(--navy-mid);
}

.sie-suchen-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.sie-suchen-text h2 {
  color: var(--white);
  margin-bottom: 1.75rem;
}

.sie-suchen-list {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  margin-bottom: 2rem;
}

.sie-suchen-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  color: rgba(255,255,255,.85);
  font-size: .95rem;
}

.sie-suchen-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 13px;
  background-position: center;
  background-repeat: no-repeat;
}

.sie-suchen-conclusion {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--orange);
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--orange);
  background: rgba(244,92,0,.08);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 2rem;
}

.sie-suchen-visual {
  position: relative;
}

.sie-suchen-visual img {
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  height: 420px;
}

/* ============================================================
   MODELLE
   ============================================================ */
#modelle {
  padding: 5.5rem 0;
  background: var(--gray-light);
}

.modelle-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

/* Tab Bar */
.modelle-tabs {
  display: flex;
  gap: .5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.tab-btn {
  padding: 1.75rem 1.75rem;
  border-radius: 6px;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid var(--gray-mid);
  background: var(--white);
  color: var(--gray-text);
  transition: background var(--transition), border-color var(--transition),
              color var(--transition), transform var(--transition);
}
.tab-btn:hover { border-color: var(--orange); color: var(--navy); }
.tab-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: none;
}

/* Tab Panels */
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* Model Cards */
.model-section {
  margin-bottom: 2.5rem;
}

.model-section-title {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 1.5rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--gray-mid);
}

.model-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 1.75rem;
}

.model-card-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
}

.model-card.img-right .model-card-inner {
  grid-template-columns: 1fr 380px;
}
.model-card.img-right .model-img-col { order: 2; }
.model-card.img-right .model-content { order: 1; }

.model-img-col {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}

.model-img-col img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform .4s ease;
}
.model-img-col.standard img {object-position: calc(50% + 500px) 50%;}
.model-img-col.plus img {object-position: calc(50% + 280px) 50%;}
.model-img-col.selbst img {object-position: calc(50% - 400px) 50%;}


.model-img-col img:hover { transform: scale(1.04); }

.gallery-hidden { display: none; }

.model-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--orange);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: 4px;
  z-index: 2;
}

.model-content {
  padding: 2.25rem 2.5rem;
  display: flex;
  flex-direction: column;
}

.model-content h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: .35rem;
  line-height: 1.2;
}

.model-content h4 {
  font-size: .85rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.model-desc {
  color: var(--gray-text);
  font-size: .93rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.model-benefits {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  margin-top: auto;
}

.model-benefits li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .88rem;
  color: var(--text);
  line-height: 1.45;
}

.model-benefits li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(244,92,0,.12);
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f45c00' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px;
  background-position: center;
  background-repeat: no-repeat;
}

/* Accordion (Mobile) */
.model-accordion { display: none; }

.accordion-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.07);
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}

.accordion-header h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}

.accordion-header span {
  font-size: .8rem;
  color: var(--gray-text);
}

.accordion-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
  color: var(--navy);
}
.accordion-icon svg { width: 16px; height: 16px; }
.accordion-item.open .accordion-icon {
  background: var(--orange);
  color: var(--white);
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.accordion-content {
  padding: 0 1.5rem 1.5rem;
}

.accordion-content img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
  object-fit: cover;
  max-height: 240px;
}

.accordion-content p {
  font-size: .9rem;
  color: var(--gray-text);
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* ============================================================
   FAQ
   ============================================================ */
#faq {
  padding: 5rem 0;
  background: var(--white);
}

.faq-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  align-items: start;
}

.faq-sidebar h2 {
  margin-bottom: 1rem;
}

.faq-sidebar p {
  color: var(--gray-text);
  font-size: .95rem;
  margin-bottom: 2rem;
  line-height: 1.65;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.faq-item {
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--orange); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  transition: color var(--transition);
}
.faq-item.open .faq-question { color: var(--orange); }

.faq-question-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.faq-question-icon svg { width: 14px; height: 14px; }
.faq-item.open .faq-question-icon {
  background: var(--orange);
  color: var(--white);
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.faq-answer-content {
  padding: 0 1.5rem 1.25rem;
  font-size: .9rem;
  color: var(--gray-text);
  line-height: 1.7;
}

/* ============================================================
   TRUST / CTA
   ============================================================ */
#trust {
  padding: 5rem 0;
  background: var(--navy);
}

.trust-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.trust-checks {
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.trust-check {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  color: rgba(255,255,255,.9);
  font-size: .95rem;
}

.check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.check-icon svg { width: 12px; height: 12px; color: var(--white); }

.trust-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.trust-cta h2 {
  color: var(--white);
  margin-bottom: .25rem;
}

.trust-cta p {
  color: rgba(255,255,255,.75);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.trust-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: #060f18;
  padding: 3rem 0 2rem;
  color: rgba(255,255,255,.6);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-logo-wrap { display: inline-block; margin-bottom: 1rem; }
.footer-logo-wrap img { height: 64px; width: auto; display: block; }

.footer-brand p {
  font-size: .875rem;
  max-width: 380px;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.footer-main-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  background: var(--orange);
  color: var(--white);
  font-weight: 600;
  font-size: .9rem;
  border-radius: 6px;
  transition: background var(--transition);
}
.footer-main-link:hover { background: var(--orange-dk); color: var(--white); }

.footer-info { font-size: .85rem; text-align: right; }
.footer-info p + p { margin-top: .4rem; }

.footer-legal {
  font-size: .7rem;
  line-height: 1.65;
  color: rgba(255,255,255,.35);
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-legal-title {
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255,255,255,.45);
  margin-bottom: .6rem;
}

.footer-legal ul {
  list-style: disc;
  padding-left: 1.1rem;
}

.footer-legal li { margin-bottom: .5rem; }
.footer-legal li:last-child { margin-bottom: 0; }
.footer-legal li::marker { color: rgba(255,255,255,.3); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--orange); }

/* ============================================================
   LIGHTBOX
   ============================================================ */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.92);
  align-items: center;
  justify-content: center;
  padding: 2rem;
  cursor: zoom-out;
}
#lightbox.open { display: flex; }

#lightbox img {
  max-width: min(90vw, 1200px);
  max-height: 90vh;
  object-fit: contain;
  border-radius: 6px;
  cursor: default;
}

#lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background var(--transition);
}
#lightbox-close:hover { background: var(--orange); }
#lightbox-close svg { width: 22px; height: 22px; }

#lightbox-prev,
#lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: none;
  cursor: pointer;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  z-index: 1;
}
#lightbox-prev { left: 1.5rem; }
#lightbox-next { right: 1.5rem; }
#lightbox-prev:hover,
#lightbox-next:hover { background: var(--orange); }
#lightbox-prev.hidden,
#lightbox-next.hidden { display: none; }

#lightbox-counter {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.8);
  font-size: .875rem;
  background: rgba(0,0,0,.4);
  padding: .25rem .75rem;
  border-radius: 999px;
}
#lightbox-counter:empty { display: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .model-card-inner,
  .model-card.img-right .model-card-inner {
    grid-template-columns: 320px 1fr;
  }
  .model-card.img-right .model-img-col { order: 0; }
  .model-card.img-right .model-content { order: 0; }
  .faq-inner { grid-template-columns: 280px 1fr; gap: 2.5rem; }
  .trust-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .sie-suchen-inner { gap: 2.5rem; }
}

@media (max-width: 900px) {
  .header-nav { display: none; }
  .header-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(13,27,42,.97);
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 999;
  }
  .header-nav.open a { font-size: 1.3rem; }
  .nav-toggle { display: flex; }
  .header-actions .btn-website { display: none; }

  .model-card-inner,
  .model-card.img-right .model-card-inner {
    grid-template-columns: 1fr;
  }
  .model-img-col { min-height: 240px; }
  .model-content { padding: 1.75rem; }
  .model-card-desktop { display: none; }
  .model-accordion { display: block; }

  .sie-suchen-inner { grid-template-columns: 1fr; }
  .sie-suchen-visual { display: none; }

  .faq-inner { grid-template-columns: 1fr; }
  .trust-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-info { text-align: left; }
}

@media (max-width: 600px) {
  .vorteile-grid { grid-template-columns: 1fr 1fr; }
  .warum-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .trust-cta-buttons { flex-direction: column; }
  .modelle-tabs { flex-direction: column; }
  .tab-btn { width: 100%; text-align: center; }
}

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