/* KI-Radar Landing v2. Design-Tokens aus lan.ch-Analyse. */

:root {
  --primary: #02A1DC;
  --primary-dark: #0184b8;
  --primary-soft: rgba(2, 161, 220, 0.08);
  --secondary: #003766;
  --secondary-dark: #002a4d;
  --text: #1a1f2c;
  --text-muted: #5a6270;
  --bg: #ffffff;
  --bg-soft: #f6f8fb;
  --bg-muted: #eef2f7;
  --border: #dce3ec;
  --white: #ffffff;
  --success: #1f8a3d;
  --error: #c81d3a;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 100px;

  --shadow-sm: 0 1px 2px rgba(0, 55, 102, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 55, 102, 0.08);
  --shadow-lg: 0 24px 48px rgba(0, 55, 102, 0.12);

  --font-sans: -apple-system, system-ui, "Helvetica Neue", "Calibri Light", Roboto, sans-serif;

  --container: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(15px, 1vw + 10px, 17px);
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
}

/* Accessibility helpers */
.visually-hidden,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  position: fixed;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  padding: 8px 12px;
  background: var(--primary);
  color: var(--white);
  clip: auto;
  border-radius: var(--radius-sm);
  z-index: 999;
}

/* Typography */
h1, h2, h3, h4, h5 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--secondary);
}
h1 { font-size: clamp(32px, 5vw, 56px); line-height: 1.05; }
h2 { font-size: clamp(26px, 3.4vw, 40px); margin-bottom: 12px; }
h3 { font-size: clamp(18px, 1.6vw, 22px); }
h4 { font-size: 17px; }
h5 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); }
p { margin: 0 0 1em; color: var(--text-muted); }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }

/* Navigation, pill-style */
.nav-wrap {
  position: fixed;
  top: 24px;
  left: 0;
  right: 0;
  z-index: 100;
  pointer-events: none;
}
.nav-wrap > .container { pointer-events: none; }
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 14px 14px 28px;
  background: rgba(49, 75, 114, 0.55);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  backdrop-filter: saturate(140%) blur(10px);
  border-radius: 100px;
  pointer-events: auto;
}
.logo {
  display: inline-flex;
  align-items: center;
  font-weight: 900;
  font-size: 22px;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
  flex-shrink: 0;
}
.logo-img {
  height: 28px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.logo-img-footer {
  height: 28px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.nav-links {
  display: flex;
  gap: clamp(4px, 0.6vw, 10px);
  align-items: center;
}
.nav-links a {
  color: var(--white);
  font-weight: 400;
  font-size: 15px;
  padding: 10px 16px;
  border-radius: 100px;
  line-height: 1;
  transition: background 0.18s ease, color 0.18s ease;
}
.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}
.btn-nav-cta {
  background: var(--primary);
  color: var(--white) !important;
  font-weight: 600;
  padding: 12px 24px !important;
  border-radius: 100px;
  margin-left: 8px;
}
.btn-nav-cta:hover {
  background: var(--primary-dark);
  color: var(--white) !important;
}

/* Sprachumschalter DE / FR */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  margin-left: 2px;
}
.lang-switch a {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 9px;
  border-radius: 100px;
  line-height: 1;
  transition: background 0.18s ease, color 0.18s ease;
}
.lang-switch a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}
.lang-switch a.lang-active {
  color: var(--white);
  pointer-events: none;
}
.lang-switch .lang-sep {
  color: rgba(255, 255, 255, 0.35);
  font-size: 13px;
  user-select: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.btn-sm { padding: 8px 18px; font-size: 14px; }
.btn-lg { padding: 14px 32px; font-size: 16px; }
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-primary:disabled {
  background: var(--text-muted);
  cursor: not-allowed;
  transform: none;
}
.btn-ghost {
  background: transparent;
  color: var(--secondary);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: var(--bg-muted);
  color: var(--secondary);
}

/* Eyebrow */
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

/* Section heads */
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(32px, 5vw, 56px);
}
.section-head p {
  font-size: clamp(15px, 1.1vw, 18px);
  color: var(--text-muted);
}

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  color: var(--white);
  padding: clamp(140px, 14vw, 200px) 0 clamp(60px, 10vw, 120px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(2, 161, 220, 0.25), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero .eyebrow { color: var(--primary); }
.hero .lead {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(16px, 1.4vw, 19px);
  margin-bottom: 28px;
  max-width: 620px;
  line-height: 1.55;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.hero-ctas .btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
}
.hero-ctas .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}
.hero-meta {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13.5px;
  margin: 0;
}
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 340px;
}
.radar-svg-embed {
  width: min(420px, 100%);
  height: auto;
  max-height: 100%;
  display: block;
  filter: drop-shadow(0 16px 48px rgba(2, 161, 220, 0.2));
  animation: radar-pulse 4.5s ease-in-out infinite;
}
@keyframes radar-pulse {
  0%, 100% { opacity: 0.92; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.015); }
}
@media (prefers-reduced-motion: reduce) {
  .radar-svg-embed { animation: none; }
}
.hero-video {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  background: #001626;
  display: block;
}

