/* =========================================================
   Mativco – Landingpage für Ausbildungsbetriebe
   Typografie: Bricolage Grotesque (Headlines) + Rethink Sans (Text)
   ========================================================= */

:root {
  /* Schriften – Body-Font ist über diese eine Variable austauschbar */
  --font-display: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Rethink Sans", "Helvetica Neue", Arial, sans-serif;

  /* Farben */
  --bg: #fdfdfd;
  --bg-soft: #f5f4f2;
  --ink: #0a0a0a;
  --body: #494949;
  --muted: #7a7a7a;
  --line: #e6e4e0;
  --dark: #0b0b0b;
  --dark-soft: #161616;
  --dark-line: #262626;

  /* Markenverlauf (Embers) */
  --brand-1: #ffb46b;
  --brand-2: #ff6a5e;
  --brand-3: #e8318a;
  --brand-4: #7b4dff;

  /* Maße */
  --radius: 7px;
  --radius-lg: 20px;
  --wrap: 1240px;
  --section-y: clamp(72px, 9vw, 132px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--body);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, .logo-word, .price-value b, .count, .num, .step-label {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 800;
  font-style: normal;      /* bewusst aufrecht statt kursiv */
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
  font-variation-settings: "opsz" 48;
}

h1 { font-size: clamp(44px, 6.4vw, 90px); letter-spacing: -0.035em; }
h2 { font-size: clamp(32px, 4.4vw, 62px); }
h3 { font-size: clamp(20px, 1.6vw, 24px); letter-spacing: -0.02em; line-height: 1.2; }
h4 { font-size: 15px; letter-spacing: -0.01em; }

p { margin: 0 0 18px; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 24px;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.lede { font-size: clamp(17px, 1.3vw, 19px); color: var(--body); max-width: 62ch; }
.note { font-size: 14px; color: var(--muted); }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  border: 1px solid transparent;
  transition: transform .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn .arrow { transition: transform .18s ease; }
.btn:hover .arrow { transform: translateX(3px); }

.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #222; }

.btn-outline { border-color: rgba(10,10,10,.18); color: var(--ink); background: transparent; }
.btn-outline:hover { border-color: var(--ink); background: rgba(10,10,10,.04); }

.btn-ghost { border-color: var(--line); background: #fff; color: var(--ink); }
.btn-ghost:hover { border-color: rgba(10,10,10,.3); }

.btn-lg { padding: 16px 22px; font-size: 14px; }
.btn-block { display: flex; justify-content: center; width: 100%; }

.link {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 14px; font-weight: 600; color: var(--ink);
}
.link:hover .arrow { transform: translateX(3px); }
.link .arrow { transition: transform .18s ease; }

/* ---------------- Header: schwebende Pille ---------------- */
.site-header {
  position: fixed; top: 14px; left: 0; right: 0; z-index: 60;
  padding-inline: 20px;
  pointer-events: none;                 /* nur die Pille selbst faengt Klicks */
}
.site-header > * { pointer-events: auto; }

.header-bar {
  display: flex; align-items: center; gap: 28px;
  width: 100%; max-width: 1180px; margin-inline: auto;
  height: 66px; padding: 0 10px 0 26px;
  background: rgba(253,253,253,.72);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(10,10,10,.07);
  border-radius: 999px;
  box-shadow: 0 1px 2px rgba(10,10,10,.04), 0 12px 34px -18px rgba(10,10,10,.28);
  transition: box-shadow .25s ease, background-color .25s ease, border-color .25s ease;
}
.site-header.is-stuck .header-bar {
  background: rgba(253,253,253,.9);
  border-color: rgba(10,10,10,.1);
  box-shadow: 0 1px 2px rgba(10,10,10,.05), 0 18px 44px -20px rgba(10,10,10,.38);
}

.logo { display: inline-flex; align-items: center; }
.logo img { height: 24px; width: auto; display: block; }

.nav { display: flex; align-items: center; gap: 24px; margin-inline: auto; }
.nav > a, .nav-drop-trigger {
  font-family: var(--font-body); font-size: 15px; font-weight: 500;
  color: var(--body); background: none; border: 0; padding: 0; cursor: pointer;
}
.nav > a:hover, .nav-drop-trigger:hover { color: var(--ink); }
.nav > a.is-active { color: var(--ink); font-weight: 600; }

/* Dropdown "Fuer Betriebe" */
.nav-drop { position: relative; }
.nav-drop-trigger { display: inline-flex; align-items: center; gap: 6px; }
.chev {
  width: 7px; height: 7px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg); transition: transform .2s ease;
}
.nav-drop.is-open .chev { transform: translateY(1px) rotate(-135deg); }

.nav-menu {
  position: absolute; top: calc(100% + 22px); left: -18px;
  width: 340px; padding: 10px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(10,10,10,.08); border-radius: 26px;
  box-shadow: 0 28px 60px -28px rgba(10,10,10,.4);
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.nav-drop.is-open .nav-menu { opacity: 1; visibility: visible; transform: none; }
.nav-menu a { display: block; padding: 12px 16px; border-radius: 18px; }
.nav-menu a:hover, .nav-menu a.is-active { background: var(--bg-soft); }
.nav-menu b { display: block; font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--ink); letter-spacing: -.02em; }
.nav-menu span { display: block; font-size: 13px; color: var(--muted); margin-top: 2px; }
.nav-menu-foot { margin-top: 6px; padding-top: 14px !important; border-top: 1px solid var(--line); border-radius: 0 0 18px 18px !important; }

.header-cta { display: flex; gap: 8px; }
.btn-pill { border-radius: 999px; }

.burger {
  display: none; width: 46px; height: 46px; margin-left: auto;
  border: 1px solid rgba(10,10,10,.1); border-radius: 999px;
  background: #fff; cursor: pointer;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.burger span { display: block; width: 16px; height: 1.5px; background: var(--ink); }

.mobile-nav[hidden] { display: none; }
.mobile-nav {
  display: flex; flex-direction: column; gap: 2px;
  width: 100%; max-width: 1180px; margin: 10px auto 0;
  padding: 18px 26px 24px;
  background: rgba(253,253,253,.96);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(10,10,10,.08); border-radius: 30px;
  box-shadow: 0 24px 54px -24px rgba(10,10,10,.4);
  max-height: calc(100dvh - 120px); overflow-y: auto;
}
.mobile-nav a:not(.btn) { padding: 12px 0; font-weight: 500; border-bottom: 1px solid var(--line); }
.mobile-nav .btn { margin-top: 12px; justify-content: center; }
.mobile-label {
  margin: 20px 0 2px; font-size: 12px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
}

/* ---------------- Hero ---------------- */
.hero { position: relative; padding: clamp(124px, 12vw, 168px) 0 clamp(64px, 8vw, 120px); overflow: hidden; }

.hero-gradient {
  position: absolute; inset: -20% -10% auto -10%;
  height: 900px;
  background:
    radial-gradient(58% 52% at 22% 42%, rgba(255,180,107,.85), transparent 62%),
    radial-gradient(52% 48% at 48% 58%, rgba(255,106,94,.75), transparent 60%),
    radial-gradient(48% 46% at 68% 40%, rgba(232,49,138,.55), transparent 62%),
    radial-gradient(56% 60% at 88% 70%, rgba(123,77,255,.42), transparent 62%);
  filter: blur(28px);
  opacity: .85;
  pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 240px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}

.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center;
}
.hero-copy .lede { margin: 26px 0 32px; max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* Phone-Mockups */
.hero-visual { position: relative; }
.phone {
  position: absolute;
  border-radius: 38px;
  background: #0d0d0d;
  padding: 9px;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.4) inset;
}
.phone-front { width: 268px; height: 545px; left: 4%; top: 8px; transform: rotate(-4deg); z-index: 2; }
.phone-back  { width: 250px; height: 505px; right: 0; top: 46px; transform: rotate(6deg); z-index: 1; }

.phone-screen {
  height: 100%; border-radius: 30px; background: #fff; overflow: hidden;
  padding: 14px 12px; display: flex; flex-direction: column; gap: 9px;
}
.phone-notch {
  position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  width: 82px; height: 20px; border-radius: 12px; background: #0d0d0d; z-index: 3;
}

.app-bar { display: flex; align-items: center; gap: 5px; padding-top: 12px; }
.app-logo { height: 13px; width: auto; display: block; }
.app-dots { margin-left: auto; width: 34px; height: 6px; border-radius: 3px; background: #ececec; }

.app-cover {
  height: 96px; border-radius: 10px;
  background: linear-gradient(130deg, #2f4a6d, #6d8fb3 55%, #c9a37a);
}
.app-club { display: flex; align-items: center; gap: 8px; margin-top: -26px; padding-left: 8px; position: relative; }
.club-badge {
  width: 34px; height: 34px; border-radius: 50%; flex: none;
  background: linear-gradient(140deg, var(--brand-3), var(--brand-4));
  border: 2px solid #fff;
}
.club-lines { display: flex; flex-direction: column; gap: 4px; flex: 1; padding-top: 14px; }
.club-lines b { display: block; height: 8px; width: 62%; border-radius: 4px; background: #cfcfcf; }
.club-lines i { display: block; height: 5px; width: 40%; border-radius: 3px; background: #e2e2e2; }

.app-text { display: flex; flex-direction: column; gap: 5px; }
.app-text i { display: block; height: 5px; border-radius: 3px; background: #e6e6e6; }

.app-btn {
  font-family: var(--font-body); font-size: 9px; font-weight: 600; color: #fff;
  background: var(--ink); border-radius: 6px; padding: 7px; text-align: center;
}
.app-stats { display: flex; gap: 6px; }
.app-stats span {
  flex: 1; border: 1px solid #eee; border-radius: 8px; padding: 5px 4px; text-align: center;
}
.app-stats b { display: block; font-family: var(--font-display); font-size: 11px; color: var(--ink); }
.app-stats i { font-style: normal; font-size: 6px; color: var(--muted); }

.app-feed { display: flex; flex-direction: column; gap: 7px; margin-top: 2px; }
.feed-row { display: flex; gap: 7px; align-items: center; }
.fp { width: 34px; height: 26px; border-radius: 6px; flex: none; background: linear-gradient(140deg,#8fa9c4,#4a6c8f); }
.fp2 { background: linear-gradient(140deg,#e3b591,#b5765a); }
.fp3 { background: linear-gradient(140deg,#a9c4a1,#5e8a6a); }
.fl { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.fl i { display: block; height: 4px; border-radius: 2px; background: #e6e6e6; }

.grid-photos {
  height: 100%; display: grid; grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 74px; gap: 5px; padding-top: 6px; align-content: start;
}
.ph { border-radius: 5px; display: block; }
.ph-a { background: linear-gradient(140deg,#8fa9c4,#4a6c8f); }
.ph-b { background: linear-gradient(140deg,#e3b591,#b5765a); }
.ph-c { background: linear-gradient(140deg,#a9c4a1,#5e8a6a); }
.ph-d { background: linear-gradient(140deg,#c8c2d8,#7d6f9c); }
.ph-e { background: linear-gradient(140deg,#f0c9a8,#d08f6a); }
.ph-f { background: linear-gradient(140deg,#9fb8c9,#5c7c92); }

/* ---------------- Logostrip ---------------- */
.logostrip { padding: 8px 0 var(--section-y); }
.strip-label { text-align: center; font-size: 14px; color: var(--muted); margin-bottom: 26px; }
.strip-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.strip-track { display: flex; gap: 56px; width: max-content; animation: marquee 40s linear infinite; }
.strip-track span {
  font-family: var(--font-display); font-weight: 700; font-size: 19px;
  color: #b9b6b1; letter-spacing: -.02em; white-space: nowrap;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------------- Sections ---------------- */
.section { padding: var(--section-y) 0; }
.section.soft { background: var(--bg-soft); }

.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head .lede { margin-top: 20px; }
.section-head .btn { margin-top: 26px; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.two-col .btn { margin-top: 8px; }

/* Stats */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: 72px; padding-top: 48px; border-top: 1px solid var(--line);
}
.stat b, .stat .suffix {
  font-family: var(--font-display); font-size: clamp(38px, 4vw, 56px);
  font-weight: 800; color: var(--ink); letter-spacing: -.04em;
}
.stat p { font-size: 14px; color: var(--muted); margin: 6px 0 0; }

/* Dark Section */
.section.dark { background: var(--dark); color: #b5b5b5; }
.section.dark h2, .section.dark h3 { color: #fff; }
.section.dark .eyebrow { color: #8a8a8a; }
.section.dark .lede { color: #b5b5b5; }

.app-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.app-card {
  background: var(--dark-soft); border: 1px solid var(--dark-line);
  border-radius: var(--radius-lg); padding: 32px 28px;
  transition: border-color .2s ease, transform .2s ease;
}
.app-card:hover { border-color: #3a3a3a; transform: translateY(-3px); }
.app-card .num {
  display: block; font-size: 13px; font-weight: 700; letter-spacing: .1em;
  background: linear-gradient(100deg, var(--brand-2), var(--brand-3), var(--brand-4));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 18px;
}
.app-card h3 { margin-bottom: 12px; }
.app-card p { font-size: 15px; margin: 0; }

/* Value Cards */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 30px; transition: transform .2s ease, box-shadow .2s ease;
}
.value-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -28px rgba(0,0,0,.25); }
.ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 12px; margin-bottom: 22px;
  background: linear-gradient(140deg, rgba(255,180,107,.28), rgba(232,49,138,.22), rgba(123,77,255,.24));
}
.ico svg { width: 22px; height: 22px; fill: none; stroke: var(--ink); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.value-card h3 { margin-bottom: 12px; }
.value-card p { font-size: 15px; }

/* Funktionen */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.feature { background: var(--bg-soft); padding: 36px 30px; transition: background-color .2s ease; }
.feature:hover { background: #fff; }
.feature h3 { margin-bottom: 10px; }
.feature p { font-size: 15px; margin: 0; }

/* Schritte */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: step; }
.step { position: relative; padding-top: 28px; border-top: 2px solid var(--ink); }
.step-label { display: block; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; font-weight: 700; }
.step h3 { margin-bottom: 10px; }
.step p { font-size: 15px; margin: 0; }

/* Preise */
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch; }
.price {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 26px;
}
.price.featured { border-color: var(--ink); box-shadow: 0 30px 60px -34px rgba(0,0,0,.4); }
.badge {
  position: absolute; top: -12px; left: 26px;
  background: var(--ink); color: #fff; font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 11px; border-radius: 20px; margin: 0;
}
.price-name { font-size: 14px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.price-value { display: flex; align-items: baseline; gap: 5px; margin-bottom: 24px; }
.price-value b { font-size: 46px; letter-spacing: -.04em; }
.price-value span { font-size: 13px; color: var(--muted); }
.price-value .price-ab { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--muted); letter-spacing: -.02em; align-self: center; }
.price ul { list-style: none; margin: 0 0 28px; padding: 0; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.price li { position: relative; padding-left: 24px; font-size: 15px; }
.price li::before {
  content: ""; position: absolute; left: 0; top: 8px; width: 13px; height: 8px;
  border-left: 1.8px solid var(--ink); border-bottom: 1.8px solid var(--ink);
  transform: rotate(-45deg);
}

/* Stimmen */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quote {
  margin: 0; background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 32px 28px;
}
.quote blockquote { margin: 0 0 22px; font-size: 17px; color: var(--ink); }
.quote blockquote::before { content: "\201C"; font-family: var(--font-display); font-size: 44px; line-height: 0; vertical-align: -12px; margin-right: 4px; color: var(--brand-3); }
.quote figcaption { display: flex; flex-direction: column; gap: 2px; font-size: 14px; }
.quote figcaption b { font-family: var(--font-display); color: var(--ink); letter-spacing: -.02em; }
.quote figcaption span { color: var(--muted); }

/* FAQ */
.faq-wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: start; }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:first-child { border-top: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 40px 22px 0; position: relative;
  font-family: var(--font-display); font-weight: 700; font-size: 18px;
  color: var(--ink); letter-spacing: -.02em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 6px; top: 50%; width: 11px; height: 11px;
  border-right: 1.8px solid var(--ink); border-bottom: 1.8px solid var(--ink);
  transform: translateY(-70%) rotate(45deg); transition: transform .22s ease;
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq details p { margin: 0 0 22px; padding-right: 40px; font-size: 15px; }

/* CTA */
.cta { position: relative; padding: clamp(72px, 8vw, 120px) 0; overflow: hidden; text-align: center; }
.cta-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(46% 62% at 24% 46%, rgba(255,180,107,.75), transparent 62%),
    radial-gradient(44% 58% at 52% 56%, rgba(255,106,94,.6), transparent 62%),
    radial-gradient(46% 58% at 78% 44%, rgba(232,49,138,.5), transparent 62%),
    radial-gradient(50% 60% at 96% 74%, rgba(123,77,255,.4), transparent 64%);
  filter: blur(30px);
}
.cta-inner { position: relative; z-index: 2; }
.cta-inner .lede { margin: 20px auto 32px; }
.cta-inner .hero-actions { justify-content: center; }

/* Footer */
.site-footer { background: var(--dark); color: #9a9a9a; padding: 72px 0 32px; }
.site-footer .logo img { height: 30px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 0.9fr 1.3fr; gap: 36px; padding-bottom: 48px; }
.footer-brand p { margin-top: 16px; font-size: 15px; max-width: 34ch; }
.footer-col { display: flex; flex-direction: column; gap: 11px; }
.footer-col h4 { color: #fff; margin-bottom: 6px; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.footer-col a { font-size: 15px; color: #9a9a9a; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  border-top: 1px solid var(--dark-line); padding-top: 26px; font-size: 13px; color: #767676;
}
.footer-bottom p { margin: 0; }

/* =========================================================
   Unterseiten-Komponenten
   ========================================================= */

.pt-0 { padding-top: 0; }

/* Hero der Unterseiten */
.page-hero { position: relative; padding: clamp(128px, 11vw, 164px) 0 clamp(48px, 6vw, 80px); overflow: hidden; }
.page-hero-slim { padding-bottom: clamp(28px, 3vw, 44px); }
.page-hero-gradient {
  position: absolute; inset: -40% -10% auto -10%; height: 620px;
  background:
    radial-gradient(50% 54% at 18% 46%, rgba(255,180,107,.7), transparent 62%),
    radial-gradient(46% 50% at 46% 56%, rgba(255,106,94,.55), transparent 62%),
    radial-gradient(44% 48% at 72% 42%, rgba(232,49,138,.42), transparent 62%),
    radial-gradient(50% 56% at 94% 66%, rgba(123,77,255,.34), transparent 64%);
  filter: blur(30px); opacity: .8; pointer-events: none;
}
.page-hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 200px;
  background: linear-gradient(to bottom, transparent, var(--bg)); pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 2; }
.page-hero-inner > * { max-width: 820px; }
.page-hero-inner h1 { margin-bottom: 22px; font-size: clamp(38px, 5vw, 68px); }
.page-hero-inner .hero-actions { margin-top: 30px; }

.hero-hint { margin-top: 20px; font-size: 14px; color: var(--muted); }

.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: #eee; }

.app-cta { margin-top: 44px; }

.link-inline { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.link-inline:hover { color: var(--brand-3); }

/* Problem-Karten */
.problem-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.problem {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 28px; border-left: 3px solid var(--brand-3);
}
.problem h3 { margin-bottom: 10px; }
.problem p { font-size: 15px; margin: 0; }
.soft .problem { background: var(--bg); }

/* Verlinkte Karten */
.link-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.link-card {
  display: block; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 32px 30px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.link-card:hover { transform: translateY(-4px); border-color: var(--ink); box-shadow: 0 24px 48px -30px rgba(0,0,0,.28); }
.link-card h3 { margin-bottom: 10px; }
.link-card p { font-size: 15px; }

/* Checkliste */
.checklist { list-style: none; margin: 0 0 26px; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.checklist li { position: relative; padding-left: 30px; font-size: 15px; }
.checklist li::before {
  content: ""; position: absolute; left: 2px; top: 7px; width: 14px; height: 8px;
  border-left: 2px solid var(--brand-3); border-bottom: 2px solid var(--brand-3);
  transform: rotate(-45deg);
}

/* Split-Layout Text + Visual */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split-reverse .split-copy { order: 2; }
.split-copy h2 { margin-bottom: 20px; }
.split-copy .eyebrow { margin-bottom: 12px; }

/* Mock-Karten */
.mock-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 22px; box-shadow: 0 34px 70px -40px rgba(0,0,0,.4);
}
.mock-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 18px; }
.mock-head b { font-family: var(--font-display); font-size: 17px; color: var(--ink); letter-spacing: -.02em; }
.mock-head span { font-size: 13px; color: var(--muted); }

.mock-list { display: flex; flex-direction: column; gap: 2px; }
.mock-row {
  display: flex; align-items: center; gap: 11px;
  padding: 12px 12px; border-radius: 10px; background: var(--bg-soft);
  font-size: 14px;
}
.mock-row b { flex: 1; font-family: var(--font-body); font-weight: 600; color: var(--ink); }
.mock-row i {
  font-style: normal; font-size: 11px; font-weight: 600; letter-spacing: .04em;
  color: var(--muted); background: #fff; border: 1px solid var(--line);
  padding: 4px 8px; border-radius: 20px;
}
.mock-row .tag-private { color: #fff; background: var(--ink); border-color: var(--ink); }
.mock-row .tag-closed { color: var(--brand-4); border-color: rgba(123,77,255,.4); background: rgba(123,77,255,.08); }
.dot { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.dot-1 { background: var(--brand-1); } .dot-2 { background: var(--brand-2); }
.dot-3 { background: var(--brand-3); } .dot-4 { background: var(--brand-4); }
.dot-5 { background: #5e8a6a; }        .dot-6 { background: #4a6c8f; }

.mock-toggles { display: flex; flex-direction: column; gap: 8px; }
.toggle-row {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 13px 14px; border-radius: 10px; background: var(--bg-soft); font-size: 14px;
}
.switch { width: 36px; height: 20px; border-radius: 12px; background: #d8d6d2; position: relative; flex: none; }
.switch::after { content: ""; position: absolute; top: 3px; left: 3px; width: 14px; height: 14px; border-radius: 50%; background: #fff; transition: transform .2s ease; }
.switch.on { background: var(--ink); }
.switch.on::after { transform: translateX(16px); }

.mock-note { margin-top: 16px; font-size: 13px; color: var(--muted); line-height: 1.5; }
.mock-note-lead { margin: 0 0 14px; }

.grid-photos-flat { height: auto; grid-auto-rows: 62px; padding-top: 0; gap: 6px; }
.mock-avatars { display: flex; align-items: center; gap: 6px; margin-top: 16px; }
.mock-avatars i { width: 24px; height: 24px; border-radius: 50%; background: linear-gradient(140deg, var(--brand-2), var(--brand-4)); border: 2px solid #fff; margin-left: -8px; }
.mock-avatars i:first-child { margin-left: 0; }
.mock-avatars b { margin-left: 8px; font-family: var(--font-body); font-size: 13px; font-weight: 500; color: var(--muted); }

.mock-cover { height: 96px; border-radius: 12px; background: linear-gradient(130deg, #2f4a6d, #6d8fb3 55%, #c9a37a); }
.mock-club { display: flex; align-items: center; gap: 12px; margin: -24px 0 16px; padding-left: 10px; position: relative; }
.mock-badge { width: 44px; height: 44px; border-radius: 50%; flex: none; background: linear-gradient(140deg, var(--brand-3), var(--brand-4)); border: 3px solid #fff; }
.mock-club b { font-family: var(--font-display); font-size: 15px; color: var(--ink); letter-spacing: -.02em; padding-top: 20px; }
.mock-btn { background: var(--ink); color: #fff; text-align: center; padding: 11px; border-radius: 8px; font-size: 13px; font-weight: 600; margin-bottom: 16px; }

.mock-locked { display: flex; align-items: center; gap: 10px; margin-top: 16px; padding: 13px 14px; border-radius: 10px; background: var(--bg-soft); }
.mock-locked b { font-family: var(--font-body); font-size: 13px; font-weight: 600; color: var(--body); }
.lock { width: 13px; height: 11px; border-radius: 2px; background: var(--ink); position: relative; flex: none; }
.lock::before { content: ""; position: absolute; left: 2.5px; top: -6px; width: 8px; height: 8px; border: 2px solid var(--ink); border-bottom: 0; border-radius: 4px 4px 0 0; }

/* Sichtbarkeitsstufen */
.level-list { display: flex; flex-direction: column; gap: 4px; margin-bottom: 26px; }
.level { padding: 16px 0; border-top: 1px solid var(--line); }
.level b { font-family: var(--font-display); font-size: 17px; color: var(--ink); letter-spacing: -.02em; }
.level p { margin: 5px 0 0; font-size: 15px; }

/* Timeline */
.timeline { list-style: none; margin: 0; padding: 0; max-width: 760px; }
.tl-item { display: grid; grid-template-columns: 56px 1fr; gap: 24px; padding-bottom: 44px; position: relative; }
.tl-item::before {
  content: ""; position: absolute; left: 27px; top: 56px; bottom: 0; width: 2px; background: var(--line);
}
.tl-item:last-child { padding-bottom: 0; }
.tl-item:last-child::before { display: none; }
.tl-marker {
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  background: var(--ink); color: #fff; position: relative; z-index: 2;
}
.tl-marker span { font-family: var(--font-display); font-size: 22px; font-weight: 800; }
.tl-body { padding-top: 6px; }
.tl-time {
  font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 10px;
}
.tl-body h3 { margin-bottom: 12px; }
.tl-body p { font-size: 16px; }
.tl-tip {
  background: var(--bg-soft); border-radius: 12px; padding: 16px 18px;
  font-size: 14px; margin-bottom: 0;
}
.tl-tip b { color: var(--ink); }

/* Rollen */
.role-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.role { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 28px; }
.role h3 { margin-bottom: 10px; }
.role p { font-size: 15px; margin: 0; }

/* Prinzipien */
.principle-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.principle { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 30px; }
.soft .principle { background: var(--bg); }
.principle .pn {
  display: block; font-family: var(--font-display); font-size: 13px; font-weight: 800; letter-spacing: .1em;
  background: linear-gradient(100deg, var(--brand-2), var(--brand-3), var(--brand-4));
  -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 16px;
}
.principle h3 { margin-bottom: 12px; }
.principle p { font-size: 15px; margin: 0; }

/* Preise */
.price-for { font-size: 14px; color: var(--muted); margin: -14px 0 22px; }
.price-footnote { text-align: center; margin-top: 32px; font-size: 14px; color: var(--muted); }
.price-footnote a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

/* Vergleichstabelle */
.table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--bg); }
.compare { width: 100%; min-width: 720px; border-collapse: collapse; font-size: 15px; }
.compare th, .compare td { padding: 15px 18px; text-align: left; border-bottom: 1px solid var(--line); }
.compare thead th {
  font-family: var(--font-display); font-size: 15px; color: var(--ink);
  letter-spacing: -.02em; background: var(--bg-soft); white-space: nowrap;
}
.compare tbody th { font-family: var(--font-body); font-weight: 500; color: var(--body); }
.compare td { text-align: center; color: var(--body); }
.compare thead th:not(:first-child) { text-align: center; }
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: 0; }
.compare .y { color: var(--ink); font-weight: 700; }
.compare .n { color: #c4c1bd; }

/* Kontakt */
.contact-layout { display: grid; grid-template-columns: 1.35fr .65fr; gap: 40px; align-items: start; }
.contact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 32px; }
.form-note {
  background: var(--bg-soft); border-radius: 10px; padding: 12px 14px;
  font-size: 13px; color: var(--muted); margin-bottom: 26px;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: block; margin-bottom: 18px; }
.field > span { display: block; font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 14px; border: 1px solid var(--line); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 15px; color: var(--ink); background: var(--bg);
  transition: border-color .18s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ink); }
.field textarea { resize: vertical; }
.check { display: flex; gap: 11px; align-items: flex-start; margin: 8px 0 26px; font-size: 14px; }
.check input { margin-top: 4px; flex: none; }
.check a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

.contact-side { display: flex; flex-direction: column; gap: 16px; }
.side-card { background: var(--bg-soft); border-radius: var(--radius-lg); padding: 26px 24px; }
.side-card h3 { font-size: 18px; margin-bottom: 12px; }
.side-card p { font-size: 15px; }
.side-card p:last-child { margin-bottom: 0; }
.side-card .link { margin-top: 4px; }

/* Rechtstexte */
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(22px, 2vw, 27px); margin: 44px 0 14px; }
.prose h2:first-of-type { margin-top: 0; }
.prose p { font-size: 16px; }
.prose code { font-size: 14px; background: var(--bg-soft); padding: 2px 6px; border-radius: 5px; }

.legal-warning {
  background: var(--bg-soft); border-left: 3px solid var(--brand-3);
  border-radius: 0 12px 12px 0; padding: 22px 24px; margin-bottom: 44px; font-size: 15px;
}
.legal-warning b { color: var(--ink); display: block; margin-bottom: 6px; font-family: var(--font-display); letter-spacing: -.02em; }

.placeholder-note {
  background: var(--bg-soft); border: 1px dashed var(--line); border-radius: 10px;
  padding: 15px 17px; font-size: 15px; color: var(--muted);
}

.prose h3 { font-size: 19px; margin: 30px 0 10px; }
.prose ol, .prose ul { margin: 0 0 18px; padding-left: 22px; font-size: 16px; }
.prose ol li, .prose ul li { margin-bottom: 10px; }
.prose .table-scroll { margin: 20px 0 26px; }
.legal-table { width: 100%; min-width: 720px; border-collapse: collapse; font-size: 14px; }
.legal-table th, .legal-table td {
  padding: 13px 15px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line);
}
.legal-table thead th {
  font-family: var(--font-display); color: var(--ink); letter-spacing: -.02em; background: var(--bg-soft);
}
.legal-table tbody tr:last-child td { border-bottom: 0; }
.legal-download { margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line); font-size: 15px; }

/* ---- Neue Bausteine: Tarife, Dashboard-Mocks, App-Tabs ---- */

/* Tarife: zwei statt vier Spalten */
.price-grid-2 { grid-template-columns: repeat(2, 1fr); max-width: 860px; margin-inline: auto; }
.compare-2 { min-width: 520px; }

/* Zusatzspeicher */
.addon {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  max-width: 860px; margin: 24px auto 0; padding: 30px 32px;
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-lg);
}
.addon-copy h3 { margin-bottom: 10px; }
.addon-copy p { font-size: 15px; margin: 0; max-width: 52ch; }
.addon-price { text-align: right; flex: none; }
.addon-price b {
  display: block; font-family: var(--font-display); font-size: 15px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; color: var(--muted);
}
.addon-value {
  display: block; font-family: var(--font-display); font-size: 40px; font-weight: 800;
  letter-spacing: -.04em; color: var(--ink); line-height: 1.1;
}
.addon-unit { display: block; font-size: 13px; color: var(--muted); }

/* Zwei Oberflächen im dunklen Band */
.surface-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.surface {
  background: var(--dark-soft); border: 1px solid var(--dark-line);
  border-radius: var(--radius-lg); padding: 34px 32px;
  transition: border-color .2s ease, transform .2s ease;
}
.surface:hover { border-color: #3a3a3a; transform: translateY(-3px); }
.surface-label {
  font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  background: linear-gradient(100deg, var(--brand-2), var(--brand-3), var(--brand-4));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 14px;
}
.surface h3 { margin-bottom: 12px; }
.surface p { font-size: 15px; }
.checklist-dark li { color: #b5b5b5; }
.checklist-dark li::before { border-color: var(--brand-1); }

/* Rollen: zwei Spalten */
.role-grid-2 { grid-template-columns: repeat(2, 1fr); }
.role-note { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); font-size: 14px; color: var(--muted); }

/* Sichtbarkeitsstufen: Zusatzmarke */
.level-tag {
  display: inline-block; margin-left: 8px; vertical-align: 2px;
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase; color: var(--muted);
  background: var(--bg-soft); border: 1px solid var(--line);
  padding: 3px 8px; border-radius: 20px;
}
.soft .level-tag { background: var(--bg); }

/* Galerie-Kennzeichen im Mock */
.mock-row .tag-public { color: #fff; border-color: transparent; background: linear-gradient(100deg, var(--brand-3), var(--brand-4)); }
.mock-row .tag-count { color: #fff; background: var(--ink); border-color: var(--ink); min-width: 26px; text-align: center; }

/* Galeriecode im Mock */
.mock-code {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  margin-top: 16px; padding: 14px 16px; border-radius: 10px; background: var(--bg-soft);
}
.mock-code-label { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.mock-code b, .mock-code-value {
  font-family: var(--font-display); font-size: 20px; font-weight: 800;
  letter-spacing: .04em; color: var(--ink);
}

/* QR-Kachel */
.mock-qr { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.qr-tile {
  width: 56px; height: 56px; border-radius: 8px; flex: none; background: #fff;
  border: 1px solid var(--line);
  background-image:
    linear-gradient(var(--ink) 0 0), linear-gradient(var(--ink) 0 0),
    linear-gradient(var(--ink) 0 0), linear-gradient(var(--ink) 0 0),
    linear-gradient(var(--ink) 0 0), linear-gradient(var(--ink) 0 0);
  background-repeat: no-repeat;
  background-size: 15px 15px, 15px 15px, 15px 15px, 7px 7px, 7px 7px, 7px 7px;
  background-position: 7px 7px, 34px 7px, 7px 34px, 27px 27px, 41px 34px, 34px 41px;
}

/* Freigabe-Aktionen */
.mock-actions { display: flex; gap: 8px; margin-top: 14px; }
.mock-action {
  flex: 1; text-align: center; padding: 10px; border-radius: 8px;
  font-size: 13px; font-weight: 600; color: var(--ink);
  background: var(--bg-soft); border: 1px solid var(--line);
}
.mock-action-ok { background: var(--ink); border-color: var(--ink); color: #fff; }

/* Speicherbalken */
.mock-meter { margin-top: 18px; }
.meter-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; font-size: 13px; color: var(--muted); }
.meter-head b { font-family: var(--font-body); font-weight: 600; color: var(--ink); }
.meter { height: 8px; border-radius: 4px; background: var(--bg-soft); overflow: hidden; }
.meter span { display: block; height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--brand-1), var(--brand-3)); }

/* App-Tabs im Telefon-Mock */
.app-tabs { display: flex; gap: 5px; }
.app-tabs span {
  flex: 1; text-align: center; padding: 6px 4px; border-radius: 6px;
  font-family: var(--font-body); font-size: 8px; font-weight: 600;
  color: var(--muted); background: #f3f3f3;
}
.app-tabs .on { background: var(--ink); color: #fff; }

/* ---- Fotos aus der Ausbildung ---- */

/* Hero-Mockup als Bild statt CSS-Nachbau */
.hero-shot { position: relative; }
.hero-shot img {
  display: block; width: 100%; height: auto;
  filter: drop-shadow(0 40px 60px rgba(10,10,10,.22));
}

/* Gerahmtes Foto in Split-Abschnitten */
.media {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 34px 70px -40px rgba(10,10,10,.5);
}
.media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.media-tall { aspect-ratio: 4 / 5; }
.media-wide { aspect-ratio: 16 / 10; }

/* Bildunterschrift auf dem Foto */
.media-caption {
  position: absolute; left: 18px; right: 18px; bottom: 18px;
  padding: 14px 18px; border-radius: 16px;
  background: rgba(12,12,12,.62);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  color: #fff; font-size: 14px; line-height: 1.45;
}
.media-caption b { display: block; font-family: var(--font-display); font-size: 15px; letter-spacing: -.02em; margin-bottom: 2px; }

/* Foto-Duo nebeneinander */
.media-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: start; }
.media-duo .media:first-child { margin-top: 34px; }

/* Breites Fotoband ueber die volle Sektionsbreite */
.photo-band { position: relative; }
.photo-band .media-wide { aspect-ratio: 21 / 8; }

/* Branchen-Kachel mit Foto */
.branch-card { display: block; border-radius: var(--radius-lg); overflow: hidden; background: #fff; border: 1px solid var(--line); transition: transform .2s ease, box-shadow .2s ease; }
.branch-card:hover { transform: translateY(-4px); box-shadow: 0 26px 52px -30px rgba(10,10,10,.34); }
.branch-card .media { border-radius: 0; box-shadow: none; }
.branch-body { padding: 26px 26px 28px; }
.branch-body h3 { margin-bottom: 10px; }
.branch-body p { font-size: 15px; }

/* ---- Tarif-Umschalter KMU / Große Unternehmen ---- */
.seg-switch {
  display: inline-flex; gap: 4px; padding: 5px; margin: 0 auto 40px;
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: 999px;
}
.wrap > .seg-switch { display: flex; width: max-content; max-width: 100%; }

.seg-btn {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 13px 28px; border: 0; border-radius: 999px; cursor: pointer;
  background: transparent; color: var(--body);
  font-family: var(--font-display); font-size: 16px; font-weight: 700; letter-spacing: -.02em;
  transition: background-color .2s ease, color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.seg-btn span {
  font-family: var(--font-body); font-size: 12px; font-weight: 500;
  letter-spacing: 0; color: var(--muted); transition: color .2s ease;
}
.seg-btn:hover { color: var(--ink); }
.seg-btn.is-active {
  background: var(--ink); color: #fff;
  box-shadow: 0 8px 20px -10px rgba(10,10,10,.6);
}
.seg-btn.is-active span { color: rgba(255,255,255,.65); }

.seg-panel[hidden] { display: none; }
.seg-panel .table-scroll { margin-top: 48px; }

/* Vier Tarifkarten nebeneinander: etwas kompakter als bei zweien */
.price-grid .price { padding: 30px 24px; }
.price-grid .price-value b { font-size: 42px; }

/* ---- Sichtbarkeitsstufen: Marken und Auswahlliste ---- */
.mock-row .tag-checked {
  color: var(--body); background: var(--bg); border-color: var(--line);
}
.mock-row i + i { margin-left: 6px; }

/* Auswahl aus drei Zustaenden – bewusst Radio, nicht Schalter:
   eine Galerie hat genau eine Sichtbarkeit. */
.mock-radio { display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }
.radio-row {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 14px; border-radius: 10px; background: var(--bg-soft);
  font-size: 14px; color: var(--body);
}
.radio-row.is-on { background: var(--ink); color: #fff; }
.radio {
  width: 17px; height: 17px; border-radius: 50%; flex: none;
  border: 1.5px solid #cfcdc9; background: #fff;
}
.radio.on { border-color: #fff; background: #fff; box-shadow: inset 0 0 0 4px var(--ink); }

.level-extra {
  margin-top: 4px; padding-top: 18px; border-top: 1px solid var(--line);
  font-size: 15px;
}
.level-extra b { color: var(--ink); }

/* ---- Gründerporträt auf "Über uns" ---- */
.founder {
  display: grid; grid-template-columns: 380px 1fr; gap: clamp(32px, 5vw, 64px);
  align-items: center;
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 40px);
}
.soft .founder { background: var(--bg); }

.founder-photo {
  border-radius: 16px; overflow: hidden; aspect-ratio: 4 / 3;
  box-shadow: 0 26px 52px -30px rgba(10,10,10,.45);
}
.founder-photo img { display: block; width: 100%; height: 100%; object-fit: cover; }

.founder-role {
  font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px;
}
.founder-copy h3 { font-size: clamp(26px, 2.6vw, 34px); margin-bottom: 18px; }
.founder-copy p { font-size: 16px; }
.founder-contact { margin-bottom: 0; }
.founder-note { margin-top: 20px; }

/* ---- Hinweis unter den Tarifen: kein Direktabschluss ---- */
.price-hinweis {
  max-width: 760px; margin: 44px auto 0; padding: 32px 34px;
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.soft .price-hinweis { background: var(--bg); }
.price-hinweis h3 { margin-bottom: 14px; }
.price-hinweis p { font-size: 16px; }
.price-hinweis .btn { margin-top: 8px; }

/* Ablauf des Termins in der Seitenspalte der Kontaktseite */
.side-card-hell { background: var(--ink); color: #b5b5b5; }
.side-card-hell h3 { color: #fff; }
.side-card-hell .note { color: #8a8a8a; margin-bottom: 0; }

.side-steps {
  margin: 0 0 16px; padding: 0; list-style: none;
  counter-reset: schritt; display: flex; flex-direction: column; gap: 12px;
}
.side-steps li {
  position: relative; padding-left: 32px; font-size: 15px; line-height: 1.5;
  counter-increment: schritt;
}
.side-steps li::before {
  content: counter(schritt);
  position: absolute; left: 0; top: 1px;
  width: 21px; height: 21px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 12px; font-weight: 800;
  background: #fff; color: var(--ink);
}

/* ---------------- Reveal-Animation ---------------- */

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------------- Responsive ---------------- */
@media (min-width: 901px) {
  .mobile-nav { display: none; }
}

@media (max-width: 1180px) {
  .nav { gap: 20px; }
  .nav > a, .nav-drop-trigger { font-size: 14px; }
}

@media (max-width: 1080px) {
  .app-grid, .value-grid, .feature-grid, .steps, .quote-grid, .role-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); row-gap: 36px; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .surface-grid, .price-grid-2, .role-grid-2 { grid-template-columns: 1fr; }
  .founder { grid-template-columns: 1fr; }
  .founder-photo { max-width: 380px; }
  .wrap > .seg-switch { width: 100%; }
  .seg-btn { flex: 1; padding: 13px 14px; font-size: 15px; white-space: normal; }
  .media-duo .media:first-child { margin-top: 0; }
  .photo-band .media-wide { aspect-ratio: 16 / 10; }
  .addon { flex-direction: column; align-items: flex-start; gap: 20px; }
  .addon-price { text-align: left; }
  .nav, .header-cta { display: none; }
  .burger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { margin-top: 24px; }
  .phone-front { left: 2%; }
  .phone-back { right: 2%; }
  .two-col, .faq-wrap { grid-template-columns: 1fr; gap: 28px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split-reverse .split-copy { order: 0; }
  .problem-grid, .link-grid, .principle-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .wrap > .seg-switch { flex-direction: column; border-radius: 28px; }
  .seg-btn { width: 100%; padding: 14px 16px; }
  .app-grid, .value-grid, .feature-grid, .steps, .quote-grid, .price-grid, .role-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .phone-front { width: 216px; height: 440px; }
  .phone-back { width: 200px; height: 400px; top: 36px; }
  .footer-top { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .tl-item { grid-template-columns: 44px 1fr; gap: 18px; }
  .tl-marker { width: 44px; height: 44px; }
  .tl-marker span { font-size: 18px; }
  .tl-item::before { left: 21px; top: 44px; }
  .contact-form { padding: 26px 22px; }
}
