/* ============================================================
   DigiCheck24 – Landingpage
   Corporate Design: Marineblau (Navy) + Gold
   ============================================================ */

:root {
  --navy:        #0e1f47;   /* dunkles Marineblau (wie Logo-Hintergrund) */
  --navy-2:      #142a5c;   /* etwas helleres Navy für Verläufe */
  --navy-deep:   #0a1733;   /* sehr dunkel, für Footer */
  --gold:        #e6b422;   /* Hauptgold */
  --gold-light:  #f5d98a;   /* helles Gold (Glanz) */
  --gold-dark:   #c8941a;   /* dunkles Gold */
  --ink:         #1d2433;   /* Text auf hellem Grund */
  --muted:       #5b6577;   /* gedämpfter Text */
  --light:       #eef2fb;   /* heller Text auf Navy */
  --light-muted: #aab6d3;   /* gedämpfter Text auf Navy */
  --bg-soft:     #f5f7fc;   /* sehr helles Grau-Blau */
  --white:       #ffffff;
  --radius:      16px;
  --shadow:      0 18px 40px rgba(10, 23, 51, 0.12);
  --maxw:        1140px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  line-height: 1.65;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.2;
  font-weight: 700;
}

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

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: 820px; }
.center { text-align: center; }
.gold { color: var(--gold); }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 15px 30px; font-size: 17px; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-dark));
  color: #2a2105;
  box-shadow: 0 10px 24px rgba(230, 180, 34, .35);
}
.btn-gold:hover { box-shadow: 0 14px 30px rgba(230, 180, 34, .5); }

.btn-outline { border-color: var(--gold); color: var(--gold); background: transparent; }
.btn-outline:hover { background: rgba(230, 180, 34, .12); }

.btn-ghost { color: var(--light); border-color: rgba(255,255,255,.35); }
.btn-ghost:hover { background: rgba(255,255,255,.1); }

/* ===================== HEADER ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14, 31, 71, .96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(230, 180, 34, .25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo-img { height: 46px; width: auto; border-radius: 8px; }
.main-nav { display: flex; gap: 26px; }
.main-nav a {
  color: var(--light);
  font-size: 15px;
  font-weight: 500;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.main-nav a:hover { color: var(--gold); border-color: var(--gold); }
.header-actions { display: flex; gap: 12px; align-items: center; }

/* ===================== EINFÜHRUNGSPREIS-LEISTE ===================== */
.intro-bar {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold) 45%, var(--gold-light) 70%, var(--gold));
  color: #2a2105;
  border-bottom: 2px solid rgba(14, 31, 71, .25);
  box-shadow: 0 6px 20px rgba(230, 180, 34, .35);
}
.intro-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 20px;
  padding: 14px 24px;
  text-align: center;
}
.intro-bar-badge {
  display: inline-block;
  background: var(--navy);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .6px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.intro-bar-main {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 6px 10px;
  font-size: 16px;
  margin: 0;
}
.intro-bar-price {
  font-family: Georgia, serif;
  font-size: 28px;
  line-height: 1;
  color: var(--navy-deep);
}
.intro-bar-label { font-weight: 600; }
.intro-bar-deadline { font-size: 15px; }
.intro-bar-guarantee {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  background: rgba(14, 31, 71, .12);
  padding: 6px 14px;
  border-radius: 8px;
  border: 1px solid rgba(14, 31, 71, .2);
}
.intro-bar-guarantee strong { color: var(--navy-deep); }
.intro-bar-later {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  opacity: .92;
}
.intro-bar-later strong { font-size: 17px; }
.intro-bar-cta {
  display: inline-block;
  background: var(--navy);
  color: var(--gold-light);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform .15s, box-shadow .15s;
}
.intro-bar-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(10, 23, 51, .35);
}