/* TRUST */
.trust {
  padding: clamp(40px, 6vw, 80px) 0;
  background: var(--bg-soft);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(16px, 3vw, 32px);
}
.trust-item {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.trust-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.trust-icon svg { width: 28px; height: 28px; }
.trust-item h3 { margin-bottom: 8px; font-size: 20px; }
.trust-item p { margin: 0; font-size: 15px; }

/* BRANCHEN-PICKER */
.branchen {
  padding: clamp(60px, 8vw, 100px) 0;
}
.branchen-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 32px;
}
.branchen-tab {
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  background: var(--bg-muted);
  border: 1px solid transparent;
  color: var(--text);
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.branchen-tab:hover {
  background: var(--white);
  border-color: var(--border);
}
.branchen-tab[aria-selected="true"] {
  background: var(--primary);
  color: var(--white);
}
.branchen-panel {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
  max-width: 980px;
  margin: 0 auto;
}
.branchen-cases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(14px, 2vw, 22px);
}
.branchen-case {
  background: var(--white);
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.branchen-case h4 {
  margin: 0 0 8px;
  font-size: 17px;
  color: var(--secondary);
}
.branchen-case p {
  font-size: 14.5px;
  margin: 0 0 16px;
  flex-grow: 1;
}
.aufwand-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  align-self: flex-start;
}
.aufwand-niedrig { background: rgba(31, 138, 61, 0.12); color: var(--success); }
.aufwand-mittel { background: rgba(2, 161, 220, 0.12); color: var(--primary); }
.aufwand-hoch { background: rgba(200, 29, 58, 0.10); color: var(--error); }

