/* ============================================================
   KI Praxispilot – V3 Design System
   Premium Dark Theme · Glasmorphism · Gradient Accents
   ============================================================ */

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  --primary:        #8FAE4D;
  --primary-light:  #C6D879;
  --primary-glow:   rgba(143, 174, 77, .34);
  --accent:         #3BA7E6;
  --action-blue:    #176F9F;
  --action-blue-hover: #1F8FC8;
  --accent-warm:    #D6B85A;
  --accent-green:   #7FAA4B;

  --dark:           #0B0D0A;
  --dark-card:      #151A12;
  --dark-surface:   #1E2617;
  --dark-elevated:  #28331F;

  --text:           #FFFFFE;
  --text-secondary: #D4DAC8;
  --text-muted:     #9AA38D;

  --border:         rgba(255,255,255,.07);
  --border-hover:   rgba(255,255,255,.14);

  --glass-bg:       rgba(21, 26, 18, .68);
  --glass-border:   rgba(255,255,255,.08);
  --glass-blur:     20px;

  --gradient-primary: linear-gradient(135deg, var(--primary), var(--accent));
  --gradient-action:  linear-gradient(120deg, #4F651F 0%, #5F7B2A 42%, #2F9DCF 100%);
  --gradient-hero:    linear-gradient(160deg, #0B0D0A 0%, #151A12 42%, #1E2617 100%);
  --gradient-card:    linear-gradient(135deg, rgba(143,174,77,.14), rgba(59,167,230,.055));
  --gradient-border:  linear-gradient(135deg, var(--primary), var(--accent), var(--accent-warm));

  --shadow-sm:  0 4px 16px rgba(0,0,0,.25);
  --shadow-md:  0 8px 32px rgba(0,0,0,.35);
  --shadow-lg:  0 16px 48px rgba(0,0,0,.45);
  --shadow-glow: 0 0 30px var(--primary-glow);

  --radius-sm:  12px;
  --radius-md:  18px;
  --radius-lg:  24px;
  --radius-xl:  32px;
  --radius-pill: 999px;

  --transition: .3s cubic-bezier(.4, 0, .2, 1);
  --transition-slow: .6s cubic-bezier(.4, 0, .2, 1);
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--dark);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-light); }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
button:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

/* ── Layout ────────────────────────────────────────────────── */
.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: clamp(64px, 10vw, 120px) 0;
}

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4 {
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -.03em;
  font-weight: 800;
}

h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  margin-bottom: 18px;
}

h3 {
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  margin-bottom: 12px;
}

p { margin-top: 0; margin-bottom: 16px; }

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 700;
  font-size: .82rem;
  color: var(--accent);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.lead {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  color: var(--text-secondary);
  max-width: 680px;
  line-height: 1.7;
}

.section-intro {
  max-width: 720px;
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 48px;
}

/* ── Header ────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 11, 20, .82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(11, 11, 20, .95);
  box-shadow: 0 4px 30px rgba(0,0,0,.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}

/* Brand */
.brand {
  color: var(--text) !important;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -.01em;
  flex-shrink: 0;
}

.brand-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--gradient-action);
  color: #fff;
  font-weight: 900;
  font-size: .85rem;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: .9rem;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
  white-space: nowrap;
}

.nav a:hover { color: var(--text); background: rgba(255,255,255,.06); }
.nav a.active { color: var(--text); background: rgba(143, 174, 77, .22); }

.nav-cta {
  background: var(--action-blue) !important;
  color: #fff !important;
  font-weight: 700 !important;
  padding: 8px 18px !important;
  margin-left: 8px;
  border: 1px solid rgba(198,216,121,0);
}
.nav-cta:hover { background: var(--action-blue-hover) !important; opacity: 1; transform: translateY(-1px); border-color: rgba(198,216,121,.55); box-shadow: 0 0 0 1px rgba(198,216,121,.18), 0 8px 24px rgba(143,174,77,.22); }

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  font-family: inherit;
  transition: all var(--transition);
}
.menu-toggle:hover { border-color: var(--primary); }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 700;
  font-size: .95rem;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  min-height: 50px;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--action-blue);
  color: #fff;
  border: 1px solid rgba(198,216,121,0);
  box-shadow: 0 4px 18px rgba(23,111,159,.2);
}
.btn-primary:hover {
  background: var(--action-blue-hover);
  transform: translateY(-2px);
  border-color: rgba(198,216,121,.55);
  box-shadow: 0 0 0 1px rgba(198,216,121,.18), 0 8px 28px rgba(143,174,77,.22);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-hover);
}
.btn-secondary:hover {
  border-color: var(--primary);
  background: rgba(143,174,77,.09);
  transform: translateY(-1px);
  color: var(--text);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  padding: 8px 0;
  font-weight: 700;
}
.btn-ghost::after { content: none; display: none; }
.btn-ghost:hover::after { transform: none; }
.btn-ghost:hover { color: var(--primary-light); }

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: clamp(80px, 12vw, 140px) 0 clamp(60px, 10vw, 100px);
  background: var(--gradient-hero);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(143,174,77,.16) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59,167,230,.08) 0%, transparent 70%);
  animation: float 10s ease-in-out infinite reverse;
  pointer-events: none;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -30px); }
}

.hero-home { padding-top: clamp(100px, 14vw, 180px); }

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content { position: relative; z-index: 2; }

.hero-panel {
  display: grid;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.hero .lead { margin-bottom: 8px; }

.narrow-hero {
  max-width: 1200px;
  position: relative;
  z-index: 2;
}

/* Signal Cards in Hero */
.signal-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition);
}

.signal-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.signal-card .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient-action);
  color: #fff;
  font-weight: 800;
  font-size: .85rem;
  margin-bottom: 12px;
}

.signal-card strong {
  display: block;
  color: var(--text);
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.signal-card p { color: var(--text-muted); font-size: .92rem; margin: 0; }

/* ── Cards ─────────────────────────────────────────────────── */
.card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 32px);
  transition: all var(--transition);
  position: relative;
}

.card:hover {
  border-color: rgba(143,174,77,.32);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

/* Gradient border effect on hover */
.card-gradient {
  background: var(--dark-card);
  position: relative;
  overflow: hidden;
}
.card-gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: var(--gradient-border);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition);
}
.card-gradient:hover::before { opacity: 1; }

/* Offer Cards */
.offer-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
}

.offer-card .card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--gradient-card);
  border: 1px solid var(--border);
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.offer-card h3 { font-size: 1.2rem; }
.offer-card p { color: var(--text-secondary); font-size: .95rem; flex: 1; }
.offer-card .ideal { color: var(--text-muted); font-size: .88rem; margin-bottom: 16px; }
.offer-card .btn-ghost { margin-top: auto; align-self: flex-start; }

