/* ============================================================
   smartrezeption.de — KI-Telefonassistent
   Design: modern, vertrauenswürdig, „Kommunikations-Produkt".
   Navy + Teal, viel Luft, klare Karten. Bewusst KEIN KI-Lila.
   ============================================================ */

:root {
  /* Palette */
  --bg:         #F5F8FB;
  --surface:    #FFFFFF;
  --surface-2:  #EDF2F8;
  --navy:       #0B1B33;   /* Hero / dunkle Flächen */
  --navy-2:     #102A4C;   /* helleres Navy für Verläufe */
  --ink:        #0B1B33;
  --ink-soft:   #44516A;
  --muted:      #7C8AA3;
  --line:       #E2E8F1;
  --line-soft:  #EDF1F7;
  --accent:     #0E9384;   /* Teal — Markenfarbe */
  --accent-2:   #0B7468;   /* dunkleres Teal (Hover) */
  --accent-soft:#E2F4F1;   /* Teal-Tint für Flächen */
  --live:       #1FB47E;

  /* Typo */
  --display: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --sans:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  /* Maße */
  --wrap: 1140px;
  --pad: 24px;
  --radius: 16px;
  --radius-sm: 12px;
  --shadow:    0 1px 2px rgba(11,27,51,.04), 0 10px 30px rgba(11,27,51,.06);
  --shadow-lg: 0 20px 60px rgba(11,27,51,.14);
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-inline: var(--pad);
}

h1, h2, h3 { font-family: var(--display); font-weight: 700; line-height: 1.12; letter-spacing: -0.02em; color: var(--ink); }
em { font-style: normal; color: var(--accent); }
a { color: inherit; }
img, svg { max-width: 100%; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  font-family: var(--display);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 20px rgba(14,147,132,.28);
}
.btn-primary:hover { background: var(--accent-2); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(14,147,132,.34); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

.sec-kicker {
  display: inline-block;
  font-family: var(--display);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.sec-head { max-width: 720px; margin-bottom: 44px; }
.sec-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
.sec-head-center { margin-inline: auto; text-align: center; }

section { padding: clamp(56px, 8vw, 104px) 0; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245,248,251,.82);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); background: rgba(255,255,255,.9); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.32rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.logo-mark {
  display: inline-flex;
  width: 30px; height: 30px;
  color: var(--accent);
}
.logo-mark svg { width: 100%; height: 100%; }
.brand-word { line-height: 1; }
.brand-accent { color: var(--accent); }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  color: var(--ink-soft);
  transition: color .15s ease;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  background: var(--ink);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 14.5px !important;
  transition: background .2s ease, transform .15s ease;
}
.nav-cta:hover { background: var(--accent); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .2s ease; }
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px var(--pad) 18px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.nav-mobile a { text-decoration: none; color: var(--ink); font-weight: 500; padding: 12px 6px; border-radius: 8px; }
.nav-mobile a:last-child { margin-top: 6px; background: var(--accent); color: #fff; text-align: center; font-family: var(--display); font-weight: 600; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 120% at 85% -10%, rgba(14,147,132,.16), transparent 55%),
    linear-gradient(180deg, #fff 0%, var(--bg) 100%);
  padding: clamp(48px, 7vw, 96px) 0 clamp(56px, 8vw, 104px);
}
.hero-glow {
  position: absolute;
  top: -180px; right: -120px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(14,147,132,.20), transparent 65%);
  filter: blur(20px);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  position: relative;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--display);
  font-weight: 600;
  font-size: .9rem;
  color: var(--accent-2);
  background: var(--accent-soft);
  border: 1px solid color-mix(in srgb, var(--accent) 22%, transparent);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 22%, transparent); }
.hero-title { font-size: clamp(2.1rem, 5vw, 3.5rem); font-weight: 800; }
.hero-sub { font-size: clamp(1.02rem, 1.6vw, 1.2rem); color: var(--ink-soft); margin: 22px 0 30px; max-width: 540px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 26px;
  font-size: .92rem;
  color: var(--muted);
}
.hero-trust .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--live); box-shadow: 0 0 0 4px rgba(31,180,126,.18); animation: pulse 2.2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 4px rgba(31,180,126,.18); } 50% { box-shadow: 0 0 0 7px rgba(31,180,126,.05); } }