/* ROI-RECHNER */
.rechner {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--bg-soft);
}
.rechner-card {
  max-width: 960px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.rechner-grid {
  padding: clamp(24px, 4vw, 40px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(20px, 3vw, 32px);
}
.slider-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.slider-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}
.slider-group label output {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  font-variant-numeric: tabular-nums;
}
.slider-group input[type="range"] {
  width: 100%;
  height: 6px;
  border-radius: var(--radius-pill);
  background: var(--bg-muted);
  appearance: none;
  -webkit-appearance: none;
  outline: none;
}
.slider-group input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 2px 6px rgba(2, 161, 220, 0.4);
  cursor: grab;
  border: 2px solid var(--white);
}
.slider-group input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 2px 6px rgba(2, 161, 220, 0.4);
  cursor: grab;
  border: 2px solid var(--white);
}
.slider-meta {
  display: flex;
  justify-content: space-between;
  font-size: 11.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.rechner-output {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  color: var(--white);
  padding: clamp(24px, 4vw, 36px);
  text-align: center;
}
.rechner-output-num {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}
.rechner-output-currency {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}
.rechner-output-num #rechner-result {
  font-size: clamp(40px, 6vw, 56px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.rechner-output-period {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}
.rechner-output-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  margin: 0 0 16px;
}
.rechner-output-text strong { color: var(--white); }
.rechner-transparenz {
  margin: 0 auto;
  max-width: 600px;
  text-align: left;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
}
.rechner-transparenz summary {
  cursor: pointer;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 0;
}
.rechner-transparenz summary::-webkit-details-marker { display: none; }
.rechner-transparenz summary::before {
  content: '+';
  font-size: 18px;
  font-weight: 400;
  transition: transform 0.18s ease;
}
.rechner-transparenz[open] summary::before {
  content: '−';
}
.rechner-transparenz ul {
  margin: 10px 0 0;
  padding-left: 20px;
  list-style: disc;
}
.rechner-transparenz li { margin-bottom: 6px; }

/* ABLAUF / Timeline */
.ablauf {
  padding: clamp(60px, 8vw, 100px) 0;
}
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
.timeline li {
  background: var(--white);
  padding: 28px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  position: relative;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.timeline li:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.tl-day {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 11.5px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}
.timeline h4 { margin-bottom: 8px; }
.timeline p { margin: 0 0 8px; font-size: 14px; }
.tl-aufwand {
  margin-top: 12px !important;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 13px !important;
  font-weight: 600;
  color: var(--primary) !important;
}

/* QUIZ */
.quiz-section {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--bg-soft);
}
.quiz-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.quiz-progress {
  height: 4px;
  background: var(--bg-muted);
}
.quiz-progress-bar {
  height: 100%;
  background: var(--primary);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.quiz-body {
  padding: clamp(32px, 5vw, 48px);
  min-height: 360px;
}
.quiz-question {
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 24px;
  line-height: 1.3;
}
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.quiz-option {
  display: block;
  width: 100%;
  text-align: left;
  padding: 14px 20px;
  background: var(--bg-soft);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  cursor: pointer;
  transition: all 0.12s ease;
}
.quiz-option:hover {
  background: var(--white);
  border-color: var(--primary);
}
.quiz-option.selected {
  background: var(--primary-soft);
  border-color: var(--primary);
  color: var(--secondary);
  font-weight: 600;
}
.quiz-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}
.quiz-nav-label {
  font-size: 13px;
  color: var(--text-muted);
}
.quiz-intro h3, .quiz-result h3 {
  font-size: clamp(22px, 2vw, 28px);
  margin-bottom: 12px;
}
.quiz-intro p, .quiz-result p {
  font-size: 16px;
}
.quiz-result-cards {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}
.quiz-result-card {
  padding: 16px 20px;
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--primary);
}
.quiz-result-card h4 {
  color: var(--secondary);
  margin-bottom: 4px;
  font-size: 16px;
}
.quiz-result-card p {
  margin: 0;
  font-size: 14px;
}
.quiz-result-aside {
  font-size: 15px;
  color: var(--text);
  line-height: 1.55;
  margin: 20px 0 0;
  padding: 16px 18px;
  background: var(--primary-soft);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--primary);
}
.quiz-result-optout {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-top: 12px;
  font-style: italic;
}

/* PREIS */
.preis {
  padding: clamp(60px, 8vw, 100px) 0;
}
.preis-card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 48px);
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.preis-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, var(--primary-soft), transparent 65%);
  pointer-events: none;
}
.preis-tag {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}
.preis-amount {
  font-size: clamp(40px, 6vw, 60px);
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.preis-period {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.preis-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 24px;
  max-width: 460px;
  text-align: left;
}
.preis-list li {
  padding: 12px 0 12px 32px;
  position: relative;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 15px;
}
.preis-list li:last-child { border-bottom: 0; }
.preis-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--primary);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
}
.preis-note {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
  max-width: 480px;
  margin: 0 auto 24px;
}

