/* =====================================================================
   JPB Autologistik – Shared Stylesheet
   ===================================================================== */

:root {
  --bg: #0A0B0E;
  --bg-elevated: #14161A;
  --bg-soft: #1A1D22;
  --border: #2A2D33;
  --border-soft: #1F2228;
  --text: #FFFFFF;
  --text-muted: #9B9DA2;
  --text-dim: #686A70;

  --brand: #2A6DB8;
  --brand-bright: #4A8FD9;
  --brand-dark: #1E4D89;
  --brand-soft: rgba(42, 109, 184, 0.12);
  --brand-line: rgba(42, 109, 184, 0.3);
  --brand-glow: rgba(42, 109, 184, 0.4);

  --whatsapp: #25D366;
  --whatsapp-dark: #1DA851;

  --font-display: 'Archivo', -apple-system, sans-serif;
  --font-body: 'Manrope', -apple-system, sans-serif;

  --container: 1280px;
  --gutter: 24px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 1;
  opacity: 0.03;
  background-image:
    linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 24px 24px;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0;
  color: var(--text);
  text-transform: uppercase;
}
.display {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 6.5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}
.display .brand-blue { color: var(--brand); }
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before { content: ''; width: 32px; height: 2px; background: var(--brand); }
.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 60ch;
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 28px;
  font-family: var(--font-body);
  font-size: 0.95rem; font-weight: 700;
  letter-spacing: 0.02em; border-radius: 4px;
  transition: all 250ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer; text-transform: uppercase;
}
.btn-primary { background: var(--brand); color: var(--text); }
.btn-primary:hover {
  background: var(--brand-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px var(--brand-glow);
}
.btn-secondary {
  background: transparent; color: var(--text); border: 1px solid var(--border);
}
.btn-secondary:hover { border-color: var(--brand); color: var(--brand-bright); }
.btn-whatsapp {
  background: var(--whatsapp); color: var(--text);
}
.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.35);
}
.btn-arrow { display: inline-block; transition: transform 250ms ease; }
.btn:hover .btn-arrow { transform: translateX(4px); }
.btn-lg { padding: 20px 32px; font-size: 1rem; }

/* HEADER */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 20px 0;
  transition: all 300ms ease;
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: rgba(10, 11, 14, 0.85);
  backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom-color: var(--border-soft);
}
.header__inner { display: flex; justify-content: space-between; align-items: center; }
.header__logo { display: flex; align-items: center; height: 44px; }
.header__logo img { height: 100%; width: auto; }
.nav { display: none; gap: 24px; align-items: center; }
.nav a {
  font-size: 0.78rem; color: var(--text-muted);
  transition: color 200ms ease; position: relative;
  font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
}
.nav a:hover, .nav a.is-active { color: var(--text); }
.nav a::after {
  content: ''; position: absolute; bottom: -8px; left: 0;
  width: 0; height: 2px; background: var(--brand);
  transition: width 250ms ease;
}
.nav a:hover::after, .nav a.is-active::after { width: 100%; }
.header__cta {
  display: none;
  font-size: 0.78rem; font-weight: 700;
  padding: 10px 20px;
  background: var(--brand); color: var(--text);
  border-radius: 4px; transition: all 200ms ease;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.header__cta:hover { background: var(--brand-bright); box-shadow: 0 4px 16px var(--brand-glow); }
@media (min-width: 1100px) { .nav, .header__cta { display: flex; } }

/* MOBILE MENU */
.mobile-toggle {
  display: flex; flex-direction: column; gap: 5px;
  padding: 8px; cursor: pointer;
  background: transparent; border: 1px solid var(--border); border-radius: 4px;
}
.mobile-toggle span {
  display: block; width: 20px; height: 2px;
  background: var(--text); transition: all 250ms ease;
}
@media (min-width: 1100px) { .mobile-toggle { display: none; } }

.mobile-menu {
  position: fixed; top: 0; right: 0;
  width: 100%; max-width: 320px;
  height: 100vh;
  background: var(--bg-elevated);
  border-left: 1px solid var(--border);
  padding: 100px 32px 32px;
  transform: translateX(100%);
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 45;
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu a {
  display: block; padding: 16px 0;
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-soft);
  transition: color 200ms ease;
}
.mobile-menu a:hover { color: var(--brand-bright); }
.mobile-menu__cta {
  margin-top: 24px; display: flex; flex-direction: column; gap: 12px;
}
.mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  opacity: 0; visibility: hidden;
  transition: all 250ms ease; z-index: 44;
}
.mobile-overlay.is-open { opacity: 1; visibility: visible; }

