/* ================================================
   RIGL Branding & Consulting — Shared Stylesheet
   taste-skill (DESIGN_VARIANCE:8, MOTION:6) + RIGL Brand Kit
   ================================================ */

/* RESET & BASE */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold:    #A07830;
  --gold-l:  #C9A84C;
  --gold-w:  #E8D59A;
  --dark:    #1A1A1A;
  --dark2:   #252525;
  --charcoal:#2E2E2E;
  --text:    #4A4A4A;
  --mid:     #888888;
  --off:     #E9E5DF;
  --cream:   #F7F5F1;
  --white:   #FFFFFF;
  --green:   #27AE60;
  --red:     #C0392B;
  --blue:    #3D5A80;
  --blue-d:  #2C4A6E;
  --blue-l:  #4E7099;
  --nav-h:   96px;
  --pad:     clamp(56px, 9vw, 96px);
  --r:       10px;
  --ease:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto', sans-serif;
  background: var(--dark);
  color: var(--white);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.08;
}

/* UTILITY */
.label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 14px;
}
.label::before {
  content: '';
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--gold);
}

.sec-title {
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 18px;
}

.sec-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 52px;
}

.text-gold { color: var(--gold); }
.text-mid  { color: rgba(255,255,255,0.45); }

/* BUTTONS */
.btn {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: var(--r);
  padding: 11px 26px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s, color 0.2s;
  border: none;
  white-space: nowrap;
}
.btn-gold {
  color: var(--dark);
  background: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-l);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(160,120,48,0.38);
}
.btn-border {
  color: var(--gold);
  background: transparent;
  border: 1.5px solid rgba(160,120,48,0.65);
}
.btn-border:hover {
  background: rgba(160,120,48,0.1);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.btn-lg { padding: 15px 36px; font-size: 0.88rem; }
.btn-sm { padding: 8px 18px; font-size: 0.72rem; }

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(26,26,26,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(160,120,48,0.13);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  transition: box-shadow 0.3s;
}
nav.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.5);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}
nav.nav-compact {
  padding-top: 10px;
  padding-bottom: 10px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  display: block;
}
.logo-img {
  height: 80px;
  width: auto;
  display: block;
  transition: transform 0.4s var(--ease), filter 0.4s ease;
  will-change: transform, filter;
}
.logo-screen {
  mix-blend-mode: screen;
}
/* Shine sweep on hover */
.logo-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 20%,
    rgba(255,255,255,0.18) 40%,
    rgba(232,213,154,0.22) 50%,
    transparent 65%
  );
  transform: translateX(-100%);
  transition: none;
  pointer-events: none;
}
.logo-animated:hover .logo-img {
  transform: scale(1.05);
  filter: brightness(1.15) drop-shadow(0 0 12px rgba(160,120,48,0.55));
}
.logo-animated:hover .logo-shine {
  transform: translateX(100%);
  transition: transform 0.55s ease;
}
.logo svg { width: 36px; height: 36px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text .brand {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.logo-text .sub {
  font-size: 0.57rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 300;
}

.nav-links {
  display: flex;
  gap: 2px;
  list-style: none;
  align-items: center;
}
.nav-links > li { position: relative; }
.nav-links a {
  font-size: 0.77rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  transition: color 0.2s;
  padding: 8px 13px;
  display: block;
}
.nav-links a:hover,
.nav-links a.active { color: var(--blue-l); }

/* Dropdown */
.has-drop > a::after {
  content: ' ▾';
  font-size: 0.6rem;
  opacity: 0.5;
}
.has-drop:hover .dropdown,
.has-drop:focus-within .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.dropdown {
  position: absolute;
  top: 100%;
  left: -12px;
  background: var(--dark2);
  border: 1px solid rgba(160,120,48,0.2);
  border-radius: var(--r);
  min-width: 230px;
  padding: 14px 0 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: all 0.22s var(--ease);
  box-shadow: 0 20px 56px rgba(0,0,0,0.55);
}
.dropdown a {
  padding: 11px 20px !important;
  font-size: 0.78rem !important;
  border-bottom: none !important;
  color: rgba(255,255,255,0.65) !important;
}
.dropdown a:hover {
  background: rgba(61,90,128,0.15);
  color: var(--blue-l) !important;
}

.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-tel {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  width: 24px; height: 2px;
  background: #fff;
  transition: all 0.3s;
  display: block;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mob-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(26,26,26,0.99);
  border-bottom: 1px solid rgba(160,120,48,0.2);
  z-index: 1001;
  padding: 0 5% 24px;
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
}
.mob-menu.open { display: flex; }
.mob-menu a {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mob-menu a.mob-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  padding-left: 14px;
}
.mob-menu .btn-gold { margin-top: 18px; text-align: center; }

/* ── SCROLL FADE IN ── */
.fi {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.fi.v { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }

/* ── SECTIONS ── */
section { padding: var(--pad) 5%; }
.section-light {
  background: var(--cream);
  color: var(--text);
}
.section-light .sec-title { color: var(--text); }
.section-light .sec-sub   { color: var(--mid); }
.section-light .label     { color: var(--gold); }

/* ── Section-light: stats overrides ── */
.section-light .stat-n {
  color: var(--gold);
  text-shadow: none;
}
.section-light .stat-l {
  color: var(--text);
}
.section-light .stat-src {
  color: var(--mid);
}
.section-light .stat-div {
  background: rgba(160,120,48,0.2);
}
.section-light .poly-section-bg { display: none; }

/* ── Section-light: partner overrides ── */
.section-light .partner-card {
  background: var(--white);
  border-color: rgba(160,120,48,0.15);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.section-light .partner-card:hover {
  border-color: rgba(160,120,48,0.45);
  box-shadow: 0 8px 28px rgba(160,120,48,0.12);
}
.section-light .partner-card p {
  color: var(--mid);
}

/* ── Section-light: bafa-bar overrides ── */
.section-light .bafa-text p {
  color: var(--mid);
}
.section-light .bafa-text strong {
  color: var(--dark);
}
.section-light .bafa-badge {
  background: rgba(160,120,48,0.1);
  color: var(--dark2);
  border-color: rgba(160,120,48,0.3);
}

/* ── Section-light: prozess-step overrides ── */
.section-light .prozess-step h4 {
  color: var(--dark);
}
.section-light .prozess-step p {
  color: var(--mid);
}
.section-light .prozess-num {
  background: rgba(160,120,48,0.08);
  border-color: rgba(160,120,48,0.4);
  color: var(--gold);
}
.section-light .prozess-step:hover .prozess-num {
  background: rgba(160,120,48,0.15);
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(160,120,48,0.2);
}

/* ── Section-light: general heading overrides ── */
.section-light h2 { color: var(--dark); }
.section-light h3 { color: var(--dark); }
.section-light p  { color: var(--mid); }

/* ── Section-light: dark cards keep white text ── */
.section-light .angebot-block h3 { color: var(--white); }
.section-light .angebot-block p  { color: rgba(255,255,255,0.5); }
.section-light .angebot-list li  { color: rgba(255,255,255,0.65); }
.section-light .angebot-type     { color: var(--gold); }
.section-light .software-card h4 { color: var(--dark); }
.section-light .software-card p  { color: var(--mid); }

/* ── Section-light: jannis-hl readable on cream ── */
.section-light .jannis-hl  { color: var(--text); }
.section-light .jannis-content p { color: var(--mid); }

/* ── USP STRIP ── */
#usp-strip {
  background: linear-gradient(to bottom, var(--dark) 0%, var(--charcoal) 80px);
  padding: 40px 5%;
  border-bottom: 1px solid rgba(160,120,48,0.15);
}
.usp-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.usp-headline {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  flex: 1;
  min-width: 240px;
}
.usp-headline em {
  color: var(--gold);
  font-style: normal;
}
.usp-text {
  flex: 2;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  min-width: 240px;
}

/* ── LEISTUNGEN GRID ── */
#leistungen { max-width: 1200px; margin: 0 auto; }

.leistungen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}

.leistung-card {
  background: var(--charcoal);
  border: 1px solid rgba(160,120,48,0.1);
  border-radius: 14px;
  padding: 40px 36px;
  text-decoration: none;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.leistung-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, var(--blue-l), var(--blue-d));
  transition: height 0.4s var(--ease);
}
.leistung-card:hover {
  transform: translateY(-4px);
  border-color: rgba(78,112,153,0.4);
  box-shadow: 0 16px 48px rgba(61,90,128,0.2);
}
.leistung-card:hover::before { height: 100%; }

.leistung-card.featured {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  padding: 48px 48px;
}
.leistung-icon {
  width: 52px; height: 52px;
  flex-shrink: 0;
}
.leistung-icon svg { width: 100%; height: 100%; }

.leistung-card h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--white);
}
.leistung-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  flex: 1;
}
.leistung-card .link-arrow {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-top: auto;
  transition: gap 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.leistung-card:hover .link-arrow { gap: 10px; }

/* ── PROZESS (4 Schritte) ── */
#prozess { background: var(--dark2); }
.prozess-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 56px;
}
.prozess-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(78,112,153,0.5) 20%, rgba(78,112,153,0.5) 80%, transparent);
}
.prozess-step {
  text-align: center;
  padding: 0 24px;
  position: relative;
}
.prozess-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1.5px solid rgba(78,112,153,0.5);
  background: var(--dark2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue-l);
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.prozess-step:hover .prozess-num {
  background: rgba(61,90,128,0.18);
  border-color: var(--blue-l);
  box-shadow: 0 0 20px rgba(78,112,153,0.3);
}
.prozess-step h4 {
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 10px;
}
.prozess-step p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.65;
}