/* Highlight Card */
.highlight-card {
  background: var(--gradient-action);
  border: none;
}
.highlight-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-glow); }
.highlight-card h2, .highlight-card p { color: #fff; }

/* ── Grids ─────────────────────────────────────────────────── */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.split {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}

/* ── Steps / Process ───────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }

.step-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
  position: relative;
}
.step-card:hover { border-color: var(--primary); transform: translateY(-2px); }

.step-num {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gradient-action);
  color: #fff;
  font-weight: 900;
  font-size: .95rem;
  margin-bottom: 16px;
}

.step-card h3 { font-size: 1.1rem; }
.step-card p { color: var(--text-muted); font-size: .92rem; margin: 0; }

/* ── Trust / Stats ─────────────────────────────────────────── */
.trust-bar {
  display: flex;
  justify-content: center;
  gap: clamp(32px, 5vw, 72px);
  flex-wrap: wrap;
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-stat { text-align: center; }
.trust-stat .num {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.trust-stat .label {
  display: block;
  font-size: .88rem;
  color: var(--text-muted);
  margin-top: 6px;
  font-weight: 500;
}

/* ── CTA Panel ─────────────────────────────────────────────── */
.cta-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  background: var(--gradient-action);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 5vw, 56px);
  position: relative;
  overflow: hidden;
}
.cta-panel::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-panel h2, .cta-panel p { color: #fff; position: relative; z-index: 1; }
.cta-panel p { max-width: 600px; opacity: .9; }
.cta-panel .btn { position: relative; z-index: 1; flex: 0 0 auto; }
.cta-panel .btn-primary {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.cta-panel .btn-primary:hover { box-shadow: 0 8px 32px rgba(0,0,0,.3); }

/* ── Section Variants ──────────────────────────────────────── */
.section-alt {
  background: var(--dark-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ── Checklist ─────────────────────────────────────────────── */
.checklist li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  color: var(--text-secondary);
  font-size: 1rem;
}
.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-weight: 800;
}

/* ── Notice / Disclaimer ───────────────────────────────────── */
.notice {
  background: rgba(143, 174, 77, .09);
  border-left: 3px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 18px 22px;
  margin: 32px 0;
  font-size: .92rem;
  color: var(--text-muted);
}
.notice strong { color: var(--text-secondary); }

.intro-box {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 40px;
  font-size: .95rem;
  color: var(--text-secondary);
}

/* ── FAQ Accordion ─────────────────────────────────────────── */
.faq-list { max-width: 820px; }

.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: inherit;
  font-size: 1.15rem;
  font-weight: 700;
  text-align: left;
  padding: 24px 0;
  cursor: pointer;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--primary-light); }

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--primary);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.is-open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
}
.faq-answer-inner {
  padding: 0 0 24px;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-item.is-open .faq-answer { max-height: 500px; }

/* ── Contact Grid ──────────────────────────────────────────── */
.contact-grid { align-items: stretch; }

/* ── Finder / Form ─────────────────────────────────────────── */
.finder label {
  display: block;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
  font-size: .95rem;
}

.finder select {
  display: block;
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font: inherit;
  font-size: .95rem;
  background: var(--dark-surface);
  color: var(--text);
  transition: border-color var(--transition);
  appearance: none;
  cursor: pointer;
}
.finder select:focus { border-color: var(--primary); outline: none; }

.result-panel {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-top: 24px;
}

/* ── Legal / Text Pages ────────────────────────────────────── */
.legal-text { max-width: 820px; }
.legal-text h2 { font-size: 1.3rem; margin-top: 40px; color: var(--text); }
.legal-text p { color: var(--text-secondary); }

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: #0D120A;
  border-top: 1px solid rgba(143,174,77,.12);
  padding: 56px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr .8fr;
  gap: 40px;
}

.footer-brand {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-footer h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.site-footer p { color: var(--text-muted); font-size: .92rem; }
.site-footer a { color: var(--text-muted); font-size: .92rem; }
.site-footer a:hover { color: var(--accent); }

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  color: var(--accent) !important;
}

.footer-legal {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal p {
  font-size: .82rem;
  color: var(--text-muted);
  margin: 0;
}

.footer-legal-links {
  display: flex;
  gap: 24px;
}
.footer-legal-links a { font-size: .82rem; }

/* ── Scroll Reveal Animation ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: .05s; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: .12s; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: .19s; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: .26s; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: .33s; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: .40s; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(7) { transition-delay: .47s; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(8) { transition-delay: .54s; opacity: 1; transform: translateY(0); }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-panel { order: -1; }
  .split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .header-inner { flex-wrap: wrap; padding: 14px 0; }
  .menu-toggle { display: inline-flex; }

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 4px;
    padding: 12px 0;
    border-top: 1px solid var(--border);
    margin-top: 8px;
  }
  .nav.is-open { display: flex; }
  .nav a { width: 100%; padding: 12px 16px; border-radius: var(--radius-sm); }
  .nav-cta { margin-left: 0 !important; text-align: center; }

  .hero-home { padding-top: clamp(60px, 10vw, 100px); }
  h1 { font-size: clamp(2rem, 8vw, 3rem); }

  .cta-panel { flex-direction: column; align-items: flex-start; }
  .trust-bar { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-legal { flex-direction: column; text-align: center; }
  .footer-legal-links { justify-content: center; }

  .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { width: min(100% - 32px, 1200px); }
  h1 { font-size: clamp(1.8rem, 10vw, 2.5rem); }
  .card { padding: 20px; border-radius: var(--radius-md); }
  .signal-card { padding: 20px; border-radius: var(--radius-md); }
  .step-card { padding: 20px; }
}


/* ── KI Praxispilot V7 Brand Assets ───────────────────────── */
.brand-logo-slogan { height: 54px; width: auto; max-width: min(420px, 58vw); }
.card-icon { display:flex; align-items:center; justify-content:center; width:88px; height:88px; margin-bottom:12px; }
.card-icon img { width:100%; height:100%; object-fit:contain; }
.offer-price { color: var(--accent); font-weight: 700; margin-bottom: 10px; }
.notice { background: rgba(255,255,255,.04); border:1px solid var(--border); border-radius: var(--radius-md); padding:18px 20px; color:var(--text-secondary); margin-bottom:28px; }

/* Contact form */
.contact-layout { display:grid; grid-template-columns: 1.5fr 1fr; gap: 28px; align-items:start; }
.contact-form-card { padding: 32px; }
.contact-form .form-grid { display:grid; grid-template-columns: 1fr 1fr; gap:18px 20px; }
.contact-form label { display:block; font-weight:700; color:var(--text); font-size:.95rem; }
.contact-form input, .contact-form textarea, .contact-form select {
  display:block; width:100%; margin-top:8px; border:1px solid var(--border); border-radius: var(--radius-sm);
  padding:14px 16px; font: inherit; font-size:.95rem; background: var(--dark-surface); color: var(--text);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--primary); outline:none; }
.contact-form .span-2 { grid-column: span 2; }
.form-actions { display:flex; gap:14px; flex-wrap:wrap; margin-top: 10px; }
.form-note { color:var(--text-muted); font-size:.92rem; margin-top:14px; }
.mail-preview { width:100%; border:1px solid var(--border); border-radius: var(--radius-md); background: var(--dark-surface); color: var(--text-secondary); padding:16px; font: inherit; }
.contact-sidecards { display:grid; gap:22px; }

@media (max-width: 980px) {
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .hero-grid { display:flex; flex-direction:column; }
  .hero-content { order: 1; }
  .hero-panel { order: 2; }
  .brand-logo-slogan { height: 42px; max-width: min(320px, 62vw); }
.contact-form .form-grid { grid-template-columns: 1fr; }
  .contact-form .span-2 { grid-column: span 1; }
}


/* ── V8 Simplification ─────────────────────────────────────── */
.simple-brand {
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:1.05rem;
  letter-spacing:-.01em;
}
.brand-mark {
  width:38px;
  height:38px;
  object-fit:contain;
  border-radius:10px;
}
.brand-logo-slogan {
  display:none;
}
.card-icon {
  display:flex;
  align-items:center;
  justify-content:center;
  width:82px;
  height:82px;
  margin-bottom:12px;
}
.card-icon img {
  width:100%;
  height:100%;
  object-fit:contain;
}
.offer-price {
  color:var(--accent);
  font-weight:700;
  margin-bottom:10px;
}
.notice {
  background:rgba(255,255,255,.04);
  border:1px solid var(--border);
  border-radius:var(--radius-md);
  padding:18px 20px;
  color:var(--text-secondary);
  margin-bottom:28px;
}
.contact-section-simple {
  padding-top:clamp(40px,6vw,72px);
}
.contact-form-simple {
  max-width:900px;
  margin:0 auto;
  padding:32px;
}
.form-intro {
  color:var(--text-secondary);
  max-width:760px;
  margin-bottom:28px;
}
.contact-form .form-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px 20px;
}
.contact-form label {
  display:block;
  font-weight:700;
  color:var(--text);
  font-size:.95rem;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  display:block;
  width:100%;
  margin-top:8px;
  border:1px solid var(--border);
  border-radius:var(--radius-sm);
  padding:14px 16px;
  font:inherit;
  font-size:.95rem;
  background:var(--dark-surface);
  color:var(--text);
}
.contact-form textarea {
  resize:vertical;
  min-height:105px;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color:var(--primary);
  outline:none;
}
.contact-form .span-2 {
  grid-column:span 2;
}
.form-actions {
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:18px;
}
@media (max-width:820px) {
  .hero-grid {
    display:flex;
    flex-direction:column;
  }
  .hero-content {
    order:1;
  }
  .hero-panel {
    order:2;
  }
  .contact-form .form-grid {
    grid-template-columns:1fr;
  }
  .contact-form .span-2 {
    grid-column:span 1;
  }
}


