/*
 * Stylesheet for the Autohelden B2B Landing Page
 *
 * The design borrows elements from auto‑china.com: a full‑width hero
 * slider with overlayed text, a row of benefits illustrated with icons,
 * a filterable catalogue of vehicles and a simple footer. Colours were
 * chosen to harmonise with the existing Autohelden corporate palette
 * (white, dark blue and turquoise). All sizes are responsive so the
 * page remains usable on mobile devices.
 */

/* Root variables for colours */
:root {
  --primary: #00838F;       /* turquoise accent */
  --dark: #0E2431;          /* deep navy */
  --light: #F7F9FB;         /* very light grey */
  --muted: #6C8793;         /* muted text */
  --card-bg: #ffffff;       /* white card background */
  --shadow: rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

/* Global styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  color: var(--dark);
  background-color: var(--light);
  line-height: 1.5;
}
a {
  text-decoration: none;
  color: inherit;
}

/* Navigation bar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 1px 4px var(--shadow);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.4rem 1rem;
}
.logo {
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--primary);
  text-transform: uppercase;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}
.nav-links li a {
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  color: var(--dark);
  font-size: 0.95rem;
  transition: var(--transition);
}
.nav-links li a:hover {
  background-color: var(--primary);
  color: #fff;
}

/* Hero Section */
.hero {
  position: relative;
  height: 90vh;
  width: 100%;
  overflow: hidden;
  margin-top: 70px; /* offset for fixed nav */
}
.slides-container {
  height: 100%;
  display: flex;
  position: relative;
}
.slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.slide.active {
  opacity: 1;
}
.slide .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 60%, rgba(0,0,0,0) 100%);
}
.slide-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 500px;
}
.slide-content h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.slide-content p {
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  color: #e0f7fa;
}
.btn-primary {
  display: inline-block;
  background-color: var(--primary);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-weight: 600;
  transition: var(--transition);
}
.btn-primary:hover {
  background-color: #005962;
}
.hero-controls {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  gap: 0.5rem;
}
.hero-btn {
  background-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  border: none;
  font-size: 1.6rem;
  padding: 0.3rem 0.6rem;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}
.hero-btn:hover {
  background-color: rgba(255, 255, 255, 0.6);
  color: var(--primary);
}

/* Why Section */
.why-section {
  padding: 4rem 1rem;
  background-color: var(--light);
  text-align: center;
}
.why-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--dark);
}
.why-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.why-card {
  flex: 1 1 250px;
  background-color: var(--card-bg);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px var(--shadow);
  text-align: center;
  transition: var(--transition);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px var(--shadow);
}
.why-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  border-radius: 50%;
  color: #fff;
}
.why-icon svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}
.why-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.why-card p {
  font-size: 0.95rem;
  color: var(--muted);
}

/* Vehicles Section */
.vehicles-section {
  padding: 4rem 1rem;
  background-color: var(--light);
  max-width: 1200px;
  margin: 0 auto;
}
.vehicles-section h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--dark);
}
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.filter-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.filter-group span {
  font-weight: 600;
  margin-right: 0.5rem;
}
.filter-btn {
  background-color: #fff;
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn.active,
.filter-btn:hover {
  background-color: var(--primary);
  color: #fff;
}

/* Vehicle grid */
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.vehicle-card {
  background-color: var(--card-bg);
  border-radius: 8px;
  box-shadow: 0 2px 8px var(--shadow);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: var(--transition);
}
.vehicle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px var(--shadow);
}
.card-header {
  height: 160px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
}
.card-header.no-image {
  background: linear-gradient(135deg, var(--primary), var(--dark));
}
.card-header .icon-container {
  background-color: rgba(255,255,255,0.15);
  border-radius: 50%;
  padding: 0.5rem;
}
.card-header svg {
  width: 48px;
  height: 48px;
  fill: #fff;
}
.card-content {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
  color: var(--dark);
}
.model-type {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.specs {
  display: flex;
  gap: 1rem;
  font-weight: 600;
  color: var(--primary);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}
.btn-detail {
  background-color: var(--primary);
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  align-self: flex-start;
  transition: var(--transition);
}
.btn-detail:hover {
  background-color: #005962;
}

/* Detail overlay */
.vehicle-detail {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}
.vehicle-detail.hidden {
  display: none;
}
.detail-box {
  background-color: #fff;
  border-radius: 8px;
  padding: 2rem;
  max-width: 700px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}
.close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--muted);
  cursor: pointer;
  transition: var(--transition);
}
.close-btn:hover {
  color: var(--primary);
}
.detail-box h2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}
.detail-specs {
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--primary);
  font-weight: 600;
}
.detail-content ul {
  margin-left: 1.25rem;
  margin-bottom: 1rem;
}
.detail-content ul li {
  list-style-type: disc;
  margin-bottom: 0.4rem;
}