/* ── STATS BAR ── */
#stats {
  padding: 52px 5%;
  border-top: 1px solid rgba(160,120,48,0.1);
  border-bottom: 1px solid rgba(160,120,48,0.1);
}
.stats-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.stat {
  text-align: center;
  padding: 16px 40px;
  flex: 1;
  min-width: 150px;
}
.stat-n {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--gold-l);
  line-height: 1;
  display: block;
  text-shadow: 0 0 24px rgba(160,120,48,0.25);
}
.stat-l {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
  line-height: 1.4;
  max-width: 130px;
  margin-left: auto;
  margin-right: auto;
}
.stat-src {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.2);
  margin-top: 4px;
  font-style: italic;
}
.stat-div {
  width: 1px;
  background: rgba(160,120,48,0.15);
  align-self: stretch;
  margin: 8px 0;
}

/* ── PAKETE ── */
#pakete .pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin-bottom: 22px;
}
.pkg-card {
  background: var(--charcoal);
  border: 1px solid rgba(160,120,48,0.1);
  border-radius: 14px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.pkg-card:hover {
  transform: translateY(-4px);
  border-color: rgba(78,112,153,0.4);
  box-shadow: 0 12px 40px rgba(61,90,128,0.22);
}
.pkg-card.hl {
  border-color: rgba(160,120,48,0.4);
  background: linear-gradient(145deg, rgba(160,120,48,0.06) 0%, var(--charcoal) 100%);
  position: relative;
}
.pkg-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--dark);
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.pkg-name {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 8px;
}
.pkg-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 24px;
  line-height: 1.6;
}
.pkg-feats {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
}
.pkg-feats li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}
.pkg-feats .ok { color: var(--green); font-size: 0.85rem; flex-shrink: 0; margin-top: 2px; }
.pkg-card .btn { text-align: center; width: 100%; }