/* ── V9 Text Branding and Contact Layout ───────────────────── */
.text-brand {
  display:inline-flex;
  align-items:baseline;
  gap:6px;
  color:var(--text) !important;
  font-weight:850;
  letter-spacing:-.03em;
  font-size:1.25rem;
}
.brand-ki {
  color:var(--accent);
  font-weight:900;
}
.brand-praxis {
  color:var(--text);
  font-weight:800;
}
.text-footer-brand {
  display:inline-flex;
  align-items:baseline;
  gap:6px;
  font-size:1.18rem;
  font-weight:850;
}
.simple-brand .brand-mark,
.brand-mark,
.brand-logo-slogan {
  display:none !important;
}
.card-icon,
.card-icon-image {
  display:flex;
  align-items:center;
  justify-content:center;
  width:84px;
  height:84px;
  margin-bottom:14px;
  border-radius:50%;
  background:rgba(59,167,230,.08);
  border:1px solid rgba(59,167,230,.16);
  overflow:hidden;
}
.card-icon img,
.card-icon-image img {
  width:100%;
  height:100%;
  object-fit:cover;
}
.contact-info-stack {
  display:grid;
  gap:22px;
  max-width:900px;
  margin:32px auto 0;
}
.contact-form-simple {
  max-width:900px;
  margin:0 auto;
}
@media (max-width:820px) {
  .text-brand { font-size:1.08rem; }
}


/* ── V10 Pricing Wording ───────────────────────────────────── */
.offer-price {
  color: var(--text);
  font-weight: 700;
  background: rgba(59,167,230,.08);
  border: 1px solid rgba(59,167,230,.16);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  margin: 8px 0 14px;
  line-height: 1.45;
}
.hero-price {
  display: inline-block;
  margin-top: 4px;
  margin-bottom: 10px;
}


/* V11 Zeitrahmen unter Preis */
.duration-note {
  margin-top: -.5rem;
  margin-bottom: 22px;
  font-size: .95rem;
  color: var(--text-muted);
}
.duration-note a { color: var(--accent); }

/* V11 Startseitenkarten und Preisdetails */
.offer-price span {
  display: block;
  margin-top: 2px;
  color: var(--text-muted);
  font-size: .82rem;
  font-weight: 600;
}
.notice-pricing {
  display: grid;
  gap: 4px;
  padding: 20px 22px;
}
.notice-pricing strong {
  color: var(--text);
  font-size: 1rem;
}
.notice-pricing span {
  color: var(--text-secondary);
}
.home-offers .offer-card {
  min-height: 265px;
}
.home-offers .offer-card h3 {
  margin-bottom: 10px;
}
.home-offers .offer-price {
  font-size: .92rem;
  padding: 8px 10px;
  margin: 4px 0 14px;
}

/* Startseite: Preisboxen in Pilotkarten stabilisieren */
.offer-card > p {
  flex: 0 0 auto;
}
.offer-card > p:not(.offer-price):not(.ideal) {
  flex: 1 1 auto;
}
.home-offers .offer-price {
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  width: 100%;
  max-width: 220px;
  min-height: 62px;
  flex: 0 0 auto;
}

/* ── V14 Interaktive Simulatoren ───────────────────────────── */
.v14-breadcrumb { margin-top: 1.25rem; font-size: .9rem; color: var(--text-muted); }
.v14-breadcrumb a { color: var(--accent); text-decoration: none; }
.suite-back { display: inline-flex; margin-bottom: 1rem; color: var(--accent); font-weight: 800; text-decoration: none; }
.tool-hero { padding: clamp(48px, 8vw, 96px) 0 32px; }
.tool-hero-grid { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(260px, .55fr); gap: 32px; align-items: start; }
.tool-meta, .panel, .hero-meta { padding: clamp(20px, 3vw, 32px); }
.tool-meta ul { margin: 8px 0 0; padding-left: 18px; list-style: disc; }
.tool-meta li, .field small, .mini-note, .result-panel p, .question-help, .choice-hint, .meta-row span, .status-card p, .profile-head span { color: var(--text-secondary); }
.sim-layout { display: grid; grid-template-columns: minmax(0, 1fr); gap: 28px; align-items: start; max-width: 980px; margin-bottom: clamp(84px, 10vw, 140px); }
.sim-layout .result-panel { position: static; width: 100%; scroll-margin-top: 96px; }
.field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 18px; }
.field { display: grid; gap: 6px; align-content: start; }
.field-full { grid-column: 1 / -1; }
.field label, .field .label, .question-group legend, .choice-label, .metric strong, .score-large, .result-table th, .answer-table th, .profile-head strong, .status-card strong, .notice strong { color: var(--text); }
.field label, .field .label { font-weight: 800; }
.sim-layout input[type="number"], .sim-layout input[type="text"], .sim-layout input[type="file"], .sim-layout input[type="email"], .sim-layout input[type="tel"], .sim-layout select, .sim-layout textarea, .simulator-shell input[type="number"], .simulator-shell input[type="text"], .simulator-shell input[type="file"], .simulator-shell input[type="email"], .simulator-shell input[type="tel"], .simulator-shell select, .simulator-shell textarea { width: 100%; min-height: 46px; padding: 12px 13px; border: 1px solid var(--border-hover); border-radius: var(--radius-sm); color: var(--text); background: var(--dark-surface); box-shadow: inset 0 1px 0 rgba(255,255,255,.04); }
.sim-layout textarea, .simulator-shell textarea { min-height: 100px; resize: vertical; }
.sim-layout input:hover, .sim-layout select:hover, .sim-layout textarea:hover, .simulator-shell input:hover, .simulator-shell select:hover, .simulator-shell textarea:hover { border-color: rgba(59,167,230,.38); background: var(--dark-elevated); }
.sim-layout input:focus, .sim-layout select:focus, .sim-layout textarea:focus, .simulator-shell input:focus, .simulator-shell select:focus, .simulator-shell textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(59,167,230,.22); outline: none; }
.sim-layout input::placeholder, .sim-layout textarea::placeholder, .simulator-shell input::placeholder, .simulator-shell textarea::placeholder { color: var(--text-muted); }
.sim-layout select option, .simulator-shell select option { background: var(--dark-card); color: var(--text); }
.sim-layout input[type="range"], .simulator-shell input[type="range"] { accent-color: var(--accent); }
.range-line { display: grid; grid-template-columns: 1fr auto; gap: 13px; align-items: center; }