/* STICKY WHATSAPP */
.wa-sticky {
  position: fixed;
  bottom: 24px; right: 24px;
  background: var(--whatsapp);
  color: var(--text);
  border-radius: 60px;
  padding: 14px 22px 14px 18px;
  display: inline-flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45),
              0 0 0 8px rgba(37, 211, 102, 0.1);
  z-index: 40;
  font-family: var(--font-body);
  font-weight: 700; font-size: 0.92rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: all 250ms ease;
  animation: waPulse 3s ease-in-out infinite;
}
.wa-sticky:hover {
  transform: translateY(-4px);
  background: var(--whatsapp-dark);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.55);
}
.wa-sticky svg { width: 22px; height: 22px; flex-shrink: 0; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45), 0 0 0 8px rgba(37, 211, 102, 0.1); }
  50% { box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55), 0 0 0 16px rgba(37, 211, 102, 0); }
}
@media (max-width: 640px) {
  .wa-sticky {
    padding: 14px;
    bottom: 20px; right: 20px;
  }
  .wa-sticky__label { display: none; }
}

/* HERO */
.hero {
  min-height: 92vh;
  padding: 130px 0 80px;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute; top: 20%; right: -10%;
  width: 60vw; height: 60vw;
  max-width: 900px; max-height: 900px;
  background: radial-gradient(circle at center, var(--brand-soft), transparent 60%);
  pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute; top: 50%; left: 0;
  width: 200px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  opacity: 0.4;
  animation: speedline 3s ease-in-out infinite;
}
@keyframes speedline {
  0%, 100% { transform: translateX(-200px); opacity: 0; }
  50% { transform: translateX(40px); opacity: 0.4; }
}
.hero__eyebrow { margin-bottom: 28px; animation: fadeUp 1s ease both; animation-delay: 0.1s; opacity: 0; }
.hero__heading { animation: fadeUp 1.1s cubic-bezier(0.16, 1, 0.3, 1) both; animation-delay: 0.2s; opacity: 0; }
.hero__lead { animation: fadeUp 1s ease both; animation-delay: 0.55s; opacity: 0; margin-top: 24px; max-width: 62ch; }
.hero__buttons {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px;
  animation: fadeUp 1s ease both; animation-delay: 0.75s; opacity: 0;
}
.hero__pricing-strip {
  margin-top: 32px;
  padding: 16px 20px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-left: 3px solid var(--brand);
  border-radius: 4px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  animation: fadeUp 1s ease both; animation-delay: 0.95s; opacity: 0;
}
.hero__pricing-strip strong { color: var(--text); font-weight: 700; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* HERO INNER (side) */
.hero__inner {
  display: grid; grid-template-columns: 1fr; gap: 60px; align-items: end;
}
@media (min-width: 1024px) { .hero__inner { grid-template-columns: 1.6fr 1fr; gap: 80px; } }
.hero__side {
  display: flex; flex-direction: column; gap: 1px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
  animation: fadeUp 1.2s ease both; animation-delay: 1.1s; opacity: 0;
}
.hero__bereich {
  background: var(--bg); padding: 22px 24px;
  transition: all 300ms ease;
  display: flex; gap: 16px; align-items: center;
}
.hero__bereich:hover { background: var(--bg-elevated); padding-left: 32px; }
.hero__bereich-num {
  font-family: var(--font-display);
  font-weight: 800; font-size: 1.3rem;
  color: var(--brand); width: 36px; flex-shrink: 0;
}
.hero__bereich-content { flex: 1; }
.hero__bereich-label {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 4px;
}
.hero__bereich-name {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1rem;
  letter-spacing: -0.01em; color: var(--text);
  text-transform: uppercase;
}
.hero__bereich-name .accent { color: var(--brand); }

/* PAGE HERO (kompakter, für Unterseiten) */
.page-hero {
  padding: 140px 0 80px;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; top: 20%; right: -10%;
  width: 50vw; height: 50vw;
  max-width: 700px; max-height: 700px;
  background: radial-gradient(circle at center, var(--brand-soft), transparent 60%);
  pointer-events: none;
}
.page-hero__eyebrow { margin-bottom: 24px; }
.page-hero__heading {
  font-family: var(--font-display);
  font-weight: 800; font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 0.98; letter-spacing: -0.035em;
  text-transform: uppercase;
  margin-bottom: 24px; max-width: 20ch;
}
.page-hero__heading .brand-blue { color: var(--brand); }
.page-hero__lead {
  font-size: 1.15rem; line-height: 1.65;
  color: var(--text-muted); max-width: 62ch;
  margin-bottom: 36px;
}
.page-hero__buttons { display: flex; flex-wrap: wrap; gap: 12px; }

/* CHOICE BLOCK (Was möchtest du tun?) */
.choice-block {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 100%);
}
.choice-grid {
  display: grid; grid-template-columns: 1fr; gap: 20px;
}
@media (min-width: 900px) { .choice-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.choice-card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 44px 32px;
  display: flex; flex-direction: column;
  position: relative;
  transition: all 350ms ease;
  overflow: hidden;
}
.choice-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 3px; background: var(--brand);
  transform: scaleX(0); transform-origin: left;
  transition: transform 400ms ease;
}
.choice-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-line);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.choice-card:hover::before { transform: scaleX(1); }
.choice-card__icon {
  width: 64px; height: 64px;
  border: 1.5px solid var(--brand); border-radius: 4px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--brand); margin-bottom: 28px;
  transition: all 350ms ease;
}
.choice-card:hover .choice-card__icon {
  background: var(--brand); color: var(--text);
}
.choice-card__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.5rem; text-transform: uppercase;
  letter-spacing: -0.025em; line-height: 1.05;
  margin-bottom: 16px;
}
.choice-card__text {
  color: var(--text-muted); font-size: 0.98rem;
  line-height: 1.65; margin-bottom: 32px; flex: 1;
}
.choice-card .btn { justify-content: center; }