.pkg-individual {
  background: linear-gradient(135deg, rgba(160,120,48,0.1) 0%, rgba(160,120,48,0.03) 100%);
  border: 1.5px solid rgba(160,120,48,0.3);
  border-radius: 14px;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.pkg-individual h3 { font-size: 1.4rem; margin-bottom: 8px; }
.pkg-individual p  { font-size: 0.9rem; color: rgba(255,255,255,0.5); max-width: 480px; line-height: 1.7; }

/* ── BAFA CALLOUT ── */
.bafa-bar {
  background: linear-gradient(135deg, rgba(160,120,48,0.1) 0%, rgba(160,120,48,0.03) 100%);
  border: 1px solid rgba(160,120,48,0.25);
  border-radius: 12px;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 48px;
}
.bafa-badge {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  background: rgba(160,120,48,0.12);
  border: 1px solid rgba(160,120,48,0.3);
  border-radius: 4px;
  padding: 7px 14px;
  white-space: nowrap;
  flex-shrink: 0;
}
.bafa-text strong {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}
.bafa-text p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}
.bafa-bar .btn { margin-left: auto; flex-shrink: 0; }

/* ── SUCCESS STORY ── */
.story-card {
  background: var(--charcoal);
  border-radius: 16px;
  padding: 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  border: 1px solid rgba(160,120,48,0.12);
  position: relative;
  overflow: hidden;
}
.story-card::before {
  content: '»';
  position: absolute;
  top: -20px;
  left: 36px;
  font-size: 12rem;
  font-family: 'Roboto Condensed', sans-serif;
  color: rgba(160,120,48,0.06);
  line-height: 1;
  pointer-events: none;
}
.story-quote {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 24px;
}
.story-quote em { color: var(--gold); font-style: normal; }
.story-author {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.story-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.story-stat {
  background: var(--dark2);
  border-radius: 10px;
  padding: 22px 20px;
  border: 1px solid rgba(160,120,48,0.1);
}
.story-stat-n {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.story-stat-l {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-top: 6px;
  line-height: 1.4;
}

/* ── Scheidemantel Story redesign ── */
.story-quote-block {
  position: relative;
  background: var(--charcoal);
  border-radius: var(--r);
  padding: 48px 56px 40px;
  margin-bottom: 32px;
  border-left: 4px solid var(--gold);
}
.story-quote-mark {
  font-family: Georgia, serif;
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 0.7;
  position: absolute;
  top: 10px;
  left: 14px;
  opacity: 0.22;
  pointer-events: none;
  user-select: none;
}
.story-quote-block blockquote {
  font-size: 1.12rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.88);
  font-style: italic;
  margin-bottom: 20px;
  padding-left: 8px;
}

.story-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.story-stat-card {
  background: var(--charcoal);
  border-radius: var(--r);
  padding: 24px 20px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.3s ease;
}
.story-stat-card:hover { border-color: rgba(78,112,153,0.4); }
.story-stat-card.highlight {
  background: linear-gradient(135deg, rgba(61,90,128,0.18), rgba(61,90,128,0.06));
  border-color: rgba(78,112,153,0.4);
}
.story-stat-card .story-stat-n {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--blue-l);
  display: block;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(78,112,153,0.35);
}
.story-stat-card .story-stat-l {
  font-size: 0.82rem;
  color: var(--mid);
  line-height: 1.4;
}

