/* ============================================
   LexKI – gemeinsames Stylesheet
   Wird von beiden Landingpages genutzt.
   ============================================ */

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

:root {
  --ink:    #0a0e1a;
  --ink2:   #2d3348;
  --ink3:   #6b7080;
  --bg:     #f5f6fa;
  --white:  #ffffff;
  --accent: #2d4fd6;
  --accent-dark: #1a33b0;
  --accent2:#e8ff00;
  --border: rgba(10,14,26,0.10);
  --border2:rgba(10,14,26,0.07);
  --radius: 14px;
  --navy-grad: linear-gradient(160deg, #0a0e1a 0%, #111835 60%, #0f1d4a 100%);
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Variable Display", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.wrap { max-width: 1140px; margin: 0 auto; }

/* ---------- NAV ---------- */
nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: rgba(247,246,242,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border2);
  height: 68px;
}
.nav-inner {
  max-width: 1140px; margin: 0 auto; height: 100%;
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-weight: 800; font-size: 19px; letter-spacing: -0.5px;
  text-decoration: none; color: var(--ink);
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a.txt {
  font-size: 14px; font-weight: 500; color: var(--ink2);
  text-decoration: none; transition: color .15s;
}
.nav-links a.txt:hover { color: var(--accent); }
.nav-cta {
  background: var(--ink); color: var(--white);
  padding: 10px 20px; border-radius: 8px;
  font-size: 14px; font-weight: 600; text-decoration: none;
  transition: background .18s;
}
.nav-cta:hover { background: var(--accent); }
@media(max-width:760px){ .nav-links a.txt { display: none; } }

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-block;
  background: var(--accent); color: var(--white);
  padding: 15px 30px; border-radius: 8px;
  font-size: 16px; font-weight: 600; text-decoration: none;
  transition: background .18s, transform .12s;
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }

.btn-ghost {
  display: inline-block;
  padding: 15px 26px; border-radius: 8px;
  border: 1px solid var(--border);
  font-size: 16px; font-weight: 500; text-decoration: none;
  color: var(--ink); background: var(--white);
  transition: border-color .18s, color .18s;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- SECTIONS ---------- */
section { padding: 88px 24px; }
.section-label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 14px;
}
.section-title {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Variable Display", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.15; letter-spacing: -0.8px;
  margin-bottom: 18px;
}
.section-sub { font-size: 17px; color: var(--ink2); max-width: 620px; }

/* ---------- HERO ---------- */
.hero { padding-top: 148px; padding-bottom: 72px; }
.hero-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 56px; align-items: center;
}
@media(max-width:900px){ .hero-grid { grid-template-columns: 1fr; gap: 40px; } }

.hero-eyebrow {
  display: inline-block;
  background: var(--accent2); color: var(--ink);
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 13px; border-radius: 6px;
  margin-bottom: 26px;
}
.hero h1 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Variable Display", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.08; letter-spacing: -1.5px;
  margin-bottom: 22px;
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero-sub { font-size: 18px; color: var(--ink2); margin-bottom: 34px; max-width: 540px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-note { font-size: 14px; color: var(--ink3); }

.hero-img-frame {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border2);
  background: #e9e7e1;
  aspect-ratio: 4 / 3;
}
.hero-img-frame img { width: 100%; height: 100%; object-fit: cover; }

/* Bildplatzhalter */
.img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; padding: 24px; text-align: center;
  background: repeating-linear-gradient(45deg, #ecebe6, #ecebe6 12px, #e6e5df 12px, #e6e5df 24px);
  color: var(--ink3);
}
.img-placeholder .ph-title { font-size: 13px; font-weight: 700; color: var(--ink2); }
.img-placeholder .ph-hint { font-size: 12px; line-height: 1.5; max-width: 300px; }

/* ---------- FAKTEN-LEISTE ---------- */
.facts {
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
  padding: 28px 24px;
  background: var(--white);
}
.facts-inner {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr));
  gap: 28px;
}
.fact-item { display: flex; flex-direction: column; gap: 3px; }
.fact-num { font-size: 24px; font-weight: 700; letter-spacing: -0.5px; }
.fact-label { font-size: 13px; color: var(--ink3); }

