/* ==========================================================================
   Klaudia Schall · Seven Sundays Schlafberatung
   Editorial Blush Stylesheet
   --------------------------------------------------------------------------
   Farben aus den Onepage-Screenshots übernommen:
   Blush-Hintergrund · schwarze Buttons · weiße Karten · Magenta-Akzent (KS)
   ========================================================================== */

:root {
  /* ---- Farben ---- */
  --blush: #f5e8ea;          /* Seiten-Hintergrund */
  --blush-soft: #faf2f4;     /* hellere Flächen / Gradient-Stop */
  --blush-deep: #eedce1;     /* tiefere Blush-Fläche */
  --card: #ffffff;           /* Karten */
  --ink: #1a1818;            /* Buttons, Überschriften */
  --ink-2: #2b2727;
  --text: #423b3d;           /* Fließtext */
  --muted: #766d70;          /* gedämpfter Text */
  --line: rgba(26, 24, 24, .10);
  --line-soft: rgba(26, 24, 24, .06);
  --accent: #d52a91;         /* Marken-Magenta (Chat / Akzente) */
  --accent-dark: #a91f73;
  --accent-soft: rgba(213, 42, 145, .10);
  --badge: #e7ded0;          /* Tan-Badge (Schritt-Labels) */
  --badge-ink: #6e6353;
  --success: #2f8f5b;
  --danger: #b2334c;

  /* ---- Typografie ---- */
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* ---- Form ---- */
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  /* ---- Schatten ---- */
  --shadow-xs: 0 1px 2px rgba(46, 34, 43, .05);
  --shadow-sm: 0 6px 18px rgba(46, 34, 43, .07);
  --shadow-md: 0 18px 48px rgba(46, 34, 43, .10);
  --shadow-lg: 0 28px 80px rgba(46, 34, 43, .14);
  --shadow-accent: 0 18px 38px rgba(213, 42, 145, .26);

  /* ---- Layout ---- */
  --maxw: 1200px;
  --gutter: clamp(18px, 4vw, 44px);
}

/* Reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 88px; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--blush);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--ink); text-decoration: none; transition: color .15s ease, opacity .15s ease; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.08;
  color: var(--ink);
  margin: 0;
}
p { margin: 0; }
figure, blockquote { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 2.5px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* Layout-Helfer -------------------------------------------------------- */
.shell { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 9vw, 120px); position: relative; }
.section--soft { background: linear-gradient(180deg, var(--blush-soft), var(--blush)); }
.section--plain { background: var(--blush-soft); }

.section-head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4.6vw, 52px); margin-block: 16px 0; }
.section-head p { color: var(--muted); font-size: clamp(16px, 1.6vw, 19px); margin-top: 18px; }

/* Eyebrow / Badges ----------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, .6);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

/* Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .01em;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
  text-align: center;
}
.btn--primary { background: var(--ink); color: #fff; }
.btn--primary:hover { background: #000; color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--accent { background: var(--accent); color: #fff; box-shadow: var(--shadow-accent); }
.btn--accent:hover { background: var(--accent-dark); color: #fff; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); background: rgba(255, 255, 255, .5); }
.btn--white { background: #fff; color: var(--ink); }
.btn--white:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--lg { padding: 18px 32px; font-size: 16px; }
.btn--block { width: 100%; }
.btn svg { flex: 0 0 auto; }

/* ============================================================
   TOPBAR
============================================================= */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 232, 234, .82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 76px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); }
.brand__mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: .02em;
  line-height: 1;
}
.brand__name {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand__name b { font-weight: 700; font-size: 15px; letter-spacing: .02em; }
.brand__name small {
  font-size: 9.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted);
}
.brand__logo-img { height: 50px; width: auto; display: block; }

.topbar__nav { display: flex; align-items: center; gap: 28px; }
.topbar__nav a { color: var(--ink-2); font-size: 15px; font-weight: 500; opacity: .85; }
.topbar__nav a:hover { opacity: 1; }
.topbar__cta { display: inline-flex; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, .6);
}
.burger span { height: 2px; width: 100%; background: var(--ink); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.topbar__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 10px var(--gutter) 22px;
  background: var(--blush-soft);
  border-bottom: 1px solid var(--line);
}
.topbar__mobile.is-open { display: flex; }
.topbar__mobile a { padding: 13px 6px; font-size: 16px; font-weight: 500; border-bottom: 1px solid var(--line-soft); }
.topbar__mobile .btn { margin-top: 14px; }