/* FAQ */
.faq {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--bg-soft);
}
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}
.faq-list details {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  color: var(--secondary);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  font-size: 22px;
  color: var(--primary);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.faq-list details[open] summary::after {
  content: '−';
}
.faq-list details p {
  margin-top: 10px;
  font-size: 15px;
  color: var(--text-muted);
}

/* CTA / FORM */
.cta {
  padding: clamp(60px, 10vw, 120px) 0 clamp(80px, 10vw, 120px);
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  color: var(--white);
}
.cta-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.cta h2 { color: var(--white); margin-bottom: 12px; }
.cta p { color: rgba(255, 255, 255, 0.85); margin-bottom: 32px; }
.cta-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}
.hp-wrap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
}
.form-progress-step {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.2s ease;
}
.form-progress-step.active {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 0 0 4px rgba(2, 161, 220, 0.25);
}
.form-progress-step.done {
  background: var(--success);
  color: var(--white);
}
.form-progress-line {
  flex: 0 0 60px;
  height: 2px;
  background: rgba(255, 255, 255, 0.18);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.cta-form label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.textarea-label { grid-column: 1 / -1; }
.cta-form input, .cta-form select, .cta-form textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  transition: all 0.12s ease;
}
.cta-form input:focus, .cta-form select:focus, .cta-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.14);
}
.cta-form input.invalid, .cta-form select.invalid {
  border-color: #ff8aa0;
  background: rgba(200, 29, 58, 0.12);
}
.cta-form select option { background: var(--secondary); }
.cta-form textarea { resize: vertical; min-height: 80px; }
.field-error {
  font-size: 12px;
  color: #ffc3cf;
  min-height: 16px;
  font-weight: 500;
}
.form-step-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}
.form-step-info {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}
.cta-form .btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
}
.cta-form .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}
.form-success {
  text-align: center;
  padding: 32px 24px;
  background: rgba(31, 138, 61, 0.15);
  border-radius: var(--radius-md);
  border: 1px solid rgba(31, 138, 61, 0.35);
}
.form-success h3 {
  color: var(--white);
  margin-bottom: 8px;
}
.form-success p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}
.form-error {
  padding: 14px 18px;
  background: rgba(200, 29, 58, 0.18);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(200, 29, 58, 0.4);
  color: #ffc3cf;
  font-size: 14px;
  margin: 8px 0 0;
}
.form-note {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  margin: 8px 0 0;
}
.form-note a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
}

/* SLOT-BAR */
.slot-bar {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 90;
  background: var(--secondary);
  color: var(--white);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-lg);
  max-width: calc(100vw - 32px);
  animation: slot-bar-in 0.4s ease-out;
}
@keyframes slot-bar-in {
  from { transform: translate(-50%, 30px); opacity: 0; }
  to { transform: translate(-50%, 0); opacity: 1; }
}
.slot-bar-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 8px 8px 22px;
  max-width: 100%;
  padding-left: 22px;
  padding-right: 8px;
}
.slot-bar-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
}
.slot-bar-text strong {
  color: var(--primary);
  font-weight: 700;
}
.slot-bar-close {
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 50%;
  transition: background 0.15s ease, color 0.15s ease;
}
.slot-bar-close:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