/* Hero: Einführungspreis-Hinweis */
.hero-promo {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 10px;
  margin-top: 22px;
  padding: 12px 18px;
  background: rgba(230, 180, 34, .18);
  border: 2px solid rgba(230, 180, 34, .55);
  border-radius: 12px;
  font-size: 15px;
  color: var(--light);
  max-width: 100%;
}
.hero-promo-badge {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #2a2105;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.hero-promo strong { color: var(--gold-light); font-size: 17px; }
.hero-promo-guarantee {
  color: var(--gold-light) !important;
  font-size: 15px !important;
  background: rgba(14, 31, 71, .35);
  padding: 4px 10px;
  border-radius: 6px;
}
.hero-promo-sep { color: var(--light-muted); }

/* ===================== HERO ===================== */
.hero {
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(230,180,34,.18), transparent 60%),
    linear-gradient(160deg, var(--navy-2), var(--navy) 60%, var(--navy-deep));
  color: var(--light);
  padding: 80px 0 90px;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 50px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  background: rgba(230,180,34,.15);
  color: var(--gold-light);
  border: 1px solid rgba(230,180,34,.4);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero .eyebrow {
  text-transform: none;
  font-size: 14px;
  letter-spacing: .2px;
  line-height: 1.45;
  max-width: 520px;
}
.hero h1 { font-size: clamp(32px, 5vw, 52px); margin-bottom: 22px; }
.lead { font-size: 19px; color: var(--light-muted); max-width: 620px; margin-bottom: 32px; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { margin-top: 26px; font-size: 14px; color: var(--light-muted); }
.hero-trust::before { content: "★ "; color: var(--gold); }

.hero-badge { display: flex; justify-content: center; }
.badge-img {
  width: 220px; height: 220px;
  object-fit: cover;
  border-radius: 24px;
  border: 3px solid rgba(230,180,34,.55);
  box-shadow: 0 22px 50px rgba(0,0,0,.45);
  transform: rotate(-3deg);
}

/* ===================== SECTIONS ===================== */
.section { padding: 78px 0; }
.section-light { background: var(--white); }
.section-soft  { background: var(--bg-soft); }
.section-dark  { background: linear-gradient(160deg, var(--navy-2), var(--navy)); color: var(--light); }

.section-title { font-size: clamp(26px, 4vw, 38px); text-align: center; margin-bottom: 12px; }
.section-title.light { color: var(--white); }
.section-sub { text-align: center; color: var(--muted); font-size: 18px; max-width: 680px; margin: 0 auto 46px; }
.section-sub.light { color: var(--light-muted); }

/* ===================== CARDS ===================== */
.cards-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid #e7ecf6;
}
.card h3 { font-size: 22px; margin-bottom: 18px; }
.problem-card { border-top: 4px solid #d96666; }
.solution-card { border-top: 4px solid var(--gold); }

/* Listen mit Haken / Kreuz */
.list-check, .list-cross { list-style: none; }
.list-check li, .list-cross li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
}
.list-check li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  color: var(--gold-dark);
  font-weight: 700;
}
.list-cross li::before {
  content: "✕";
  position: absolute; left: 0; top: 0;
  color: #d96666;
  font-weight: 700;
}

/* ===================== ROLLEN ===================== */
.role-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(230,180,34,.25);
  border-radius: var(--radius);
  padding: 32px 26px;
  text-align: center;
  transition: transform .2s, border-color .2s, background .2s;
}
.role-card:hover { transform: translateY(-6px); border-color: var(--gold); background: rgba(255,255,255,.09); }
.role-card--highlight { border-color: var(--gold); background: rgba(230,180,34,.1); }
.role-icon { font-size: 44px; margin-bottom: 14px; }
.role-card h3 { color: var(--gold-light); font-size: 22px; margin-bottom: 12px; }
.role-card p { color: var(--light-muted); }

/* ===================== FUNKTIONEN ===================== */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--white);
  border: 1px solid #e7ecf6;
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 8px 22px rgba(10,23,51,.06);
}
.feat-check {
  flex: 0 0 auto;
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #2a2105; font-weight: 700;
}
.feature h4 { font-size: 17px; margin-bottom: 4px; }
.feature p { color: var(--muted); font-size: 15px; }