/* ============================================================
   HERO
============================================================= */
.hero { padding-block: clamp(40px, 6vw, 84px); }
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero__content { max-width: 620px; }
.hero h1 {
  font-size: clamp(40px, 6.4vw, 76px);
  line-height: .98;
  margin-top: 26px;
}
.hero__lead { margin-top: 28px; }
.hero__lead p { color: var(--text); font-size: clamp(16px, 1.7vw, 18.5px); }
.hero__lead p + p { margin-top: 16px; }
.hero__cta { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__visual { position: relative; }
.hero__visual .ph { aspect-ratio: 4 / 5; }

/* Bild-Platzhalter (bis echte Fotos hochgeladen werden) ---------------- */
.ph {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(120% 120% at 20% 10%, var(--blush-soft), var(--blush-deep) 70%);
  box-shadow: var(--shadow-md);
  display: grid;
  place-items: center;
  isolation: isolate;
}
.ph::after {
  content: attr(data-label);
  position: absolute;
  inset: auto 0 0 0;
  padding: 12px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .55));
  text-align: center;
  pointer-events: none;
}
.ph svg { width: 46px; height: 46px; color: rgba(118, 109, 112, .5); }
.ph img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* ============================================================
   BENEFITS (Bento)
============================================================= */
.bento {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  grid-auto-rows: 1fr;
  gap: clamp(16px, 2vw, 22px);
}
.bento__media { grid-row: span 2; min-height: 420px; }
.card {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 2.4vw, 30px);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.benefit { display: flex; flex-direction: column; gap: 12px; }
.benefit__icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent-dark);
}
.benefit h3 { font-size: clamp(22px, 2.2vw, 27px); }
.benefit p { color: var(--muted); font-size: 15.5px; line-height: 1.6; }

/* ============================================================
   PROZESS / SCHRITTE
============================================================= */
.process__intro {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.process__intro .ph { aspect-ratio: 5 / 4; }
.process__copy h2 { font-size: clamp(30px, 4.4vw, 50px); margin-top: 18px; }
.process__copy p { color: var(--muted); margin-top: 18px; font-size: 17.5px; }
.process__copy .btn { margin-top: 30px; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 22px);
}
.step { display: flex; flex-direction: column; gap: 14px; }
.step__label {
  align-self: flex-start;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  background: var(--badge);
  color: var(--badge-ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.step h3 { font-size: clamp(22px, 2.2vw, 28px); }
.step p { color: var(--muted); font-size: 15.5px; line-height: 1.6; }

/* ============================================================
   TESTIMONIALS
============================================================= */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 22px);
}
.testimonial {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 2.6vw, 34px);
  box-shadow: var(--shadow-sm);
}
.testimonial--featured { grid-column: 1 / -1; }
.testimonial__inner { display: grid; gap: 26px; align-items: center; height: 100%; }
.testimonial--featured .testimonial__inner { grid-template-columns: minmax(180px, .8fr) 1.2fr; }
.testimonial--featured .ph { aspect-ratio: 1 / 1; height: 100%; min-height: 220px; }
.quote-mark {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 1;
  font-weight: 700;
}
.testimonial__quote {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.5;
  color: var(--ink-2);
  margin: 0;
  font-weight: 500;
}
.testimonial--featured .testimonial__quote { font-size: clamp(19px, 2vw, 25px); }
.testimonial__person { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); }
.testimonial__name { font-weight: 700; color: var(--ink); font-size: 16px; }
.testimonial__source { color: var(--muted); font-size: 13.5px; }
.testimonial__col { display: flex; flex-direction: column; gap: 16px; height: 100%; }