/* SECTION BASE */
section { position: relative; z-index: 2; }
.section { padding: 100px 0; }
@media (max-width: 768px) { .section { padding: 72px 0; } }
.section__header {
  display: grid; grid-template-columns: 1fr; gap: 32px;
  margin-bottom: 60px;
}
@media (min-width: 1024px) { .section__header { grid-template-columns: 1fr 1.1fr; gap: 80px; } }
.section__heading {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800; letter-spacing: -0.03em;
  text-transform: uppercase; line-height: 0.98;
}
.section__heading .brand-blue { color: var(--brand); }
.section__intro {
  color: var(--text-muted); font-size: 1.05rem; line-height: 1.7;
  align-self: end; max-width: 55ch;
}

/* PACKAGE CARDS */
.package-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
@media (min-width: 900px) { .package-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
.package-grid--3 { grid-template-columns: 1fr; }
@media (min-width: 900px) { .package-grid--3 { grid-template-columns: repeat(3, 1fr); } }
.package-grid--4 { grid-template-columns: 1fr; }
@media (min-width: 700px) { .package-grid--4 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .package-grid--4 { grid-template-columns: repeat(4, 1fr); } }

.package {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  padding: 40px 32px;
  position: relative;
  transition: all 300ms ease;
  display: flex; flex-direction: column;
}
.package:hover { border-color: var(--brand-line); transform: translateY(-4px); }
.package--featured {
  border-color: var(--brand);
  background: linear-gradient(180deg, var(--bg-elevated) 0%, rgba(42, 109, 184, 0.06) 100%);
}
.package__badge {
  position: absolute; top: -12px; left: 32px;
  background: var(--brand); color: var(--text);
  font-family: var(--font-display);
  font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 3px;
}
.package__label {
  font-family: var(--font-display); font-weight: 800;
  font-size: 0.72rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--brand);
  margin-bottom: 12px;
}
.package__name {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 800;
  letter-spacing: -0.02em; text-transform: uppercase;
  margin-bottom: 12px; line-height: 1.1;
}
.package__name .brand-blue { color: var(--brand); }
.package__tagline {
  color: var(--text-muted); font-size: 0.9rem;
  line-height: 1.5; margin-bottom: 22px;
}
.package__price {
  display: flex; align-items: baseline; gap: 6px;
  margin-bottom: 22px; padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}
