/* =========================================================
   IncomeXperts – Stylesheet
   ========================================================= */

/* ---------------------------------------------------------
   0. Selbst gehostete Schrift – Montserrat (DSGVO-konform)
   --------------------------------------------------------- */
@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-SemiBoldItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* ---------------------------------------------------------
   1. Custom Properties (Design Tokens)
   --------------------------------------------------------- */
:root {
  --bg:    #000A43;
  --bg2:   #0C1655;
  --panel: rgba(255, 255, 255, 0.04);
  --panel2:rgba(255, 255, 255, 0.06);
  --border:rgba(255, 255, 255, 0.10);

  --text:  rgba(255, 255, 255, 0.90);
  --muted: rgba(255, 255, 255, 0.72);
  --muted2:rgba(255, 255, 255, 0.58);

  --gold:  #E4D81F;          /* Basis — Brand-Gold         */
  --gold2: #E9D31A;          /* Hell  — Brand-Gold mittel  */
  --gold3: #B8A010;          /* Tief  — Brand-Gold dunkel  */
  --gold4: #E6F051;          /* Spitze — Brand-Gold hell   */
  --gold5: #F5FF40;          /* Glanz-Peak — Brand-Gold Highlight              */

  /* Glow — intensiv und hochwertig */
  --gold-glow-sm: 0 0 24px rgba(212, 175, 55, 0.85), 0 0 8px rgba(232, 200, 96, 0.60);
  --gold-glow-md: 0 0 50px rgba(192, 154, 32, 0.75), 0 0 16px rgba(212, 175, 55, 0.90), 0 0 4px rgba(242, 208, 96, 0.70);
  --gold-glow-lg: 0 0 90px rgba(192, 154, 32, 0.65), 0 0 40px rgba(212, 175, 55, 0.85), 0 0 12px rgba(242, 208, 96, 0.80);

  --danger: #ff6b6b;
  --ok:     #2ee59d;

  --shadow:  0 18px 50px rgba(0, 0, 0, 0.55);
  --shadow2: 0 10px 30px rgba(0, 0, 0, 0.35);

  --radius:  18px;
  --radius2: 24px;
  --max:     1140px;
  --gap:     22px;

  --font: "Montserrat", ui-sans-serif, system-ui, -apple-system, "Segoe UI",
          Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
          "Liberation Mono", "Courier New", monospace;
}


/* ---------------------------------------------------------
   2. Reset & Base
   --------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 145px;
  background-color: #000A43; /* IncomeXperts Dunkelblau */
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  letter-spacing: 0.2px;
  /* Intelligenter Blocksatz: Silbentrennung verhindert Lücken */
  hyphens: auto;
  -webkit-hyphens: auto;
  hyphenate-limit-chars: 7 4 3; /* Min. 7 Zeichen, 4 vor / 3 nach Trennstrich */
  text-wrap: pretty;             /* Optimiert Zeilenbrüche, verhindert Orphans  */
}

/* Fixierter Gold-Atmosphäre-Layer – unabhängig vom Scroll immer sichtbar */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: none; /* Gold-Atmosphäre deaktiviert */
}


a   { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* Gold-Shimmer Keyframe – wird von mehreren Klassen genutzt */
@keyframes gold-shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

/* ── Pulse-Keyframe für Nav-Button ── */
@keyframes pulse-gold {
  0%   { box-shadow: 0 0 0 0 rgba(212, 175, 55, 1.00), 0 4px 32px rgba(192, 154, 32, 0.90); transform: scale(1); }
  50%  { box-shadow: 0 0 0 26px rgba(212, 175, 55, 0), 0 9px 55px rgba(192, 154, 32, 1.00); transform: scale(1.09); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0), 0 4px 32px rgba(192, 154, 32, 0.90); transform: scale(1); }
}

/* ── Nav CTA Button ── */
.nav-book-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--gold2) 0%, var(--gold4) 40%, var(--gold5) 55%, var(--gold4) 70%, var(--gold2) 100%);
  animation: pulse-gold 2.2s ease-in-out infinite;
  color: #0a0800;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.3px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform 120ms ease, box-shadow 120ms ease;
}