/* ---------- PROBLEM (dunkel) ---------- */
.dark { background: var(--ink); color: var(--white); }
.dark .section-title { color: var(--white); }
.dark .section-sub { color: rgba(255,255,255,0.62); }
.card-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(270px,1fr));
  gap: 20px; margin-top: 48px;
}
.dark-card {
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius);
  padding: 30px 26px;
}
.dark-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 10px; }
.dark-card p { font-size: 14.5px; color: rgba(255,255,255,0.6); }
.icon-line {
  width: 38px; height: 38px; margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 9px;
  background: rgba(232,255,0,0.12);
  color: var(--accent2);
}
.icon-line svg { width: 20px; height: 20px; }

/* ---------- ABLAUF / SCHRITTE ---------- */
.steps { display: flex; flex-direction: column; margin-top: 44px; }
.step {
  display: grid; grid-template-columns: 56px 1fr auto;
  gap: 20px; align-items: baseline;
  padding: 24px 4px;
  border-top: 1px solid var(--border2);
}
.step:last-child { border-bottom: 1px solid var(--border2); }
.step-num { font-size: 13px; font-weight: 700; color: var(--accent); letter-spacing: 0.04em; }
.step h4 { font-size: 17px; font-weight: 600; margin-bottom: 5px; }
.step p { font-size: 14.5px; color: var(--ink3); max-width: 620px; }
.step-time { font-size: 13px; color: var(--ink3); white-space: nowrap; font-variant-numeric: tabular-nums; }
.step.pause .step-num { color: var(--ink3); }
@media(max-width:640px){
  .step { grid-template-columns: 44px 1fr; }
  .step-time { grid-column: 2; margin-top: 4px; }
}

/* ---------- LEISTUNGS-KARTEN (hell) ---------- */
.light { background: var(--white); }
.light-card {
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 30px 26px;
  background: var(--white);
  transition: border-color .18s;
}
.light-card:hover { border-color: var(--border); }
.light-card .icon-line {
  background: rgba(26,26,255,0.07);
  color: var(--accent);
}
.light-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 9px; }
.light-card p { font-size: 14.5px; color: var(--ink3); }

/* ---------- PREIS ---------- */
.price-box {
  margin-top: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  padding: 34px 32px;
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 28px; flex-wrap: wrap;
  max-width: 760px;
}
.price-box .pb-label { font-size: 13px; font-weight: 600; color: var(--ink3); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 8px; }
.price-box .pb-val { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Variable Display", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; font-size: 42px; line-height: 1; }
.price-box ul { list-style: none; font-size: 14.5px; color: var(--ink2); }
.price-box li { padding-left: 22px; position: relative; margin-bottom: 7px; }
.price-box li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 10px; height: 5px;
  border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}
.price-note { font-size: 13px; color: var(--ink3); margin-top: 16px; }

/* ---------- ÜBER MICH ---------- */
.about-grid {
  display: grid; grid-template-columns: 240px 1fr;
  gap: 44px; align-items: start; margin-top: 40px;
}
@media(max-width:760px){ .about-grid { grid-template-columns: 1fr; gap: 28px; } }
.about-photo {
  width: 240px; max-width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border2);
}
.about-photo img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.about-name { font-size: 20px; font-weight: 700; margin-bottom: 2px; }
.about-role { font-size: 14px; color: var(--accent); font-weight: 600; margin-bottom: 20px; }
.about-text p { font-size: 16px; color: var(--ink2); margin-bottom: 15px; max-width: 620px; }
.about-meta {
  margin-top: 24px; padding-top: 22px;
  border-top: 1px solid var(--border2);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); gap: 18px;
}
.about-meta div { font-size: 14px; }
.about-meta .am-label { font-size: 12px; color: var(--ink3); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 3px; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin-top: 40px; }
.faq details {
  border-bottom: 1px solid var(--border2);
  padding: 20px 0;
}
.faq summary {
  font-size: 17px; font-weight: 600; cursor: pointer;
  list-style: none; display: flex; justify-content: space-between; gap: 20px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; font-size: 22px; font-weight: 400; color: var(--accent);
  line-height: 1; flex-shrink: 0;
}
.faq details[open] summary::after { content: '–'; }
.faq details p { font-size: 15.5px; color: var(--ink2); margin-top: 12px; max-width: 700px; }