.tag-mini {
  display: inline-block;
  vertical-align: middle;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .3px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 6px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #2a2105;
}
.tag-mini.tag-soft {
  background: #e7ecf6;
  color: var(--muted);
}

.features-more {
  text-align: center;
  margin-top: 30px;
  font-size: 18px;
  font-weight: 600;
  color: var(--gold-dark);
}

/* ===================== SCREENSHOTS ===================== */
.shots-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.shot {
  background: var(--white);
  border: 1px solid #e2e8f5;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.shot:hover { transform: translateY(-6px); box-shadow: 0 26px 50px rgba(10,23,51,.18); }
.shot img {
  width: 100%; height: auto; display: block;
  border-bottom: 3px solid var(--gold);
}
.shot figcaption {
  padding: 16px 18px 20px;
  font-size: 14.5px;
  color: var(--muted);
}
.shot-tag {
  display: inline-block;
  background: var(--navy);
  color: var(--gold-light);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-right: 8px;
}

/* ===================== PREISE ===================== */
.price-cards { align-items: stretch; }
.price-card {
  position: relative;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(230,180,34,.3);
  border-radius: var(--radius);
  padding: 34px 28px;
  display: flex; flex-direction: column;
}
.price-card h3 { color: var(--gold-light); font-size: 24px; margin-bottom: 10px; }
.price-card .price { font-family: Georgia, serif; font-size: 34px; color: var(--white); margin-bottom: 20px; }
.price-card .price span { font-size: 15px; color: var(--light-muted); }
.price-card .price small { font-size: 14px; color: var(--light-muted); font-weight: 400; }
.price-card .list-check { margin-bottom: 26px; flex: 1; }
.price-card .list-check li { color: var(--light); }
.price-card .list-check li::before { color: var(--gold); }
.price-card--highlight {
  border-color: var(--gold);
  background: linear-gradient(160deg, rgba(230,180,34,.16), rgba(255,255,255,.05));
  box-shadow: 0 18px 44px rgba(0,0,0,.35);
}
.badge-popular {
  position: absolute; top: -13px; right: 22px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #2a2105; font-size: 13px; font-weight: 700;
  padding: 5px 14px; border-radius: 999px;
}
.price-hint {
  color: var(--gold-light);
  font-size: 14px;
  font-weight: 600;
  margin: -10px 0 18px;
}
.price-note { text-align: center; color: var(--light-muted); font-size: 14px; margin-top: 26px; }
.price-note strong { color: var(--gold-light); }
.price-note a { color: var(--gold-light); text-decoration: underline; }
.price-addon { display: inline-block; color: var(--gold-light); font-weight: 700; font-size: 15px; margin-top: 4px; }
.price-addon-list li { margin-bottom: 16px; }
.price-card--combo { border-color: rgba(230,180,34,.5); }
.includes-premium-box {
  margin-top: 28px; padding: 22px 24px;
  background: rgba(230,180,34,.08); border: 1px solid rgba(230,180,34,.35);
  border-radius: var(--radius);
}
.includes-premium-title { color: var(--gold-light); font-size: 18px; margin: 0 0 8px; }
.includes-premium-lead { color: var(--light-muted); font-size: 14px; margin: 0 0 12px; }
.includes-premium-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 4px 20px; }