/* ---------------------------------------------------------
   3. Accessibility
   --------------------------------------------------------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: #000;
  color: #fff;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  z-index: 9999;
}
.skip-link:focus { left: 10px; outline: 2px solid var(--gold2); outline-offset: 2px; }

:focus-visible {
  outline: 2px solid var(--gold2);
  outline-offset: 3px;
  border-radius: 10px;
}


/* ---------------------------------------------------------
   4. Layout Helpers
   --------------------------------------------------------- */
.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.section         { padding: 32px 0 84px; position: relative; }
.section.compact { padding: 32px 0 64px; }
.hero.section.compact { padding: 20px 0 56px; }
#warum, #problem { padding-top: 20px; }

/* Subtle section separators */
.section::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  opacity: 0.9;
  pointer-events: none;
}
.section:last-of-type::after { display: none; }



/* ---------------------------------------------------------
   5. Typography
   --------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  /* Shimmer-Gradient statt Flat-Color */
  background: linear-gradient(
    90deg,
    #E4D81F 0%,
    #E9D31A 20%,
    #F5FF40 35%,
    #E6F051 50%,
    #F5FF40 65%,
    #E9D31A 80%,
    #E4D81F 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: none;
}
.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold2), var(--gold4), var(--gold2), transparent);
  box-shadow: var(--gold-glow-sm);
  flex-shrink: 0;
  /* -webkit-text-fill-color greift nicht auf Pseudo → explizit zurücksetzen */
  -webkit-text-fill-color: unset;
  filter: none;
}

.h1 {
  font-size: clamp(28px, 3.8vw, 48px);
  line-height: 1.08;
  margin: 14px 0 12px;
  letter-spacing: -0.5px;
  text-wrap: balance;
}
.h2 {
  font-size: clamp(22px, 2.7vw, 34px);
  line-height: 1.18;
  margin: 10px 0 12px;
  letter-spacing: -0.3px;
  text-wrap: balance;
}
.h3 {
  font-size: 17px;
  margin: 0 0 8px;
  letter-spacing: 0.1px;
  text-wrap: balance;
}

/* ---------------------------------------------------------
   Typographie: Intelligenter Blocksatz für alle Fließtexte
   hyphens: auto greift dank lang="de" auf dem html-Element.
   text-align-last: left verhindert gesperrte Einzelzeilen.
   --------------------------------------------------------- */
.lead,
.section p,
.service p,
.about-text p,
.q span,
.step p,
.tuv,
.checklist li {
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
  -webkit-hyphens: auto;
  overflow-wrap: break-word;
}

/* Überschriften: balance statt justify – kürzere Texte, kein Blocksatz */
h1, h2, h3, h4, h5,
.h1, .h2, .h3, .eyebrow {
  text-wrap: balance;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.lead   { font-size: clamp(16px, 1.45vw, 18px); color: var(--muted); max-width: 70ch; margin: 0; }
.muted  { color: var(--muted); }
.muted2 { color: var(--muted2); }
/* Zentraler Shimmer-Mixin – gilt für alle goldenen Textstellen */
.gold,
.checklist li strong,
.q strong,
.service h3,
.step h4,
.gold-shine {
  background: linear-gradient(
    90deg,
    #E4D81F 0%,
    #E9D31A 20%,
    #F5FF40 35%,
    #E6F051 50%,
    #F5FF40 65%,
    #E9D31A 80%,
    #E4D81F 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: none;
  color: transparent; /* Fallback */
}

/* Volles Gold für alle Kontexte – 100% Deckkraft mit Shimmer */
p .gold,
.lead .gold,
.muted .gold,
.muted2 .gold,
li .gold,
.tuv .gold,
.checklist li strong,
.q strong,
.service h3,
.step h4,
.stat .gold {
  font-weight: 700;
  background: linear-gradient(
    90deg,
    #E4D81F 0%,
    #E9D31A 20%,
    #F5FF40 35%,
    #E6F051 50%,
    #F5FF40 65%,
    #E9D31A 80%,
    #E4D81F 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: none;
  color: transparent;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold3), var(--gold2), var(--gold5), var(--gold2), var(--gold3), transparent);
  margin: 18px 0;
  opacity: 0.6;
}


/* ---------------------------------------------------------
   6. Cards & Grid
   --------------------------------------------------------- */
.card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius2);
  box-shadow: var(--shadow2);
}
.card.pad { padding: 22px; }