/* ---------- KONTAKT / FORMULAR ---------- */
.contact { background: var(--ink); color: var(--white); }
.contact .section-title { color: var(--white); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; margin-top: 40px; align-items: start;
}
@media(max-width:860px){ .contact-grid { grid-template-columns: 1fr; gap: 36px; } }
.contact-intro p { font-size: 16px; color: rgba(255,255,255,0.65); margin-bottom: 18px; max-width: 460px; }
.contact-direct { margin-top: 28px; }
.contact-direct .cd-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.07em; color: rgba(255,255,255,0.45); margin-bottom: 5px; }
.contact-direct a { color: var(--accent2); text-decoration: none; font-size: 17px; font-weight: 600; }
.contact-direct a:hover { text-decoration: underline; }

.form-card {
  background: var(--white); color: var(--ink);
  border-radius: var(--radius); padding: 32px 30px;
}
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--border); border-radius: 8px;
  font-family: inherit; font-size: 15px; color: var(--ink);
  background: var(--bg);
  transition: border-color .15s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--accent); background: var(--white);
}
.field textarea { min-height: 96px; resize: vertical; }
.form-card button {
  width: 100%; padding: 15px;
  background: var(--accent); color: var(--white);
  border: none; border-radius: 8px;
  font-family: inherit; font-size: 16px; font-weight: 600;
  cursor: pointer; transition: background .18s;
}
.form-card button:hover { background: var(--accent-dark); }
.consent { display: flex; gap: 10px; align-items: flex-start; margin: 18px 0; }
.consent input { width: auto; margin-top: 3px; flex-shrink: 0; }
.consent label { font-size: 12.5px; font-weight: 400; color: var(--ink3); line-height: 1.5; }
.consent a { color: var(--accent); }

/* ---------- FOOTER ---------- */
footer {
  border-top: 1px solid var(--border2);
  padding: 36px 24px;
  background: var(--bg);
}
.footer-inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 24px;
}
.footer-brand { font-weight: 800; font-size: 17px; margin-bottom: 6px; }
.footer-brand span { color: var(--accent); }
footer p, footer a { font-size: 13.5px; color: var(--ink3); text-decoration: none; }
footer a:hover { color: var(--accent); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }

/* ============================================
   BLAU-WELT — Überschreibungen
   ============================================ */

/* NAV dunkel */
nav {
  background: rgba(10,14,26,0.96);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-logo img { height: 40px; width: auto; display: block; object-fit: contain; }
.nav-links a.txt { color: rgba(255,255,255,0.72); }
.nav-links a.txt:hover { color: var(--accent2); }
.nav-cta { background: var(--accent); }
.nav-cta:hover { background: var(--accent-dark); }

/* HERO auf Navy-Verlauf */
.hero {
  background: var(--navy-grad);
  color: var(--white);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -10%; right: -5%;
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(45,79,214,0.32) 0%, rgba(45,79,214,0) 68%);
  pointer-events: none;
}
.hero > * { position: relative; z-index: 1; }
.hero h1 { color: var(--white); }
.hero h1 em { color: #6f8dff; }
.hero-sub { color: rgba(255,255,255,0.72); }
.hero-note { color: rgba(255,255,255,0.45); }
.hero-logo { margin-bottom: 30px; }
.hero-logo img { height: 62px; width: auto; display: block; }
.hero .btn-ghost {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.22);
  color: var(--white);
}
.hero .btn-ghost:hover { border-color: var(--accent2); color: var(--accent2); }
.hero-img-frame {
  border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
}
.hero .img-placeholder {
  background: repeating-linear-gradient(45deg, rgba(255,255,255,0.05), rgba(255,255,255,0.05) 12px, rgba(255,255,255,0.02) 12px, rgba(255,255,255,0.02) 24px);
  color: rgba(255,255,255,0.5);
}
.hero .img-placeholder .ph-title { color: rgba(255,255,255,0.85); }

/* FAKTEN-Leiste */
.facts { background: var(--white); border-color: var(--border2); }
.fact-num { color: var(--accent); }