.result-headline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}
.result-headline h2 {
  margin-bottom: 0;
}
.result-headline .status-chip {
  flex: 0 0 auto;
  margin-top: 4px;
  white-space: normal;
  text-align: center;
  max-width: 280px;
}
@media (max-width: 620px) {
  .result-headline { flex-direction: column; align-items: flex-start; }
}
.range-value, .status-chip { display: inline-flex; align-items: center; justify-content: center; min-width: 52px; padding: 6px 10px; border: 1px solid rgba(59,167,230,.22); border-radius: var(--radius-pill); background: rgba(59,167,230,.12); color: var(--text); font-weight: 800; font-size: .86rem; }
.check-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.check-card, .metric, .process-row, .import-box, .mini-note, .result-table th, .details, .recommendation, .status-card, .choice-content { border: 1px solid var(--border); background: rgba(255,255,255,.045); }
.check-card { display: flex; gap: 10px; align-items: flex-start; padding: 12px; border-radius: var(--radius-sm); }
.check-card input { margin-top: 3px; accent-color: var(--accent); }
.metric-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px; }
.metric { padding: 16px; border-radius: var(--radius-sm); }
.metric span { display: block; color: var(--text-secondary); font-size: .86rem; }
.metric strong { display: block; margin-top: 4px; font-size: clamp(1.25rem, 3vw, 1.8rem); line-height: 1.15; }
.bar-list { display: grid; gap: 12px; }
.bar-row { display: grid; gap: 5px; }
.bar-head, .profile-head { display: flex; justify-content: space-between; gap: 16px; font-size: .9rem; }
.bar-track, .progress-track, .profile-track { height: 10px; border-radius: var(--radius-pill); background: rgba(255,255,255,.12); overflow: hidden; }
.bar-fill, .progress-bar, .profile-fill, .recommendation-price { background: var(--gradient-action); }
.bar-fill, .profile-fill { height: 100%; border-radius: inherit; }
.table-wrap { overflow-x: auto; }
.result-table, .answer-table { width: 100%; border-collapse: collapse; min-width: 640px; }
.result-table th, .result-table td, .answer-table th, .answer-table td { padding: 12px; text-align: left; border-bottom: 1px solid var(--border); vertical-align: top; }
.result-section { margin-top: 20px; }
.result-section h3 { margin-bottom: 8px; }
.result-section ul { margin: 5px 0 0; padding-left: 20px; list-style: disc; }
.mini-note { padding: 14px; border-radius: var(--radius-sm); }
.export-actions, .result-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.step-builder { display: grid; gap: 12px; }
.process-row { display: grid; grid-template-columns: 1.2fr repeat(4, 1fr) auto; gap: 9px; align-items: end; padding: 14px; border-radius: var(--radius-sm); }
.process-row .field { gap: 3px; }
.process-row label { font-size: .82rem; }
.remove-step { min-height: 44px; padding: 9px 11px; }
.import-box { padding: 16px; border-style: dashed; border-radius: var(--radius-sm); }
.score-large { font-size: clamp(2.2rem, 6vw, 4.2rem); font-weight: 900; line-height: 1; }
.simulator-shell { margin-top: 16px; overflow: hidden; }
.progress-wrap { padding: 20px 24px; border-bottom: 1px solid var(--border); background: rgba(255,255,255,.035); }
.progress-top { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 12px; font-weight: 700; }
.step-dots { display: flex; justify-content: space-between; gap: 8px; margin: 12px 0 0; padding: 0; list-style: none; }
.step-dots li { flex: 1; color: var(--text-muted); font-size: .78rem; text-align: center; }
.step-dots li[aria-current="step"] { color: var(--text); font-weight: 800; }
.form-area, .result { padding: clamp(20px, 4vw, 44px); }
.step-header { max-width: 780px; margin-bottom: 32px; }
.step-kicker, .orientation-badge { color: var(--accent); font-weight: 800; font-size: .88rem; }
.question-group { margin: 0 0 32px; padding: 0; border: 0; }
.choice-grid, .result-grid, .profile-list, .status-panel { display: grid; gap: 16px; }
.choice-grid, .result-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.choice-card { position: relative; display: block; min-height: 100%; cursor: pointer; }
.choice-card input { position: absolute; opacity: 0; pointer-events: none; }
.choice-content { display: block; height: 100%; min-height: 92px; padding: 16px 20px; border-radius: var(--radius-sm); transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition), background var(--transition); }
.choice-content::before { content: ''; float: right; width: 20px; height: 20px; margin-left: 12px; border: 2px solid var(--border-hover); border-radius: 50%; background: rgba(255,255,255,.08); }
.choice-card:hover .choice-content, .choice-card input:checked + .choice-content { border-color: var(--accent); background: rgba(30,38,23,.94); }
.choice-card input:focus-visible + .choice-content { box-shadow: 0 0 0 3px rgba(59,167,230,.22); }
.choice-card input:checked + .choice-content::before { border: 6px solid var(--accent); }
.error-summary { margin-bottom: 24px; padding: 16px; border: 1px solid rgba(253,121,168,.4); border-radius: var(--radius-sm); background: rgba(253,121,168,.12); color: var(--text); }
.actions-right { display: flex; gap: 12px; margin-left: auto; }
.privacy-note { display: flex; gap: 12px; align-items: flex-start; margin-top: 24px; padding: 16px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: rgba(255,255,255,.04); color: var(--text-secondary); }
.meta-list { display: grid; gap: 16px; margin: 0; }
.meta-row { display: grid; grid-template-columns: 32px 1fr; gap: 12px; align-items: start; }
.meta-icon { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 9px; background: rgba(59,167,230,.12); color: var(--text); font-weight: 900; }
.result-hero { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(260px, .7fr); gap: 24px; align-items: stretch; }
.recommendation, .status-card, .result-card { padding: 24px; border-radius: var(--radius-md); }
.recommendation-price { display: inline-flex; margin-top: 16px; padding: 6px 10px; border-radius: var(--radius-pill); color: #fff; font-weight: 800; font-size: .88rem; }
.details { margin-top: 24px; border-radius: var(--radius-md); overflow: hidden; }
.details summary { cursor: pointer; padding: 20px 24px; color: var(--text); font-weight: 800; }
.details-content { padding: 0 24px 24px; }
.noscript { margin: 32px auto; padding: 24px; }
@media (max-width: 900px) { .tool-hero-grid, .result-hero { grid-template-columns: 1fr; } .process-row { grid-template-columns: repeat(2, minmax(0, 1fr)); } .process-row .remove-step { grid-column: 1 / -1; } }
@media (max-width: 768px) { .step-dots { display: none; } }
@media (max-width: 620px) { .field-grid, .metric-grid, .check-grid, .choice-grid, .result-grid, .process-row { grid-template-columns: 1fr; } .field-full { grid-column: auto; } .form-area, .result, .progress-wrap { padding: 16px; } .form-actions, .actions-right { flex-direction: column; align-items: stretch; } .actions-right { width: 100%; margin-left: 0; } .sim-layout .btn, .simulator-shell .btn { width: 100%; } .answer-table, .answer-table tbody, .answer-table tr, .answer-table th, .answer-table td { display: block; width: 100%; min-width: 0; } .answer-table th { padding-bottom: 2px; border-bottom: 0; } .answer-table td { padding-top: 2px; } }
@media print { .site-header, .site-footer, .suite-back, .form-actions, .export-actions, .tool-meta, .progress-wrap, #form-area, .result-actions, .skip-link { display: none !important; } .sim-layout, .result-panel, .simulator-shell, .result, .recommendation, .card { box-shadow: none !important; border-color: #aaa !important; } }

/* V14 Simulator-Hero-Bereinigung */
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--dark-elevated);
  color: var(--accent);
  box-shadow: var(--shadow-md);
}
.skip-link:focus,
.skip-link:focus-visible {
  top: 12px;
}
.v14-breadcrumb,
.suite-back,
.tool-meta {
  display: none !important;
}
.tool-hero {
  padding: clamp(64px, 10vw, 112px) 0 34px;
}
.tool-hero-grid {
  display: block;
  max-width: 850px;
}
.tool-hero .lead {
  max-width: 760px;
}
.tool-hero .notice {
  max-width: 820px;
}

/* V14 mobile Startseiten-Reihenfolge und Pilotkarten-Feinschliff */
@media (max-width: 1024px) {
  .hero-home .hero-grid {
    display: flex;
    flex-direction: column;
  }
  .hero-home .hero-content {
    order: 1;
  }
  .hero-home .hero-panel {
    order: 2;
  }
}
.offer-price span {
  display: block;
  margin-top: 2px;
  color: var(--text-muted);
  font-size: .68rem;
  line-height: 1.25;
  font-weight: 500;
}