/* Footer */
footer {
  background-color: var(--dark);
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 4rem;
}
footer p {
  margin: 0.3rem 0;
  font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .slide-content h2 {
    font-size: 1.8rem;
  }
  .slide-content p {
    font-size: 0.95rem;
  }
  .why-cards {
    flex-direction: column;
  }
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links {
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
  }
}
/* Hero dots: Auto-China-like centered navigation */
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 2.2rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 5;
}
.hero-dot {
  width: 34px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: var(--transition);
}
.hero-dot.active,
.hero-dot:hover {
  background: var(--primary);
  width: 52px;
}

/* Detail page */
.detail-page-body {
  background: #fff;
}
.vehicle-hero-detail {
  position: relative;
  min-height: 92vh;
  margin-top: 70px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.vehicle-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.76) 0%, rgba(0,0,0,.42) 48%, rgba(0,0,0,.16) 100%);
  z-index: 1;
}
.vehicle-hero-content {
  position: relative;
  z-index: 2;
  width: min(1120px, 90vw);
  margin: 0 auto;
  color: #fff;
}
.eyebrow {
  color: #79f3f5;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 700;
  margin-bottom: .85rem;
}
.eyebrow.dark {
  color: var(--primary);
}
.vehicle-hero-content h1 {
  font-size: clamp(2.6rem, 7vw, 6.6rem);
  line-height: .95;
  margin-bottom: 1rem;
  letter-spacing: -.04em;
}
.vehicle-hero-content > p:not(.eyebrow) {
  max-width: 680px;
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  color: rgba(255,255,255,.88);
  margin-bottom: 2rem;
}
.hero-stat-line {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-bottom: 2rem;
}
.hero-stat-line span {
  min-width: 145px;
  padding: .8rem 1rem;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.22);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  color: rgba(255,255,255,.75);
  font-size: .78rem;
}
.hero-stat-line strong {
  display: block;
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: .15rem;
}
.emotion-strip {
  background: linear-gradient(120deg, #02080d 0%, #0a2630 52%, #02080d 100%);
  padding: 2.2rem 1rem;
}
.emotion-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.emotion-card {
  min-height: 230px;
  border-radius: 18px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 20px 40px rgba(0,0,0,.22);
}
.emotion-card span {
  font-weight: 800;
  color: #7cf7f9;
  letter-spacing: .12em;
  margin-bottom: auto;
}
.emotion-card h3 {
  font-size: 1.2rem;
  margin-bottom: .4rem;
}
.emotion-card p {
  color: rgba(255,255,255,.82);
  font-size: .92rem;
}
.factsheet-section {
  background: #fff;
  padding: 5rem 1rem 3rem;
  max-width: 1160px;
  margin: 0 auto;
}
.factsheet-head {
  max-width: 760px;
  margin-bottom: 2.4rem;
}
.factsheet-head h2 {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 1rem;
}
.factsheet-head p {
  color: var(--muted);
  font-size: 1.08rem;
}
.factsheet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #dce5e8;
}
.fact-row {
  padding: 1.25rem 0;
  border-bottom: 1px solid #dce5e8;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 1rem;
}
.fact-row:nth-child(odd) {
  margin-right: 2rem;
}
.fact-row dt {
  color: var(--muted);
  font-weight: 600;
}
.fact-row dd {
  color: var(--dark);
  font-size: 1.18rem;
  font-weight: 750;
}
.factsheet-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.btn-secondary {
  display: inline-block;
  padding: .6rem 1.2rem;
  border: 1px solid var(--primary);
  color: var(--primary);
  border-radius: 4px;
  font-weight: 700;
}
.btn-secondary:hover {
  background: #e6f7f8;
}