/* Anruf-Karte (Hero-Visual) */
.hero-visual { display: flex; justify-content: center; }
.callcard {
  width: 100%;
  max-width: 420px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  padding: 20px;
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.callcard-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.cc-live { display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 600; color: var(--accent-2); }
.cc-pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--live); animation: pulse 1.6s ease-in-out infinite; }
.cc-time { font-size: .82rem; color: var(--muted); font-variant-numeric: tabular-nums; }
.cc-row { display: flex; gap: 10px; margin-bottom: 12px; align-items: flex-end; }
.cc-ai { flex-direction: row-reverse; }
.cc-avatar {
  flex: 0 0 auto;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--ink-soft);
  display: grid; place-items: center;
  font-weight: 700; font-size: .85rem;
}
.cc-avatar-ai { background: var(--navy); color: var(--accent); padding: 6px; }
.cc-avatar-ai svg { width: 100%; height: 100%; }
.cc-bubble {
  background: var(--surface-2);
  color: var(--ink-soft);
  padding: 11px 14px;
  border-radius: 16px 16px 16px 4px;
  font-size: .92rem;
  line-height: 1.45;
}
.cc-bubble-ai { background: var(--accent); color: #fff; border-radius: 16px 16px 4px 16px; }
.cc-summary {
  margin-top: 16px;
  background: var(--navy);
  border-radius: 14px;
  padding: 14px 16px;
  color: #cfe6e2;
}
.cc-summary-h { display: flex; align-items: center; gap: 8px; font-weight: 700; font-family: var(--display); font-size: .9rem; color: #fff; margin-bottom: 10px; }
.cc-summary-h svg { width: 18px; height: 18px; color: #25D366; }
.cc-summary ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.cc-summary li { display: flex; justify-content: space-between; font-size: .86rem; }
.cc-summary li span { color: #8fb4ae; }
.cc-summary li b { color: #fff; font-weight: 600; }

/* ============================================================
   TRUSTBAR
   ============================================================ */
.trustbar { background: var(--navy); padding: 0; }
.trustbar ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 34px;
  padding: 20px 0;
}
.trustbar li { display: inline-flex; align-items: center; gap: 9px; color: #d6e3f0; font-size: .92rem; font-weight: 500; }
.trustbar li svg { width: 18px; height: 18px; color: var(--accent); flex: 0 0 auto; }

/* ============================================================
   STATEMENT
   ============================================================ */
.statement { padding: clamp(48px, 7vw, 88px) 0; }
.statement p {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  line-height: 1.32;
  letter-spacing: -0.01em;
  max-width: 920px;
  color: var(--ink);
}
.statement strong { color: var(--accent); font-weight: 700; }

/* ============================================================
   GRIDS
   ============================================================ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }

/* ---------- Funktionen ---------- */
.funktionen { background: var(--surface); border-block: 1px solid var(--line); }
.fc {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.fc:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--accent) 35%, var(--line)); }
.fc-icon {
  display: inline-flex;
  width: 48px; height: 48px;
  border-radius: 13px;
  background: var(--accent-soft);
  color: var(--accent-2);
  align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.fc-icon svg { width: 26px; height: 26px; }
.fc h3 { font-size: 1.18rem; margin-bottom: 8px; }
.fc p { color: var(--ink-soft); font-size: .96rem; }

/* ---------- Ablauf ---------- */
.steps { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.steps li { position: relative; padding-top: 8px; }
.step-num {
  display: inline-flex;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 700; font-size: 1.1rem;
  margin-bottom: 16px;
}
.steps li h3 { font-size: 1.2rem; margin-bottom: 8px; }
.steps li p { color: var(--ink-soft); font-size: .98rem; }
.steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 30px; left: 56px; right: -12px;
  height: 2px;
  background: linear-gradient(90deg, var(--line), transparent);
}

/* ---------- Audience ---------- */
.audience { background: var(--surface); border-block: 1px solid var(--line); }
.aud {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  border-left: 3px solid var(--accent);
  transition: transform .18s ease, box-shadow .18s ease;
}
.aud:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.aud h3 { font-size: 1.1rem; margin-bottom: 8px; }
.aud p { color: var(--ink-soft); font-size: .95rem; }

/* ---------- Preise ---------- */
.pkg-grid { align-items: stretch; }
.pkg {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  position: relative;
  box-shadow: var(--shadow);
}
.pkg-featured {
  border-color: var(--accent);
  box-shadow: 0 24px 60px rgba(14,147,132,.18);
  transform: translateY(-8px);
}
.pkg-badge {
  position: absolute;
  top: -13px; left: 28px;
  background: var(--accent);
  color: #fff;
  font-family: var(--display); font-weight: 700;
  font-size: .72rem; letter-spacing: .05em; text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
}
.pkg-top h3 { font-size: 1.5rem; }
.pkg-tag { color: var(--muted); font-size: .9rem; margin-top: 2px; }
.pkg-price-row { display: flex; align-items: baseline; gap: 4px; margin: 18px 0 6px; }
.pkg-price { font-family: var(--display); font-weight: 800; font-size: 2.1rem; color: var(--ink); letter-spacing: -0.02em; }
.pkg-per { color: var(--muted); font-size: .95rem; font-weight: 500; }
.pkg-lead { color: var(--ink-soft); font-size: .96rem; margin-bottom: 20px; }
.pkg-list { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; }
.pkg-list li { display: flex; gap: 10px; font-size: .95rem; color: var(--ink-soft); }
.pkg-list li svg { width: 19px; height: 19px; color: var(--accent); flex: 0 0 auto; margin-top: 2px; }
.pkg-list li em { color: var(--ink); font-style: normal; font-weight: 600; }
.pkg-cta { margin-top: auto; width: 100%; }
.pkg-note { color: var(--muted); font-size: .86rem; margin-top: 28px; max-width: 860px; line-height: 1.6; }

/* ============================================================
   COMPLIANCE (dunkle Sektion)
   ============================================================ */
.compliance { background: var(--navy); color: #d6e3f0; }
.comp-inner { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.sec-kicker-light { color: #4fd1bf; }
.comp-head h2 { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
.comp-head p { color: #a9bdd2; margin-top: 16px; font-size: 1.04rem; }
.comp-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 22px 28px; }
.comp-list li { display: flex; gap: 14px; }
.comp-check {
  flex: 0 0 auto;
  width: 40px; height: 40px;
  border-radius: 11px;
  background: rgba(79,209,191,.14);
  color: #4fd1bf;
  display: grid; place-items: center;
}
.comp-check svg { width: 22px; height: 22px; }
.comp-list strong { display: block; color: #fff; font-family: var(--display); font-weight: 700; font-size: 1.02rem; margin-bottom: 4px; }
.comp-list p { color: #9fb4ca; font-size: .92rem; line-height: 1.5; }

/* ============================================================
   BEWEIS
   ============================================================ */
.beweis { background: var(--surface); border-block: 1px solid var(--line); }
.beweis-text h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); margin: 12px 0 16px; }
.beweis-text > p { color: var(--ink-soft); margin-bottom: 22px; }
.beweis-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.beweis-list li { padding-left: 20px; position: relative; color: var(--ink-soft); }
.beweis-list li::before { content: ""; position: absolute; left: 0; top: 11px; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.beweis-list strong { color: var(--ink); }

/* Telefon-Mock */
.beweis-visual { display: flex; justify-content: center; }
.phone {
  width: 250px;
  background: var(--navy);
  border-radius: 36px;
  padding: 14px;
  box-shadow: var(--shadow-lg);
  position: relative;
  border: 6px solid #0a1626;
}
.phone-notch { position: absolute; top: 16px; left: 50%; transform: translateX(-50%); width: 92px; height: 22px; background: #0a1626; border-radius: 0 0 14px 14px; z-index: 2; }
.phone-screen {
  background: linear-gradient(180deg, #12294a, #0b1b33);
  border-radius: 26px;
  min-height: 440px;
  padding: 42px 18px 18px;
  display: flex;
  flex-direction: column;
  color: #d6e3f0;
}
.ps-bar { font-size: .76rem; color: #8fb4ae; display: flex; align-items: center; gap: 7px; justify-content: center; }
.ps-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--live); animation: pulse 1.6s ease-in-out infinite; }
.ps-call { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; }
.ps-ring { position: relative; width: 96px; height: 96px; display: grid; place-items: center; }
.ps-ring span { position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--accent); opacity: 0; animation: ring 2.4s ease-out infinite; }
.ps-ring span:nth-child(2) { animation-delay: .8s; }
.ps-ring span:nth-child(3) { animation-delay: 1.6s; }
.ps-ring::after { content: ""; width: 56px; height: 56px; border-radius: 50%; background: var(--accent); box-shadow: 0 8px 22px rgba(14,147,132,.5); }
@keyframes ring { 0% { transform: scale(.6); opacity: .7; } 100% { transform: scale(1.2); opacity: 0; } }
.ps-num { font-family: var(--display); font-weight: 700; font-size: 1.3rem; color: #fff; }
.ps-status { font-size: .82rem; color: #8fb4ae; }
.ps-foot { display: flex; align-items: center; justify-content: space-between; font-size: .8rem; color: #8fb4ae; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.08); }
.ps-ai { display: inline-flex; align-items: center; gap: 6px; color: #4fd1bf; font-weight: 600; }
.ps-ai svg { width: 16px; height: 16px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--bg); }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item[open] { border-color: color-mix(in srgb, var(--accent) 40%, var(--line)); box-shadow: var(--shadow); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.06rem;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus { position: relative; flex: 0 0 auto; width: 18px; height: 18px; }
.faq-plus::before, .faq-plus::after { content: ""; position: absolute; background: var(--accent); border-radius: 2px; transition: transform .2s ease; }
.faq-plus::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq-plus::after { top: 0; left: 8px; width: 2px; height: 18px; }
.faq-item[open] .faq-plus::after { transform: rotate(90deg); opacity: 0; }
.faq-a { padding: 0 22px 20px; }
.faq-a p { color: var(--ink-soft); font-size: .98rem; }

/* ============================================================
   KONTAKT
   ============================================================ */
.kontakt { background: var(--surface); border-top: 1px solid var(--line); }
.kontakt-sub { color: var(--ink-soft); margin-top: 14px; font-size: 1.06rem; }
.kontakt-layout {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 40px;
  max-width: 940px;
  margin: 0 auto;
  align-items: start;
}
.kform { display: flex; flex-direction: column; gap: 16px; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.kform-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.kfield { display: flex; flex-direction: column; gap: 7px; }
.kfield > span { font-family: var(--display); font-weight: 600; font-size: .86rem; color: var(--ink); }
.kopt { color: var(--muted); font-weight: 400; }
.kfield input, .kfield textarea {
  font-family: var(--sans);
  font-size: 1rem;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  color: var(--ink);
  width: 100%;
  resize: vertical;
}
.kfield input:focus, .kfield textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 16%, transparent);
}
.kform-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.kform-submit { margin-top: 4px; }
.kform-hint { text-align: center; color: var(--muted); font-size: .85rem; }
.kform-status { font-size: .94rem; text-align: center; }
.kform-status.ok { color: var(--accent-2); font-weight: 600; }
.kform-status.err { color: #b4453a; }

.kontakt-channels { padding-top: 6px; }
.channels-label { font-family: var(--display); font-weight: 600; color: var(--muted); margin-bottom: 14px; font-size: .9rem; }
.kontakt-grid { display: flex; flex-direction: column; gap: 12px; }
.kbox {
  display: flex; flex-direction: column; gap: 2px;
  text-decoration: none;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  transition: border-color .15s ease, transform .15s ease;
}
.kbox:hover { border-color: var(--accent); transform: translateX(3px); }
.kbox-label { font-size: .8rem; color: var(--muted); }
.kbox-val { font-family: var(--display); font-weight: 600; color: var(--ink); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy); color: #a9bdd2; padding: 56px 0 28px; }
.footer-inner { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand .brand { color: #fff; margin-bottom: 12px; }
.footer-brand .brand .brand-accent { color: var(--accent); }
.footer-brand p { color: #8fa4bd; max-width: 360px; font-size: .94rem; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 14px 24px; align-items: flex-start; }
.footer-nav a { color: #c3d2e3; text-decoration: none; font-size: .94rem; }
.footer-nav a:hover { color: #fff; }
.footer-legal { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 22px; font-size: .85rem; color: #7891ad; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 920px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .callcard { max-width: 380px; }
  .grid-split { grid-template-columns: 1fr; }
  .beweis-visual { order: -1; }
  .comp-inner { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile[hidden] { display: none; }
  .nav-mobile:not([hidden]) { display: flex; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; gap: 20px; }
  .steps li:not(:last-child)::after { display: none; }
  .pkg-featured { transform: none; }
  .comp-list { grid-template-columns: 1fr; }
  .kontakt-layout { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  /* Manuelle Zeilenumbrüche im Hero nur auf Desktop — auf Schmalbild
     natürlich umbrechen lassen. */
  .hero-title br { display: none; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .grid-3 { grid-template-columns: 1fr; }
  .kform-row { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .footer-inner { flex-direction: column; gap: 24px; }
}

/* ============================================================
   INTERAKTIVE HERO-DEMO
   ============================================================ */
.demo { width: 100%; max-width: 440px; }
.demo-tabs { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.demo-tab {
  font-family: var(--sans); font-size: .85rem; font-weight: 600; color: var(--ink-soft);
  background: var(--surface); border: 1px solid var(--line); border-radius: 999px;
  padding: 7px 14px; cursor: pointer; transition: .15s;
}
.demo-tab:hover { border-color: var(--accent); color: var(--accent); }
.demo-tab.is-active { background: var(--accent); color: #fff; border-color: var(--accent); }
.demo-card { animation: none; }      /* nicht floaten während der Demo */
.demo-play {
  font-family: var(--sans); font-weight: 600; font-size: .82rem; color: #fff;
  background: var(--accent); border: 0; border-radius: 999px; padding: 7px 14px; cursor: pointer;
}
.demo-play:hover { background: var(--accent-2); }
.cc-stream { min-height: 196px; }
.cc-in { animation: ccIn .45s ease both; }
@keyframes ccIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.demo .cc-summary { transition: opacity .3s ease; }
.demo-cap { text-align: center; color: var(--muted); font-size: .85rem; margin-top: 12px; }

/* ============================================================
   STAMMKUNDEN / GEDÄCHTNIS
   ============================================================ */
.memory { background: var(--surface); border-block: 1px solid var(--line); }
.memory-text h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); margin: 12px 0 16px; }
.memory-text > p { color: var(--ink-soft); margin-bottom: 22px; }
.memory-visual { display: flex; justify-content: center; }
.mem-card {
  width: 100%; max-width: 340px; background: var(--surface); border: 1px solid var(--line);
  border-radius: 18px; box-shadow: var(--shadow-lg); padding: 22px;
}
.mem-top { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.mem-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; font-family: var(--display); font-weight: 800; }
.mem-name { font-family: var(--display); font-weight: 700; font-size: 1.1rem; }
.mem-tag { color: var(--accent-2); font-size: .85rem; font-weight: 600; }
.mem-facts { list-style: none; display: flex; flex-direction: column; gap: 10px; border-top: 1px solid var(--line); padding-top: 14px; }
.mem-facts li { display: flex; justify-content: space-between; font-size: .92rem; }
.mem-facts span { color: var(--muted); }
.mem-facts b { color: var(--ink); }
@media (max-width: 920px) { .memory-visual { order: -1; } .demo { max-width: 400px; margin: 0 auto; } }

/* ============================================================
   LAUNCH-BAND (Risiko-Umkehr) + GRÜNDER
   ============================================================ */
.launch { background: var(--accent-soft); border-bottom: 1px solid var(--line); padding: 0; }
.launch-inner { display: flex; align-items: center; justify-content: center; gap: 18px 40px; flex-wrap: wrap; padding: 24px 0; }
.launch-head { display: flex; align-items: center; gap: 14px; }
.launch-badge { background: var(--accent); color: #fff; font-family: var(--display); font-weight: 700; font-size: .72rem; letter-spacing: .05em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; }
.launch-head h2 { color: var(--ink); font-size: clamp(1.15rem, 2.4vw, 1.45rem); margin: 0; }
.launch-items { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 22px; }
.launch-items li { display: inline-flex; align-items: center; gap: 8px; font-size: .95rem; font-weight: 600; color: var(--accent-2); }
.launch-items svg { width: 18px; height: 18px; color: var(--accent); flex: 0 0 auto; }

.founder { background: var(--bg); }
.founder-text h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); margin: 12px 0 16px; }
.founder-text > p { color: var(--ink-soft); margin-bottom: 22px; }
.founder-card-wrap { display: flex; justify-content: center; }
.founder-card { width: 100%; max-width: 320px; background: var(--surface); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-lg); padding: 28px; text-align: center; }
.founder-photo { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; margin: 0 auto 14px; display: block; }
.founder-initials { width: 96px; height: 96px; border-radius: 50%; background: var(--navy); color: #fff; font-family: var(--display); font-weight: 800; font-size: 2rem; display: grid; place-items: center; margin: 0 auto 14px; }
.founder-name { font-family: var(--display); font-weight: 800; font-size: 1.25rem; }
.founder-role { color: var(--muted); font-size: .9rem; margin-top: 2px; }
.founder-tag { display: inline-flex; align-items: center; gap: 7px; margin-top: 16px; background: var(--accent-soft); color: var(--accent-2); border-radius: 999px; padding: 7px 14px; font-size: .85rem; font-weight: 600; }
.founder-tag svg { width: 16px; height: 16px; }
@media (max-width: 920px) { .founder-card-wrap { order: -1; } }