/* Einführungspreis – große Spotlight-Box im Preise-Bereich */
.intro-price-spotlight {
  margin: -10px auto 36px;
  max-width: 820px;
}
.intro-price-spotlight-inner {
  background: linear-gradient(135deg, rgba(230,180,34,.22), rgba(230,180,34,.08));
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 28px 26px 24px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(0,0,0,.28);
}
.intro-price-spotlight-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #2a2105;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.intro-price-spotlight-prices {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.intro-price-now,
.intro-price-later {
  flex: 1 1 220px;
  max-width: 280px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(230,180,34,.35);
  border-radius: 14px;
  padding: 18px 16px;
}
.intro-price-later { opacity: .88; }
.intro-price-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .4px;
  color: var(--gold-light);
  margin-bottom: 6px;
}
.intro-price-amount {
  display: block;
  font-family: Georgia, serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.intro-price-amount--later {
  font-size: 36px;
  color: var(--light);
}
.intro-price-unit {
  display: block;
  font-size: 14px;
  color: var(--light-muted);
  margin-top: 4px;
}
.intro-price-arrow {
  font-size: 32px;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}
.intro-price-spotlight-note {
  font-size: 14px;
  color: var(--light-muted);
  margin: 0;
}
.intro-price-guarantee {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  text-align: left;
  max-width: 640px;
  margin: 0 auto 14px;
  padding: 14px 18px;
  background: rgba(14, 31, 71, .45);
  border: 2px solid var(--gold);
  border-radius: 12px;
  font-size: 16px;
  color: var(--light);
  line-height: 1.5;
}
.intro-price-guarantee strong { color: var(--gold-light); }
.guarantee-check {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #2a2105;
  font-weight: 800;
  font-size: 16px;
}

/* Preiskarte: Einführungspreis-Details */
.price-intro-now {
  font-size: 40px !important;
  color: var(--gold-light) !important;
  margin-bottom: 6px !important;
}
.price-intro-deadline {
  color: var(--gold-light);
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 8px;
}
.price-guarantee {
  background: rgba(14, 31, 71, .5);
  border: 2px solid var(--gold);
  border-radius: 10px;
  color: var(--gold-light);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 12px;
  margin: 0 0 10px;
  line-height: 1.45;
}
.price-guarantee strong { color: var(--white); }
.price-intro-after {
  color: var(--light-muted);
  font-size: 15px;
  margin: 0 0 10px;
}
.price-intro-after strong {
  color: var(--white);
  font-size: 17px;
}

/* Komplette Inklusiv-Liste Startmodul */
.includes-box {
  margin-top: 40px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(230,180,34,.3);
  border-radius: var(--radius);
  padding: 36px 32px 30px;
}
.includes-title {
  text-align: center;
  color: var(--gold-light);
  font-size: 24px;
  margin-bottom: 28px;
}
.includes-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
  gap: 30px;
}
.includes-col h4 {
  color: var(--white);
  font-size: 17px;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(230,180,34,.3);
}
.includes-col .list-check li { color: var(--light); font-size: 15px; }
.includes-col .list-check li::before { color: var(--gold); }
.includes-foot {
  text-align: center;
  color: var(--light-muted);
  margin-top: 28px;
  font-size: 16px;
}
.includes-foot strong { color: var(--gold-light); }