.story-services {
  background: var(--charcoal);
  border-radius: var(--r);
  padding: 32px 40px;
  border: 1px solid rgba(255,255,255,0.06);
}
.story-services-label {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 20px;
}
.story-services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
}
.story-service-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}

@media (max-width: 768px) {
  .story-quote-block { padding: 32px 24px 28px; }
  .story-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .story-services-list { grid-template-columns: 1fr; }
}

/* ── PARTNER GRID ── */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.partner-card {
  background: var(--charcoal);
  border: 1px solid rgba(160,120,48,0.1);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.partner-card:hover {
  border-color: rgba(78,112,153,0.45);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(61,90,128,0.18);
}
.partner-logo {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-logo img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
  padding: 6px 10px;
  background: rgba(255,255,255,0.92);
}
.partner-logo-text {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--gold-l);
  text-transform: uppercase;
}
.partner-card p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.55;
}

/* ── TEAM ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 52px;
  align-items: start;
}
.team-card {
  background: var(--charcoal);
  border: 1px solid rgba(160,120,48,0.1);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(78,112,153,0.4);
  box-shadow: 0 12px 36px rgba(61,90,128,0.18);
}
.team-card.featured { grid-row: span 1; }

.team-photo {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--dark2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-photo-placeholder {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(160,120,48,0.3);
}
.team-photo-ai {
  background: linear-gradient(135deg, rgba(160,120,48,0.08) 0%, var(--dark2) 100%);
}

.team-info { padding: 22px 22px 26px; }
.team-name {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 4px;
}
.team-role {
  font-size: 0.72rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-family: 'Roboto Condensed', sans-serif;
  margin-bottom: 12px;
}
.team-bio {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.65;
}

.team-placeholder {
  border-style: dashed;
  border-color: rgba(160,120,48,0.15) !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  min-height: 240px;
}
.team-placeholder .plus {
  font-size: 2rem;
  color: rgba(160,120,48,0.25);
  font-weight: 700;
  margin-bottom: 10px;
}
.team-placeholder p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.2);
}

/* ── FEATURE LIST (für Unterseiten) ── */
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.feature-item {
  background: var(--charcoal);
  border-radius: 12px;
  padding: 28px 26px;
  border-left: 3px solid var(--blue);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.feature-item:hover {
  box-shadow: -4px 0 16px rgba(78,112,153,0.2);
}
.feature-item:hover { transform: translateX(4px); }
.feature-item h4 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 8px;
}
.feature-item p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
}