.package__price-num {
  font-family: var(--font-display);
  font-size: 2.6rem; font-weight: 800;
  letter-spacing: -0.04em; line-height: 1;
}
.package__price-num .brand-blue { color: var(--brand); }
.package__price-suffix { color: var(--text-muted); font-size: 0.85rem; }
.package__list { list-style: none; padding: 0; margin: 0 0 28px; flex: 1; }
.package__list li {
  padding: 10px 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  display: flex; gap: 12px; align-items: flex-start;
  border-bottom: 1px solid var(--border-soft);
}
.package__list li:last-child { border-bottom: none; }
.package__check { color: var(--brand-bright); flex-shrink: 0; margin-top: 3px; font-weight: 800; }
.package__plus {
  font-size: 0.72rem; font-weight: 700;
  color: var(--brand); letter-spacing: 0.08em;
  text-transform: uppercase; margin: 12px 0 8px;
  padding: 10px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  text-align: center;
}
.package .btn { width: 100%; justify-content: center; margin-top: auto; }
.package__note {
  font-size: 0.75rem; color: var(--text-dim);
  margin-top: 12px; text-align: center;
  line-height: 1.5;
}

/* PROMISE BANNER */
.promise {
  margin: 56px 0;
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
  padding: 56px 40px;
  position: relative; overflow: hidden;
  text-align: center;
  border-radius: 4px;
}
.promise::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.promise__inner { position: relative; z-index: 2; }
.promise__label {
  font-family: var(--font-body); font-weight: 700;
  font-size: 0.78rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
  margin-bottom: 18px; display: inline-block;
}
.promise__heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 800; text-transform: uppercase;
  letter-spacing: -0.03em; line-height: 1;
  color: var(--text); margin-bottom: 18px;
}
.promise__text {
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem; line-height: 1.6;
  max-width: 60ch; margin: 0 auto;
}

/* TRUST GRID (Warum JPB) */
.trust-grid {
  display: grid; grid-template-columns: 1fr; gap: 1px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
}
@media (min-width: 600px) { .trust-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .trust-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .trust-grid { grid-template-columns: repeat(5, 1fr); } }
.trust-card {
  background: var(--bg); padding: 32px 24px;
  transition: background 350ms ease;
  display: flex; flex-direction: column; align-items: flex-start;
}
.trust-card:hover { background: var(--bg-elevated); }
.trust-card__icon {
  width: 44px; height: 44px;
  background: var(--brand-soft);
  border: 1px solid var(--brand-line);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-bright);
  margin-bottom: 18px;
}
.trust-card__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.9rem; text-transform: uppercase;
  letter-spacing: 0.02em; line-height: 1.15;
  margin-bottom: 8px;
}
.trust-card__text { color: var(--text-muted); font-size: 0.82rem; line-height: 1.55; }