.grid { display: grid; gap: var(--gap); }


/* ---------------------------------------------------------
   7. Header / Navigation
   --------------------------------------------------------- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0, 10, 67, 0.75);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand img {
  width: auto;
  height: 112px;
  border-radius: 8px;
  border: none;
  box-shadow: none;
  background: transparent;
  flex-shrink: 0;
}
.brand .name        { display: flex; flex-direction: column; line-height: 1.08; gap: 2px; }
.brand .name strong { font-size: 30px; letter-spacing: 0.2px; color: var(--text); }
.brand .name span   { font-size: 20px; color: var(--muted2); }

footer .brand .name strong { font-size: 14px; }
footer .brand .name span   { font-size: 12px; }

/* Desktop nav */
nav ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
nav a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.78);
  padding: 10px;
  border-radius: 12px;
  transition: background 160ms ease, color 160ms ease;
}
nav a:not(.nav-book-btn):hover { background: rgba(192, 154, 32, 0.08); color: var(--gold2); text-shadow: none; }
nav a.active {
  color: var(--gold2);
  background: rgba(192, 154, 32, 0.10);
  text-shadow: none;
  font-weight: 600;
}


.nav-row-top {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
}

.nav-contact-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.02em;
  white-space: nowrap;
  margin-right: 4px;
}

.nav-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 37px; height: 37px;
  border-radius: 50px;
  border: 1px solid rgba(220, 195, 120, 0.28);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(220, 195, 120, 0.72);
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
  flex-shrink: 0;
}
.nav-social-link svg { width: 22px; height: 22px; }
.nav-social-link:hover {
  color: var(--gold2);
  background: rgba(192, 154, 32, 0.12);
  border-color: rgba(192, 154, 32, 0.40);
}

/* Mobile nav (CSS-only <details>) */
.nav-desktop { display: flex; flex-direction: column; align-items: flex-end; gap: 32px; }
.nav-mobile  { display: none; }

details.nav-mobile { position: relative; }
details.nav-mobile summary {
  list-style: none;
  cursor: pointer;
  user-select: none;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
}
details.nav-mobile summary::-webkit-details-marker { display: none; }
details.nav-mobile[open] summary {
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.10);
}

.mobile-panel {
  position: absolute;
  right: 0;
  top: 48px;
  width: min(320px, calc(100vw - 40px));
  padding: 10px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}
.mobile-panel a { display: block; padding: 12px; border-radius: 12px; }
.mobile-panel a:hover { background: rgba(255, 255, 255, 0.06); }


/* ---------------------------------------------------------
   8. Buttons
   --------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(230, 240, 81, 0.70);
  background: linear-gradient(
    135deg,
    #E4D81F 0%,
    #E9D31A 30%,
    #F5FF40 50%,
    #E9D31A 70%,
    #E4D81F 100%
  );
  color: #000A43;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2px;
  transition: transform 160ms ease, box-shadow 160ms ease;
  box-shadow: 0 0 28px rgba(233, 211, 26, 0.50), inset 0 1px 0 rgba(245, 255, 64, 0.40);
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 255, 64, 0.90);
  box-shadow: 0 0 40px rgba(233, 211, 26, 0.70), inset 0 1px 0 rgba(245, 255, 64, 0.50);
}
.btn:active { transform: translateY(0); }
/* ── Abdunkelung im Ruhezustand – nur für spezifische Buttons ── */
.btn-darken {
  filter: brightness(0.65);
  box-shadow: none;
}
.btn-darken:hover {
  filter: brightness(1.0);
  box-shadow: none;
  transform: translateY(-2px);
}
.btn-darken:active {
  filter: brightness(0.85);
  transform: translateY(0);
}


.btn.secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.86);
  box-shadow: none;
}
.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}


/* ---------------------------------------------------------
   9. Hero
   --------------------------------------------------------- */
.hero {
  padding: 24px 0 56px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -133px -133px auto -133px;
  height: 464px;
  background: none;
  pointer-events: none;
  opacity: 1;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -88px -177px -88px;
  height: 398px;
  background: none;
  pointer-events: none;
  opacity: 1;
}

.hero-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
}