@media (max-width: 900px) {
  .emotion-inner { grid-template-columns: repeat(2, 1fr); }
  .factsheet-grid { grid-template-columns: 1fr; }
  .fact-row:nth-child(odd) { margin-right: 0; }
}
@media (max-width: 560px) {
  .hero-dot { width: 24px; }
  .hero-dot.active { width: 38px; }
  .emotion-inner { grid-template-columns: 1fr; }
  .hero-stat-line span { min-width: 100%; }
  .fact-row { grid-template-columns: 1fr; gap: .25rem; }
}

/* Additional B2B content sections from dealer programme brief */
.content-section {
  padding: 4.8rem 1rem;
  background: #fff;
}
.content-section:nth-of-type(even) {
  background: var(--light);
}
.section-inner {
  width: min(1180px, 92vw);
  margin: 0 auto;
}
.two-column {
  display: grid;
  grid-template-columns: 0.9fr 1.25fr;
  gap: 3rem;
  align-items: start;
}
.content-section h2,
.dark-band h2,
.cta-section h2 {
  font-size: clamp(2rem, 4.5vw, 4.1rem);
  line-height: 1;
  letter-spacing: -.045em;
  margin-bottom: 1.2rem;
  color: var(--dark);
}
.lead-copy p,
.section-lead {
  color: #536b76;
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.section-lead {
  max-width: 860px;
  margin-bottom: 2.2rem;
}
.info-grid {
  display: grid;
  gap: 1rem;
}
.six-grid {
  grid-template-columns: repeat(3, 1fr);
}
.info-card,
.step-card,
.faq-grid details {
  background: #fff;
  border: 1px solid #dfe8ec;
  border-radius: 18px;
  padding: 1.35rem;
  box-shadow: 0 12px 28px rgba(14,36,49,.06);
}
.info-card h3,
.step-card h3 {
  font-size: 1.05rem;
  margin-bottom: .45rem;
  color: var(--dark);
}
.info-card p,
.step-card p,
.faq-grid p {
  color: #647d87;
  font-size: .95rem;
  line-height: 1.55;
}
.card-icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0,131,143,.10);
  color: var(--primary);
  font-size: 1.35rem;
  margin-bottom: 1rem;
}
.dark-band {
  background: linear-gradient(120deg, #02080d 0%, #0b2933 55%, #02080d 100%);
  color: #fff;
  padding: 4.6rem 1rem;
}
.dark-band h2,
.cta-section h2 {
  color: #fff;
}
.check-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .9rem;
  margin-top: 1.8rem;
}
.check-grid span {
  position: relative;
  padding: 1rem 1rem 1rem 2.65rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: rgba(255,255,255,.055);
  color: rgba(255,255,255,.88);
}
.check-grid span::before {
  content: '✓';
  position: absolute;
  left: 1rem;
  top: 1rem;
  color: #79f3f5;
  font-weight: 800;
}
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.step-card strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  margin-bottom: 1rem;
}
.exclusivity-section {
  background: #f0f5f7;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.8rem;
}
.faq-grid summary {
  cursor: pointer;
  font-weight: 750;
  color: var(--dark);
  list-style: none;
}
.faq-grid summary::-webkit-details-marker {
  display: none;
}
.faq-grid details p {
  margin-top: .8rem;
}
.cta-section {
  background:
    linear-gradient(90deg, rgba(0,0,0,.76), rgba(0,0,0,.32)),
    url('assets/zeekr-9x-hyper.jpg') center/cover no-repeat;
  padding: 5.5rem 1rem;
  color: #fff;
  text-align: left;
}
.cta-inner {
  width: min(960px, 92vw);
  margin: 0 auto;
}
.cta-inner p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255,255,255,.86);
  font-size: 1.08rem;
  line-height: 1.7;
  margin-bottom: 1.6rem;
}
.legal-notes {
  background: #fff;
  padding: 2rem 1rem 0;
}
.legal-notes p {
  color: #708890;
  font-size: .82rem;
  line-height: 1.65;
  border-top: 1px solid #dfe8ec;
  padding-top: 1.2rem;
}
@media (max-width: 980px) {
  .two-column,
  .six-grid,
  .check-grid,
  .steps,
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 680px) {
  .two-column,
  .six-grid,
  .check-grid,
  .steps,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .content-section,
  .dark-band,
  .cta-section {
    padding: 3.2rem 1rem;
  }
}