/* ── WHY NUMBERS (Unterseiten) ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}
.why-card {
  background: var(--charcoal);
  border-radius: 14px;
  padding: 36px 28px;
  border-top: 3px solid var(--blue);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(61,90,128,0.2);
}
.why-num {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--blue-l);
  line-height: 1;
  margin-bottom: 10px;
  text-shadow: 0 0 24px rgba(78,112,153,0.3);
}
.why-card h4 { font-size: 1rem; color: var(--white); margin-bottom: 8px; }
.why-card p  { font-size: 0.83rem; color: rgba(255,255,255,0.45); line-height: 1.65; }
.why-src     { font-size: 0.68rem; color: rgba(255,255,255,0.2); margin-top: 8px; font-style: italic; }

/* ── CTA SECTION ── */
#cta {
  background: var(--charcoal);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(61,90,128,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; max-width: 640px; margin: 0 auto; }
.cta-btns  { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin: 28px 0 16px; }
.cta-note  { font-size: 0.7rem; color: rgba(255,255,255,0.28); text-transform: uppercase; letter-spacing: 0.12em; }

/* ── FOOTER ── */
footer {
  background: #111111;
  padding: 72px 5% 32px;
  border-top: 1px solid rgba(160,120,48,0.12);
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}
.foot-brand p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.35);
  margin-top: 16px;
  line-height: 1.75;
  max-width: 280px;
}
.foot-socials { display: flex; gap: 10px; margin-top: 20px; }
.soc {
  width: 36px; height: 36px;
  border: 1px solid rgba(160,120,48,0.28);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.22s var(--ease);
}
.soc:hover {
  background: rgba(61,90,128,0.18);
  border-color: var(--blue-l);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(61,90,128,0.25);
}
.foot-col h4 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 20px;
}
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 11px; }
.foot-col a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  transition: color 0.2s;
}
.foot-col a:hover { color: var(--blue-l); }
.foot-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.74rem;
  color: rgba(255,255,255,0.2);
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.foot-bottom a {
  color: rgba(255,255,255,0.28);
  text-decoration: none;
  transition: color 0.2s;
}
.foot-bottom a:hover { color: var(--gold); }