.hero-card {
  padding: 26px;
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.hero-card .shine {
  position: absolute;
  top: -120px; left: -120px;
  width: 260px; height: 260px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.14), transparent 65%);
  transform: rotate(18deg);
  pointer-events: none;
}


.hero-bullets {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  max-width: 72ch;
}
.hero-bullets li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
}

.lead-question { margin-bottom: 4px; }
.lead-question p {
  margin: 0;
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.90);
  line-height: 1.35;
}

.dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  margin-top: 7px;
  background: radial-gradient(circle at 30% 25%, rgba(220, 195, 120, 0.72), rgba(192, 154, 32, 0.55) 50%, rgba(180, 145, 25, 0.50));
  box-shadow: 0 0 0 3px rgba(192, 154, 32, 0.20), 0 0 14px rgba(192, 154, 32, 0.45);
  flex: 0 0 auto;
}

.stat-card {
  padding: 18px;
  border-radius: var(--radius2);
  border: 1px solid rgba(212, 175, 55, 0.40);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}
.stat         { display: grid; gap: 10px; }
.stat .big    { font-size: 32px; line-height: 1; font-weight: 900; letter-spacing: -0.5px; color: rgba(255, 255, 255, 0.95); }
.stat .big span { color: var(--gold2); }
.stat .small  { color: var(--muted); font-size: 13px; max-width: 34ch; }

.pill-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.80);
  font-size: 12px;
  white-space: nowrap;
}
.pill i {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, rgba(220, 195, 120, 0.72), rgba(192, 154, 32, 0.55) 60%, rgba(180, 145, 25, 0.50));
  box-shadow: 0 0 0 3px rgba(192, 154, 32, 0.20), 0 0 14px rgba(192, 154, 32, 0.45);
  display: inline-block;
}

.stat-card .btn {
  border-color: rgba(230, 240, 81, 0.70);
  background: linear-gradient(
    135deg,
    #E4D81F 0%,
    #E9D31A 30%,
    #F5FF40 50%,
    #E9D31A 70%,
    #E4D81F 100%
  );
  box-shadow: 0 0 28px rgba(233, 211, 26, 0.50), inset 0 1px 0 rgba(245, 255, 64, 0.40);
  animation: none;
  color: #000A43;
}
.stat-card .btn:hover {
  border-color: rgba(245, 255, 64, 0.90);
  box-shadow: 0 0 45px rgba(233, 211, 26, 0.70), inset 0 1px 0 rgba(245, 255, 64, 0.50);
}

/* Kurzprofil-Heading im blassen Gold */
.about-text .h2 {
  color: rgba(220, 195, 120, 0.72);
}

/* Stat highlight number */
.stat .big span {
  background: linear-gradient(90deg, #B8A010, #E6F051, #F5FF40, #E6F051, #B8A010);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: none;
}


/* ---------------------------------------------------------
   10. Problem / Q-List
   --------------------------------------------------------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: stretch;
}
.two-col > .card { display: flex; flex-direction: column; }

.q-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 6px; }
.q {
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(192, 154, 32, 0.14);
  border-left: 3px solid rgba(192, 154, 32, 0.60);
  background: rgba(255, 255, 255, 0.03);
}
.q strong { display: block; margin-bottom: 2px; font-size: 13.5px; /* shimmer via .gold rule above */ }
.q span   { color: var(--muted); font-size: 13px; line-height: 1.5; }


/* ---------------------------------------------------------
   11. Why / Checklist
   --------------------------------------------------------- */
.why-grid {
  display: grid;
  gap: var(--gap);
  grid-template-columns: 1.2fr 0.8fr;
  align-items: stretch;
}
.why-grid > .card { display: flex; flex-direction: column; }

.checklist { margin: 0; padding: 0; list-style: none; display: grid; gap: 7px; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(192, 154, 32, 0.14);
  background: rgba(255, 255, 255, 0.03);
}
.checklist li strong { /* shimmer via .gold rule above */ }

.check {
  width: 18px; height: 18px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.10) 100%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.20);
  flex: 0 0 auto;
  margin-top: 2px;
  position: relative;
}
.check::after {
  content: "";
  position: absolute;
  left: 5px; top: 3px;
  width: 6px; height: 9px;
  border-right: 2px solid rgba(255, 255, 255, 0.90);
  border-bottom: 2px solid rgba(255, 255, 255, 0.90);
  transform: rotate(42deg);
}