/* FOOTER, simple */
.footer {
  background: var(--secondary-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 36px 0 24px;
  font-size: 14px;
}
.footer-grid-simple {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-brand .logo-img-footer {
  height: 28px;
}
.footer-tag {
  font-size: 13.5px;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  max-width: 360px;
}
.footer-meta {
  text-align: right;
}
.footer-meta p { margin: 0 0 4px; }
.footer-meta a {
  color: rgba(255, 255, 255, 0.8);
}
.footer-meta a:hover { color: var(--primary); }
.footer-meta .sep {
  color: rgba(255, 255, 255, 0.3);
  margin: 0 8px;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

/* RESPONSIVE */
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: auto; }
  .radar-svg-embed { width: min(280px, 70%); }
  .hero-video { max-width: 100%; }
  .nav-links > a:not(.btn) { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid-simple { flex-direction: column; align-items: flex-start; text-align: left; }
  .footer-meta { text-align: left; }
  .branchen-tabs { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 6px; -webkit-overflow-scrolling: touch; }
  .branchen-tab { flex-shrink: 0; }
}

@media (max-width: 500px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .slot-bar {
    left: 8px;
    right: 8px;
    bottom: 8px;
    transform: none;
    border-radius: 14px;
    max-width: none;
  }
  .slot-bar-inner {
    padding: 10px 8px 10px 14px;
    gap: 8px;
    width: 100%;
  }
  .slot-bar-text {
    font-size: 13px;
    flex: 1;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .slot-bar .btn { padding: 7px 14px; font-size: 13px; }
  .slot-bar-close { padding: 4px 8px; font-size: 20px; }
  .preis-tag { flex-direction: column; gap: 4px; }
  .footer-brand .logo-img-footer { height: 24px; }
}

/* === FOTO-INTEGRATION (Variante durchgaengig) === */
/* ============================================================
   FOTO-KOMPONENTEN  (additiv, nutzt nur bestehende lan.ch-Tokens)
   Verändert die bestehende Landing NICHT, fügt nur die Bausteine
   für die Foto-Integration hinzu.
   ============================================================ */

/* Edel gerahmtes Foto: weicher neutral-ambienter Schatten, Marken-Radius.
   Das ::after gibt minimale Tiefe, damit ein Foto nie "flach aufgeklebt" wirkt. */
.ph-frame{
  position:relative;
  border-radius:var(--radius-lg);
  overflow:hidden;
  background:var(--bg-muted);
  box-shadow:0 30px 70px -24px rgba(0,55,102,.40), 0 4px 14px rgba(0,55,102,.06);
  isolation:isolate;
}
.ph-frame img{display:block;width:100%;height:100%;object-fit:cover}
.ph-frame::after{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:linear-gradient(180deg,rgba(0,55,102,.05) 0%,transparent 26%,rgba(0,55,102,.12) 100%);
  mix-blend-mode:multiply;
}

/* Schwebende Fakten-Karte über einem Foto (Premium-Pattern) */
.ph-stat{
  position:absolute;left:18px;bottom:18px;z-index:2;
  display:flex;align-items:center;gap:12px;
  background:rgba(255,255,255,.95);
  -webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);
  border-radius:14px;padding:12px 16px;
  box-shadow:0 18px 40px rgba(0,55,102,.22);
  max-width:calc(100% - 36px);
}
.ph-stat-ic{
  width:40px;height:40px;border-radius:11px;flex-shrink:0;
  background:var(--primary-soft);color:var(--primary);
  display:grid;place-items:center;
}
.ph-stat-ic svg{width:22px;height:22px}
.ph-stat-num{font-weight:800;font-size:21px;color:var(--secondary);line-height:1.05;font-variant-numeric:tabular-nums}
.ph-stat-lbl{font-size:12.5px;color:var(--text-muted);line-height:1.3;margin:0}

/* Bild-Bildunterschrift, dezent */
.ph-cap{font-size:12.5px;color:var(--text-muted);margin:12px 0 0;font-style:italic;text-align:center}

/* ---------- Berater-/Workshop-Band (eine starke menschliche Stelle) ---------- */
.advisor{padding:clamp(56px,8vw,100px) 0}
.advisor-grid{
  display:grid;grid-template-columns:1fr 1.02fr;
  gap:clamp(28px,5vw,68px);align-items:center;
}
.advisor .ph-frame{aspect-ratio:16/11}
.advisor-copy .eyebrow{margin-bottom:14px}
.advisor-copy h2{margin-bottom:14px}
.advisor-copy p{font-size:clamp(15px,1.1vw,17px)}
.advisor-points{list-style:none;margin:18px 0 0;padding:0;display:flex;flex-direction:column;gap:12px}
.advisor-points li{position:relative;padding-left:30px;color:var(--text);font-size:15px}
.advisor-points li::before{
  content:"";position:absolute;left:0;top:2px;width:20px;height:20px;border-radius:50%;
  background:var(--primary-soft);
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5 10.5l3 3 7-7' fill='none' stroke='%2302A1DC' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:center;
}

/* ---------- Media-Split (Foto neben Inhalt, alternierend) ---------- */
.media-split{
  display:grid;grid-template-columns:1fr 1fr;
  gap:clamp(24px,4vw,60px);align-items:center;
  max-width:1080px;margin:0 auto;
}
.media-split.rev .ms-media{order:2}
.media-split .ph-frame{aspect-ratio:4/3}

/* ---------- Foto auf Timeline-Schritt-Karte ---------- */
.timeline li.has-photo{padding-top:0;overflow:hidden}
.tl-photo{
  display:block;width:calc(100% + 50px);height:168px;
  margin:0 -25px 20px;object-fit:cover;
}
.timeline li.has-photo > .tl-day{margin-top:4px}
@media(max-width:880px){.tl-photo{height:200px}}

/* ---------- Hero-Foto-Poster (ersetzt das Video NICHT, ist sein Standbild) ---------- */
/* nutzt die bestehende .hero-player-Struktur, nur ein anderes Poster-Bild */

/* ---------- Duotone-Brand-Behandlung (Foto wird unverkennbar LAN) ---------- */
.ph-duo::before{
  content:"";position:absolute;inset:0;z-index:1;pointer-events:none;
  background:linear-gradient(135deg,rgba(0,55,102,.34) 0%,rgba(2,161,220,.20) 100%);
  mix-blend-mode:screen;
}
.ph-duo.ph-frame::after{
  background:linear-gradient(180deg,rgba(0,55,102,.10),transparent 30%,rgba(0,40,80,.22));
}

/* ---------- CTA mit Foto-Hintergrund (humanisiert das Formular) ---------- */
.cta.cta--photo{position:relative;overflow:hidden}
.cta.cta--photo::before{
  content:"";position:absolute;inset:0;z-index:0;
  background:linear-gradient(135deg,rgba(0,55,102,.92),rgba(0,42,77,.86)),
             var(--cta-photo, url('/assets/workshop-duo.jpg')) center/cover no-repeat;
}
@supports (background-image: image-set(url("x.webp") type("image/webp"))) {
  .cta.cta--photo::before{
    background:linear-gradient(135deg,rgba(0,55,102,.92),rgba(0,42,77,.86)),
               image-set(
                 url('/assets/workshop-duo.avif') type('image/avif'),
                 url('/assets/workshop-duo.webp') type('image/webp'),
                 url('/assets/workshop-duo.jpg') type('image/jpeg')
               ) center/cover no-repeat;
  }
}
.cta.cta--photo .container{position:relative;z-index:1}

/* ---------- Responsive ---------- */
@media(max-width:880px){
  .advisor-grid{grid-template-columns:1fr;gap:28px}
  .advisor .ph-frame{aspect-ratio:16/10}
  .media-split{grid-template-columns:1fr;gap:24px}
  .media-split.rev .ms-media{order:0}
}


/* === ABLAUF ICON-STEPS (Variante C) === */
.isteps{list-style:none;margin:0 auto;padding:0;max-width:1000px;display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(16px,3vw,30px);position:relative}
.isteps::before{content:"";position:absolute;top:38px;left:16%;right:16%;height:2px;background:linear-gradient(90deg,var(--primary),var(--border),var(--primary));opacity:.45;z-index:0}
.istep{position:relative;z-index:1;text-align:center;padding:0 6px}
.istep-badge{width:76px;height:76px;border-radius:50%;margin:0 auto 18px;background:#fff;border:2px solid var(--primary);display:grid;place-items:center;color:var(--primary);box-shadow:0 10px 30px rgba(0,55,102,.10);position:relative}
.istep-badge svg{width:34px;height:34px}
.istep-num{position:absolute;top:-6px;right:-6px;width:26px;height:26px;border-radius:50%;background:var(--secondary);color:#fff;font-size:13px;font-weight:800;display:grid;place-items:center;border:2px solid #fff}
.istep .tl-day{margin-bottom:10px}
.istep h4{margin:0 0 6px}
.istep p{font-size:14px;margin:0 0 8px}
.istep .tl-aufwand{display:inline-block}
@media(max-width:760px){
  .isteps{grid-template-columns:1fr;gap:8px}
  .isteps::before{left:30px;top:18px;bottom:18px;right:auto;width:2px;height:auto;background:linear-gradient(180deg,var(--primary),var(--border))}
  .istep{display:grid;grid-template-columns:auto 1fr;gap:16px;text-align:left;align-items:start;padding:12px 0}
  .istep-badge{margin:0;width:60px;height:60px}
  .istep-body{padding-top:4px}
  .istep .tl-day{margin-top:0;margin-bottom:8px}
}