/* Premium Dark-Gold Theme aus der gelieferten Autohelden-Landingpage */
:root {
  --primary: #c9a45c;
  --primary-light: #e5c982;
  --primary-dark: #9d7937;
  --dark: #f5f2ea;
  --light: #070707;
  --muted: #c8c0b3;
  --muted-2: #928a7e;
  --card-bg: #171717;
  --border-gold: rgba(201, 164, 92, 0.30);
  --border-soft: rgba(255, 255, 255, 0.11);
  --shadow: rgba(0, 0, 0, 0.42);
}

html { scroll-behavior: smooth; }
body,
.detail-page-body {
  background:
    radial-gradient(circle at top left, rgba(201,164,92,0.14), transparent 34%),
    radial-gradient(circle at top right, rgba(255,255,255,0.07), transparent 28%),
    #070707;
  color: var(--dark);
}

header {
  background: rgba(7, 7, 7, 0.84);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: none;
  backdrop-filter: blur(16px);
}
.logo {
  color: var(--primary-light);
  letter-spacing: .04em;
}
.nav-links li a {
  color: var(--muted);
}
.nav-links li a:hover {
  background: transparent;
  color: var(--primary-light);
}

.hero {
  background: #070707;
}
.slide {
  background-position: center;
}
.slide .overlay {
  background:
    linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.38) 44%, rgba(0,0,0,.1) 100%),
    linear-gradient(180deg, rgba(0,0,0,.2) 0%, rgba(7,7,7,.45) 100%);
}
.slide-content h2 {
  font-size: clamp(2.5rem, 5vw, 5.4rem);
  line-height: .98;
  letter-spacing: -.045em;
  text-shadow: 0 18px 60px rgba(0,0,0,.5);
}
.slide-content p {
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.25rem);
}
.btn-primary,
.btn-detail,
.step-card strong {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #0a0a0a;
  border: 1px solid rgba(229,201,130,.55);
  box-shadow: 0 12px 28px rgba(201,164,92,.18);
  font-weight: 800;
}
.btn-primary:hover,
.btn-detail:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: #070707;
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(201,164,92,.26);
}
.hero-dot {
  background: rgba(255,255,255,.35);
}
.hero-dot.active,
.hero-dot:hover {
  background: var(--primary-light);
}