/* ============================================================
   ÜBER KLAUDIA
============================================================= */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.about__copy { max-width: 560px; }
.about__copy h2 { font-size: clamp(34px, 5vw, 58px); margin-top: 18px; }
.about__copy p { color: var(--text); margin-top: 20px; }
.about__logos { display: flex; align-items: center; gap: 28px; margin-top: 34px; flex-wrap: wrap; }
.about__logos .brand__mark { font-size: 40px; }
.about__bni {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 30px;
  letter-spacing: .02em;
  color: #c8102e;
}
.about__bni sup { font-size: .5em; }
.about__media .ph { aspect-ratio: 4 / 5; }

/* ============================================================
   ANFRAGE / QUALIFIZIERUNGS-FORMULAR
============================================================= */
.anfrage { background: linear-gradient(180deg, var(--blush), var(--blush-deep)); }
.form-shell {
  max-width: 760px;
  margin-inline: auto;
}
.form-card {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: clamp(24px, 3.4vw, 46px);
  margin-top: clamp(28px, 4vw, 44px);
}
.form-progress { margin-bottom: 30px; }
.form-progress__bar {
  height: 6px;
  border-radius: var(--radius-pill);
  background: var(--blush-deep);
  overflow: hidden;
}
.form-progress__fill {
  height: 100%;
  width: 20%;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  transition: width .35s ease;
}
.form-progress__meta {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

.fstep { display: none; animation: fadeUp .35s ease both; }
.fstep.is-active { display: block; }
.fstep__title { font-size: clamp(22px, 2.6vw, 30px); }
.fstep__hint { color: var(--muted); margin-top: 8px; font-size: 15.5px; }
.fstep__body { margin-top: 24px; }

/* Partner-Formular (einstufig) */
.partner-form-shell { margin-top: clamp(36px, 5vw, 56px); }
.fhead { margin-bottom: 26px; }
.fgroup { margin-bottom: 24px; }
.fgroup > .form-label { margin-bottom: 12px; }

/* Progressives Ausklappen (Partner-Formular) */
.pstep.is-collapsed { display: none; }
.pstep.is-revealing { animation: pstepIn .42s cubic-bezier(.4, 0, .2, 1) both; }
@keyframes pstepIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) { .pstep.is-revealing { animation: none; } }

/* Auswahl-Kacheln (Single / Multi) */
.opt-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.opt-grid--3 { grid-template-columns: repeat(3, 1fr); }
.opt {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--blush-soft);
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, transform .12s ease;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--ink-2);
}
.opt:hover { border-color: var(--accent); transform: translateY(-1px); }
.opt input { position: absolute; opacity: 0; pointer-events: none; }
.opt__check {
  width: 22px; height: 22px;
  flex: 0 0 auto;
  border: 1.5px solid var(--line);
  border-radius: 7px;
  display: grid;
  place-items: center;
  background: #fff;
  transition: border-color .15s ease, background .15s ease;
}
.opt input[type="radio"] + .opt__check { border-radius: 50%; }
.opt__check svg { width: 13px; height: 13px; color: #fff; opacity: 0; transition: opacity .15s ease; }
.opt input:checked + .opt__check { background: var(--accent); border-color: var(--accent); }
.opt input:checked + .opt__check svg { opacity: 1; }
.opt:has(input:checked) { border-color: var(--accent); background: var(--accent-soft); }
.opt__emoji { font-size: 20px; line-height: 1; }

/* Eingabefelder */
.field { margin-bottom: 16px; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label, .form-label {
  display: block;
  margin-bottom: 7px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-2);
}
.field .req { color: var(--accent); }
.input, .textarea, .select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--blush-soft);
  color: var(--ink);
  font-family: inherit;
  font-size: 16px;
  transition: border-color .15s ease, background .15s ease;
}
.input:focus, .textarea:focus, .select:focus { outline: none; border-color: var(--accent); background: #fff; }
.textarea { resize: vertical; min-height: 110px; line-height: 1.55; }
.input::placeholder, .textarea::placeholder { color: rgba(118, 109, 112, .7); }

.consent { display: flex; align-items: flex-start; gap: 11px; margin-top: 4px; font-size: 13.5px; color: var(--muted); line-height: 1.5; }
.consent input { margin-top: 3px; width: 18px; height: 18px; flex: 0 0 auto; accent-color: var(--accent); }
.consent a { text-decoration: underline; text-underline-offset: 2px; }

.form-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 28px; }
.form-nav .btn { min-width: 130px; }
.form-error {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius);
  background: rgba(178, 51, 76, .08);
  border: 1px solid rgba(178, 51, 76, .25);
  color: var(--danger);
  font-size: 14px;
  display: none;
}
.form-error.is-visible { display: block; }