/* STEPS (Ablauf) */
.steps {
  display: grid; grid-template-columns: 1fr; gap: 1px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
}
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.steps--4 { grid-template-columns: 1fr; }
@media (min-width: 768px) { .steps--4 { grid-template-columns: repeat(4, 1fr); } }
.step {
  background: var(--bg);
  padding: 36px 28px;
  transition: background 350ms ease;
}
.step:hover { background: var(--bg-elevated); }
.step__num {
  font-family: var(--font-display); font-weight: 800;
  font-size: 0.72rem; letter-spacing: 0.14em;
  color: var(--brand); margin-bottom: 18px;
}
.step__title {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: -0.015em;
  line-height: 1.15; margin-bottom: 10px;
}
.step__text { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* QUICK REQUEST BLOCK */
.quick-request {
  background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-soft) 100%);
  border: 1px solid var(--border);
  padding: 48px 40px;
  border-radius: 4px;
  margin: 60px 0;
  position: relative; overflow: hidden;
}
.quick-request::before {
  content: '';
  position: absolute; top: -50%; right: -20%;
  width: 60%; height: 200%;
  background: radial-gradient(circle at center, var(--brand-soft), transparent 60%);
  pointer-events: none;
}
.quick-request__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr; gap: 32px;
  align-items: center;
}
@media (min-width: 900px) { .quick-request__inner { grid-template-columns: 1.5fr 1fr; gap: 48px; } }
.quick-request__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800; letter-spacing: -0.02em;
  text-transform: uppercase; line-height: 1.05;
  margin-bottom: 16px;
}
.quick-request__title .brand-blue { color: var(--brand); }
.quick-request__text {
  color: var(--text-muted); font-size: 0.98rem;
  line-height: 1.65; margin-bottom: 24px;
}
.quick-request__tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 24px;
}
.quick-request__tag {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 8px 14px;
  font-size: 0.82rem; font-weight: 600;
  border-radius: 20px; color: var(--text-muted);
}
.quick-request__cta {
  display: flex; flex-direction: column; gap: 12px;
}

/* PROBLEM/SOLUTION BLOCKS */
.ps-block {
  display: grid; grid-template-columns: 1fr; gap: 32px;
  margin-bottom: 40px;
}
@media (min-width: 900px) { .ps-block { grid-template-columns: 1fr 1fr; gap: 40px; } }
.ps-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  padding: 36px 32px;
}
.ps-card--problem { border-left: 3px solid #B23A48; }
.ps-card--solution { border-left: 3px solid var(--brand); }
.ps-card__label {
  font-family: var(--font-display);
  font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 16px;
}
.ps-card--problem .ps-card__label { color: #E56472; }
.ps-card--solution .ps-card__label { color: var(--brand-bright); }
.ps-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: -0.02em;
  line-height: 1.1; margin-bottom: 16px;
}
.ps-card__list { list-style: none; padding: 0; margin: 0; }
.ps-card__list li {
  padding: 10px 0;
  color: var(--text-muted); font-size: 0.92rem;
  display: flex; gap: 10px; align-items: flex-start;
  border-bottom: 1px solid var(--border-soft);
  line-height: 1.5;
}
.ps-card__list li:last-child { border-bottom: none; }
.ps-card__list li::before {
  content: '·'; color: var(--brand); font-weight: 700;
  font-size: 1.4rem; line-height: 1; margin-top: 2px;
}

/* FAQ */
.faq-grid {
  max-width: 920px; margin: 0 auto;
  border: 1px solid var(--border-soft);
}
.faq-item {
  border-bottom: 1px solid var(--border-soft);
  transition: background 200ms ease;
}
.faq-item:last-child { border-bottom: none; }
.faq-item[open] { background: var(--bg-elevated); }
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  padding: 24px 28px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 700; font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.3;
  transition: color 200ms ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 400;
  color: var(--brand);
  flex-shrink: 0;
  transition: transform 250ms ease;
  line-height: 1;
}
.faq-item[open] summary { color: var(--brand-bright); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--brand-bright); }
.faq-item__body {
  padding: 0 28px 24px;
  color: var(--text-muted);
  line-height: 1.7; font-size: 0.93rem;
}

