/* =========================================================
   E & S Fachpersonal – Spedition & Logistik Landingpage
   Design-Rezept: „Logistik-Cockpit" — Corporate Motion-Blue
   Brand: Royal-Blau #1462BD (Logo) · Amber-Signal #FF9E1B · Navy #0B1F3A
   Display: Barlow Semi Condensed · Body: Inter
   ========================================================= */

:root {
  --brand: #1462bd;          /* E&S Royal-Blau (Logo) */
  --brand-2: #0e4e9e;        /* dunkler */
  --brand-bright: #2e8fe6;   /* helles Blau (Highlights auf dunkel) */
  --navy: #0b1f3a;           /* tiefe Basis (Hero, Vorteile, Footer) */
  --navy-2: #102c50;         /* etwas heller */
  --accent: #ff9e1b;         /* Amber-Signal (CTAs, Highlights) */
  --accent-dark: #ef8709;    /* Amber hover */
  --ink: #0b1f3a;
  --text: #48566b;
  --muted: #7a8699;
  --line: #e4e9f0;
  --bg: #ffffff;
  --bg-alt: #f1f5fa;         /* blau-getönt hell */
  --bg-tint: #e9f1fb;
  --radius: 12px;
  --radius-lg: 18px;
  --btn-radius: 9px;
  --shadow-sm: 0 4px 16px rgba(11, 31, 58, .07);
  --shadow: 0 12px 30px rgba(11, 31, 58, .11);
  --shadow-lg: 0 24px 60px rgba(11, 31, 58, .22);
  --shadow-amber: 0 12px 26px rgba(255, 158, 27, .32);
  --font-display: 'Barlow Semi Condensed', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --maxw: 1150px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { color: var(--ink); margin: 0; line-height: 1.12; }
h2, h3, h4 { font-family: var(--font-display); font-weight: 700; letter-spacing: -.2px; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }
.desktop-only { display: flex; }
.mobile-only { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font: inherit; font-weight: 700; cursor: pointer;
  border: none; border-radius: var(--btn-radius); padding: 13px 22px;
  transition: transform .12s ease, box-shadow .12s ease, background .15s ease, border-color .15s ease;
  white-space: nowrap; line-height: 1.1;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.99); }