.form-success { text-align: center; padding: clamp(10px, 3vw, 30px) 0; }
.form-success__icon {
  width: 76px; height: 76px;
  margin: 0 auto 20px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(47, 143, 91, .12);
  color: var(--success);
}
.form-success h3 { font-size: clamp(26px, 3vw, 36px); }
.form-success p { color: var(--muted); margin-top: 14px; max-width: 480px; margin-inline: auto; }

.summary {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: var(--blush-soft);
  border: 1px solid var(--line-soft);
  font-size: 14.5px;
}
.summary h4 { font-family: var(--font-body); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.summary dl { display: grid; grid-template-columns: auto 1fr; gap: 6px 16px; margin: 0; }
.summary dt { color: var(--muted); }
.summary dd { margin: 0; color: var(--ink-2); font-weight: 500; }

/* ============================================================
   PARTNER / RECRUITING (nutzt .about__inner Layout)
============================================================= */
.about__logo-img { height: 84px; width: auto; }

/* ============================================================
   FAQ
============================================================= */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 22px);
}
.faq-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 2.6vw, 34px);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.faq-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.faq-card__icon {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent-dark);
}
.faq-card h3 { font-size: clamp(20px, 2.1vw, 25px); }
.faq-card p { color: var(--muted); font-size: 15.5px; line-height: 1.6; }
.faq-card--dark { background: var(--ink); border-color: var(--ink); }
.faq-card--dark h3 { color: #fff; }
.faq-card--dark p { color: rgba(255, 255, 255, .74); }
.faq-card--dark .faq-card__icon { background: rgba(255, 255, 255, .14); color: #fff; }

/* ============================================================
   KONTAKT
============================================================= */
.contact__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
  margin-bottom: clamp(32px, 4vw, 52px);
}
.contact__head .brand__logo-img { height: 76px; }
.contact__head h2 { font-size: clamp(34px, 5vw, 58px); }
.contact__head p { color: var(--muted); max-width: 460px; }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 32px);
  align-items: stretch;
}
.contact__card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: clamp(24px, 3vw, 38px);
}
.contact__card h3 { font-size: 24px; text-align: center; margin-bottom: 8px; }
.contact__row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--text);
}
.contact__row:last-of-type { border-bottom: 0; }
a.contact__row:hover .contact__row b { color: var(--accent-dark); }
.contact__row-icon {
  width: 46px; height: 46px;
  flex: 0 0 auto;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--blush-soft);
  color: var(--accent-dark);
}
.contact__row b { display: block; color: var(--ink); font-weight: 600; font-size: 16px; }
.contact__row span { color: var(--muted); font-size: 13.5px; }
.contact__actions { display: flex; gap: 12px; margin-top: auto; padding-top: 22px; flex-wrap: wrap; }
.contact__actions .btn { flex: 1; min-width: 150px; }
.contact__media .ph { height: 100%; min-height: 320px; }
.contact__map {
  margin-top: clamp(20px, 3vw, 32px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
}
.contact__map iframe { display: block; width: 100%; height: clamp(280px, 38vw, 420px); border: 0; }

/* ============================================================
   KI-TERMINASSISTENT (iframe)
============================================================= */
.assistant__frame {
  max-width: 860px;
  margin-inline: auto;
  border-radius: 24px;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-lg);
}
.assistant__frame iframe {
  display: block;
  width: 100%;
  height: 700px;
  border: 0;
}
@media (max-width: 600px) {
  .assistant__frame iframe { height: 620px; }
}