.why-section,
.vehicles-section,
.content-section,
.content-section:nth-of-type(even),
.exclusivity-section,
.legal-notes {
  background: transparent;
}
.why-section h2,
.vehicles-section h2,
.content-section h2,
.factsheet-head h2,
.faq-grid summary,
.info-card h3,
.step-card h3,
.card-content h3,
.detail-box h2 {
  color: var(--dark);
}
.why-card,
.vehicle-card,
.info-card,
.step-card,
.faq-grid details,
.detail-box {
  background: linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.025));
  border: 1px solid var(--border-soft);
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
  color: var(--dark);
}
.why-card:hover,
.vehicle-card:hover,
.info-card:hover,
.step-card:hover {
  border-color: var(--border-gold);
}
.why-card p,
.model-type,
.lead-copy p,
.section-lead,
.info-card p,
.step-card p,
.faq-grid p,
.factsheet-head p,
.legal-notes p {
  color: var(--muted);
}
.why-icon,
.card-icon {
  background: rgba(201,164,92,.11);
  border: 1px solid var(--border-gold);
  color: var(--primary-light);
}
.why-icon svg { fill: var(--primary-light); }

.filter-group span {
  color: var(--dark);
}
.filter-btn {
  background: transparent;
  color: var(--primary-light);
  border-color: var(--border-gold);
}
.filter-btn.active,
.filter-btn:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #070707;
  border-color: var(--primary);
}
.card-header.no-image {
  background:
    radial-gradient(circle at center, rgba(201,164,92,.18), transparent 42%),
    linear-gradient(135deg, #171717, #070707);
}
.card-header .icon-container {
  background: rgba(201,164,92,.12);
  border: 1px solid var(--border-gold);
}
.card-header svg { fill: var(--primary-light); }
.specs,
.detail-specs,
.eyebrow,
.eyebrow.dark,
.emotion-card span {
  color: var(--primary-light);
}

.dark-band,
.emotion-strip {
  background:
    radial-gradient(circle at top left, rgba(201,164,92,.14), transparent 34%),
    linear-gradient(120deg, #050505 0%, #111111 54%, #070707 100%);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.check-grid span,
.hero-stat-line span {
  border-color: var(--border-soft);
  background: rgba(255,255,255,.045);
}
.check-grid span::before {
  color: var(--primary-light);
}

.factsheet-section {
  background: transparent;
  color: var(--dark);
}
.factsheet-grid {
  border-top-color: rgba(255,255,255,.12);
}
.fact-row {
  border-bottom-color: rgba(255,255,255,.12);
}
.fact-row dt {
  color: var(--muted-2);
}
.fact-row dd {
  color: var(--dark);
}
.btn-secondary {
  border-color: var(--border-gold);
  color: var(--primary-light);
}
.btn-secondary:hover {
  background: rgba(201,164,92,.1);
}

.cta-section {
  background:
    linear-gradient(90deg, rgba(0,0,0,.86), rgba(0,0,0,.48)),
    url('assets/hero-jetour-g700-desert.jpeg') center/cover no-repeat;
}
footer {
  background: #050505;
  border-top: 1px solid rgba(255,255,255,.08);
  color: var(--muted);
  margin-top: 0;
}

.vehicle-hero-detail {
  background-color: #070707;
}
.vehicle-hero-overlay {
  background:
    linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.45) 48%, rgba(0,0,0,.16) 100%),
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(7,7,7,.42));
}
.emotion-card {
  border-color: rgba(255,255,255,.12);
}
.emotion-card h3 { color: #fff; }
.emotion-card p { color: rgba(245,242,234,.82); }

/* Detail page brochure upgrade */
.hero-stat-line-multi {
  row-gap: .85rem;
}
.hero-stat-line-multi span {
  min-width: 140px;
}
.factsheet-layout {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1.5rem;
  align-items: start;
}
.facts-box,
.prospect-box,
.gallery-card {
  background: linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.025));
  border: 1px solid var(--border-soft);
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
  border-radius: 18px;
}
.facts-box {
  padding: 1.25rem 1.35rem;
}
.prospect-box {
  padding: 1rem;
  display: grid;
  gap: .9rem;
}
.prospect-box-head p {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.5;
  margin-top: .35rem;
}
.prospect-image-wrap {
  display: block;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
}
.prospect-image-wrap img {
  display: block;
  width: 100%;
  height: auto;
}
.brochure-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
.gallery-card {
  overflow: hidden;
}
.gallery-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}
.gallery-card figcaption {
  padding: 1rem;
}
.gallery-card h3 {
  font-size: 1rem;
  margin-bottom: .35rem;
  color: var(--dark);
}
.gallery-card p {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.55;
}
@media (max-width: 980px) {
  .factsheet-layout,
  .brochure-gallery {
    grid-template-columns: 1fr;
  }
}