/* ---------------------------------------------------------
   12. Services
   --------------------------------------------------------- */
.service-grid {
  display: grid;
  gap: var(--gap);
  grid-template-columns: repeat(3, 1fr);
}

.service {
  padding: 22px;
  border-radius: var(--radius2);
  border: 1px solid rgba(192, 154, 32, 0.18);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow2);
  position: relative;
  overflow: hidden;
}
.service::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 190px; height: 190px;
  background: radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.18), transparent 65%);
  pointer-events: none;
  opacity: 0.9;
}

.icon {
  width: 44px; height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(212, 175, 55, 0.40);
  background: linear-gradient(180deg, rgba(255, 215, 0, 0.18), rgba(212, 175, 55, 0.06));
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 900;
  letter-spacing: 0.2px;
  margin-bottom: 12px;
}
.service p { color: var(--muted); margin: 0 0 14px; }

.link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold2);
  font-weight: 700;
  font-size: 13px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.40);
  background: rgba(255, 255, 255, 0.04);
  text-shadow: none;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}
.link:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
  box-shadow: var(--gold-glow-sm);
}

.arrow {
  display: inline-block;
  width: 10px; height: 10px;
  border-right: 2px solid rgba(255, 255, 255, 0.85);
  border-bottom: 2px solid rgba(255, 255, 255, 0.85);
  transform: rotate(-45deg);
  margin-left: 2px;
}


/* ---------------------------------------------------------
   13. Process / Steps
   --------------------------------------------------------- */
.steps {
  display: grid;
  gap: var(--gap);
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
}

.step {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03); /* was: linear-gradient gold 0.07 0%, rgba(255, 255, 255, 0.02) 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow-wrap: break-word;
}
.step .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.10) 100%);
  font-weight: 900;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 12px rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.step h4 { margin: 0 0 8px; font-size: 14px; letter-spacing: 0.2px; /* shimmer via .gold rule */ }
.step p  { margin: 0; color: var(--muted); font-size: 13px; flex: 1; hyphenate-limit-chars: 6 3 2; }

.tuv {
  margin-top: 18px;
  padding: 18px;
  border-radius: var(--radius2);
  border: 1px solid rgba(212, 175, 55, 0.26);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
}


/* ---------------------------------------------------------
   14. About
   --------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  grid-template-areas: "text portrait";
  gap: var(--gap);
  align-items: stretch;   /* beide Zellen gleich hoch */
}

/* Textbox → linke Spalte */
.about-text {
  grid-area: text;
  padding: 22px;
}
.about-text p       { color: var(--muted); margin: 0 0 12px; }
.about-text p:last-child { margin-bottom: 0; }

/* Portrait → rechte Spalte */
.portrait {
  grid-area: portrait;
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  box-shadow: var(--shadow2);
  align-self: start;      /* natürliche Höhe, kein Zoom */
}
.portrait img {
  width: 100%;
  height: auto;           /* natürliche Proportion */
  display: block;
  object-fit: cover;
  object-position: center top;
}


/* ---------------------------------------------------------
   15. Testimonials (CSS ready — content to be added)
   --------------------------------------------------------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.quote {
  padding: 22px;
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow2);
  position: relative;
  overflow: hidden;
}
.quote::before {
  content: "\201C";
  position: absolute;
  top: -14px; left: 14px;
  font-size: 72px;
  color: rgba(212, 175, 55, 0.22);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}
.quote p            { margin: 0 0 14px; color: var(--muted); }
.quote .who         { display: flex; flex-direction: column; gap: 2px; }
.quote .who strong  { font-size: 13px; letter-spacing: 0.2px; }
.quote .who span    { font-size: 12px; color: var(--muted2); }


/* ---------------------------------------------------------
   16. Contact / Form
   --------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--gap);
  align-items: start;
}



/* ---------------------------------------------------------
   17. Footer
   --------------------------------------------------------- */
footer {
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  background: rgba(0, 10, 67, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 28px 0;
}

.footer-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
}

footer .brand img { height: 40px; }