/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(26,26,26,0.98);
  border-top: 1px solid rgba(160,120,48,0.25);
  z-index: 9999;
  padding: 20px 5%;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
  backdrop-filter: blur(12px);
}
#cookie-banner.visible { transform: translateY(0); }
.cb-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.cb-text { flex: 1; min-width: 240px; }
.cb-text strong {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  display: block;
  margin-bottom: 5px;
}
.cb-text p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}
.cb-text a { color: var(--gold); text-decoration: none; }
.cb-text a:hover { text-decoration: underline; }
.cb-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* Cookie Modal */
#cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}
.cm-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
}
.cm-box {
  position: relative;
  background: var(--dark2);
  border: 1px solid rgba(160,120,48,0.25);
  border-radius: 16px;
  padding: 40px 36px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 1;
}
.cm-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 1rem;
  cursor: pointer;
  padding: 6px;
  transition: color 0.2s;
}
.cm-close:hover { color: var(--white); }
.cm-box h3 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 8px;
}
.cm-sub { font-size: 0.83rem; color: rgba(255,255,255,0.45); margin-bottom: 28px; line-height: 1.65; }
.cm-category {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 18px 20px;
  margin-bottom: 12px;
}
.cm-cat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.cm-cat-header strong {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--white);
  display: block;
  margin-bottom: 4px;
}
.cm-cat-header p { font-size: 0.78rem; color: rgba(255,255,255,0.4); line-height: 1.55; }
.cm-toggle-wrap {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 26px;
  flex-shrink: 0;
  cursor: pointer;
}
.cm-toggle-wrap input { opacity: 0; width: 0; height: 0; }
.cm-slider {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  border-radius: 26px;
  transition: background 0.25s;
}
.cm-slider::before {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  left: 3px; top: 3px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  transition: transform 0.25s var(--ease), background 0.25s;
}
.cm-toggle-wrap input:checked + .cm-slider { background: var(--gold); }
.cm-toggle-wrap input:checked + .cm-slider::before {
  transform: translateX(20px);
  background: var(--dark);
}
.cm-toggle--locked span {
  font-size: 0.68rem;
  color: var(--green);
  font-family: 'Roboto Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  white-space: nowrap;
}
.cm-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.cm-actions .btn { flex: 1; text-align: center; min-width: 120px; }