/* ============================================================
   FOOTER
============================================================= */
.footer { background: var(--ink); color: rgba(255, 255, 255, .72); padding-block: clamp(48px, 6vw, 72px) 28px; }
.footer a { color: rgba(255, 255, 255, .72); }
.footer a:hover { color: #fff; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
}
.footer .brand { color: #fff; }
.footer .brand__logo-img { filter: brightness(0) invert(1); height: 56px; }
.footer .brand__name small { color: rgba(255, 255, 255, .55); }
.footer__brand p { margin-top: 16px; max-width: 340px; font-size: 14.5px; line-height: 1.7; }
.footer h4 { font-family: var(--font-body); color: #fff; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; }
.footer ul li { margin-bottom: 10px; font-size: 14.5px; }
.footer__bottom {
  margin-top: clamp(36px, 5vw, 52px);
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
}
.footer__bottom a { text-decoration: underline; text-underline-offset: 2px; }

/* ============================================================
   FLOATING CTA
============================================================= */
.fab {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  box-shadow: var(--shadow-accent);
  transform: translateY(0);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.fab:hover { background: var(--accent-dark); color: #fff; transform: translateY(-2px); }
.fab svg { width: 20px; height: 20px; }

/* ============================================================
   RECHTLICHE SEITEN (Impressum / Datenschutz)
============================================================= */
.legal { padding-block: clamp(40px, 6vw, 80px); }
.legal__back { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-size: 14px; font-weight: 600; margin-bottom: 28px; }
.legal__back:hover { color: var(--ink); }
.legal__card {
  max-width: 820px;
  margin-inline: auto;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  padding: clamp(26px, 4vw, 56px);
}
.legal__card h1 { font-size: clamp(30px, 4vw, 44px); }
.legal__card h2 { font-size: clamp(20px, 2.2vw, 26px); margin-top: 36px; }
.legal__card p, .legal__card li { color: var(--text); font-size: 16px; margin-top: 12px; }
.legal__card ul { list-style: disc; padding-left: 22px; }
.legal__card a { text-decoration: underline; text-underline-offset: 2px; }
.legal__note {
  margin-top: 14px;
  padding: 14px 18px;
  border-radius: var(--radius);
  background: var(--accent-soft);
  border: 1px solid rgba(213, 42, 145, .2);
  font-size: 14.5px;
  color: var(--accent-dark);
}

/* ============================================================
   REVEAL-ANIMATION
============================================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
============================================================= */
@media (max-width: 1040px) {
  .topbar__nav { display: none; }
  .burger { display: flex; }
  .testimonial--featured { grid-column: span 3; }
}

@media (max-width: 900px) {
  html { scroll-padding-top: 80px; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { order: -1; }
  .hero__visual .ph { aspect-ratio: 16 / 11; }
  .bento { grid-template-columns: 1fr 1fr; }
  .bento__media { grid-row: span 1; grid-column: span 2; min-height: 300px; }
  .process__intro { grid-template-columns: 1fr; }
  .process__intro .ph { aspect-ratio: 16 / 10; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: 1fr 1fr; }
  .testimonial--featured { grid-column: span 2; }
  .testimonial--featured .testimonial__inner { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .contact__media { order: -1; }
  .contact__media .ph { aspect-ratio: 16 / 10; min-height: 0; }
  .about__inner { grid-template-columns: 1fr; }
  .about__media { order: -1; }
  .about__media .ph { aspect-ratio: 16 / 12; max-width: 520px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
}

@media (max-width: 560px) {
  .topbar__cta { display: none; } /* CTA steckt im Mobile-Menü + FAB */
  .topbar__inner { height: 68px; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .bento { grid-template-columns: 1fr; }
  .bento__media { grid-column: span 1; }
  .steps { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .testimonial--featured { grid-column: span 1; }
  .faq-grid { grid-template-columns: 1fr; }
  .contact__actions .btn { flex: 1 1 100%; }
  .opt-grid, .opt-grid--3 { grid-template-columns: 1fr; }
  .field--row { grid-template-columns: 1fr; }
  .form-nav { flex-direction: column-reverse; }
  .form-nav .btn { width: 100%; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }
  .fab span { display: none; }
  .fab { padding: 15px; }
}