.footer-links { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}
.footer-links a:hover {
  border-color: rgba(212, 175, 55, 0.35);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.90);
}
.copyright { margin: 10px 0 0; color: rgba(255, 255, 255, 0.55); font-size: 12px; }


/* ---------------------------------------------------------
   18. Responsive Breakpoints
   --------------------------------------------------------- */
@media (max-width: 980px) {
  .hero-grid    { grid-template-columns: 1fr; }
  .why-grid     { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .steps        { grid-template-columns: 1fr; }
  .two-col      { grid-template-columns: 1fr; }
  .about-grid   {
    grid-template-columns: 1fr;
    grid-template-areas:
      "text"
      "portrait";   /* Text zuerst, Foto darunter auf Mobile */
  }
  .testi-grid   { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}

/* Tablet (980px – 961px) */
@media (max-width: 980px) and (min-width: 961px) {
  .brand img              { height: 80px; }
  .brand .name strong     { font-size: 22px; }
  .brand .name span       { font-size: 15px; }
  html                    { scroll-padding-top: 116px; } /* 80px Logo + 2×14px Padding + 8px Puffer */
}

/* Mobile (≤ 960px – deckt alle Phones inkl. Querformat ab) */
@media (max-width: 960px) {
  html                    { scroll-padding-top: 92px; } /* 60px Logo + 2×14px Padding + 4px Puffer */
  .nav-desktop            { display: none; }
  /* Header wird Flex-Container damit Hamburger und Action-Bar per order sortierbar sind */
  header                  { display: flex; flex-wrap: wrap; align-items: center; }
  .nav-wrap               { flex: 1; order: 1; }          /* Zeile 1 links: Logo         */
  .nav-mobile             { display: block; order: 2; align-self: center; } /* Zeile 1 rechts: Hamburger  */
  .mobile-action-bar      { order: 3; flex-basis: 100%; } /* Zeile 2: Icons + Button     */
  body::before            { opacity: 0.58; }
  .brand                  { min-width: unset; }
  .brand img              { height: 60px; }
  .brand .name strong     { font-size: 18px; }
  .brand .name span       { font-size: 13px; }
  .section                { padding: 20px 0 56px; }
  #warum, #problem        { padding-top: 16px; }
  .hero.section.compact   { padding: 16px 0 36px; } /* höhere Spezifität nötig */
  nav a                   { padding: 10px 8px; }

}

/* Mobile Aktionszeile – 2. Zeile im Header, nur auf Mobile */
.mobile-action-bar { display: none; }

@media (max-width: 960px) {
  .mobile-action-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .mobile-cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(220, 195, 120, 0.28);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(220, 195, 120, 0.72);
    flex-shrink: 0;
  }

  .mobile-cta-icon svg {
    width: 18px;
    height: 18px;
  }

  .mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--gold2) 0%, var(--gold4) 40%, var(--gold5) 55%, var(--gold4) 70%, var(--gold2) 100%);
    background-size: 200% auto;
    color: #0a0800;
    font-weight: 700;
    font-size: 12.5px;
    white-space: nowrap;
    margin-left: 22px;
    animation: pulse-gold 2.2s ease-in-out infinite;
  }

  /* scroll-padding: Header = Logo (60px) + Padding (28px) + Action-Bar (60px) = 148px + Puffer */
  html { scroll-padding-top: 152px; }
}

/* Mobile Querformat: einzeilig – Logo | Icons+Button | Hamburger */
@media (max-width: 960px) and (orientation: landscape) {
  header {
    flex-wrap: nowrap;   /* eine Zeile */
  }

  /* Reihenfolge: Logo (1) · Icons+Button (2) · Hamburger (3) */
  .nav-wrap          { order: 1; flex: 1; }
  .mobile-action-bar { order: 2; flex-basis: auto; flex-shrink: 0;
                       border-top: none; padding: 0 8px 0 4px; gap: 12px; justify-content: flex-end; }
  .nav-mobile        { order: 3; padding-left: 22px; }

  .mobile-cta-btn {
    margin-left: 18px;
    font-size: 11.5px;
    padding: 6px 12px;
  }

  /* Header ist jetzt einzeilig: Logo (60px) + Padding (28px) + Puffer */
  html { scroll-padding-top: 96px; }
}