/* V14 Pilotmodule: klarere Angebotsgruppen und warme Preis-Hervorhebung */
.offer-card .offer-price {
  display: inline-grid;
  gap: 3px;
  width: fit-content;
  max-width: min(100%, 300px);
  min-height: 0;
  padding: 11px 14px;
  margin: 8px 0 18px;
  border: 1px solid rgba(238, 215, 105, .42);
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #D7C35B 0%, #A9B557 52%, #7F9442 100%);
  color: #081008;
  box-shadow: 0 12px 28px rgba(130, 143, 57, .22), inset 0 1px 0 rgba(255,255,255,.35);
  font-size: .98rem;
  font-weight: 900;
  line-height: 1.25;
}
.offer-card .offer-price span {
  display: block;
  margin-top: 0;
  color: rgba(8, 16, 8, .78);
  font-size: .68rem;
  line-height: 1.25;
  font-weight: 700;
}
.offer-card .offer-price a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.offer-card .offer-price-custom {
  background: linear-gradient(135deg, #E1C86B 0%, #BC9D3F 100%);
  border-color: rgba(245, 222, 128, .48);
}
.page-pilotmodule .pilot-groups {
  display: grid;
  gap: clamp(44px, 7vw, 72px);
  margin-top: clamp(34px, 5vw, 56px);
}
.page-pilotmodule .pilot-group {
  display: grid;
  gap: 22px;
}
.page-pilotmodule .pilot-group-heading {
  max-width: 820px;
}
.page-pilotmodule .pilot-group-heading .eyebrow {
  margin-bottom: 8px;
}
.page-pilotmodule .pilot-group-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}
.page-pilotmodule .pilot-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.page-pilotmodule .pilot-pair .offer-card {
  min-height: 0;
  padding: clamp(24px, 3vw, 34px);
}
.page-pilotmodule .pilot-pair .offer-card h3 {
  margin-bottom: 16px;
  font-size: clamp(1.55rem, 2.8vw, 2.25rem);
  line-height: 1.12;
}
.page-pilotmodule .pilot-pair .offer-card > p:not(.offer-price):not(.ideal) {
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.65;
}
.page-pilotmodule .pilot-pair .ideal {
  position: relative;
  margin-top: 24px;
  padding: 18px 18px 18px 22px;
  border: 1px solid rgba(214, 184, 90, .2);
  border-left: 5px solid var(--accent-warm);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.055);
  color: var(--text-secondary);
}
.page-pilotmodule .pilot-pair .ideal strong {
  color: var(--text);
}
.page-pilotmodule .notice-pricing {
  border-color: rgba(214, 184, 90, .5);
  background: linear-gradient(135deg, rgba(47, 55, 25, .92), rgba(28, 35, 18, .94));
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
}
.page-pilotmodule .order-cta-panel {
  background: linear-gradient(135deg, #D7C35B 0%, #9DAF50 58%, #6F873D 100%);
  color: #071007;
  border: 1px solid rgba(246, 227, 130, .45);
  box-shadow: 0 18px 46px rgba(126, 143, 57, .25);
}
.page-pilotmodule .order-cta-panel::before {
  background: radial-gradient(circle at 85% 20%, rgba(255,255,255,.28), transparent 34%);
}
.page-pilotmodule .order-cta-panel h2,
.page-pilotmodule .order-cta-panel p {
  color: #071007;
}
.page-pilotmodule .order-cta-panel p {
  opacity: .82;
}
.page-pilotmodule .order-cta-panel .btn-primary {
  background: #071007;
  color: #F6F0C9;
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
}
.page-pilotmodule .order-cta-panel .btn-primary:hover {
  box-shadow: 0 14px 34px rgba(0,0,0,.28);
}
@media (max-width: 900px) {
  .page-pilotmodule .pilot-pair {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 620px) {
  .offer-card .offer-price {
    width: 100%;
  }
  .page-pilotmodule .pilot-groups {
    gap: 40px;
  }
  .page-pilotmodule .pilot-pair .offer-card h3 {
    font-size: 1.45rem;
  }
}

/* V14 Pilotmodule: Hinweisbox nach Piloten und CTA zurück auf Markenfarben */
.page-pilotmodule .pilot-note-final {
  margin-top: clamp(42px, 6vw, 68px);
  margin-bottom: 0;
}
.page-pilotmodule .order-cta-panel {
  background: var(--gradient-action);
  color: #fff;
  border: 1px solid rgba(59,167,230,.34);
  box-shadow: var(--shadow-glow);
}
.page-pilotmodule .order-cta-panel::before {
  background: radial-gradient(circle at top right, rgba(255,255,255,.24), transparent 35%);
}
.page-pilotmodule .order-cta-panel h2,
.page-pilotmodule .order-cta-panel p {
  color: #fff;
}
.page-pilotmodule .order-cta-panel p {
  opacity: .9;
}
.page-pilotmodule .order-cta-panel .btn-primary {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 10px 26px rgba(0,0,0,.22);
}
.page-pilotmodule .order-cta-panel .btn-primary:hover {
  box-shadow: 0 14px 34px rgba(0,0,0,.28);
}

/* V14 globale Investitionsboxen: identische Farbgestaltung auf Übersicht und Detailseiten */
.offer-price,
.offer-card .offer-price,
.hero-price {
  display: inline-grid;
  gap: 3px;
  width: fit-content;
  max-width: min(100%, 300px);
  min-height: 0;
  padding: 11px 14px;
  margin: 8px 0 18px;
  border: 1px solid rgba(238, 215, 105, .42);
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #D7C35B 0%, #A9B557 52%, #7F9442 100%);
  color: #081008;
  box-shadow: 0 12px 28px rgba(130, 143, 57, .22), inset 0 1px 0 rgba(255,255,255,.35);
  font-size: .98rem;
  font-weight: 900;
  line-height: 1.25;
}
.offer-price span,
.offer-card .offer-price span,
.hero-price span {
  display: block;
  margin-top: 0;
  color: rgba(8, 16, 8, .78);
  font-size: .68rem;
  line-height: 1.25;
  font-weight: 700;
}
.offer-price a,
.offer-card .offer-price a,
.hero-price a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.hero-price {
  margin-top: 4px;
  margin-bottom: 14px;
}
@media (max-width: 620px) {
  .offer-card .offer-price,
  .hero-price {
    width: 100%;
  }
}

/* V15 KI-Demo-Simulationen */
.demo-process-section .section-intro,
.demo-examples-section .section-intro {
  max-width: 860px;
}
.demo-card {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(320px, 1.15fr);
  gap: clamp(22px, 4vw, 38px);
  align-items: stretch;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(21,26,18,.96), rgba(30,38,23,.92));
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.demo-card-compact {
  grid-template-columns: 1fr;
  gap: 18px;
}
.demo-card-copy h3 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
}
.demo-card-copy p {
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.65;
}
.demo-choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}
.demo-choice {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(59,167,230,.22);
  border-radius: var(--radius-pill);
  background: rgba(59,167,230,.08);
  color: var(--text-secondary);
  font: inherit;
  font-size: .86rem;
  font-weight: 800;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), background var(--transition), transform var(--transition);
}
.demo-choice:hover,
.demo-choice.is-active {
  border-color: var(--accent);
  background: rgba(59,167,230,.16);
  color: var(--text);
  transform: translateY(-1px);
}
.demo-preview {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 360px;
  border: 1px solid rgba(59,167,230,.24);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 18% 18%, rgba(59,167,230,.16), transparent 28%),
    linear-gradient(145deg, rgba(8,13,17,.96), rgba(18,28,24,.94));
  overflow: hidden;
}
.demo-card-compact .demo-preview {
  min-height: 300px;
}
.demo-placeholder {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  width: min(92%, 620px);
  padding: 24px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.05);
}
.demo-placeholder span {
  display: grid;
  place-items: center;
  min-height: 78px;
  padding: 14px;
  border-radius: var(--radius-sm);
  background: rgba(238,243,248,.94);
  color: #172033;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 14px 34px rgba(0,0,0,.2);
}
.demo-placeholder i {
  width: 32px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary-light), var(--accent));
}
.demo-play {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 2;
  white-space: nowrap;
}
.demo-preview iframe {
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
  border-radius: inherit;
  background: transparent;
}
.demo-preview.is-playing {
  display: block;
  padding: 0;
  background: transparent;
}
.demo-preview.is-playing .demo-play,
.demo-preview.is-playing .demo-placeholder {
  display: none;
}
.demo-gallery {
  margin-top: 28px;
}
@media (max-width: 980px) {
  .demo-card {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .demo-card {
    padding: 18px;
  }
  .demo-preview,
  .demo-card-compact .demo-preview {
    min-height: 520px;
  }
  .demo-placeholder {
    grid-template-columns: 1fr;
    width: min(100%, 360px);
  }
  .demo-placeholder i {
    width: 2px;
    height: 26px;
    justify-self: center;
  }
  .demo-play {
    width: calc(100% - 36px);
  }
}

/* ── Simulator Card Enhancements ────────────────────────────── */
.simulator-card {
  transition: all var(--transition), box-shadow .4s ease;
}
.simulator-card:hover {
  box-shadow: 0 0 40px rgba(143, 174, 77, .18), var(--shadow-md);
}
.simulator-card .orientation-badge {
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--primary-light);
  opacity: .7;
}
.simulator-card h3 {
  font-size: 1.15rem;
  line-height: 1.3;
}