/* ===================== ROI / DAS RECHNET SICH ===================== */
.roi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.roi-stat {
  text-align: center;
  background: var(--bg-soft);
  border: 1px solid #e2e8f5;
  border-top: 4px solid var(--gold);
  border-radius: 14px;
  padding: 30px 24px;
}
.roi-num {
  font-family: Georgia, serif;
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.roi-stat p { color: var(--muted); font-size: 15.5px; }

.roi-fazit {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  background: linear-gradient(160deg, #fff8e6, #fdeecb);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow);
}
.roi-fazit p { font-size: 19px; color: var(--ink); margin-bottom: 14px; }
.roi-fazit strong { color: var(--gold-dark); }
.roi-fineprint { font-size: 14px !important; color: var(--muted) !important; }
.roi-fazit .btn { margin-top: 12px; }

/* ===================== FAQ ===================== */
.faq-item {
  background: var(--white);
  border: 1px solid #e2e8f5;
  border-radius: 12px;
  padding: 4px 22px;
  margin-bottom: 14px;
  box-shadow: 0 4px 14px rgba(10,23,51,.04);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 17px;
  padding: 16px 0;
  list-style: none;
  position: relative;
  padding-right: 30px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  color: var(--gold-dark); font-size: 24px; font-weight: 700;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p { padding: 0 0 18px; color: var(--muted); }

/* ===================== CTA ===================== */
.section-cta {
  background:
    radial-gradient(900px 400px at 50% 0%, rgba(230,180,34,.2), transparent 60%),
    linear-gradient(160deg, var(--navy), var(--navy-deep));
  color: var(--light);
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 10px; }
.cta-contact { margin-top: 24px; color: var(--light-muted); }
.cta-contact strong { color: var(--gold-light); }

/* ===================== FOOTER ===================== */
.site-footer { background: var(--navy-deep); color: var(--light-muted); }
.footer-inner {
  display: flex; justify-content: space-between; gap: 30px;
  flex-wrap: wrap; padding: 48px 24px;
}
.footer-logo { height: 52px; border-radius: 8px; margin-bottom: 12px; }
.footer-brand { max-width: 360px; }
.footer-meta p { margin-bottom: 4px; }
.footer-meta a { color: var(--gold-light); }
.footer-meta a:hover { text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
  font-size: 14px;
  text-align: center;
}
.footer-bottom a { color: var(--gold-light); }
.footer-bottom a:hover { text-decoration: underline; }

/* ===================== RECHTSTEXTE (Impressum/Datenschutz) ===================== */
.legal { padding: 56px 0 70px; background: var(--white); }
.legal-title { font-size: clamp(28px, 4vw, 40px); margin-bottom: 28px; color: var(--navy); }
.legal h2 {
  font-size: 22px;
  color: var(--navy);
  margin: 34px 0 10px;
  padding-top: 14px;
  border-top: 1px solid #e7ecf6;
}
.legal h3 { font-size: 18px; color: var(--ink); margin: 20px 0 6px; }
.legal p { color: var(--ink); margin-bottom: 12px; }
.legal a { color: var(--gold-dark); text-decoration: underline; }
.legal-note {
  background: var(--bg-soft);
  border-left: 4px solid var(--gold);
  padding: 16px 18px;
  border-radius: 8px;
  font-size: 14.5px;
  color: var(--muted) !important;
  margin-top: 28px;
}
.legal-back { margin-top: 32px; }

.legal-header {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 8px;
}
.legal-portrait {
  width: 180px;
  max-width: 100%;
  height: auto;
  border: 1px solid #e7ecf6;
  border-radius: 8px;
  background: var(--white);
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(12, 35, 64, 0.08);
}
.legal-header-text { flex: 1; min-width: 220px; }
.legal-header-text h2 {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  font-size: 22px;
}

/* ===================== DIGIMHD ===================== */
.price-soon { font-size: 13px; color: var(--light-muted); margin: 0 0 18px; }
.price-soon .tag-mini { margin: 2px 4px 2px 0; }

.mhd-spot {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  align-items: center;
}
.mhd-spot-lead { font-size: 18px; color: var(--light-muted); margin-bottom: 26px; }
.mhd-spot-note { color: var(--light-muted); margin: 22px 0 26px; }
.mhd-spot-note.center { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }
.mhd-spot-img img {
  border-radius: 18px;
  border: 3px solid rgba(230,180,34,.5);
  box-shadow: 0 26px 56px rgba(0,0,0,.5);
  max-height: 560px;
  margin: 0 auto;
}
.mhd-hero-img {
  border-radius: 18px;
  border: 3px solid rgba(230,180,34,.5);
  box-shadow: 0 26px 56px rgba(0,0,0,.5);
  max-height: 520px;
  margin: 0 auto;
}

/* Ampel */
.ampel { display: grid; gap: 16px; }
.ampel-big { grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ampel-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-left-width: 5px;
  border-radius: 12px;
  padding: 16px 18px;
  color: var(--light);
}
.ampel-item .dot {
  flex: 0 0 auto;
  width: 18px; height: 18px; border-radius: 50%;
  margin-top: 3px;
  box-shadow: 0 0 14px currentColor;
}
.ampel-green  { border-left-color: #2ecc71; }
.ampel-green .dot  { background: #2ecc71; color: #2ecc71; }
.ampel-orange { border-left-color: #f1a112; }
.ampel-orange .dot { background: #f1a112; color: #f1a112; }
.ampel-red    { border-left-color: #e74c3c; }
.ampel-red .dot    { background: #e74c3c; color: #e74c3c; }
.ampel-item strong { color: #fff; }

/* Screenshots zu zweit (MHD-Seite) */
.shots-2 { grid-template-columns: repeat(2, 1fr); max-width: 820px; margin: 0 auto; }
.shots-2 .shot img { max-height: 620px; width: auto; margin: 0 auto; }

/* Zielgruppen */
.target-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.target {
  background: var(--white);
  border: 1px solid #e2e8f5;
  border-radius: 14px;
  padding: 24px 16px;
  text-align: center;
  font-size: 34px;
  box-shadow: 0 8px 22px rgba(10,23,51,.06);
  transition: transform .2s;
}
.target:hover { transform: translateY(-5px); }
.target span {
  display: block;
  margin-top: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

/* ===================== PRESSE-BAR ===================== */
.press-bar {
  background: linear-gradient(90deg, #1a3a6e, var(--navy));
  border-bottom: 2px solid var(--gold);
  padding: 10px 0;
}
.press-bar-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
.press-bar-badge {
  flex: 0 0 auto;
  background: var(--gold);
  color: #2a2105;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .6px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
.press-bar-text {
  margin: 0;
  color: var(--light);
  font-size: 14.5px;
  line-height: 1.45;
  max-width: 720px;
}

/* ===================== HERO – SLOGAN & MARKEN ===================== */
.hero-slogan {
  font-size: clamp(17px, 2.2vw, 21px);
  line-height: 1.55;
  color: var(--light);
  margin: 0 0 16px;
  max-width: 560px;
}
.hero-slogan strong { color: var(--gold-light); }
.brand-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  max-width: 560px;
}
.brand-strip span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .3px;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(230,180,34,.45);
  color: var(--gold-light);
  background: rgba(255,255,255,.06);
}

/* ===================== DIFFERENZ (KONZERN VS. DIGICHECK) ===================== */
.diff-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: stretch;
  margin-bottom: 36px;
}
.diff-arrow {
  display: grid;
  place-items: center;
  font-size: 36px;
  color: var(--gold);
  font-weight: 700;
  padding-top: 40px;
}
.diff-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 28px 26px;
}
.diff-card--digicheck {
  border-color: rgba(230,180,34,.5);
  background: linear-gradient(160deg, rgba(230,180,34,.14), rgba(255,255,255,.05));
  box-shadow: 0 12px 36px rgba(0,0,0,.25);
}
.diff-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--light-muted);
  margin-bottom: 10px;
}
.diff-label--gold { color: var(--gold-light); }
.diff-card h3 {
  color: var(--white);
  font-size: 22px;
  margin: 0 0 16px;
}
.list-cross--light li,
.list-check--light li { color: var(--light); }
.list-check--light li::before { color: var(--gold); }
.list-cross--light li::before { color: #f87171; }
.pull-quote {
  margin: 0;
  padding: 24px 28px;
  border-left: 4px solid var(--gold);
  background: rgba(255,255,255,.05);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: Georgia, serif;
  font-size: clamp(18px, 2.5vw, 24px);
  font-style: italic;
  color: var(--gold-light);
  line-height: 1.45;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.pull-quote cite {
  display: block;
  margin-top: 12px;
  font-family: 'Segoe UI', sans-serif;
  font-size: 14px;
  font-style: normal;
  color: var(--light-muted);
}

/* ===================== AUSWERTUNGEN-SPOTLIGHT ===================== */
.eyebrow--dark {
  background: rgba(12,35,64,.1);
  color: var(--navy);
  border: 1px solid rgba(12,35,64,.15);
}
.ausw-grid-lp {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 32px 0 28px;
}
.ausw-tile-lp {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 18px;
  box-shadow: 0 6px 20px rgba(10,23,51,.06);
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.ausw-tile-lp:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 14px 32px rgba(10,23,51,.1);
}
.ausw-tile-lp--highlight {
  border: 2px solid var(--gold);
  background: linear-gradient(160deg, rgba(230,180,34,.12), #fff);
}
.ausw-icon {
  display: block;
  font-size: 28px;
  margin-bottom: 10px;
}
.ausw-tile-lp h3 {
  margin: 0 0 8px;
  font-size: 16px;
  color: var(--navy);
}
.ausw-tile-lp p {
  margin: 0;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.45;
}
.ausw-cta {
  text-align: center;
  margin-top: 8px;
}
.ausw-cta-note {
  margin: 14px 0 0;
  font-size: 14px;
  color: var(--muted);
}

/* Hinweis: Live-Demo vs. echtes Portal */
.demo-live-hinweis {
  margin: 18px 0 0;
  max-width: 560px;
  padding: 12px 16px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--light-muted);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(230,180,34,.35);
  border-left: 4px solid var(--gold);
  border-radius: 0 10px 10px 0;
}
.demo-live-hinweis strong { color: var(--gold-light); }
.demo-live-hinweis a { color: var(--gold-light); text-decoration: underline; }
.demo-live-hinweis a:hover { color: var(--gold); }
.demo-live-hinweis--light {
  color: var(--muted);
  background: rgba(12,35,64,.04);
  border-color: rgba(12,35,64,.12);
  border-left-color: var(--gold-dark);
}
.demo-live-hinweis--light strong { color: var(--navy); }
.demo-live-hinweis--light a { color: var(--navy); font-weight: 600; }
.demo-live-hinweis--center {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  border-left: none;
  border-radius: 10px;
  border-top: 3px solid var(--gold);
  margin-bottom: 28px;
}

/* ===================== FEATURE-HIGHLIGHT ===================== */
.feature--highlight {
  background: linear-gradient(135deg, rgba(230,180,34,.12), rgba(12,35,64,.04));
  border: 1px solid rgba(230,180,34,.35);
  border-radius: 12px;
  padding: 14px 16px !important;
}
.tag-new {
  background: var(--gold) !important;
  color: #2a2105 !important;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero .eyebrow { margin-left: auto; margin-right: auto; font-size: 13px; }
  .hero-text .lead { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-promo { margin-left: auto; margin-right: auto; }
  .hero-badge { order: -1; }
  .intro-bar-inner { flex-direction: column; gap: 10px; }
  .intro-bar-guarantee { font-size: 14px; text-align: center; }
  .intro-price-guarantee { flex-direction: column; text-align: center; align-items: center; }
  .intro-price-arrow { transform: rotate(90deg); }
  .hero-slogan, .brand-strip, .demo-live-hinweis { margin-left: auto; margin-right: auto; justify-content: center; }
  .demo-live-hinweis { text-align: center; border-left: none; border-radius: 10px; border-top: 3px solid var(--gold); }
  .diff-grid { grid-template-columns: 1fr; }
  .diff-arrow { transform: rotate(90deg); padding: 0; }
  .ausw-grid-lp { grid-template-columns: repeat(2, 1fr); }
  .cards-2, .cards-3, .features-grid, .shots-grid, .roi-grid { grid-template-columns: 1fr; }
  .mhd-spot { grid-template-columns: 1fr; gap: 32px; }
  .mhd-spot .section-title { text-align: center !important; }
  .ampel-big { grid-template-columns: 1fr; }
  .shots-2 { grid-template-columns: 1fr; }
  .target-grid { grid-template-columns: repeat(2, 1fr); }
  .main-nav { display: none; }      /* Menü auf kleinen Geräten ausgeblendet */
}

@media (max-width: 560px) {
  .header-actions .btn-ghost { display: none; }
  .logo-img { height: 38px; }
  .section { padding: 56px 0; }
  .badge-img { width: 170px; height: 170px; }
  .includes-cols { grid-template-columns: 1fr; gap: 24px; }
  .intro-bar-price { font-size: 24px; }
  .intro-bar-later { font-size: 14px; }
  .intro-price-amount { font-size: 34px; }
  .ausw-grid-lp { grid-template-columns: 1fr; }
  .press-bar-inner { flex-direction: column; gap: 8px; }
}