/* KONTAKT-CTA-Sektion */
.kontakt {
  padding: 120px 0;
  position: relative; overflow: hidden;
}
.kontakt::before {
  content: '';
  position: absolute; top: -10%; left: -10%;
  width: 70vw; height: 70vw;
  max-width: 900px; max-height: 900px;
  background: radial-gradient(circle at center, var(--brand-soft), transparent 65%);
  pointer-events: none;
}
.kontakt__inner { max-width: 900px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.kontakt__heading {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 800; letter-spacing: -0.035em;
  text-transform: uppercase; line-height: 0.98;
  margin: 24px 0 28px;
}
.kontakt__heading .brand-blue { color: var(--brand); }
.kontakt__lead {
  color: var(--text-muted); font-size: 1.1rem; line-height: 1.65;
  max-width: 60ch; margin: 0 auto 48px;
}
.kontakt__cta-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px;
  max-width: 760px; margin: 0 auto;
}
@media (min-width: 700px) { .kontakt__cta-grid { grid-template-columns: repeat(3, 1fr); } }
.kontakt__cta {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  padding: 32px 24px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  transition: all 300ms ease;
}
.kontakt__cta:hover {
  border-color: var(--brand);
  transform: translateY(-4px);
  background: linear-gradient(180deg, var(--bg-elevated) 0%, rgba(42, 109, 184, 0.06) 100%);
}
.kontakt__cta--whatsapp:hover {
  border-color: var(--whatsapp);
  background: linear-gradient(180deg, var(--bg-elevated) 0%, rgba(37, 211, 102, 0.06) 100%);
}
.kontakt__cta-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--brand-soft);
  border: 1px solid var(--brand-line);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-bright);
}
.kontakt__cta--whatsapp .kontakt__cta-icon {
  background: rgba(37, 211, 102, 0.15);
  border-color: rgba(37, 211, 102, 0.4);
  color: var(--whatsapp);
}
.kontakt__cta-label {
  font-family: var(--font-display);
  font-size: 0.76rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-dim); font-weight: 700;
}
.kontakt__cta-value {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700;
  color: var(--text); letter-spacing: -0.005em;
  text-transform: uppercase;
}

/* CONTENT SECTIONS (auf Unterseiten) */
.content-section {
  padding: 80px 0;
}
.content-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800; text-transform: uppercase;
  letter-spacing: -0.025em; line-height: 1.05;
  margin-bottom: 24px;
}
.content-heading .brand-blue { color: var(--brand); }
.content-text {
  color: var(--text-muted); font-size: 1.05rem;
  line-height: 1.75; max-width: 70ch;
}
.content-text p { margin-bottom: 18px; }
.content-text strong { color: var(--text); }
.content-text a { color: var(--brand-bright); font-weight: 600; }
.content-text a:hover { color: var(--brand); }

/* INFO BOX */
.info-box {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-left: 3px solid var(--brand);
  padding: 24px 28px;
  margin: 24px 0;
  border-radius: 4px;
}
.info-box__label {
  font-family: var(--font-display); font-weight: 800;
  font-size: 0.72rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--brand);
  margin-bottom: 8px;
}
.info-box__text {
  color: var(--text-muted); font-size: 0.92rem;
  line-height: 1.6;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border-soft);
  padding: 56px 0 32px; background: var(--bg);
  position: relative; z-index: 2;
}
.footer__inner {
  display: grid; grid-template-columns: 1fr; gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-soft);
}
@media (min-width: 768px) { .footer__inner { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; } }
.footer__logo { height: 48px; margin-bottom: 20px; }
.footer__logo img { height: 100%; width: auto; }
.footer__about { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; max-width: 38ch; }
.footer__heading {
  font-size: 0.7rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--text-dim);
  margin-bottom: 18px; font-weight: 800;
  font-family: var(--font-display);
}
.footer__list { list-style: none; padding: 0; margin: 0; }
.footer__list li { margin-bottom: 10px; }
.footer__list a {
  color: var(--text-muted); font-size: 0.9rem;
  transition: color 200ms ease;
}
.footer__list a:hover { color: var(--brand-bright); }
.footer__bottom {
  padding-top: 32px;
  display: flex; flex-wrap: wrap;
  justify-content: space-between; gap: 16px;
  color: var(--text-dim); font-size: 0.8rem;
}
.footer__bottom strong { color: var(--brand); font-weight: 700; }

/* SCROLL REVEAL */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1), transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }

/* KONTAKT FORM */
.contact-form {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  padding: 40px 32px;
  border-radius: 4px;
  max-width: 720px;
  margin: 0 auto;
}
.contact-form__row {
  display: grid; grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
@media (min-width: 700px) { .contact-form__row--2 { grid-template-columns: 1fr 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label {
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.75rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-muted);
}
.form-field input, .form-field select, .form-field textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem; color: var(--text);
  transition: border-color 200ms ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--brand);
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-info {
  padding: 16px 20px; background: var(--bg-soft);
  border-left: 3px solid var(--brand); border-radius: 4px;
  font-size: 0.85rem; color: var(--text-muted); line-height: 1.55;
  margin-bottom: 24px;
}

/* PORSCHE SHOWCASE (Startseite) */
.showcase {
  padding: 120px 0 90px;
  position: relative; overflow: hidden; background: var(--bg);
}
.showcase::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw; height: 80vw;
  max-width: 1100px; max-height: 1100px;
  background: radial-gradient(circle at center, var(--brand-soft) 0%, transparent 50%);
  pointer-events: none; z-index: 1;
}
.showcase__inner {
  display: grid; grid-template-columns: 1fr; gap: 60px;
  align-items: center; position: relative; z-index: 2;
}
@media (min-width: 1024px) { .showcase__inner { grid-template-columns: 1fr 1.4fr; gap: 80px; } }
.showcase__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800; text-transform: uppercase;
  line-height: 0.98; letter-spacing: -0.035em;
  margin: 20px 0 22px;
}
.showcase__heading em {
  font-style: italic; font-weight: 400;
  color: var(--brand); font-family: var(--font-body);
  letter-spacing: -0.02em; text-transform: none;
}
.showcase__lead {
  color: var(--text-muted); font-size: 1.05rem;
  line-height: 1.75; max-width: 55ch; margin-bottom: 32px;
}
.showcase__stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  padding-top: 28px; border-top: 1px solid var(--border-soft);
}
.showcase__stat-num {
  font-family: var(--font-display); font-size: 1.9rem; font-weight: 800;
  color: var(--brand); letter-spacing: -0.03em; line-height: 1;
}
.showcase__stat-label {
  font-size: 0.78rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-muted); margin-top: 8px;
}
.porsche-container { position: relative; width: 100%; max-width: 720px; margin: 0 auto; }
.porsche-svg { width: 100%; height: auto; filter: drop-shadow(0 30px 40px rgba(42, 109, 184, 0.25)); }
.speed-line { position: absolute; height: 2px; background: linear-gradient(90deg, transparent, var(--brand), transparent); opacity: 0; pointer-events: none; }
.speed-line-1 { top: 38%; left: -10%; width: 30%; animation: speedFly 2.5s 0s infinite; }
.speed-line-2 { top: 50%; left: -8%; width: 25%; height: 1px; animation: speedFly 3.2s 0.5s infinite; }
.speed-line-3 { top: 62%; left: -12%; width: 35%; animation: speedFly 2.8s 1.1s infinite; }
.speed-line-4 { top: 70%; left: -8%; width: 20%; height: 1px; animation: speedFly 3.5s 1.6s infinite; }
@keyframes speedFly { 0% { transform: translateX(0); opacity: 0; } 30% { opacity: 0.7; } 100% { transform: translateX(700px); opacity: 0; } }
.car-stroke { stroke-dasharray: 2000; stroke-dashoffset: 2000; animation: drawStroke 2.5s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards; }
@keyframes drawStroke { to { stroke-dashoffset: 0; } }
.car-fill { opacity: 0; animation: fadeFill 2s ease 1.5s forwards; }
@keyframes fadeFill { to { opacity: 1; } }
.wheel-spokes { transform-origin: center; transform-box: fill-box; animation: spinWheel 4s linear infinite; }
@keyframes spinWheel { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.porsche-svg { animation: hoverCar 5s ease-in-out infinite; }
@keyframes hoverCar { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* MARQUEE */
.marquee {
  padding: 20px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  overflow: hidden; background: var(--bg);
}
.marquee__track {
  display: flex; gap: 56px;
  animation: marquee 55s linear infinite;
  white-space: nowrap; width: max-content;
}
.marquee__item {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.15rem;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--text-muted);
  display: flex; align-items: center; gap: 56px;
}
.marquee__item::after { content: '▸'; color: var(--brand); font-size: 0.9em; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* UTILITY */
.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.mt-48 { margin-top: 48px; }
.mb-24 { margin-bottom: 24px; }