/* Header logo and legal/footer information */
.site-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 156px;
  height: 56px;
  padding: 0;
  overflow: hidden;
  flex: 0 0 auto;
}
.site-logo img {
  display: block;
  width: 140px;
  height: auto;
  object-fit: contain;
}
.footer-rich {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 3rem 0 2.2rem;
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 2rem;
  text-align: left;
}
.footer-column h3 {
  margin: 0 0 .85rem;
  color: #fff;
  font-size: .95rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-column p {
  margin: .35rem 0;
  color: var(--muted);
  line-height: 1.65;
}
.footer-column a {
  color: var(--primary-light);
  text-decoration: none;
}
.footer-column a:hover {
  color: #fff;
}
.footer-brand img {
  width: 190px;
  max-width: 100%;
  height: auto;
  padding: .35rem .55rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 10px 26px rgba(0,0,0,.24);
  object-fit: contain;
}
.footer-small {
  font-size: .78rem;
  opacity: .75;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(245,242,234,.62);
  font-size: .85rem;
  padding: 1rem;
  text-align: center;
}
.legal-page-body {
  min-height: 100vh;
}
.legal-page {
  padding-top: 6.5rem;
}
.legal-hero {
  width: min(980px, calc(100% - 2rem));
  margin: 0 auto 2rem;
  padding: 3rem 0 1.5rem;
  color: #fff;
}
.legal-hero h1 {
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: .95;
  margin: .35rem 0 1rem;
  letter-spacing: -.04em;
}
.legal-hero p:not(.eyebrow) {
  color: var(--muted);
  max-width: 760px;
  font-size: 1.05rem;
  line-height: 1.7;
}
.legal-content {
  width: min(980px, calc(100% - 2rem));
  margin: 0 auto 4rem;
  display: grid;
  gap: 1rem;
}
.legal-card {
  border-radius: 18px;
  border: 1px solid var(--border-soft);
  background: rgba(255,255,255,.035);
  box-shadow: 0 24px 70px rgba(0,0,0,.24);
  padding: 1.35rem;
  color: var(--dark);
}
.legal-card h2 {
  color: #fff;
  margin: 0 0 .85rem;
  font-size: 1.25rem;
}
.legal-card p,
.legal-card dd {
  color: var(--muted);
  line-height: 1.7;
}
.legal-card a {
  color: var(--primary-light);
}
.legal-list {
  display: grid;
  gap: .75rem;
}
.legal-list div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding-bottom: .75rem;
}
.legal-list dt {
  color: #fff;
  font-weight: 700;
}
.legal-warning {
  border-color: rgba(201,164,92,.45);
  background: rgba(201,164,92,.08);
}
@media (max-width: 820px) {
  .footer-rich {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }
  .navbar {
    align-items: flex-start;
  }
  .site-logo {
    width: 142px;
    height: 52px;
  }
  .site-logo img {
    width: 126px;
  }
  .legal-list div {
    grid-template-columns: 1fr;
    gap: .25rem;
  }
}

/* Final client adjustments */
.site-logo {
  width: 188px;
  height: 62px;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}
.site-logo img {
  width: 174px;
  max-height: 52px;
  object-fit: contain;
}
.footer-brand img {
  width: 230px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}