/* Dunkle Sektionen auf Navy-Verlauf */
.dark { background: var(--navy-grad); }
.dark-card { border-color: rgba(255,255,255,0.10); }
.icon-line { background: rgba(45,79,214,0.22); color: #7d99ff; }

/* Kontakt dunkel */
.contact { background: var(--navy-grad); }

/* FOOTER */
footer { background: var(--white); }
footer img.footer-logo { height: 34px; width: auto; display: block; margin-bottom: 8px; }

/* Section-Label auf hellem Grund */
.section-label { color: var(--accent); }

/* Preis-Box leichter Blaustich */
.price-box { background: var(--white); border-color: var(--border); }
.price-box li::before { border-color: var(--accent); }

/* FAQ Summary-Plus in Blau */
.faq summary::after { color: var(--accent); }

/* ============================================
   ÜBERARBEITUNG — Typografie & Flächen
   ============================================ */

body {
  font-feature-settings: 'kern' 1, 'liga' 1, 'calt' 1;
  letter-spacing: -0.011em;
}

/* --- Typografie: mehr Kontrast, weniger Word-Optik --- */
.hero h1 {
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 1.02;
  letter-spacing: -2.2px;
  font-weight: 400;
}
.section-title {
  font-size: clamp(32px, 3.9vw, 50px);
  line-height: 1.08;
  letter-spacing: -1.4px;
}
.hero-sub {
  font-size: clamp(17px, 1.35vw, 19.5px);
  line-height: 1.72;
  letter-spacing: -0.005em;
}
.section-sub { font-size: 17.5px; line-height: 1.72; }
.section-label {
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.14em;
  display: inline-flex; align-items: center; gap: 9px;
}
.section-label::before {
  content: ''; width: 22px; height: 1px;
  background: currentColor; opacity: 0.55;
}
.dark .section-label, .contact .section-label { color: #7d99ff; }

h3, h4 { letter-spacing: -0.3px; }
.dark-card p, .light-card p, .step p { line-height: 1.72; }

/* --- Sektionsrhythmus: mehr Luft, weiche Übergänge --- */
section { padding: 104px 24px; }
@media(max-width:760px){ section { padding: 72px 20px; } }

.dark, .contact { position: relative; overflow: hidden; }
.dark::after, .contact::after {
  content: ''; position: absolute; pointer-events: none;
  width: 720px; height: 720px; border-radius: 50%;
  background: radial-gradient(circle, rgba(45,79,214,0.20) 0%, rgba(45,79,214,0) 70%);
  top: -240px; left: -180px;
}
.dark > *, .contact > * { position: relative; z-index: 1; }

/* --- Karten: weicher, weniger Kastenoptik --- */
.dark-card {
  background: linear-gradient(165deg, rgba(255,255,255,0.055) 0%, rgba(255,255,255,0.018) 100%);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  padding: 32px 28px;
  transition: border-color .25s, transform .25s;
}
.dark-card:hover { border-color: rgba(125,153,255,0.42); transform: translateY(-3px); }

.light-card {
  border-radius: 16px;
  padding: 32px 28px;
  background: linear-gradient(170deg, #ffffff 0%, #fafbfd 100%);
  border: 1px solid var(--border2);
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.light-card:hover {
  border-color: rgba(45,79,214,0.28);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(10,14,26,0.07);
}

.icon-line {
  width: 42px; height: 42px; border-radius: 12px;
  margin-bottom: 20px;
}
.icon-line svg { width: 21px; height: 21px; }
.light-card .icon-line {
  background: linear-gradient(140deg, rgba(45,79,214,0.13), rgba(45,79,214,0.05));
  color: var(--accent);
}

/* --- Fakten-Leiste eleganter --- */
.facts { padding: 34px 24px; }
.facts-inner { gap: 32px; }
.fact-num {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Variable Display", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 30px; font-weight: 400; letter-spacing: -0.5px;
}
.fact-label { font-size: 13.5px; }

/* --- Schritte: fließender, Verbindungslinie --- */
.steps { margin-top: 52px; }
.step {
  padding: 26px 4px;
  border-top: 1px solid var(--border2);
  transition: background .25s;
  border-radius: 10px;
}
.step:hover { background: rgba(45,79,214,0.028); }
.step-num {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Variable Display", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px; font-weight: 400; color: var(--accent);
  letter-spacing: 0;
}
.step h4 { font-size: 18px; }
.step-time {
  font-size: 12.5px; color: var(--ink3);
  background: rgba(10,14,26,0.045);
  padding: 4px 11px; border-radius: 100px;
}

/* --- Bildflächen: gestaltet statt schraffiert --- */
.img-placeholder,
.hero .img-placeholder {
  background: linear-gradient(150deg, rgba(45,79,214,0.16) 0%, rgba(10,14,26,0.5) 100%);
  border: none;
  gap: 14px;
  color: rgba(255,255,255,0.62);
  position: relative;
}
.img-placeholder::before {
  content: '';
  width: 46px; height: 46px; border-radius: 13px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.16);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-opacity='0.65' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'/%3E%3Cpath d='m21 15-5-5L5 21'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 22px;
}
.img-placeholder .ph-title {
  font-size: 13px; font-weight: 600; letter-spacing: 0.02em;
  color: rgba(255,255,255,0.9);
}
.img-placeholder .ph-hint {
  font-size: 12px; line-height: 1.6; max-width: 280px;
  color: rgba(255,255,255,0.5);
}
.img-placeholder code {
  background: rgba(255,255,255,0.1); padding: 1px 5px;
  border-radius: 4px; font-size: 11px;
}
.hero-img-frame {
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.13);
}

/* --- Buttons: weicher --- */
.btn-primary {
  border-radius: 10px; padding: 15px 30px;
  box-shadow: 0 6px 22px rgba(45,79,214,0.32);
  letter-spacing: -0.01em;
}
.btn-primary:hover { box-shadow: 0 10px 30px rgba(45,79,214,0.42); }
.btn-ghost { border-radius: 10px; letter-spacing: -0.01em; }

/* --- Eyebrow-Pill --- */
.hero-eyebrow {
  border-radius: 100px; padding: 7px 15px;
  font-size: 11.5px; letter-spacing: 0.07em;
}

/* --- Preis-Box --- */
.price-box {
  border-radius: 18px; padding: 38px 34px;
  background: linear-gradient(165deg, #ffffff 0%, #f8f9fc 100%);
  box-shadow: 0 4px 26px rgba(10,14,26,0.05);
}
.price-box .pb-val { font-size: 46px; letter-spacing: -1.5px; }

/* --- Über mich --- */
.about-photo { border-radius: 18px; box-shadow: 0 10px 34px rgba(10,14,26,0.10); }
.about-name { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Variable Display", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; font-size: 24px; font-weight: 400; letter-spacing: -0.5px; }
.about-text p { font-size: 16.5px; line-height: 1.74; }

/* --- FAQ --- */
.faq details { padding: 22px 0; transition: none; }
.faq summary { font-size: 17.5px; letter-spacing: -0.25px; }
.faq details p { font-size: 16px; line-height: 1.74; }

/* --- Formular --- */
.form-card { border-radius: 18px; padding: 34px 32px; box-shadow: 0 16px 44px rgba(0,0,0,0.22); }
.field input, .field textarea, .field select { border-radius: 9px; background: #f7f8fb; }
.form-card button { border-radius: 10px; letter-spacing: -0.01em; }

/* --- Footer --- */
footer { padding: 40px 24px; }

/* --- Logo-Feinjustierung --- */
.nav-logo img { height: 34px; }
.hero-logo { margin-bottom: 34px; }
.hero-logo img { height: 52px; }
footer img.footer-logo { height: 30px; margin-bottom: 10px; }
@media(max-width:600px){
  .hero-logo img { height: 42px; }
  .nav-logo img { height: 29px; }
}

/* ============================================
   FIX: graue Flächen in Schritt-Listen
   ============================================ */

/* Zeit-Pills: blau statt grau */
.step-time {
  background: rgba(45,79,214,0.09);
  color: var(--accent);
  font-weight: 600;
  border: 1px solid rgba(45,79,214,0.16);
}

/* Fließtext dunkler und lesbarer */
.step p { color: var(--ink2); }
.light-card p, .section-sub { color: var(--ink2); }

/* Schrittnummern kräftiger, mit Ziffernblock */
.step-num {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Variable Display", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(140deg, rgba(45,79,214,0.14), rgba(45,79,214,0.06));
  border: 1px solid rgba(45,79,214,0.18);
}
.step { align-items: flex-start; grid-template-columns: 46px 1fr auto; }
.step h4 { margin-top: 5px; }
@media(max-width:640px){ .step { grid-template-columns: 46px 1fr; } }

/* Branchen-Liste: Punkt statt grauem Strich */
.step.plain .step-num {
  background: var(--accent);
  border-color: var(--accent);
  font-size: 0;
  width: 10px; height: 10px; border-radius: 50%;
  margin-top: 13px; margin-left: 12px;
}
.step.plain { grid-template-columns: 46px 1fr; }

/* Trennlinien etwas sichtbarer */
.step { border-top-color: rgba(10,14,26,0.09); }

/* Pause-Zeile dezent, aber nicht grau-tot */
.step.pause .step-num {
  color: var(--ink3);
  background: rgba(10,14,26,0.05);
  border-color: rgba(10,14,26,0.10);
  font-size: 15px; letter-spacing: 0;
}
.step.pause h4 { color: var(--ink2); }

/* ============================================
   PORTRÄT — Blau-Verlauf-Einbettung
   ============================================ */

.about-grid { grid-template-columns: 300px 1fr; gap: 56px; }
@media(max-width:820px){ .about-grid { grid-template-columns: 1fr; gap: 34px; } }

.about-photo {
  width: 300px; max-width: 100%;
  position: relative;
  border-radius: 20px;
  overflow: visible;
  border: none;
  box-shadow: none;
  background: none;
}

/* Blauer Glow hinter dem Bild */
.about-photo::before {
  content: '';
  position: absolute;
  inset: -22px -22px -30px -22px;
  border-radius: 30px;
  background: radial-gradient(circle at 50% 40%, rgba(45,79,214,0.30) 0%, rgba(45,79,214,0) 72%);
  z-index: 0;
  pointer-events: none;
}

/* Bildrahmen mit Navy-Verlauf */
.about-photo .photo-frame {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(165deg, #101835 0%, #0f1d4a 100%);
  box-shadow: 0 20px 52px rgba(10,14,26,0.28);
}
.about-photo img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
  display: block;
  border-radius: 20px;
}

/* Weicher Auslauf nach unten in die Rahmenfarbe */
.about-photo .photo-frame::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 20px;
  background: linear-gradient(to bottom, rgba(16,24,53,0) 58%, rgba(16,24,53,0.55) 88%, rgba(16,24,53,0.9) 100%);
  pointer-events: none;
}

/* Name-Badge unten im Bild */
.about-photo .photo-badge {
  position: absolute;
  left: 18px; right: 18px; bottom: 16px;
  z-index: 2;
  color: #fff;
}
.about-photo .photo-badge .pb-name {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Variable Display", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 19px; letter-spacing: -0.4px; line-height: 1.2;
}
.about-photo .photo-badge .pb-role {
  font-size: 12px; color: #9db2ff; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase; margin-top: 3px;
}

/* Auf hellem Abschnitt: Name im Text daneben entfällt visuell doppelt */
.about-text .about-name { margin-bottom: 2px; }

/* ============================================
   PREIS-STUFEN (Automatisierung)
   ============================================ */
.price-tiers {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media(max-width:820px){ .price-tiers { grid-template-columns: 1fr; } }
.tier {
  border: 1px solid var(--border2);
  border-radius: 18px;
  padding: 30px 28px;
  background: linear-gradient(170deg, #ffffff 0%, #f8f9fc 100%);
  display: flex; flex-direction: column;
  box-shadow: 0 4px 22px rgba(10,14,26,0.04);
}
.tier-accent {
  border-color: rgba(45,79,214,0.30);
  background: linear-gradient(170deg, #ffffff 0%, #f2f5ff 100%);
  box-shadow: 0 12px 36px rgba(45,79,214,0.12);
}
.tier-step {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 14px;
}
.tier .pb-label {
  font-size: 15px; font-weight: 600; color: var(--ink2);
  margin-bottom: 8px; letter-spacing: -0.2px;
}
.tier .pb-val {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Variable Display", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 34px; letter-spacing: -1px; line-height: 1;
  margin-bottom: 16px; color: var(--ink);
}
.tier-desc { font-size: 14.5px; line-height: 1.66; color: var(--ink2); }

/* ============================================
   NEONGELB-AKZENTE
   ============================================ */

/* Hero: "mit" statt blau jetzt gelb unterstrichen */
.hero h1 em {
  color: var(--accent2);
  font-style: normal;
}

/* Eyebrow-Pill: schon gelb, jetzt mit Punkt-Indikator */
.hero-eyebrow {
  background: var(--accent2);
  color: #0a0e1a;
  font-weight: 700;
  display: inline-flex; align-items: center; gap: 8px;
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: #0a0e1a;
  animation: pulse-dot 2.2s ease-in-out infinite;
}
@keyframes pulse-dot { 0%,100%{opacity:1} 50%{opacity:0.35} }

/* Gelbe Marker-Unterstreichung als Utility */
/* Wichtige Wörter in Neongelb — sparsam einsetzen */
.hl { color: var(--accent2); font-weight: 600; }
/* auf hellem Grund braucht Gelb einen dunkleren Ton für Lesbarkeit */
.light .hl, section:not(.dark):not(.contact) .hl {
  color: #a8a800;
}

/* Section-Label-Strich in Gelb */
.section-label::before { background: var(--accent2); opacity: 1; height: 2px; }
.section-label { color: var(--accent); }
.dark .section-label, .contact .section-label { color: var(--accent2); }

/* DUNKLE Karten: Icon-Kacheln jetzt gelb */
.dark .icon-line {
  background: rgba(232,255,0,0.14);
  color: var(--accent2);
  border: 1px solid rgba(232,255,0,0.22);
}
.dark-card:hover { border-color: rgba(232,255,0,0.45); }
.dark-card:hover .icon-line { background: rgba(232,255,0,0.22); }

/* HELLE Karten: Icon bleibt blau, aber Hover-Linie gelb */
.light-card:hover { border-color: rgba(232,255,0,0.9); box-shadow: 0 14px 40px rgba(45,79,214,0.10); }

/* Fakten-Zahlen: Akzentstrich darunter in Gelb */
.fact-item { position: relative; padding-left: 16px; }
.fact-item::before {
  content: '';
  position: absolute; left: 0; top: 4px; bottom: 4px;
  width: 3px; border-radius: 3px;
  background: var(--accent2);
}

/* Schrittnummern-Kachel: gelber statt blauer Look auf hellen Sektionen */
.step-num {
  background: linear-gradient(140deg, rgba(232,255,0,0.30), rgba(232,255,0,0.12));
  border-color: rgba(200,220,0,0.5);
  color: #0a0e1a;
}
.step:hover { background: rgba(232,255,0,0.05); }
.step:hover .step-num { background: var(--accent2); border-color: var(--accent2); }

/* Zeit-Pills: bleiben blau (Kontrast zu den gelben Nummern) */

/* Preis: großer Wert bekommt gelbe Grundlinie */
.pb-val, .tier .pb-val { position: relative; display: inline-block; }


/* Preis-Häkchen in Gelb-Grün-Akzent */
.price-box li::before { border-color: #0a0e1a; }

/* Primär-Button behält Blau, aber Fokus-/Hover-Ring gelb */
.btn-primary:focus-visible { outline: 3px solid var(--accent2); outline-offset: 2px; }

/* FAQ: offenes Element bekommt gelben Marker links */
.faq details[open] {
  border-left: 3px solid var(--accent2);
  padding-left: 18px; margin-left: -21px;
}
.faq summary::after { color: var(--accent); }
.faq details[open] summary::after { color: #0a0e1a; background: var(--accent2); border-radius: 4px; width: 22px; height: 22px; display:inline-flex; align-items:center; justify-content:center; }

/* Kontakt: gelbe Mail/Telefon-Links behalten, Label-Strich */
.contact-direct .cd-label { color: rgba(232,255,0,0.6); }

/* Porträt-Badge: Rolle in Gelb statt Blau */
.about-photo .photo-badge .pb-role { color: var(--accent2); }

/* Footer-Links Hover gelb */
footer a:hover { color: #0a0e1a; border-bottom: 2px solid var(--accent2); }

/* Nav-CTA: Hover auf Gelb */
.nav-cta:hover { background: var(--accent2); color: #0a0e1a; }
.nav-links a.txt:hover { color: var(--accent); }

/* ============================================
   STARTSEITE — Angebots-Karten
   ============================================ */
.offer-grid {
  margin-top: 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
@media(max-width:820px){ .offer-grid { grid-template-columns: 1fr; } }

.offer-card {
  display: block; text-decoration: none; color: inherit;
  border: 1px solid var(--border2);
  border-radius: 20px;
  padding: 36px 34px;
  background: linear-gradient(168deg, #ffffff 0%, #f7f9fd 100%);
  box-shadow: 0 4px 24px rgba(10,14,26,0.04);
  transition: transform .22s, box-shadow .22s, border-color .22s;
  position: relative; overflow: hidden;
}
.offer-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent2) 100%);
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(45,79,214,0.14);
  border-color: rgba(45,79,214,0.28);
}
.offer-card:hover::before { transform: scaleX(1); }

.offer-tag {
  display: inline-block;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--accent);
  background: rgba(45,79,214,0.09);
  padding: 5px 12px; border-radius: 100px;
  margin-bottom: 18px;
}
.offer-card h3 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Variable Display", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 28px; font-weight: 400; letter-spacing: -0.6px;
  margin-bottom: 12px;
}
.offer-card > p { font-size: 15.5px; line-height: 1.68; color: var(--ink2); margin-bottom: 20px; }

.offer-list { list-style: none; margin: 0 0 24px; padding: 0; }
.offer-list li {
  font-size: 14.5px; color: var(--ink2);
  padding-left: 26px; position: relative; margin-bottom: 9px;
}
.offer-list li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 11px; height: 6px;
  border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}
.offer-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 600; color: var(--accent);
}
.offer-cta .arrow { transition: transform .22s; display: inline-block; }
.offer-card:hover .offer-cta .arrow { transform: translateX(5px); }
.offer-card:hover .offer-cta { color: var(--accent-dark); }

/* ============================================
   HERO OHNE BILD — Text-Panel rechts
   ============================================ */
.hero-panel {
  align-self: center;
  background: linear-gradient(165deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 34px 32px;
  backdrop-filter: blur(4px);
}
.hp-label {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent2);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 9px;
}
.hp-label::before {
  content: ''; width: 20px; height: 2px; background: var(--accent2);
}
.hp-list { list-style: none; margin: 0; padding: 0; }
.hp-list li {
  font-size: 15px; line-height: 1.55; color: rgba(255,255,255,0.78);
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hp-list li:last-child { border-bottom: none; padding-bottom: 0; }
.hp-list li:first-child { padding-top: 0; }
.hp-k { color: #fff; font-weight: 700; }

/* Branchen ohne Bild: zweispaltige Liste */
.branchen-steps .steps {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0 40px;
}
.branchen-steps .step { border-top: 1px solid var(--border2); }
@media(max-width:760px){
  .branchen-steps .steps { grid-template-columns: 1fr; }
}

/* ============================================
   MODERNER GROTESK-LOOK — Feinschliff
   ============================================ */

/* Präzise Kerning/Ligaturen, technischer Grundton */
body {
  font-feature-settings: 'kern' 1, 'liga' 1, 'calt' 1, 'ss01' 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.014em;
}

/* Hero: sehr eng, kräftig — Linear/Stripe-Anmutung */
.hero h1 {
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.04;
}
.hero h1 em { font-weight: 700; font-style: normal; }

/* Section-Titles: eng, halbfett */
.section-title {
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.1;
}

/* Zahlen (Fakten, Preise): tabellarisch, eng */
.fact-num, .pb-val, .tier .pb-val {
  font-weight: 700;
  letter-spacing: -0.03em;
  font-feature-settings: 'tnum' 1;
}

/* Schrittnummern & Badges wieder kräftig */
.about-name { font-weight: 700; letter-spacing: -0.02em; }
.offer-card h3 { font-weight: 700; letter-spacing: -0.025em; }

/* Überschriften-Gewichte vereinheitlichen */
h2, h3, h4 { font-weight: 650; letter-spacing: -0.02em; }

/* Labels: technischer, weiter gesperrt */
.section-label, .hero-eyebrow, .hp-label, .offer-tag, .tier-step, .am-label, .cd-label, .pb-role {
  font-feature-settings: 'kern' 1;
  letter-spacing: 0.06em;
}

/* Buttons: eng und definiert */
.btn-primary, .btn-ghost, .nav-cta, .form-card button {
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* Fließtext angenehm lesbar halten */
.hero-sub, .section-sub, p, li { letter-spacing: -0.011em; }