/* V15 Demo-Bühne: große, nicht scrollende Prozessansicht */
.demo-card {
  grid-template-columns: minmax(260px, .45fr) minmax(0, 1.55fr);
  align-items: start;
}
.demo-theater {
  grid-template-columns: 1fr;
  gap: 24px;
  padding: clamp(24px, 4vw, 44px);
}
.demo-theater-copy {
  display: grid;
  gap: 10px;
  max-width: 1040px;
}
.demo-theater-copy h3 {
  margin-bottom: 0;
  font-size: clamp(1.75rem, 3.4vw, 3rem);
}
.demo-theater-copy p:not(.eyebrow) {
  max-width: 860px;
}
.demo-theater-tabs {
  margin-top: 14px;
}
.demo-preview {
  width: 100%;
  min-height: clamp(540px, 64vh, 780px);
}
.demo-preview-theater {
  min-height: 0;
}
.demo-preview.is-playing {
  min-height: 0;
  aspect-ratio: 4 / 3;
  max-height: calc(100vh - 130px);
}
.demo-preview iframe {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.demo-preview:not(.is-playing) .demo-placeholder {
  min-height: min(360px, 54vh);
}
.demo-preview-theater:not(.is-playing) .demo-placeholder {
  min-height: clamp(360px, 56vh, 620px);
}
.demo-play {
  bottom: clamp(22px, 4vw, 42px);
}
@media (max-width: 1120px) {
  .demo-card {
    grid-template-columns: 1fr;
  }
  .demo-preview {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
}
@media (max-width: 680px) {
  .demo-preview,
  .demo-preview.is-playing,
  .demo-preview iframe {
    aspect-ratio: 9 / 16;
    max-height: none;
  }
  .demo-preview:not(.is-playing) .demo-placeholder,
  .demo-preview-theater:not(.is-playing) .demo-placeholder {
    min-height: 520px;
  }
}

/* V15 Simulator-Auswahl: dezente warme Kartenabhebung ohne interne Nummerierung */
#simulatoren .simulator-card {
  background:
    linear-gradient(145deg, rgba(214, 198, 94, .075), rgba(143, 174, 77, .055) 42%, rgba(21, 26, 18, .98) 100%),
    var(--dark-card);
  border-color: rgba(214, 198, 94, .18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035), 0 18px 42px rgba(0,0,0,.18);
}
#simulatoren .simulator-card:hover {
  border-color: rgba(214, 198, 94, .34);
  box-shadow: 0 0 42px rgba(214, 198, 94, .12), var(--shadow-md);
}
#simulatoren .simulator-card .orientation-badge {
  display: none;
}




/* V15 Pilot-Demo-Cards: nur Auswahl/Bedienung, keine erklärende Textspalte */
.demo-card-feature > .demo-preview:only-child {
  grid-column: 1 / -1;
}
.demo-card-feature .demo-card-actions-only {
  align-self: start;
}
.demo-card-feature .demo-card-actions-only h3,
.demo-card-feature .demo-card-actions-only p {
  display: none;
}
.demo-card-feature.demo-card-options,
.demo-card-feature:has(.demo-card-actions-only) {
  grid-template-columns: minmax(170px, .25fr) minmax(0, 1.75fr);
}
.demo-card-feature.demo-card-options .demo-choice-row,
.demo-card-feature:has(.demo-card-actions-only) .demo-choice-row {
  margin-top: 0;
}
.demo-card-feature.demo-card-options .demo-choice,
.demo-card-feature:has(.demo-card-actions-only) .demo-choice {
  width: 100%;
  justify-content: center;
}
@media (max-width: 980px) {
  .demo-card-feature.demo-card-options,
.demo-card-feature:has(.demo-card-actions-only) {
    grid-template-columns: 1fr;
  }
  .demo-card-feature.demo-card-options .demo-choice,
.demo-card-feature:has(.demo-card-actions-only) .demo-choice {
    width: auto;
  }
}



/* V16 zentrale Demo-Logik: ruhiger Fokus auf Piloten */
.hero-compact {
  padding-bottom: clamp(54px, 8vw, 94px);
}
.interactive-home-hint,
.pilot-example-link,
.pilotfinder-shell {
  border: 1px solid rgba(214, 198, 94, .18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(214, 198, 94, .07), rgba(143, 174, 77, .05) 42%, rgba(15, 20, 14, .95)),
    var(--dark-card);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035), var(--shadow-sm);
}
.interactive-home-hint,
.pilot-example-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(22px, 4vw, 34px);
}
.interactive-home-hint h2,
.pilot-example-link h2 {
  margin-bottom: 0;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
}
.pilot-example-link p:not(.eyebrow) {
  margin: 10px 0 0;
  color: var(--text-secondary);
}
.interactive-section-head {
  max-width: 820px;
  margin-bottom: 28px;
}
.pilotfinder-shell {
  display: grid;
  grid-template-columns: minmax(260px, .9fr) minmax(300px, 1.1fr);
  gap: clamp(18px, 3vw, 30px);
  padding: clamp(20px, 4vw, 34px);
}
.finder-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-content: start;
}
.finder-option {
  border: 1px solid rgba(106, 193, 214, .22);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  background: rgba(255,255,255,.035);
  color: var(--text-main);
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  transition: all var(--transition);
}
.finder-option:hover,
.finder-option.is-active {
  border-color: rgba(106, 193, 214, .65);
  background: rgba(106, 193, 214, .11);
  color: #fff;
}
.finder-result {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  background: rgba(4, 8, 12, .55);
  padding: clamp(20px, 3vw, 30px);
}
.finder-result h3 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2.6vw, 2.2rem);
}
.finder-result p:not(.eyebrow) {
  color: var(--text-secondary);
  font-size: 1.03rem;
}
.compact-actions {
  margin-top: 22px;
}
.central-demo-section .ki-demo-player {
  margin-top: 0;
}
.interactive-cta-panel {
  background: var(--gradient-action);
}
@media (max-width: 900px) {
  .interactive-home-hint,
  .pilot-example-link,
  .pilotfinder-shell {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }
  .finder-options {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .interactive-home-hint .btn,
  .pilot-example-link .btn,
  .finder-result .btn {
    width: 100%;
  }
}
/* V16 central demo tight section */
.central-demo-section {
  padding-top: 10px;
  padding-bottom: 18px;
}
.central-demo-section > .container {
  max-width: 1380px;
}
/* V16 Startseiten-Finetuning: ruhiger Hinweis und Pilotkarte */
.interactive-home-hint-section {
  padding-top: clamp(36px, 6vw, 72px);
  padding-bottom: clamp(56px, 8vw, 90px);
}
.interactive-home-hint {
  display: grid;
  justify-content: start;
  align-items: start;
  gap: 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  max-width: 780px;
}
.interactive-home-hint h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(1.25rem, 2.1vw, 1.75rem);
  line-height: 1.2;
  color: var(--text-secondary);
  letter-spacing: 0;
}
.interactive-home-hint .eyebrow {
  margin-bottom: 10px;
}
.interactive-home-hint .btn {
  justify-self: start;
  margin-top: 0;
}
.highlight-card {
  background: linear-gradient(135deg, rgba(24, 32, 13, .96), rgba(20, 29, 13, .94));
  border: 1px solid rgba(214, 198, 94, .34);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035), 0 18px 42px rgba(0,0,0,.18);
}
.highlight-card:hover {
  border-color: rgba(214, 198, 94, .48);
  box-shadow: 0 0 42px rgba(214, 198, 94, .10), var(--shadow-md);
}
.highlight-card h2,
.highlight-card p {
  color: var(--text);
}
.highlight-card p {
  color: var(--text-secondary);
}
@media (max-width: 900px) {
  .interactive-home-hint {
    align-items: flex-start;
  }
}