.brand-word {
  display: inline-block;
  font-size: 1.18em;
  letter-spacing: -.04em;
  color: var(--primary-light);
  text-transform: lowercase;
}
.why-section h2 {
  font-size: clamp(2.4rem, 4.8vw, 4.8rem);
  letter-spacing: -.05em;
}
.compact-why-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.compact-why-card h3 {
  font-size: clamp(1.1rem, 1.8vw, 1.55rem);
  line-height: 1.15;
  margin-bottom: 0;
}
.card-actions {
  display: flex;
  gap: .65rem;
  flex-wrap: wrap;
  margin-top: .9rem;
}
.btn-request {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .5rem .9rem;
  border-radius: 4px;
  border: 1px solid var(--border-gold);
  color: var(--primary-light);
  font-size: .9rem;
  font-weight: 750;
  transition: var(--transition);
}
.btn-request:hover {
  background: rgba(201,164,92,.12);
  transform: translateY(-2px);
}
.contact-form {
  margin-top: 2rem;
  background: rgba(255,255,255,.055);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 1.3rem;
  text-align: left;
}
.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.contact-form label {
  display: grid;
  gap: .42rem;
  color: var(--dark);
  font-weight: 700;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.35);
  color: var(--dark);
  padding: .85rem .9rem;
  font: inherit;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(229,201,130,.45);
  border-color: var(--primary-light);
}
.contact-form-message {
  margin-top: 1rem;
}
.form-note,
.form-status {
  margin: .9rem 0 0;
  color: var(--muted);
  font-size: .9rem;
}
.form-status {
  color: var(--primary-light);
  font-weight: 700;
}
.co2-label-box {
  margin-top: 1.5rem;
  padding: 1.3rem;
  border-radius: 18px;
  border: 1px solid var(--border-gold);
  background: linear-gradient(135deg, rgba(201,164,92,.12), rgba(255,255,255,.035));
  box-shadow: 0 20px 55px rgba(0,0,0,.24);
}
.co2-label-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: .8rem;
}
.co2-label-head > span {
  display: inline-flex;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #090909;
  font-size: 1.25rem;
  font-weight: 900;
}
.co2-label-head h3 {
  margin: 0;
  color: var(--dark);
  font-size: 1.4rem;
}
.co2-label-head p {
  margin: .15rem 0 0;
  color: var(--primary-light);
  font-weight: 800;
}
.co2-label-box ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}
.co2-label-box li {
  margin: .28rem 0;
}
@media (max-width: 760px) {
  .contact-form-grid { grid-template-columns: 1fr; }
  .site-logo { width: 158px; height: 54px; }
  .site-logo img { width: 150px; }
}

/* Logo aspect correction */
.site-logo img {
  width: auto;
  height: 52px;
  max-width: 178px;
}
.footer-brand img {
  width: 260px;
  height: auto;
  max-width: 100%;
}
@media (max-width: 760px) {
  .site-logo img { height: 46px; width: auto; max-width: 152px; }
}

/* Kundenanpassung: Warum-autohelden-Headline dezenter */
.why-section h2 { font-size: clamp(1.8rem, 3.2vw, 2.8rem) !important; letter-spacing: -0.025em; }
.brand-word { font-size: 1.03em; }
.placeholder-row dd { color: var(--primary-light); font-weight: 800; }


/* CSV prices and CO2 label links */
.price-line {
  margin: .65rem 0 .35rem;
  color: var(--primary-light);
  font-weight: 800;
  font-size: .98rem;
  line-height: 1.35;
}
.card-co2-link {
  display: inline-flex;
  width: fit-content;
  margin-bottom: .9rem;
  color: var(--muted);
  font-size: .86rem;
  border-bottom: 1px solid rgba(229,201,130,.42);
}
.card-co2-link:hover {
  color: var(--primary-light);
}
.co2-file-link,
.datasheet-file-link {
  width: fit-content;
  margin-top: .85rem;
}
.prospect-box .datasheet-file-link + .datasheet-file-link {
  margin-top: .25rem;
}

/* Hero link fix: inactive slides must not cover active slide links */
.slide {
  pointer-events: none;
  z-index: 0;
}
.slide.active {
  pointer-events: auto;
  z-index: 2;
}
.slide-content {
  z-index: 3;
}