.btn i { font-size: 18px; }
.btn-primary { background: var(--accent); color: var(--navy); box-shadow: var(--shadow-amber); }
.btn-primary:hover { background: var(--accent-dark); }
.btn-ghost { background: rgba(255,255,255,.08); color: #fff; border: 1.5px solid rgba(255,255,255,.34); }
.btn-ghost:hover { background: rgba(255,255,255,.16); }
.btn-outline { background: #fff; color: var(--brand); border: 1.5px solid var(--brand); box-shadow: var(--shadow-sm); }
.btn-outline:hover { background: var(--brand); color: #fff; }
.btn-outline-light { background: transparent; border: 2px solid rgba(255,255,255,.5); color: #fff; }
.btn-outline-light:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-ghost-dark { background: var(--navy); color: #fff; }
.btn-lg { padding: 15px 26px; font-size: 16px; }
.btn-sm { padding: 9px 15px; font-size: 14px; }
.btn-block { width: 100%; }

.card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(180%) blur(9px);
  box-shadow: 0 1px 0 rgba(11,31,58,.08), 0 6px 20px rgba(11,31,58,.05);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo { display: flex; align-items: center; }
.logo-img { height: 46px; width: auto; display: block; }
@media (max-width: 820px) { .logo-img { height: 40px; } }
@media (max-width: 480px) { .logo-img { height: 34px; } }
.header-actions { align-items: center; gap: 16px; }
.main-nav { align-items: center; gap: 26px; }
.main-nav a { font-size: 15px; font-weight: 600; color: var(--ink); }
.main-nav a:hover { color: var(--brand); }
.phone-link { font-size: 15px; font-weight: 700; color: var(--ink); display: inline-flex; align-items: center; gap: 7px; }
.phone-link i { color: var(--brand); font-size: 18px; }
.icon-btn { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; color: #fff; }
.icon-btn-phone { background: var(--brand); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1200px 520px at 82% -8%, rgba(46,143,230,.28), transparent 60%),
    linear-gradient(150deg, rgba(11,31,58,.93) 0%, rgba(13,39,73,.88) 48%, rgba(22,56,106,.72) 100%),
    #0b1f3a url('../images/hero-bg.webp') center/cover no-repeat;
  color: #fff;
}
.hero-deco {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 90% 80% at 30% 20%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 30% 20%, #000 30%, transparent 78%);
  opacity: .6;
}
.hero-deco::after {
  content: ''; position: absolute; right: -6%; top: 8%;
  width: 60%; height: 3px;
  background: repeating-linear-gradient(90deg, rgba(255,158,27,.55) 0 22px, transparent 22px 40px);
  transform: rotate(-8deg); filter: blur(.3px); opacity: .5;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 46px; align-items: center;
  padding: 66px 24px 74px;
}
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(46,143,230,.14); color: #a9d4f5;
  border: 1px solid rgba(46,143,230,.36);
  font-size: 12.5px; font-weight: 700; padding: 7px 14px; border-radius: 30px; margin-bottom: 18px;
  text-transform: uppercase; letter-spacing: .6px;
}
.badge i { font-size: 15px; }
.hero-kicker { font-family: var(--font-body); font-size: 14px; font-weight: 600; color: #9fb4cf; letter-spacing: .2px; margin-bottom: 12px; line-height: 1.4; }
.hero-headline {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(31px, 4.6vw, 52px); color: #fff; line-height: 1.04;
  letter-spacing: -.6px; margin-bottom: 18px; text-transform: uppercase;
}
.hero-headline .hl { color: var(--accent); }
.hero-sub { font-size: clamp(14.5px, 1.6vw, 16.5px); color: #c7d4e4; max-width: 560px; margin-bottom: 22px; }
.hero-usps { display: grid; gap: 11px; margin-bottom: 26px; }
.hero-usps li { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 500; color: #eaf1f9; }
.hero-usps i { color: var(--accent); font-size: 20px; flex-shrink: 0; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-trustrow { display: flex; gap: 22px; flex-wrap: wrap; }
.hero-trustrow span { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: #9fb4cf; }
.hero-trustrow i { color: var(--brand-bright); font-size: 17px; }

/* Hero-Formkarte */
.hero-form-card {
  position: relative; z-index: 1;
  background: #fff; border-radius: var(--radius-lg); padding: 26px 26px 22px;
  box-shadow: var(--shadow-lg); border-top: 4px solid var(--accent);
}
.hfc-logo-chip { display: flex; justify-content: center; margin-bottom: 14px; }
.hfc-logo-chip img { height: 40px; width: auto; }
.hfc-title { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--ink); text-align: center; margin-bottom: 6px; }
.hfc-sub { font-size: 13px; color: var(--muted); text-align: center; margin-bottom: 18px; line-height: 1.5; }
.hero-form { display: flex; flex-direction: column; gap: 10px; }
.hero-form input, .lead-form input, .lead-form textarea, .select-wrap select {
  font: inherit; font-size: 14.5px; padding: 12px 14px; border-radius: var(--btn-radius);
  border: 1.5px solid #dde4ee; background: #f7fafd; color: var(--ink); width: 100%;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.hero-form input:focus, .lead-form input:focus, .lead-form textarea:focus, .select-wrap select:focus {
  outline: none; border-color: var(--brand); background: #fff; box-shadow: 0 0 0 3px rgba(20,98,189,.15);
}
.select-wrap { position: relative; }
.select-wrap select { appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 40px; }
.select-wrap i { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: var(--brand); pointer-events: none; font-size: 18px; }
.select-wrap select:required:invalid { color: var(--muted); }
.hfc-note { font-size: 11.5px; color: var(--muted); text-align: center; display: flex; align-items: center; justify-content: center; gap: 5px; margin-top: 4px; }
.hfc-note i { font-size: 14px; }

/* ---------- Proofbar / Zahlen ---------- */
.proofbar { background: var(--bg-alt); border-bottom: 1px solid var(--line); padding: 30px 0; }
.proof-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.proof-stat { text-align: center; position: relative; }
.proof-stat:not(:last-child)::after { content: ''; position: absolute; right: -9px; top: 12%; height: 76%; width: 1px; background: var(--line); }
.ps-num { display: block; font-family: var(--font-display); font-size: clamp(24px, 3.4vw, 34px); font-weight: 800; color: var(--brand); line-height: 1; letter-spacing: -.5px; }
.ps-lbl { display: block; font-size: 12.5px; color: var(--muted); margin-top: 6px; font-weight: 500; }
.proof-logos { display: flex; align-items: center; justify-content: center; gap: 26px; flex-wrap: wrap; }
.proof-logos-label { font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .8px; }
.proof-logo { height: 42px; width: auto; border-radius: 6px; opacity: .95; }
.proof-logo-wide { height: 46px; background: #fff; padding: 5px 12px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
@media (min-width: 961px) {
  .roles-trust .proof-logo { height: 54px; }
  .roles-trust .proof-logo-wide { height: 60px; }
  .roles-trust .proof-logos { gap: 34px; }
}

/* ---------- Sections ---------- */
.section { padding: 62px 0; }
main section[id] { scroll-margin-top: 84px; }
.section-alt { background: var(--bg-alt); }
.eyebrow { display: block; text-align: center; text-transform: uppercase; letter-spacing: 2.4px; font-size: 12.5px; font-weight: 700; color: var(--brand); margin-bottom: 12px; }
.eyebrow-light { color: var(--accent); }
.section-title { text-align: center; font-family: var(--font-display); font-weight: 800; font-size: clamp(26px, 4vw, 38px); color: var(--ink); letter-spacing: -.4px; margin-bottom: 8px; text-transform: uppercase; }
.section-title-light { color: #fff; }
.section-sub { text-align: center; color: var(--muted); font-size: 15.5px; max-width: 620px; margin: 0 auto 38px; }
.section-sub-light { color: #b8c6d8; }

.grid { display: grid; gap: 18px; }

/* ---------- Pain / Problem ---------- */
.pain-grid { grid-template-columns: repeat(4, 1fr); }
.pain-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 20px; box-shadow: var(--shadow-sm); transition: transform .15s ease, box-shadow .15s ease; }
.pain-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.pain-ic { display: inline-flex; align-items: center; justify-content: center; width: 50px; height: 50px; border-radius: 12px; background: #fff2e0; color: var(--accent-dark); font-size: 26px; margin-bottom: 14px; }
.pain-card h3 { font-size: 18px; color: var(--ink); margin-bottom: 8px; }
.pain-card p { font-size: 14px; color: var(--text); line-height: 1.6; }
.pain-bridge {
  display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap;
  margin-top: 34px; padding: 28px 32px; border-radius: var(--radius-lg);
  background: linear-gradient(120deg, var(--brand) 0%, var(--brand-2) 100%);
  box-shadow: var(--shadow);
}
.pain-bridge p { color: #eaf2fc; font-size: 16px; max-width: 640px; }
.pain-bridge strong { color: #fff; }

/* ---------- Berufsbilder / Roles ---------- */
.role-grid { grid-template-columns: repeat(3, 1fr); }
.role-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease; }
.role-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #d3e0ee; }
.role-img { position: relative; height: 190px; display: flex; align-items: flex-end; padding: 16px 18px; background-size: cover; background-position: center; }
.role-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,31,58,.88) 0%, rgba(11,31,58,.30) 52%, rgba(11,31,58,.02) 100%); }
.role-img h3 { position: relative; z-index: 1; color: #fff; font-size: 21px; text-shadow: 0 2px 14px rgba(0,0,0,.55); }
.role-body { padding: 18px 20px 22px; }
.role-body p { font-size: 14px; color: var(--text); line-height: 1.6; margin-bottom: 14px; }
.role-body .checks li { font-size: 13.5px; margin-bottom: 8px; color: var(--ink); }
.role-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.role-tags li { font-size: 12px; font-weight: 600; color: var(--brand-2); background: var(--bg-tint); border-radius: 20px; padding: 4px 11px; }
.role-note { font-size: 14.5px; color: var(--text); display: inline-flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.role-note i { color: var(--brand); font-size: 18px; }
.roles-trust { margin-top: 46px; padding-top: 34px; border-top: 1px solid var(--line); text-align: center; }
.roles-trust .proof-logos-label { display: block; margin-bottom: 18px; }

/* ---------- Zwei Modelle ---------- */
.model-grid { grid-template-columns: 1fr 1fr; }
.model-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); }
.model-card-accent { border: 2px solid var(--brand); box-shadow: var(--shadow); position: relative; }
.model-head { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.model-ic { flex-shrink: 0; width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 28px; background: var(--navy); color: #fff; }
.model-card-accent .model-ic { background: var(--brand); }
.model-tag { display: inline-block; font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--accent-dark); margin-bottom: 3px; }
.model-head h3 { font-size: 21px; color: var(--ink); line-height: 1.15; }
.model-card > p { font-size: 15px; color: var(--text); margin-bottom: 16px; }
.model-hint { text-align: center; font-size: 14.5px; color: var(--text); margin-top: 24px; display: flex; align-items: center; justify-content: center; gap: 9px; }
.model-hint i { color: var(--accent); font-size: 20px; }

.checks li { font-size: 14.5px; color: var(--ink); margin-bottom: 10px; padding-left: 28px; position: relative; }
.checks li::before { content: "\ea5e"; font-family: "tabler-icons"; color: var(--brand); position: absolute; left: 0; top: 1px; font-size: 17px; }

/* ---------- Vorteile (dunkle Sektion) ---------- */
.section-vorteile { position: relative; overflow: hidden; background-color: var(--navy); background-image: linear-gradient(160deg, rgba(11,31,58,.90) 0%, rgba(12,34,62,.82) 50%, rgba(11,31,58,.92) 100%), url('../images/vorteile-bg.jpg'); background-size: cover; background-position: center; background-repeat: no-repeat; }
.section-vorteile::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle at 85% 12%, rgba(46,143,230,.22), transparent 42%), radial-gradient(circle at 6% 92%, rgba(255,158,27,.12), transparent 40%);
}
.section-vorteile > .container { position: relative; z-index: 1; }
.vorteil-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
.vorteil-card { background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 26px 24px; transition: background .15s ease, transform .15s ease; }
.vorteil-card:hover { background: rgba(255,255,255,.08); transform: translateY(-3px); }
.vorteil-ic { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 13px; background: rgba(46,143,230,.16); color: var(--brand-bright); font-size: 27px; margin-bottom: 15px; }
.vorteil-card h3 { font-size: 19px; color: #fff; margin-bottom: 8px; }
.vorteil-card p { font-size: 14px; color: #b8c6d8; line-height: 1.6; }

/* ---------- Vergleich ---------- */
.compare-grid { grid-template-columns: 1fr 1fr; margin-bottom: 30px; }
.compare-card { border-radius: var(--radius-lg); padding: 30px; }
.compare-good { background: #fff; border: 2px solid var(--brand); box-shadow: var(--shadow); }
.compare-bad { background: #f6f8fb; border: 1px solid #e5ebf2; }
.compare-head { margin-bottom: 18px; min-height: 40px; display: flex; align-items: center; gap: 10px; }
.compare-badge { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--brand); }
.compare-badge::before { content: "\ea5e"; font-family: "tabler-icons"; font-size: 22px; }
.compare-logo { height: 40px; width: auto; display: block; }
.compare-bad .compare-head h3 { font-size: 19px; color: #8a93a3; }
.compare-bad .compare-head i { font-size: 24px; color: #a8b0bd; }
.compare-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; margin-bottom: 13px; color: var(--ink); }
.compare-list i { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.compare-good .compare-list i { color: #16a34a; }
.compare-bad .compare-list { color: #8a93a3; }
.compare-bad .compare-list li { color: #8a93a3; }
.compare-bad .compare-list i { color: #cf5b4a; }

/* ---------- Ablauf / Schritte ---------- */
.section-steps { background: linear-gradient(165deg, #eef4fb 0%, #dde9f6 100%); }
.steps-grid { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: stretch; gap: 0 14px; margin: 46px 0 40px; }
.step-card { background: #fff; border-radius: var(--radius-lg); padding: 34px 26px 26px; box-shadow: var(--shadow); text-align: center; position: relative; }
.step-num { position: absolute; top: -18px; left: 50%; transform: translateX(-50%); width: 38px; height: 38px; border-radius: 11px; background: var(--accent); color: var(--navy); font-family: var(--font-display); font-size: 18px; font-weight: 800; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-amber); }
.step-ic { display: inline-flex; align-items: center; justify-content: center; width: 72px; height: 72px; border-radius: 18px; background: linear-gradient(150deg, #e9f1fb, #d7e7fa); color: var(--brand); font-size: 30px; margin: 8px 0 14px; }
.step-ic lord-icon { display: block; }
.step-title { font-size: 20px; color: var(--ink); margin-bottom: 10px; }
.step-text { font-size: 14.5px; color: var(--text); line-height: 1.65; }
.step-connector { display: flex; align-items: center; justify-content: center; padding-top: 70px; color: var(--brand); font-size: 26px; opacity: .5; }
.steps-cta { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.steps-cta-sub { font-size: 13px; color: #5c6b80; display: flex; align-items: center; gap: 6px; }
.steps-cta-sub i { color: var(--brand); font-size: 16px; }

/* ---------- Branchen ---------- */
.branch-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 40px; }
.branch-pill { display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 22px; font-size: 16px; font-weight: 600; color: var(--ink); box-shadow: var(--shadow-sm); font-family: var(--font-display); letter-spacing: .2px; }
.branch-pill i { color: var(--brand); font-size: 24px; }

/* ---------- Testimonial ---------- */
.testimonial { max-width: 760px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--accent); border-radius: var(--radius-lg); padding: 30px 34px; box-shadow: var(--shadow-sm); }
.testi-stars { color: #FBBC05; font-size: 18px; letter-spacing: 2px; margin-bottom: 12px; }
.testimonial blockquote { margin: 0 0 18px; font-size: 18px; line-height: 1.6; color: var(--ink); font-weight: 500; }
.testimonial figcaption { display: flex; align-items: center; gap: 13px; }
.testi-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--brand); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 15px; flex-shrink: 0; }
.testi-meta { display: flex; flex-direction: column; line-height: 1.35; }
.testi-meta strong { color: var(--ink); font-size: 15px; }
.testi-meta span { font-size: 13px; color: var(--muted); }

/* ---------- Bewertungen (Google Reviews) ---------- */
.reviews-block { margin-top: 46px; }
.reviews-head { text-align: center; margin-bottom: 22px; }
.reviews-eyebrow { display: block; text-transform: uppercase; letter-spacing: 2px; font-size: 12.5px; font-weight: 700; color: var(--brand); margin-bottom: 8px; }
.reviews-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(21px, 3vw, 30px); color: var(--ink); text-transform: uppercase; letter-spacing: -.3px; }
.google-rating-card { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; width: fit-content; max-width: 100%; margin: 0 auto 28px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 16px 30px; }
.google-g { width: 40px; height: 40px; flex-shrink: 0; display: block; }
.grc-info { text-align: left; }
.grc-headline { display: flex; align-items: center; gap: 12px; }
.grc-score { font-family: var(--font-display); font-size: 34px; font-weight: 800; color: var(--ink); line-height: 1; letter-spacing: -1px; }
.grc-stars { color: #FBBC05; font-size: 20px; letter-spacing: 2px; line-height: 1; }
.grc-count { font-size: 12.5px; color: var(--muted); margin-top: 5px; }
.grc-link { font-size: 13px; font-weight: 600; color: var(--brand); text-decoration: underline; text-underline-offset: 2px; }
.grc-link:hover { color: var(--brand-2); }
.review-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 20px; position: relative; }
.review-g { position: absolute; top: 16px; right: 16px; width: 20px; height: 20px; }
.review-head { display: flex; align-items: center; gap: 11px; margin-bottom: 10px; padding-right: 26px; }
.review-who strong { display: block; font-size: 14px; color: var(--ink); }
.review-meta { font-size: 12px; color: var(--muted); display: inline-flex; align-items: center; gap: 5px; }
.review-meta .stars { color: #FBBC05; font-size: 12px; letter-spacing: 1px; }
.review-text { font-size: 14px; color: var(--text); line-height: 1.6; margin-bottom: 14px; }
.review-verified { display: flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 500; color: #5f6368; border-top: 1px solid var(--line); padding-top: 10px; }
.review-verified i { color: #34A853; font-size: 15px; }
.avatar { width: 40px; height: 40px; border-radius: 50%; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0; }
.avatar-a { background: #1e8e3e; }
.avatar-b { background: var(--brand); }
.avatar-c { background: #12b5cb; }
.avatar-d { background: #a142f4; }
.avatar-e { background: #e37400; }
.avatar-f { background: #1c4a6b; }
@media (max-width: 960px) { .review-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .review-grid { grid-template-columns: 1fr; } }

/* ---------- Kontakt ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact-left h3 { font-size: 21px; margin-bottom: 8px; }
.contact-left > p { font-size: 14.5px; color: var(--text); margin-bottom: 18px; }
.contact-options { display: flex; flex-direction: column; gap: 12px; margin-bottom: 18px; }
.contact-option { display: flex; align-items: center; gap: 14px; padding: 13px 16px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: transform .12s ease, box-shadow .12s ease; }
.contact-option:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.co-icon { width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 21px; }
.co-icon-phone { background: var(--brand); }
.co-icon-mail { background: var(--navy); }
.co-text { display: flex; flex-direction: column; line-height: 1.3; }
.co-label { font-size: 12px; color: var(--muted); }
.co-value { font-size: 15.5px; font-weight: 700; color: var(--ink); }
.ansprechpartner-card { display: flex; align-items: center; gap: 15px; padding: 16px 18px; background: linear-gradient(150deg, var(--navy) 0%, var(--navy-2) 100%); border-radius: var(--radius); margin-bottom: 14px; }
.ap-photo { position: relative; overflow: hidden; width: 62px; height: 62px; border-radius: 50%; background: rgba(255,255,255,.12); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 28px; flex-shrink: 0; border: 2px solid rgba(255,255,255,.22); }
.ap-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ap-text { display: flex; flex-direction: column; line-height: 1.4; }
.ap-label { font-size: 11.5px; text-transform: uppercase; letter-spacing: .8px; color: var(--accent); font-weight: 700; }
.ap-name { font-size: 16px; font-weight: 700; color: #fff; }
.ap-role { font-size: 12.5px; color: #b8c6d8; }
.contact-address-card { display: flex; align-items: flex-start; gap: 14px; padding: 16px 18px; background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius); }
.contact-address-card .ca-ic { width: 46px; height: 46px; border-radius: 12px; background: var(--brand); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 21px; flex-shrink: 0; }
.ca-lbl { font-size: 12px; color: var(--muted); }
.ca-val { font-size: 14.5px; font-weight: 600; color: var(--ink); line-height: 1.5; }
.contact-hours-line { margin-top: 10px; font-size: 13.5px; color: var(--text); display: flex; align-items: center; gap: 8px; }
.contact-hours-line i { color: var(--brand); }

/* ---------- Quiz ---------- */
.quiz { max-width: 480px; margin: 0 auto; background: linear-gradient(165deg, var(--navy) 0%, var(--navy-2) 100%); border-radius: var(--radius-lg); padding: 26px; min-height: 320px; box-shadow: var(--shadow-lg); }
.contact-right .quiz { max-width: none; margin: 0; }
.quiz-logo-wrap { display: flex; justify-content: center; margin-bottom: 18px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,.1); }
.quiz-logo-chip { background: #fff; border-radius: 10px; padding: 8px 14px; display: inline-flex; box-shadow: 0 4px 14px rgba(0,0,0,.2); }
.quiz-logo { height: 32px; width: auto; }
.quiz-progress-head { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 12px; font-weight: 700; }
#q-step-label { color: #9fb0c6; letter-spacing: 1px; text-transform: uppercase; }
#q-pct { color: var(--accent); }
.quiz-bar { height: 6px; background: rgba(255,255,255,.12); border-radius: 4px; margin-bottom: 22px; overflow: hidden; }
#q-bar { height: 6px; width: 25%; background: var(--accent); border-radius: 4px; transition: width .3s ease; }
.q-title { font-family: var(--font-display); font-size: 21px; font-weight: 700; color: #fff; text-align: center; margin-bottom: 18px; letter-spacing: -.2px; }
.q-grid { display: grid; gap: 10px; }
.q-grid-2 { grid-template-columns: 1fr 1fr; }
.q-opt { cursor: pointer; background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.16); border-radius: 11px; padding: 15px 12px; text-align: center; color: #fff; font-size: 14px; font-weight: 600; transition: background .15s ease, border-color .15s ease, transform .1s ease; }
.q-opt:hover { background: rgba(255,158,27,.16); border-color: var(--accent); transform: translateY(-1px); }
.q-opt i { font-size: 26px; color: var(--accent); display: block; margin-bottom: 7px; }
.q-field { width: 100%; height: 46px; border-radius: 9px; border: 1.5px solid rgba(255,255,255,.16); background: rgba(255,255,255,.95); padding: 0 14px; font: inherit; font-size: 14.5px; color: var(--ink); }
.q-field:focus { outline: none; border-color: var(--accent); background: #fff; }
.q-back { cursor: pointer; text-align: center; margin-top: 14px; font-size: 13px; color: #9fb0c6; }
.q-back:hover { color: #fff; }
.quiz-done { text-align: center; padding: 30px 6px; color: #fff; }
.quiz-done > i { font-size: 50px; color: var(--accent); }
.quiz-done strong { display: block; font-family: var(--font-display); font-size: 22px; margin: 12px 0 6px; }
.quiz-done p { color: #c7d4e4; font-size: 14.5px; }
.quiz-done-urgent { margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); }
.quiz-done-urgent-label { display: block; font-size: 12.5px; color: #9fb0c6; margin-bottom: 14px; }
.quiz-done-urgent-btns { display: flex; justify-content: center; gap: 16px; }
.quiz-urgent-btn { width: 54px; height: 54px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: 24px; color: #fff; transition: background .2s, transform .15s; }
.quiz-urgent-btn:hover { transform: scale(1.08); }
.quiz-urgent-btn:first-child:hover { background: var(--brand); }
.quiz-urgent-mail:hover { background: var(--accent); color: var(--navy); }

/* ---------- FAQ ---------- */
.faq { max-width: 720px; margin: 0 auto; }
.faq details { border-bottom: 1px solid #dfe6ee; padding: 17px 0; }
.faq summary { cursor: pointer; list-style: none; font-family: var(--font-display); font-size: 17px; font-weight: 600; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq summary::-webkit-details-marker { display: none; }
.faq-plus { color: var(--brand); transition: transform .2s ease; flex-shrink: 0; font-size: 20px; }
.faq details[open] .faq-plus { transform: rotate(45deg); }
.faq details p { margin-top: 10px; font-size: 14.5px; color: var(--text); line-height: 1.7; }

/* ---------- Finale CTA ---------- */
.section-final-cta { position: relative; overflow: hidden; padding: 92px 0; background: linear-gradient(150deg, rgba(11,31,58,.92) 0%, rgba(14,42,78,.86) 55%, rgba(18,58,109,.72) 100%), #0b1f3a url('../images/cta-bg.webp') center/cover no-repeat; }
.final-cta-deco { position: absolute; inset: 0; pointer-events: none; background-image: radial-gradient(circle at 82% 20%, rgba(46,143,230,.28), transparent 45%), radial-gradient(circle at 10% 90%, rgba(255,158,27,.16), transparent 44%); }
.final-cta-deco::after { content: ''; position: absolute; left: 8%; bottom: 18%; width: 55%; height: 3px; background: repeating-linear-gradient(90deg, rgba(255,158,27,.5) 0 20px, transparent 20px 38px); transform: rotate(-6deg); opacity: .5; }
.final-cta-inner { position: relative; z-index: 1; text-align: center; max-width: 920px; margin: 0 auto; }
@media (min-width: 1024px) { .final-cta-inner { max-width: 1120px; } .final-cta-title { white-space: nowrap; } }
.final-cta-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(30px, 5vw, 52px); color: #fff; line-height: 1.05; letter-spacing: -.6px; margin: 12px 0 18px; text-transform: uppercase; }
.final-cta-sub { font-size: 16.5px; color: #c7d4e4; line-height: 1.7; margin-bottom: 34px; }
.final-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 30px; }
.final-cta-trust { display: flex; gap: 26px; justify-content: center; flex-wrap: wrap; }
.final-cta-trust span { color: #c7d4e4; font-size: 13.5px; display: flex; align-items: center; gap: 7px; font-weight: 600; }
.final-cta-trust i { color: var(--accent); font-size: 17px; }

/* ---------- Footer ---------- */
.site-footer { background: #081527; color: #9fb0c6; }
.footer-cols { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 34px; padding: 52px 0 40px; }
.footer-col-brand { max-width: 320px; }
.footer-logo-chip { display: inline-flex; margin-bottom: 16px; }
.footer-logo { height: 46px; width: auto; filter: brightness(0) invert(1); }
.footer-claim { font-size: 14px; color: #90a2ba; line-height: 1.6; }
.footer-col h3 { color: #fff; font-family: var(--font-display); font-size: 13px; text-transform: uppercase; letter-spacing: 1.4px; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a, .footer-col p { color: #9fb0c6; font-size: 14px; line-height: 1.5; }
.footer-col a:hover { color: var(--brand-bright); }
.footer-contact-line { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-contact-line i { color: var(--brand-bright); font-size: 18px; flex-shrink: 0; }
.footer-address { margin-top: 4px; display: flex; gap: 8px; align-items: flex-start; }
.footer-address i { color: var(--accent); margin-top: 2px; }
.footer-hours { margin-top: 12px; }
.footer-hours div { display: flex; justify-content: space-between; gap: 14px; font-size: 14px; }
.footer-hours span:first-child { color: #c7d4e4; }
.footer-bottom-wrap { border-top: 1px solid rgba(255,255,255,.08); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap; color: #6f8199; font-size: 12.5px; padding: 16px 0; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Sticky Mobile CTA ---------- */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 50; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); background: rgba(255,255,255,.96); backdrop-filter: blur(8px); box-shadow: 0 -4px 20px rgba(11,31,58,.14); }
.sticky-cta .btn { flex: 1; font-size: 15px; padding: 13px 12px; }
.sticky-cta .btn-ghost-dark { flex: 0 0 auto; padding: 13px 18px; }

/* ---------- Modal ---------- */
.modal { position: fixed; inset: 0; z-index: 60; display: flex; align-items: center; justify-content: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(11,31,58,.62); backdrop-filter: blur(3px); }
.modal-card { position: relative; z-index: 1; width: 100%; max-width: 460px; padding: 30px; box-shadow: var(--shadow-lg); animation: pop .2s ease; max-height: 92vh; overflow-y: auto; border-top: 4px solid var(--accent); }
@keyframes pop { from { transform: translateY(12px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-close { position: absolute; top: 16px; right: 16px; background: none; border: none; cursor: pointer; font-size: 22px; color: var(--muted); }
.modal-card h2 { font-family: var(--font-display); font-size: 24px; padding-right: 24px; color: var(--ink); }
.modal-sub { font-size: 14px; color: var(--text); margin: 6px 0 18px; }
.lead-form { display: flex; flex-direction: column; gap: 11px; }
.form-note { font-size: 11.5px; color: var(--muted); text-align: center; display: flex; align-items: center; justify-content: center; gap: 5px; margin-top: 2px; }
.form-success { text-align: center; padding: 20px 6px; }
.form-success i { font-size: 48px; color: #16a34a; }
.form-success strong { display: block; font-family: var(--font-display); font-size: 20px; color: var(--ink); margin: 10px 0 4px; }
.form-success p { font-size: 14px; color: var(--text); }

/* Consent-Checkbox */
.form-consent { display: flex; gap: 9px; align-items: flex-start; font-size: 12.5px; line-height: 1.45; color: var(--text); text-align: left; margin: 2px 0; }
.form-consent input { width: 17px; height: 17px; margin: 1px 0 0; flex-shrink: 0; accent-color: var(--brand); cursor: pointer; }
.form-consent a { color: var(--brand); text-decoration: underline; }
.quiz .form-consent { color: #c7d4e4; }
.quiz .form-consent a { color: var(--accent); }
.quiz .form-consent input { accent-color: var(--accent); }

/* Direktkontakt im Modal (mobil) */
.modal-quick { gap: 8px; margin-top: 14px; }
.modal-quick a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px; padding: 11px 10px; border-radius: 10px; font-size: 13px; font-weight: 700; color: #fff; }
.mq-phone { background: var(--brand); }
.mq-mail { background: var(--navy); }

/* ---------- Cookie Banner ---------- */
.cookie-wall { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 16px; }
.cookie-wall[hidden] { display: none !important; }
.cookie-backdrop { position: absolute; inset: 0; background: rgba(8,15,30,.74); backdrop-filter: blur(4px); }
.cookie-card { position: relative; z-index: 1; background: #fff; border-radius: 20px; padding: 36px 36px 32px; max-width: 520px; width: 100%; box-shadow: var(--shadow-lg); text-align: center; animation: cookiePop .3s cubic-bezier(.34,1.56,.64,1) both; }
@keyframes cookiePop { from { opacity:0; transform:scale(.92) translateY(16px); } to { opacity:1; transform:none; } }
.cookie-logo { margin-bottom: 20px; display: flex; justify-content: center; }
.cookie-logo img { height: 44px; width: auto; }
.cookie-title { font-family: var(--font-display); font-size: 21px; font-weight: 700; color: var(--ink); margin-bottom: 12px; }
.cookie-text { font-size: 13.5px; color: #555f6e; line-height: 1.65; margin-bottom: 16px; }
.cookie-links { font-size: 12px; color: var(--muted); margin-bottom: 24px; display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.cookie-links a { color: var(--brand); text-decoration: underline; }
.cookie-actions { display: flex; flex-direction: column; gap: 8px; }
.cookie-btn-accept { width: 100%; font-size: 15px; padding: 13px 20px; }
.cookie-actions-row { display: flex; gap: 8px; }
.btn-cookie-reject, .btn-cookie-settings { background: transparent; border: 2px solid #dce3ec; color: #555f6e; border-radius: var(--btn-radius); font-size: 14px; font-weight: 700; cursor: pointer; transition: border-color .2s, color .2s; flex: 1; padding: 11px 10px; display: inline-flex; align-items: center; justify-content: center; gap: 6px; }
.btn-cookie-reject:hover { border-color: var(--ink); color: var(--ink); }
.btn-cookie-settings:hover { border-color: var(--brand); color: var(--brand); }
.cookie-settings-panel { text-align: left; margin-top: 20px; border-top: 1px solid #eef1f5; padding-top: 20px; }
.cookie-settings-panel[hidden] { display: none !important; }
.cookie-category { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; padding: 12px 0; border-bottom: 1px solid #f2f4f7; }
.cookie-category:last-of-type { border-bottom: none; margin-bottom: 16px; }
.cookie-cat-label { font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.cookie-cat-text { font-size: 12px; color: var(--muted); line-height: 1.5; }
.cookie-always-on { font-size: 12px; font-weight: 700; color: var(--brand); white-space: nowrap; padding-top: 2px; }
.cookie-toggle-wrap { display: flex; align-items: center; padding-top: 2px; flex-shrink: 0; }
.cookie-toggle-input { position: absolute; opacity: 0; width: 0; height: 0; }
.cookie-toggle-track { display: inline-block; width: 40px; height: 22px; background: #dce3ec; border-radius: 11px; position: relative; cursor: pointer; transition: background .2s; }
.cookie-toggle-input:checked + .cookie-toggle-track { background: var(--brand); }
.cookie-toggle-track::after { content: ''; position: absolute; top: 3px; left: 3px; width: 16px; height: 16px; background: #fff; border-radius: 50%; transition: transform .2s; }
.cookie-toggle-input:checked + .cookie-toggle-track::after { transform: translateX(18px); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 34px; padding: 58px 24px 58px; }
  .hero-form-card { max-width: 460px; margin: 0 auto; width: 100%; }
  .proof-stats { grid-template-columns: repeat(2, 1fr); gap: 24px 18px; }
  .proof-stat:nth-child(2)::after { display: none; }
  .role-grid, .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .vorteil-grid { grid-template-columns: 1fr 1fr; }
  .branch-grid { grid-template-columns: repeat(2, 1fr); }
  .model-grid, .compare-grid, .contact-grid { grid-template-columns: 1fr; gap: 22px; }
  .contact-right { order: -1; }
  .steps-grid { grid-template-columns: 1fr; gap: 34px 0; }
  .step-connector { padding-top: 0; transform: rotate(90deg); font-size: 22px; }
}

@media (max-width: 820px) {
  .desktop-only { display: none; }
  .mobile-only { display: flex; }
  .section { padding: 48px 0; }
  main { padding-bottom: 72px; } /* Platz für sticky bar */
  .pain-bridge { text-align: center; justify-content: center; }
  .pain-bridge p { margin: 0 auto; }
}

@media (max-width: 560px) {
  .container { padding: 0 16px; }
  .hero-grid { padding: 64px 16px 52px; }
  .badge { font-size: 10px; letter-spacing: .3px; padding: 6px 11px; white-space: nowrap; }
  .badge i { font-size: 13px; }
  .hero-headline { font-size: clamp(26px, 8vw, 34px); }
  .proof-stats { gap: 22px 12px; }
  .role-grid, .pain-grid, .vorteil-grid, .branch-grid { grid-template-columns: 1fr; }
  .hero-cta .btn, .final-cta-actions .btn { width: 100%; }
  .final-cta-trust { flex-direction: column; gap: 14px; align-items: center; }
  .final-cta-trust span { font-size: 15px; color: #fff; }
  .footer-cols { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }
  .q-grid-2 { grid-template-columns: 1fr; }
  .modal-card, .cookie-card { padding: 26px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn:hover { transform: none; }
}

/* =========================================================
   Rechtsseiten (Impressum / Datenschutz / Cookie-Richtlinie)
   ========================================================= */
.legal-header { border-bottom: 1px solid var(--line); position: sticky; top: 0; background: #fff; z-index: 30; }
.legal-header .header-inner { height: 66px; }
.legal-back { font-size: 14px; font-weight: 700; color: var(--brand); display: inline-flex; align-items: center; gap: 6px; }
.legal { max-width: 820px; margin: 0 auto; padding: 48px 24px 72px; }
.legal h1 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 38px); margin-bottom: 8px; text-transform: uppercase; }
.legal .legal-intro { color: var(--muted); font-size: 15px; margin-bottom: 36px; }
.legal h2 { font-family: var(--font-display); font-size: 21px; margin: 36px 0 12px; color: var(--ink); }
.legal h3 { font-size: 16px; margin: 24px 0 8px; color: var(--ink); }
.legal p, .legal li { font-size: 15px; color: #364a63; line-height: 1.75; }
.legal p { margin-bottom: 14px; }
.legal ul { padding-left: 22px; list-style: disc; margin-bottom: 14px; }
.legal ul li { margin-bottom: 6px; }
.legal a { color: var(--brand); text-decoration: underline; }
.legal address { font-style: normal; line-height: 1.7; font-size: 15px; color: #364a63; }
.legal .note { background: var(--bg-alt); border-left: 3px solid var(--brand); padding: 14px 18px; border-radius: 0 8px 8px 0; margin: 20px 0; font-size: 14px; color: var(--text); }
