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

:root {
  --red:      #FF385C;
  --red-dark: #E31C5F;
  --dark:     #222222;
  --mid:      #484848;
  --muted:    #767676;
  --border:   #EBEBEB;
  --bg:       #F7F7F7;
  --white:    #FFFFFF;
  --shadow:   0 2px 16px rgba(0,0,0,0.10);
  --radius:   14px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Language switching */
body.lang-en .de { display: none; }
body.lang-de .en { display: none; }

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
  gap: 20px;
}
.nav-logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.nav-logo span { color: var(--red); }
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--mid);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--red); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-badge {
  background: var(--red);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 22px;
  white-space: nowrap;
}
/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--bg);
  border-radius: 22px;
  padding: 3px;
}
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 18px;
  font-size: 15px;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: background 0.2s;
  color: var(--muted);
  font-weight: 600;
  font-size: 12px;
}
.lang-btn.active {
  background: var(--white);
  color: var(--dark);
  box-shadow: 0 1px 4px rgba(0,0,0,0.10);
}
.lang-btn span.flag { font-size: 16px; }

/* ── HERO ── */
.hero {
  position: relative;
  height: 90vh;
  min-height: 580px;
  background: linear-gradient(155deg, #111111 0%, #1e1e1e 35%, #2a1f14 75%, #1a1208 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    105deg, transparent, transparent 120px,
    rgba(255,255,255,0.012) 120px, rgba(255,255,255,0.012) 121px
  );
  z-index: 1;
}
/* Gradient overlay that fades the photo into the dark left side */
.hero-img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #111111 0%,
    #111111 18%,
    rgba(17,17,17,0.85) 32%,
    rgba(17,17,17,0.3) 55%,
    rgba(17,17,17,0.1) 75%,
    transparent 100%
  );
}
.hero-car {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
/* Bottom gradient so text is readable */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 260px;
  background: linear-gradient(to top, rgba(10,10,10,0.75) 0%, transparent 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 64px 72px;
  max-width: 620px;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.hero-title {
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  color: white;
  letter-spacing: -2px;
  margin-bottom: 20px;
}
.hero-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.pill {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 12px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 22px;
  backdrop-filter: blur(8px);
}

/* ── LAYOUT ── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
}

section { padding: 80px 0; }
section + section { border-top: 1px solid var(--border); }

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.8px;
  color: var(--dark);
  margin-bottom: 16px;
}
.section-intro {
  font-size: 18px;
  color: var(--muted);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* ── STAT STRIP ── */
.stat-strip {
  background: var(--dark);
  padding: 40px 0;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
}
.stat-item {
  background: var(--dark);
  padding: 28px 32px;
  text-align: center;
}
.stat-value {
  font-size: 42px;
  font-weight: 800;
  color: white;
  letter-spacing: -1.5px;
  line-height: 1;
}
.stat-unit {
  font-size: 18px;
  font-weight: 400;
  color: var(--red);
}
.stat-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-top: 8px;
}

/* ── STORY ── */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}
.story-body p {
  font-size: 17px;
  color: var(--mid);
  line-height: 1.85;
  margin-bottom: 24px;
}
.story-body > .en > p:first-child::first-letter,
.story-body > .de > p:first-child::first-letter {
  float: left;
  font-size: 72px;
  font-weight: 800;
  line-height: 0.78;
  color: var(--red);
  margin-right: 10px;
  margin-top: 8px;
}
.story-body blockquote {
  border-left: 3px solid var(--red);
  margin: 32px 0;
  padding: 4px 0 4px 24px;
  font-size: 20px;
  font-style: italic;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.5;
}
.bq-source {
  font-size: 13px;
  font-style: normal;
  color: var(--muted);
  display: block;
  margin-top: 8px;
}

.story-sidebar {
  position: sticky;
  top: 84px;
}
.fact-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 20px;
}
.fact-card h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.fact-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  gap: 8px;
}
.fact-row:last-child { border-bottom: none; padding-bottom: 0; }
.fact-row .fk { color: var(--muted); flex-shrink: 0; }
.fact-row .fv { font-weight: 600; color: var(--dark); text-align: right; }
.highlight-tag {
  display: inline-block;
  background: rgba(255,56,92,0.1);
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 3px 9px;
  border-radius: 6px;
  text-transform: uppercase;
}
.highlight-tag.muted {
  background: rgba(118,118,118,0.1);
  color: var(--muted);
}