/* ── HERO BASE ── */
.page-hero {
  padding-top: calc(var(--nav-h) + 72px);
  padding-bottom: 72px;
  padding-left: 5%;
  padding-right: 5%;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--dark));
  pointer-events: none;
}
.ph-label { margin-bottom: 18px; }
.ph-title {
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  color: var(--white);
  margin-bottom: 22px;
  max-width: 700px;
}
.ph-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.5);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 36px;
}
.ph-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── LEGAL PAGES ── */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding-top: calc(var(--nav-h) + 56px);
  padding-bottom: 96px;
  padding-left: 5%;
  padding-right: 5%;
}
.legal-content h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--white);
  margin-bottom: 12px;
}
.legal-content h2 {
  font-size: 1.1rem;
  color: var(--white);
  margin-top: 40px;
  margin-bottom: 12px;
  font-size: 1rem;
}
.legal-content h3 {
  font-size: 0.9rem;
  color: var(--gold-l);
  margin-top: 24px;
  margin-bottom: 8px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 700;
}
.legal-content p, .legal-content li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-bottom: 12px;
}
.legal-content ul { padding-left: 20px; }
.legal-content a { color: var(--gold); text-decoration: none; }
.legal-content a:hover { text-decoration: underline; }
.legal-date {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 48px;
}
.legal-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 32px 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .team-grid  { grid-template-columns: 1fr 1fr 1fr; }
  .prozess-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .prozess-grid::before { display: none; }
}
@media (max-width: 900px) {
  .leistungen-grid { grid-template-columns: 1fr; }
  .leistung-card.featured { flex-direction: column; }
  .pkg-grid { grid-template-columns: 1fr 1fr; }
  .partner-grid { grid-template-columns: 1fr 1fr; }
  .story-card { grid-template-columns: 1fr; gap: 32px; padding: 36px; }
  .foot-grid  { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  :root { --nav-h: 72px; }
  .nav-links, .nav-tel { display: none; }
  .nav-right .btn { display: none; }
  .hamburger { display: flex; }
  .logo-img { height: 48px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .stat-div  { display: none; }
  .pkg-grid  { grid-template-columns: 1fr; }
  .why-grid  { grid-template-columns: 1fr 1fr; }
  .feature-list { grid-template-columns: 1fr; }
  .pkg-individual { flex-direction: column; text-align: center; }
  .bafa-bar { flex-direction: column; text-align: center; }
  .bafa-bar .btn { margin-left: 0; }
  .usp-inner { flex-direction: column; gap: 16px; }
}
@media (max-width: 540px) {
  .team-grid    { grid-template-columns: 1fr; }
  .partner-grid { grid-template-columns: 1fr; }
  .why-grid     { grid-template-columns: 1fr; }
  .foot-grid    { grid-template-columns: 1fr; }
  .cta-btns     { flex-direction: column; align-items: center; }
  .story-stats  { grid-template-columns: 1fr 1fr; }
  .cb-actions   { flex-direction: column; width: 100%; }
  .cb-actions .btn { text-align: center; }
  .cm-actions   { flex-direction: column; }
}

/* ═══════════════════════════════════════
   RIGL BLAU — Highlights & Glow-Effekte
   #3D5A80 · #2C4A6E · #4E7099
   ═══════════════════════════════════════ */

/* Text-Utility */
.text-blue   { color: var(--blue-l); }

/* Tilt-Cards blaue Glow-Variante */
.tilt-card:hover {
  box-shadow: 0 20px 56px rgba(61,90,128,0.22) !important;
}

/* Stat-Trennlinie gold */
.stat-div { background: rgba(160,120,48,0.2); }

/* Stats-Border gold */
#stats {
  border-top-color: rgba(160,120,48,0.15);
  border-bottom-color: rgba(160,120,48,0.15);
}

/* KI-Cards Hover-Glow */
.ki-card:hover {
  border-color: rgba(78,112,153,0.45) !important;
  box-shadow: 0 12px 36px rgba(61,90,128,0.2) !important;
  transform: translateY(-3px);
}

/* Praxisfakt-Bar blaue Linie */
.ki-praxis {
  border-left: 3px solid var(--blue) !important;
  background: linear-gradient(90deg, rgba(61,90,128,0.1), transparent) !important;
}

/* Anzahl-/Kennzahl-Highlights (generisch) */
.highlight-num {
  color: var(--blue-l);
  text-shadow: 0 0 24px rgba(78,112,153,0.35);
}

/* Pulsierender blauer Dot für Live-Elemente */
@keyframes pulse-blue {
  0%, 100% { box-shadow: 0 0 0 0 rgba(78,112,153,0.55); }
  50%       { box-shadow: 0 0 0 8px rgba(78,112,153,0); }
}
.pulse-blue {
  animation: pulse-blue 2.2s ease-in-out infinite;
}

/* Active Nav-Link blau */
.nav-links a.active {
  color: var(--blue-l) !important;
}

/* Iphone-Kalkulator-Akzent */
.iph-slide-3 .kalk-total {
  color: var(--blue-l) !important;
  text-shadow: 0 0 16px rgba(78,112,153,0.4);
}

/* Scroll-Dots auf blau wenn aktiv */
.iph-dot.active {
  background: var(--blue-l) !important;
}

/* ── hero-sub2 ── */
.hero-sub {
  font-size: 1.2rem;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  margin-bottom: 8px;
  line-height: 1.4;
}
.hero-sub2 {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 28px;
  line-height: 1.65;
}

/* ── Leistungs-Quicklink-Bar ── */
.leist-bar {
  display: flex;
  align-items: stretch;
  background: var(--dark2);
  border-top: 1px solid rgba(78,112,153,0.2);
  border-bottom: 1px solid rgba(78,112,153,0.2);
}
.leist-bar-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 28px;
  text-decoration: none;
  color: rgba(255,255,255,0.8);
  transition: background 0.25s, color 0.25s;
  position: relative;
}
.leist-bar-item:hover {
  background: rgba(61,90,128,0.18);
  color: #fff;
}
.leist-bar-item:hover .leist-bar-icon { color: var(--blue-l); }
.leist-bar-item:hover .leist-bar-arrow { color: var(--blue-l); transform: translateX(4px); }
.leist-bar-icon {
  color: var(--gold);
  flex-shrink: 0;
  transition: color 0.25s;
}
.leist-bar-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.leist-bar-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.leist-bar-sub {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.4);
  font-weight: 400;
}
.leist-bar-arrow {
  margin-left: auto;
  font-size: 1.1rem;
  opacity: 0.4;
  transition: color 0.25s, transform 0.25s, opacity 0.25s;
}
.leist-bar-item:hover .leist-bar-arrow { opacity: 1; }
.leist-bar-divider {
  width: 1px;
  background: rgba(255,255,255,0.07);
  margin: 12px 0;
}
@media (max-width: 700px) {
  .leist-bar { flex-direction: column; }
  .leist-bar-divider { width: 100%; height: 1px; margin: 0; }
  .leist-bar-item { padding: 16px 20px; }
}