.notice-compliance {
  background: linear-gradient(135deg, rgba(30, 45, 20, .92), rgba(15, 24, 18, .96));
  border-color: rgba(143, 174, 77, .35);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .18);
}
.notice-compliance span { display: block; margin-top: 4px; }
.notice-compliance .btn-ghost { margin-top: 12px; display: inline-flex; }
.training-path-grid { margin-top: 22px; }

.home-offers .notice-pricing { margin-top: 32px; margin-bottom: 0; }


/* ============================================================
   V18 Designvariante: Light Professional
   Inhalt unverändert · Header/Footer bleiben schwarz
   ============================================================ */
:root {
  --primary:        #6F8737;
  --primary-light:  #8FAE4D;
  --primary-glow:   rgba(111, 135, 55, .18);
  --accent:         #176F9F;
  --action-blue:    #126A99;
  --action-blue-hover: #0F5D86;
  --accent-warm:    #C8A84A;
  --accent-green:   #667F32;

  --dark:           #F5F2EA;
  --dark-card:      #FFFDF7;
  --dark-surface:   #F0EADB;
  --dark-elevated:  #E7DEC9;

  --text:           #132015;
  --text-secondary: #465441;
  --text-muted:     #667260;

  --border:         rgba(31, 41, 28, .12);
  --border-hover:   rgba(31, 41, 28, .22);

  --glass-bg:       rgba(255, 253, 247, .84);
  --glass-border:   rgba(31, 41, 28, .12);

  --gradient-primary: linear-gradient(135deg, #6F8737, #176F9F);
  --gradient-action:  linear-gradient(120deg, #526A23 0%, #126A99 100%);
  --gradient-hero:    linear-gradient(180deg, #EEE8D9 0%, #F7F4EC 58%, #F5F2EA 100%);
  --gradient-card:    linear-gradient(135deg, rgba(111,135,55,.10), rgba(23,111,159,.06));
  --gradient-border:  linear-gradient(135deg, rgba(111,135,55,.55), rgba(23,111,159,.45));

  --shadow-sm:  0 3px 12px rgba(35, 42, 32, .08);
  --shadow-md:  0 12px 34px rgba(35, 42, 32, .10);
  --shadow-lg:  0 22px 56px rgba(35, 42, 32, .12);
  --shadow-glow: 0 14px 38px rgba(111,135,55,.14);

  --radius-sm:  10px;
  --radius-md:  14px;
  --radius-lg:  18px;
  --radius-xl:  24px;
}

body {
  color: var(--text);
  background: #F5F2EA;
}

.site-header,
.site-header.scrolled {
  background: rgba(8, 9, 12, .96);
  border-bottom-color: rgba(255,255,255,.08);
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}
.site-header .brand,
.site-header .text-brand,
.site-header .nav a,
.site-header .menu-toggle { color: rgba(255,255,255,.86); }
.site-header .brand-praxis { color: #fff; }
.site-header .nav a:hover,
.site-header .nav a.active { color: #fff; background: rgba(255,255,255,.08); }
.site-header .nav-cta { color: #fff !important; }

.site-footer {
  background: #08090C;
  border-top-color: rgba(255,255,255,.08);
}
.site-footer h3,
.site-footer .footer-brand,
.site-footer .brand-praxis { color: #fff; }
.site-footer p,
.site-footer a { color: rgba(255,255,255,.68); }
.site-footer a:hover { color: #79C7EA; }
.footer-legal { border-top-color: rgba(255,255,255,.10); }

.hero {
  background: var(--gradient-hero);
  border-bottom: 1px solid rgba(31,41,28,.10);
}
.hero::before,
.hero::after,
.cta-panel::before { display: none; }
.hero-home { background: linear-gradient(180deg, #ECE5D6 0%, #F5F2EA 100%); }
.hero .lead,
.lead { color: var(--text-secondary); }

h1, h2, h3, h4 { color: var(--text); letter-spacing: 0; }
.text-gradient {
  background: linear-gradient(135deg, #6F8737 0%, #176F9F 82%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.eyebrow { color: #176F9F; }
.eyebrow::before { background: #6F8737; }

.section { background: #F5F2EA; }
.section-alt {
  background: #ECE6D8;
  border-top: 1px solid rgba(31,41,28,.10);
  border-bottom: 1px solid rgba(31,41,28,.10);
}

.card,
.card-gradient,
.step-card,
.signal-card,
.faq-item,
.finder-result,
.panel,
.form-area,
.result,
.result-panel,
.simulator-shell,
.tool-meta,
.demo-card,
.simulator-card,
.choice-content,
.recommendation,
.status-card,
.metric,
.check-card,
.process-row,
.details,
.notice,
.interactive-home-hint,
.pilot-example-link,
.pilotfinder-shell {
  background: #FFFDF7;
  border-color: rgba(31,41,28,.12);
  box-shadow: var(--shadow-sm);
}
.card:hover,
.card-gradient:hover,
.step-card:hover,
.signal-card:hover,
.faq-item:hover,
.demo-card:hover,
.simulator-card:hover {
  border-color: rgba(111,135,55,.34);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.card-gradient::before { opacity: 0; }
.card-gradient:hover::before { opacity: .35; }

.offer-card,
.home-offers .offer-card,
.page-pilotmodule .pilot-pair .offer-card {
  background: #FFFDF7;
  border-color: rgba(31,41,28,.14);
}
.offer-card p,
.offer-card > p,
.step-card p,
.signal-card p,
.finder-result p:not(.eyebrow),
.faq-answer-inner p,
.tool-meta li,
.field small,
.mini-note,
.result-panel p,
.question-help,
.choice-hint,
.status-card p,
.profile-head span {
  color: var(--text-secondary);
}
.offer-card .ideal,
.muted,
.duration-note,
.form-note { color: var(--text-muted); }

.notice,
.notice-pricing,
.notice-compliance {
  background: #F7F1DD;
  border-color: rgba(111,135,55,.24);
  color: var(--text-secondary);
  box-shadow: none;
}
.notice-compliance {
  background: linear-gradient(135deg, #EFF1DD 0%, #F7F1DD 100%);
}
.notice strong,
.notice-pricing strong { color: var(--text); }

.highlight-card,
.cta-panel,
.interactive-cta-panel {
  background: linear-gradient(135deg, #50651F 0%, #126A99 100%);
  color: #fff;
  box-shadow: 0 18px 42px rgba(18,106,153,.18);
}
.highlight-card h2,
.highlight-card h3,
.highlight-card p,
.cta-panel h2,
.cta-panel p,
.interactive-cta-panel h2,
.interactive-cta-panel p { color: #fff; }

.btn-primary,
.nav-cta {
  background: #126A99;
  color: #fff;
  box-shadow: 0 10px 24px rgba(18,106,153,.18);
}
.btn-primary:hover,
.nav-cta:hover { background: #0F5D86 !important; }
.btn-secondary {
  color: var(--text);
  border-color: rgba(31,41,28,.20);
  background: rgba(255,255,255,.48);
}
.btn-secondary:hover {
  color: var(--text);
  background: #FFFDF7;
  border-color: rgba(111,135,55,.42);
}
.btn-ghost { color: #126A99; }
.btn-ghost:hover { color: #526A23; }

.offer-price,
.hero-price,
.offer-card .offer-price {
  color: #11180F;
  background: linear-gradient(135deg, #E4D063 0%, #AFC05A 100%);
  border-color: rgba(111,135,55,.34);
  box-shadow: 0 10px 28px rgba(124,114,33,.10);
}

.finder select,
.contact-form input,
.contact-form textarea,
.contact-form select,
.sim-layout input[type="number"],
.sim-layout input[type="text"],
.sim-layout input[type="file"],
.sim-layout input[type="email"],
.sim-layout input[type="tel"],
.sim-layout select,
.sim-layout textarea,
.simulator-shell input[type="number"],
.simulator-shell input[type="text"],
.simulator-shell input[type="file"],
.simulator-shell input[type="email"],
.simulator-shell input[type="tel"],
.simulator-shell select,
.simulator-shell textarea {
  background: #FFFDF7;
  color: var(--text);
  border-color: rgba(31,41,28,.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65);
}
.finder select:focus,
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus,
.sim-layout input:focus,
.sim-layout select:focus,
.sim-layout textarea:focus,
.simulator-shell input:focus,
.simulator-shell select:focus,
.simulator-shell textarea:focus {
  border-color: #176F9F;
  box-shadow: 0 0 0 3px rgba(23,111,159,.14);
}
.sim-layout select option,
.simulator-shell select option { background: #FFFDF7; color: var(--text); }

.choice-card:hover .choice-content,
.choice-card input:checked + .choice-content,
.finder-option.is-active {
  border-color: rgba(23,111,159,.45);
  background: #EEF5F2;
  color: var(--text);
}

.checklist li { color: var(--text-secondary); }
.checklist li::before { color: #6F8737; }
.step-num,
.signal-card .num {
  background: #126A99;
  color: #fff;
}

.central-demo-section {
  background: #ECE6D8;
}
.central-demo-section .ki-demo-player {
  box-shadow: 0 18px 48px rgba(8,9,12,.18);
}

@media (max-width: 768px) {
  .site-header .nav {
    background: rgba(8, 9, 12, .98);
  }
}

/* V18 Fine-Tuning */
.interactive-home-hint {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}
.interactive-home-hint h2 {
  color: var(--text);
}
.btn-secondary {
  background: #EDF4F1;
  border-color: rgba(18,106,153,.22);
  color: #12364A;
  box-shadow: 0 6px 18px rgba(18,106,153,.06);
}
.btn-secondary:hover {
  background: #E3EFEA;
  border-color: rgba(18,106,153,.38);
  color: #0F2E3F;
}
.card h3,
.step-card h3,
.offer-card h3 {
  overflow-wrap: anywhere;
  hyphens: auto;
}
@media (min-width: 980px) {
  .grid-4 .card h3,
  .grid-4 .step-card h3 {
    font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  }
}

/* V18 Compliance-Hinweis prominenter */
.notice-compliance {
  background: linear-gradient(135deg, #536B25 0%, #176F9F 100%);
  border-color: rgba(255,255,255,.18);
  color: #fff;
  box-shadow: 0 18px 42px rgba(18,106,153,.18);
}
.notice-compliance strong,
.notice-compliance span {
  color: #fff;
}
.notice-compliance .btn-ghost {
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.55);
}
.notice-compliance .btn-ghost:hover {
  color: #F1F7D9;
}

/* V18 klickbare Karten und Pilotkarten-Effekt */
.notice-link,
.offer-card-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.notice-link:hover,
.offer-card-link:hover {
  color: inherit;
}
.notice-compliance strong {
  display: block;
  font-size: clamp(1.08rem, 1.55vw, 1.35rem);
  line-height: 1.22;
}
.notice-link:focus-visible,
.offer-card-link:focus-visible {
  outline: 3px solid rgba(23,111,159,.38);
  outline-offset: 4px;
}
.home-offers .offer-card.offer-card-link {
  position: relative;
  border-color: rgba(23,111,159,.18);
  box-shadow: 0 16px 34px rgba(15,46,63,.08), inset 0 1px 0 rgba(255,255,255,.72);
  transform-style: preserve-3d;
}
.home-offers .offer-card.offer-card-link::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid rgba(23,111,159,0);
  box-shadow: 0 0 0 rgba(23,111,159,0);
  transition: border-color var(--transition), box-shadow var(--transition), opacity var(--transition);
}
.home-offers .offer-card.offer-card-link:hover,
.home-offers .offer-card.offer-card-link:focus-visible {
  border-color: rgba(23,111,159,.48);
  transform: translateY(-5px) perspective(900px) rotateX(1.2deg);
  box-shadow: 0 22px 46px rgba(15,46,63,.15), 0 10px 24px rgba(23,111,159,.10), inset 0 1px 0 rgba(255,255,255,.78);
}
.home-offers .offer-card.offer-card-link:hover::after,
.home-offers .offer-card.offer-card-link:focus-visible::after {
  border-color: rgba(23,111,159,.42);
  box-shadow: 0 0 22px rgba(23,111,159,.20);
}
.home-offers .offer-card.offer-card-link:hover .btn-ghost,
.home-offers .offer-card.offer-card-link:focus-visible .btn-ghost {
  color: #0F5D86;
}

/* V18 Korrektur klickbare Compliance-Box und Kartenumbruch */
.notice.notice-compliance.notice-link {
  display: block;
  width: 100%;
  margin: 28px 0 32px;
  padding: 26px 30px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #536B25 0%, #176F9F 100%);
}
.notice.notice-compliance.notice-link .btn-ghost {
  display: inline-flex;
  width: fit-content;
  margin-top: 14px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.home-offers .offer-card h3 {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
}
@media (min-width: 980px) {
  .home-offers .offer-card h3 {
    font-size: clamp(1rem, 1.2vw, 1.16rem);
  }
}

/* V18 Pfeile entfernen und Detailflächen beruhigen */
.btn-ghost::after,
.footer-link::after {
  content: none !important;
  display: none !important;
}
.btn-ghost:hover::after {
  transform: none;
}
.page-pilotmodule .notice-pricing,
.page-pilotmodule .pilot-note-final {
  background: #F5EFD9;
  border-color: rgba(111,135,55,.28);
  color: #22301A;
  box-shadow: 0 16px 38px rgba(65,57,28,.10);
}
.page-pilotmodule .notice-pricing strong,
.page-pilotmodule .pilot-note-final strong {
  color: #0D1B16;
}
.page-pilotmodule .notice-pricing span,
.page-pilotmodule .pilot-note-final span {
  color: #46533B;
}
.training-path-grid .highlight-card .btn-ghost {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 12px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #FFFDF7;
  color: #126A99;
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: 0 10px 24px rgba(8,9,12,.14);
}
.training-path-grid .highlight-card .btn-ghost:hover {
  background: #F1F7D9;
  color: #0F5D86;
}
.faq-list {
  max-width: 1120px;
}
.faq-item {
  margin-bottom: 12px;
  border: 1px solid rgba(31,41,28,.12);
  border-radius: var(--radius-md);
  background: #FFFDF7;
  box-shadow: 0 10px 28px rgba(31,41,28,.06);
  overflow: hidden;
}
.faq-question {
  padding: 22px 26px;
  color: #0D1B16;
}
.faq-question:hover {
  color: #126A99;
  background: #F8F3E5;
}
.faq-icon {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #EEF5F2;
  color: #126A99;
  font-size: 1.15rem;
  font-weight: 700;
}
.faq-answer-inner {
  padding: 0 26px 24px;
  color: #46533B;
}
.faq-item.is-open {
  border-color: rgba(18,106,153,.24);
  box-shadow: 0 16px 36px rgba(18,106,153,.10);
}
.faq-item.is-open .faq-question {
  background: #F8F3E5;
}


/* V18 Article-4 FAQ mit nativen Details */
.article4-faq-list {
  margin-top: 28px;
}
details.article4-faq-item {
  display: block;
}
details.article4-faq-item summary.faq-question {
  list-style: none;
}
details.article4-faq-item summary.faq-question::-webkit-details-marker {
  display: none;
}
details.article4-faq-item .faq-answer {
  max-height: none;
  overflow: visible;
}
details.article4-faq-item:not([open]) .faq-answer {
  display: none;
}
details.article4-faq-item[open] .faq-icon {
  transform: rotate(45deg);
}
details.article4-faq-item[open] .faq-question {
  background: #F8F3E5;
}
details.article4-faq-item[open] {
  border-color: rgba(18,106,153,.24);
  box-shadow: 0 16px 36px rgba(18,106,153,.10);
}
.article4-faq-item .faq-question strong {
  color: inherit;
}