/* ── PERFORMANCE ── */
.perf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.perf-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.perf-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.perf-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,56,92,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 20px;
}
.perf-number {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--dark);
  line-height: 1;
}
.perf-unit { font-size: 16px; font-weight: 400; color: var(--muted); }
.perf-label { font-size: 13px; color: var(--muted); margin-top: 6px; font-weight: 500; }
.perf-note { font-size: 11px; color: var(--red); margin-top: 4px; font-weight: 600; }

.engine-strip {
  background: linear-gradient(135deg, #1a1a1a, #2e1a0e);
  border-radius: var(--radius);
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
}
.engine-strip h3 { font-size: 22px; font-weight: 800; color: white; margin-bottom: 8px; }
.engine-strip p { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.6; max-width: 540px; }
.engine-badge { text-align: center; flex-shrink: 0; }
.engine-badge .big { font-size: 52px; font-weight: 800; color: var(--red); letter-spacing: -2px; line-height: 1; }
.engine-badge .small { font-size: 13px; color: rgba(255,255,255,0.5); font-weight: 500; text-transform: uppercase; letter-spacing: 1.2px; }

/* ── REVIEWS ── */
.reviews-subsection { margin-bottom: 48px; }
.reviews-subsection-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.reviews-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.review-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.review-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.review-pub {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.pub-flag { font-size: 14px; }
.review-stars { color: var(--red); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.review-quote {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.65;
  flex: 1;
  font-style: italic;
  margin-bottom: 20px;
}
.review-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  margin-top: auto;
}
.review-link:hover { text-decoration: underline; }
.review-link::after { content: '→'; }

/* ── PRODUCTION ── */
.prod-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.prod-table { width: 100%; border-collapse: collapse; }
.prod-table thead th {
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}
.prod-table tbody td { padding: 14px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.prod-table tbody tr:last-child td { border-bottom: none; }
.color-dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
  border: 1px solid rgba(0,0,0,0.12);
}
.bar-cell { width: 120px; }
.bar-bg { height: 6px; background: var(--bg); border-radius: 99px; overflow: hidden; }
.bar-fill { height: 100%; background: var(--red); border-radius: 99px; }
.prod-note {
  margin-top: 20px;
  padding: 16px 20px;
  background: rgba(255,56,92,0.06);
  border-radius: 10px;
  font-size: 13px;
  color: var(--mid);
  line-height: 1.6;
}
.prod-note strong { color: var(--dark); }

.country-list { list-style: none; }
.country-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.country-item:last-child { border-bottom: none; }
.country-name { font-size: 14px; font-weight: 500; color: var(--dark); display: flex; align-items: center; gap: 10px; }
.country-flag { font-size: 20px; }
.country-right { display: flex; align-items: center; }
.country-count { font-size: 14px; font-weight: 600; color: var(--dark); }
.country-pct { font-size: 12px; color: var(--muted); margin-left: 6px; }
.country-bar { width: 80px; height: 5px; background: var(--bg); border-radius: 99px; overflow: hidden; margin-left: 16px; }
.country-bar-fill { height: 100%; background: linear-gradient(90deg, var(--red), #ff6b84); border-radius: 99px; }

.pricing-box {
  margin-top: 20px;
  padding: 20px 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
}
.pricing-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}
.pricing-row:last-child { margin-bottom: 0; }
.pricing-label { font-size: 13px; color: var(--muted); }
.pricing-val { font-size: 14px; font-weight: 700; }
.pricing-val.red { color: var(--red); }

/* ── FOOTER ── */
footer { background: var(--dark); color: rgba(255,255,255,0.5); padding: 48px 0 36px; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; }
.footer-brand { font-size: 22px; font-weight: 800; color: white; letter-spacing: -0.5px; margin-bottom: 8px; }
.footer-brand span { color: var(--red); }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.4); max-width: 260px; line-height: 1.6; }
.footer-col h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.3); margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 32px 0 24px; }
.footer-bottom { font-size: 12px; color: rgba(255,255,255,0.3); text-align: center; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero-content { padding: 0 24px 56px; }
  .container { padding: 0 24px; }
  .story-grid { grid-template-columns: 1fr; }
  .story-sidebar { position: static; }
  .perf-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-grid-2 { grid-template-columns: 1fr; }
  .prod-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .engine-strip { grid-template-columns: 1fr; text-align: center; }
  .engine-strip p { max-width: 100%; }
  .footer-inner { flex-direction: column; }
}