/* ── Leistung-Cards: warme Akzent-Hintergründe ── */
.leistung-card.featured {
  background: linear-gradient(145deg, #231e16 0%, var(--charcoal) 65%);
  border-color: rgba(160,120,48,0.25);
}
.leistung-card:not(.featured) {
  background: linear-gradient(145deg, #1e1a14 0%, var(--dark2) 70%);
}

/* ── Pakete: Highlighted card vollblau ── */
.pkg-card.hl {
  background: linear-gradient(145deg, #16304e 0%, var(--blue) 100%);
  border-color: rgba(78,112,153,0.6) !important;
  box-shadow: 0 8px 40px rgba(61,90,128,0.3);
}
.pkg-card.hl:hover {
  box-shadow: 0 16px 56px rgba(61,90,128,0.45);
}
.pkg-card.hl .pkg-name { color: #fff; }
.pkg-card.hl .pkg-desc { color: rgba(255,255,255,0.75); }
.pkg-card.hl .pkg-feats li { color: rgba(255,255,255,0.8); border-bottom-color: rgba(255,255,255,0.1); }
.pkg-card.hl .pkg-popular { background: rgba(255,255,255,0.18); color: #fff; border-color: rgba(255,255,255,0.3); }

/* ── Stats-Section: gold Trennlinie ── */
.stat-div {
  background: linear-gradient(180deg, transparent, rgba(160,120,48,0.25), transparent);
}

/* ── Pain-Bullets: gold Akzent-Linie ── */
.pain-bullets li::before {
  background: var(--gold) !important;
}

/* ── USP-Strip: warm dark ── */
#usp-strip {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
}

/* ── FAQ ── */
.faq-item {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item[open] {
  border-color: rgba(78,112,153,0.4);
}
.faq-item summary {
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.97rem;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--blue-l);
  flex-shrink: 0;
  transition: transform 0.25s;
  font-weight: 300;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary strong { color: rgba(255,255,255,0.9); font-weight: 600; }
.faq-item p {
  padding: 0 22px 18px;
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.75;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 14px;
}
