/* =========================================================
   ICONIQ MOTION – Stylesheet
   White Elegance · Premium Business · High Trust · Conversion
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* Farben */
  --bg-main: #FAF8F1;
  --bg-white: #FFFFFF;
  --bg-soft: #F7F3EA;
  --bg-card: #FFFDF8;
  --text-main: #231A16;
  --text-soft: #4E4741;
  --text-muted: #7A7168;
  --gold-main: #C9973F;
  --gold-soft: #D6B884;
  --gold-dark: #A87524;
  --gold-light: #E8D7AF;
  --border-soft: #E8DDCB;
  --shadow-soft: 0 18px 50px rgba(80, 55, 30, 0.07);
  --shadow-bold: 0 24px 70px rgba(80, 55, 30, 0.12);

  /* Typografie */
  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Layout */
  --container: 1280px;
  --container-pad: 64px;
  --section-pad: 54px;
  --header-h: 96px;

  /* Motion */
  --ease: 0.25s ease;
}

/* ---------- Reset / Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-soft);
  background-color: var(--bg-main);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* Verhindert horizontalen Überlauf (z. B. durch den Marquee-Track),
     der sonst die zentrierten Container nach links verschieben kann.
     clip statt hidden -> sticky Header bleibt funktionsfähig. */
  overflow-x: clip;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--text-main);
  font-weight: 600;
}

/* ---------- Layout Helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.overline {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-main);
}

.accent {
  color: var(--gold-main);
  font-style: italic;
}

/* Conversation-Statement (direkte Ansprache statt Label) */
.conversation {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.4rem, 1.8vw, 1.6rem);
  letter-spacing: 0.02em;
  line-height: 1.3;
  color: var(--gold-main);
}
.conversation::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  margin-right: 16px;
  vertical-align: middle;
  background: var(--gold-main);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: transform var(--ease), background-color var(--ease),
    color var(--ease), border-color var(--ease);
}

.btn--primary {
  background-color: var(--gold-main);
  color: var(--bg-white);
  border: 1px solid var(--gold-main);
  border-radius: 3px;
  padding: 18px 32px;
}
.btn--primary:hover {
  background-color: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
}

.btn--outline {
  background-color: transparent;
  color: var(--gold-main);
  border: 1px solid var(--gold-main);
  border-radius: 3px;
  padding: 13px 24px;
  font-size: 15px;
}
.btn--outline:hover {
  background-color: var(--gold-main);
  color: var(--bg-white);
  transform: translateY(-2px);
}

.btn--secondary {
  background-color: transparent;
  color: var(--text-main);
  border: none;
  border-bottom: 1px solid var(--gold-main);
  border-radius: 0;
  padding: 6px 2px;
}
.btn--secondary:hover {
  color: var(--gold-main);
}

.btn--ghost {
  background-color: transparent;
  color: var(--gold-dark);
  border: 1px solid var(--gold-main);
  border-radius: 3px;
  padding: 18px 32px;
}
.btn--ghost:hover {
  background-color: var(--gold-main);
  color: var(--bg-white);
  transform: translateY(-2px);
}

.btn--block {
  width: 100%;
}

.btn--lg {
  padding: 22px 44px;
  font-size: 18px;
}

/* ---------- Scroll-Fortschrittsbalken ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 5px;
  background: var(--gold-main);
  z-index: 200;
  will-change: width;
}

/* ---------- Header / Navigation ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(250, 248, 241, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(214, 184, 132, 0.18);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.18em;
  display: inline-flex;
  align-items: center;
  gap: 11px;
}
.logo__swoosh {
  height: 38px;
  width: auto;
  display: block;
}
.logo__word { white-space: nowrap; }
/* Brand-Wordmark wie das Logo: ICONIQ in Display-Serif (Kudryashev-Ersatz), MOTION in Barlow Condensed */
.logo__mark {
  color: var(--gold-main);                                   /* ICONIQ */
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.logo__motion {
  color: #2C2C2C;                                            /* MOTION */
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.nav {
  display: flex;
  gap: 38px;
}
.nav__link {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-main);
  transition: color var(--ease);
}
.nav__link:hover {
  color: var(--gold-main);
}

/* ---------- Burger-Button (nur mobil sichtbar) ---------- */
.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--border-soft);
  border-radius: 3px;
  cursor: pointer;
  transition: border-color var(--ease), background-color var(--ease);
}
.nav-toggle:hover { border-color: var(--gold-soft); }
.nav-toggle__bar {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text-main);
  transition: transform var(--ease), opacity var(--ease);
}
.header.is-nav-open .nav-toggle { border-color: var(--gold-main); }
.header.is-nav-open .nav-toggle__bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.header.is-nav-open .nav-toggle__bar:nth-child(2) { opacity: 0; }
.header.is-nav-open .nav-toggle__bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- Mobile Navigation (Drawer) ---------- */
.mobile-nav {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--bg-main);
  border-bottom: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  padding: 8px var(--container-pad) 28px;
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity var(--ease), transform var(--ease), visibility var(--ease);
}
.header.is-nav-open .mobile-nav {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.mobile-nav__link {
  display: block;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  color: var(--text-main);
  padding: 16px 0;
  border-bottom: 1px solid var(--border-soft);
  transition: color var(--ease);
}
.mobile-nav__link:hover,
.mobile-nav__link[aria-current='page'] { color: var(--gold-main); }
.mobile-nav__cta {
  display: block;
  width: 100%;
  margin-top: 24px;
  text-align: center;
}

body.nav-open { overflow: hidden; }

/* Backdrop hinter dem Drawer */
.nav-backdrop {
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 98;
  background: rgba(35, 26, 22, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--ease), visibility var(--ease);
}
.header.is-nav-open ~ .nav-backdrop,
body.nav-open .nav-backdrop {
  opacity: 1;
  visibility: visible;
}

/* ---------- Hero ---------- */
.hero {
  padding: 88px 0 64px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 72px;
  align-items: stretch;
}

.hero__headline {
  font-size: clamp(64px, 6vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 22px 0 0;
}

.hero__subline {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 500;
  color: var(--text-main);
  margin-top: 28px;
}

.hero__body {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 56ch;
  margin-top: 20px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
  flex-wrap: wrap;
}

/* Trust-Bar */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border-soft);
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
  max-width: 200px;
}
.trust-bar__icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--gold-main);
}
.trust-bar__icon svg {
  width: 18px;
  height: 18px;
}

/* Hero Media: Portrait oben, Szenen-Bild füllt die freie Fläche darunter */
.hero__media {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
  /* Aus dem Grid-Stretch lösen, sonst kompensiert das Layout den margin-top */
  align-self: start;
  /* Foto-Oberkante auf Höhe des Textanfangs (Overline) */
  margin-top: 4px;
}
.hero__portrait {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 3 / 4;
  flex: none;
  object-fit: cover;
  object-position: center top;
  border-radius: 16px;
  box-shadow: var(--shadow-bold);
}
.hero__scene {
  width: 100%;
  max-width: 440px;
  flex: 1 1 auto;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  /* Szenen-Bild ca. 4cm tiefer: mehr Abstand zum Portrait, weniger Weißraum darunter */
  margin-top: 64px;
}

/* ---------- Section Basis (wiederverwendbar) ---------- */
.section {
  padding: var(--section-pad) 0;
}

.section__head {
  max-width: 640px;
  margin-bottom: 40px;
}
.section__head .overline,
.section__head .conversation {
  display: block;
  margin-bottom: 18px;
}

.section__head--center {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section__title {
  font-size: clamp(48px, 4.5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.section__subline {
  font-size: 19px;
  line-height: 1.6;
  color: var(--text-soft);
  margin-top: 22px;
}

/* ---------- Card Basis (wiederverwendbar) ---------- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 40px;
  transition: transform 0.3s ease, border-color 0.3s ease,
    box-shadow 0.3s ease, background-color 0.3s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-soft);
  box-shadow: var(--shadow-bold);
}

/* Dezenter Gold-Wash beim Hover (Problem / Lösung / Prozess) */
.problem-card:hover,
.feature-card:hover,
.process-card:hover {
  background-color: rgba(201, 151, 63, 0.06);
}
.card--top {
  border-top: 4px solid var(--gold-main);
}

/* ---------- Icon Circle (wiederverwendbar) ---------- */
.icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--gold-main);
  display: grid;
  place-items: center;
}
.icon-circle svg {
  width: 42px;
  height: 42px;
}

/* ---------- Stats ---------- */
.stats__context {
  text-align: center;
  font-size: 15px;
  font-style: italic;
  color: var(--text-muted);
  margin: -16px 0 32px;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.stat-card__number {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 72px;
  line-height: 1;
  color: var(--gold-main);
  margin-top: 28px;
}
.stat-card__label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-dark);
  margin-top: 12px;
}
.stat-card__text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-soft);
  margin-top: 14px;
}

/* Benefit-Ticker (Endlos-Marquee) */
.ticker {
  margin-top: 68px;
  margin-bottom: -56px;
  padding: 22px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.ticker__track {
  display: flex;
  width: max-content;
  animation: tickerScroll 38s linear infinite;
}
.ticker__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.ticker__item {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-main);
  padding: 0 26px;
  white-space: nowrap;
}
.ticker__sep {
  color: var(--gold-main);
  font-weight: 700;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes tickerFade {
  0%     { opacity: 0; }
  1.48%  { opacity: 1; }
  9.63%  { opacity: 1; }
  11.11% { opacity: 0; }
  100%   { opacity: 0; }
}

/* ---------- Problem ---------- */
.problem__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.problem-card {
  display: flex;
  flex-direction: column;
}
.problem-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.problem-card__num {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 2rem;
  line-height: 1;
  color: var(--gold-main);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.problem-card__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--gold-main);
}
.problem-card__icon svg {
  width: 36px;
  height: 36px;
}
.problem-card__title {
  font-size: 26px;
  line-height: 1.15;
}
.problem-card__text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-soft);
  margin-top: 14px;
}

/* ---------- Lösung ---------- */
.loesung .container {
  position: relative;
}
/* Dezentes Logo als Branding-Element in der rechten Freifläche */
.loesung__brand {
  position: absolute;
  top: 50%;                 /* vertikal mittig zur Section-Headline */
  left: 100%;               /* rechts neben dem Head (max-width 640) */
  transform: translateY(-50%);
  margin-left: 183px; /* mittig über der Performance-Card */
  height: 360px;
  width: auto;
  opacity: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.loesung .section__head,
.loesung .solution__grid {
  position: relative;
  z-index: 1;
}

/* ---------- Feature-Card (Lösung, wiederverwendbar) ---------- */
.solution__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-card {
  display: flex;
  flex-direction: column;
}
.feature-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.feature-card__icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  color: var(--gold-main);
}
.feature-card__icon svg {
  width: 42px;
  height: 42px;
}
.feature-card__title {
  font-size: 30px;
  line-height: 1.1;
}
.feature-card__text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-soft);
  margin-top: 16px;
}

/* ---------- Cases ---------- */
.cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.case-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.case-card__img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  border-bottom: 1px solid var(--border-soft);
}
.case-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 28px 32px 32px;
}
.case-card__ba {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
}
.case-card__before,
.case-card__after {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}
.ba-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.case-card__before {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}
.case-card__before .ba-label {
  color: var(--text-muted);
}
.case-card__after {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
}
.case-card__after .ba-label {
  color: var(--gold-dark);
}
.case-card__arrow {
  flex-shrink: 0;
  color: var(--gold-main);
  display: inline-flex;
}
.case-card__arrow svg {
  width: 22px;
  height: 22px;
}
.case-card__titlerow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}
.case-card__title {
  font-size: 28px;
  line-height: 1.1;
}
.case-card__cat {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-main);
  margin-top: 12px;
}
.case-card__text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-soft);
  margin-top: 14px;
}
.case-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 26px;
}
.case-card__metrics {
  display: flex;
  gap: 22px;
}
.case-card__metrics li {
  display: flex;
  flex-direction: column;
}
.case-card__metrics .m-num {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 26px;
  line-height: 1;
  color: var(--gold-main);
}
.case-card__metrics .m-lbl {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-top: 6px;
}
.case-card__cta {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-main);
  color: var(--bg-white);
  display: grid;
  place-items: center;
  transition: background-color var(--ease), transform var(--ease);
}
.case-card__cta svg {
  width: 22px;
  height: 22px;
}
.case-card__cta:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

/* ---------- Testimonials ---------- */
.pullquote {
  max-width: 900px;
  margin: 0 auto 72px;
  text-align: center;
}
.pullquote__mark {
  display: block;
  font-family: var(--font-head);
  font-size: 96px;
  line-height: 0.6;
  color: var(--gold-soft);
}
.pullquote__text {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.25;
  color: var(--text-main);
  margin-top: 12px;
}
.pullquote__author {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-dark);
  margin-top: 24px;
}

.featured-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
}
.featured-card__media {
  min-height: 100%;
}
.featured-card__media img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  object-position: center top;
}
.featured-card__content {
  padding: 48px 52px;
}
.featured-card__mark {
  font-family: var(--font-head);
  font-size: 72px;
  line-height: 0.5;
  color: var(--gold-soft);
  display: block;
}
.featured-card__quote {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.3;
  color: var(--text-main);
  margin-top: 18px;
}
.featured-card__divider {
  border: none;
  border-top: 1px solid var(--gold-light);
  margin: 28px 0 20px;
}
.featured-card__name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 22px;
  color: var(--text-main);
}
.featured-card__role {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 2px;
}
.featured-card__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 26px;
}
.featured-card__metrics li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
}
.fm-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--gold-main);
  display: grid;
  place-items: center;
}
.fm-icon svg { width: 18px; height: 18px; }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 28px;
}
.t-card {
  display: flex;
  flex-direction: column;
}
.t-card__head {
  display: flex;
  align-items: center;
  gap: 16px;
}
.t-card__photo {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
}
.t-card__name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 20px;
  color: var(--text-main);
}
.t-card__role {
  font-size: 13px;
  color: var(--text-muted);
}
.t-card__quote {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-soft);
  margin-top: 22px;
}

/* ---------- Pricing ---------- */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
.price-card {
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card--featured {
  border: 2px solid var(--gold-main);
  background: linear-gradient(180deg, #FBF1DD 0%, #FDF8EE 100%);
  box-shadow: var(--shadow-bold);
}
.price-card--featured .price-card__divider {
  border-top-color: var(--gold-light);
}
.price-card--featured .check {
  background: var(--bg-white);
}
.price-card__badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--gold-main);
  color: var(--bg-white);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 8px 18px;
  border-radius: 3px;
}
.price-card__name {
  font-size: 34px;
  line-height: 1.05;
}
.price-card__tagline {
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-soft);
  margin-top: 10px;
  min-height: 45px;
}
.price-card__divider {
  border: none;
  border-top: 1px solid var(--border-soft);
  margin: 24px 0;
}
.price-card__pricing {
  display: flex;
  gap: 28px;
}
.price-block {
  display: flex;
  flex-direction: column;
}
.price-block__num {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 40px;
  line-height: 1;
  color: var(--text-main);
}
.price-block__lbl {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-top: 8px;
}
/* Monatspreis als dominante Hauptzahl */
.price-block--hero .price-block__num {
  font-size: 52px;
  color: var(--gold-dark);
}
.price-block__per {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 6px;
  letter-spacing: 0;
}
.price-block__setup {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 10px;
}
.price-card__note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 14px;
}
.price-card__features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0 32px;
  flex: 1;
}
.price-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--text-soft);
}
.check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--gold-main);
  display: grid;
  place-items: center;
}
.check svg { width: 13px; height: 13px; }

/* ---------- Prozess ---------- */
.process__intro {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 52px;
}
.process__intro-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}
.process__intro-text {
  margin-bottom: 0;
  max-width: none;
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.process-card {
  position: relative;
}
.process-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 62px;
  right: -28px;
  width: 28px;
  border-top: 2px dashed var(--gold-soft);
  z-index: 1;
}
.process-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.process-card__num {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 44px;
  line-height: 1;
  color: var(--gold-main);
  flex-shrink: 0;
}
.process-card__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--gold-main);
}
.process-card__icon svg { width: 36px; height: 36px; }
.process-card__title {
  font-size: 28px;
  line-height: 1.15;
}
.process-card__text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-soft);
  margin-top: 14px;
}

.process-banner {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 48px;
  padding: 40px 48px;
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
}
.process-banner__icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-card);
  color: var(--gold-main);
  display: grid;
  place-items: center;
}
.process-banner__icon svg { width: 32px; height: 32px; }
.process-banner__text {
  flex: 1;
}
.process-banner__title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 26px;
  line-height: 1.15;
  color: var(--text-main);
}
.process-banner__sub {
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-soft);
  margin-top: 8px;
}
.process-banner__cta {
  flex-shrink: 0;
}

/* ---------- Finaler CTA ---------- */
.cta__inner {
  text-align: center;
  max-width: 820px;
}
.cta .overline,
.cta .conversation {
  display: block;
  margin-bottom: 22px;
}
.cta__headline {
  font-size: clamp(48px, 5vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.cta__subline {
  font-size: 19px;
  line-height: 1.6;
  color: var(--text-soft);
  margin: 26px auto 0;
  max-width: 640px;
}
.cta .btn--lg {
  margin-top: 40px;
}
.cta__trust {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 22px;
  letter-spacing: 0.02em;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-main);
  border-top: 1px solid var(--border-soft);
  padding: 56px 0 40px;
}
.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer__nav {
  display: flex;
  gap: 32px;
}
.footer__nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-soft);
  transition: color var(--ease);
}
.footer__nav a:hover { color: var(--gold-main); }
.footer__social {
  display: flex;
  gap: 14px;
}
.footer__social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-soft);
  color: var(--gold-main);
  display: grid;
  place-items: center;
  transition: border-color var(--ease), background-color var(--ease), transform var(--ease);
}
.footer__social-link svg { width: 20px; height: 20px; }
.footer__social-link:hover {
  border-color: var(--gold-soft);
  background: var(--bg-soft);
  transform: translateY(-2px);
}

/* Brand-Icons (Instagram/TikTok/LinkedIn) tragen ihre eigenen Marken-Farben.
   Dezenter Hover: leichte Skalierung, kein Gold-Tint. */
.footer__social-link--brand {
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.footer__social-link--brand:hover {
  background: transparent;
  border-color: var(--gold-soft);
  transform: scale(1.1);
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border-soft);
}
.footer__copy {
  font-size: 13px;
  color: var(--text-muted);
}
.footer__legal {
  display: flex;
  gap: 24px;
}
.footer__legal a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color var(--ease);
}
.footer__legal a:hover { color: var(--gold-main); }

/* ---------- Rechtliche Seiten (Impressum / Datenschutz) ---------- */
.legal {
  padding: 80px 0 96px;
}
.legal__inner {
  max-width: 760px;
  margin: 0 auto;
}
.legal__head {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-soft);
}
.legal__title {
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-top: 14px;
}
.legal__body {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-soft);
}
.legal__body h2 {
  font-size: 30px;
  line-height: 1.15;
  color: var(--text-main);
  margin: 46px 0 14px;
}
.legal__body h3 {
  font-size: 23px;
  line-height: 1.2;
  color: var(--text-main);
  margin: 32px 0 10px;
}
.legal__body > :first-child {
  margin-top: 0;
}
.legal__body p {
  margin: 0 0 18px;
}
.legal__address {
  font-style: normal;
  line-height: 1.75;
  margin: 0 0 18px;
}
.legal__body ul {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}
.legal__body li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
}
.legal__body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-main);
}
.legal__body a {
  color: var(--gold-dark);
  border-bottom: 1px solid var(--gold-soft);
  transition: color var(--ease), border-color var(--ease);
  word-break: break-word;
}
.legal__body a:hover {
  color: var(--gold-main);
  border-color: var(--gold-main);
}
.legal__updated {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--border-soft);
  font-size: 14px;
  color: var(--text-muted);
}
.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 52px;
  font-size: 15px;
  font-weight: 500;
  color: var(--gold-dark);
  transition: color var(--ease);
}
.legal__back:hover { color: var(--gold-main); }

@media (max-width: 720px) {
  .legal { padding: 56px 0 72px; }
  .legal__body h2 { font-size: 26px; }
  .legal__body h3 { font-size: 21px; }
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Gestaffeltes Fade-in für Section-Überschriften:
   Conversation-Statement / Overline zuerst, Headline 0.2s danach. */
.reveal--head {
  opacity: 1;
  transform: none;
  transition: none;
}
.reveal--head .overline,
.reveal--head .conversation,
.reveal--head .section__title,
.reveal--head .cta__headline,
.reveal--head .section__subline,
.reveal--head .cta__subline {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.reveal--head.is-visible .overline,
.reveal--head.is-visible .conversation {
  opacity: 1;
  transform: translateY(0);
}
.reveal--head.is-visible .section__title,
.reveal--head.is-visible .cta__headline,
.reveal--head.is-visible .section__subline,
.reveal--head.is-visible .cta__subline {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal--head .overline,
  .reveal--head .conversation,
  .reveal--head .section__title,
  .reveal--head .cta__headline,
  .reveal--head .section__subline,
  .reveal--head .cta__subline {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  :root { --container-pad: 40px; --section-pad: 68px; }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero__media {
    align-items: center;
    margin-top: 0; /* gestapelt unter dem Text – kein Versatz nötig */
  }
  .hero__portrait {
    max-width: 380px;
  }
  /* Mobil/Tablet: Szenen-Bild volle Breite unter den Badges/Portrait */
  .hero__scene {
    max-width: 100%;
    flex: none;
    aspect-ratio: 16 / 10;
    margin-top: 0; /* gestapelt – kein Extra-Versatz */
  }

  .stats__grid {
    grid-template-columns: 1fr;
  }

  .process__intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .solution__grid {
    grid-template-columns: 1fr;
  }
  .loesung__brand { display: none; } /* dekoratives Brand-Logo nur auf Desktop */
  .cases__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
  .featured-card {
    grid-template-columns: 1fr;
  }
  .featured-card__media img {
    min-height: 280px;
  }
  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .price-card--featured {
    margin-top: 16px;
  }
  .price-card__tagline { min-height: 0; }

  .process__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .process-card:not(:last-child)::after { display: none; }

  .process-banner {
    flex-direction: column;
    text-align: center;
    padding: 36px 32px;
  }
}

@media (max-width: 900px) {
  /* Desktop-Nav und Header-CTA weichen dem Burger-Menü */
  .nav { display: none; }
  .header__cta { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 720px) {
  :root { --container-pad: 24px; --section-pad: 56px; --header-h: 76px; }

  .loesung__brand { display: none; }
  .logo { font-size: 18px; gap: 9px; }
  .logo__swoosh { height: 32px; }
  .hero { padding: 80px 0 64px; }
  .hero__actions { gap: 18px; }
  .trust-bar__item { max-width: none; }

  .stat-card__number { font-size: 60px; }

  .problem__grid { grid-template-columns: 1fr; }
  .problem-card__title { font-size: 26px; }

  .featured-card__content { padding: 36px 28px; }
  .case-card__metrics { gap: 16px; }
  .case-card__metrics .m-num { font-size: 22px; }

  .footer__top { flex-direction: column; align-items: flex-start; gap: 24px; }
  .footer__nav { flex-wrap: wrap; gap: 18px 24px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ---------- Ticker: Mobil als Fade-Wechsel (ein Begriff alle 3s) ---------- */
@media (max-width: 767px) {
  .ticker {
    -webkit-mask-image: none;
    mask-image: none;
  }
  .ticker__track {
    display: block;
    width: 100%;
    animation: none;
  }
  .ticker__group:last-child { display: none; }
  .ticker__group:first-child {
    position: relative;
    display: block;
    height: 1.7em;
    text-align: center;
  }
  .ticker__sep { display: none; }
  .ticker__item {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    padding: 0;
    text-align: center;
    opacity: 0;
    animation: tickerFade 27s infinite;
    animation-delay: calc(var(--i, 0) * 3s);
  }
}

/* Reduced Motion: kein Scroll/Fade — einen Begriff statisch zeigen */
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
  .ticker__item { animation: none; }
}
@media (max-width: 767px) and (prefers-reduced-motion: reduce) {
  .ticker__item { opacity: 0; }
  .ticker__group:first-child .ticker__item:first-child { opacity: 1; }
}

/* ============================================================
   Cookie-Consent-Banner
   ============================================================ */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: var(--bg-main);
  border-top: 1px solid var(--border-soft);
  box-shadow: 0 -16px 50px rgba(80, 55, 30, 0.1);
  /* Start: unten ausserhalb des Viewports, fuer Einschiebe-Animation */
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.3s ease;
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 22px 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.cookie-banner__text {
  flex: 1 1 auto;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-soft);
  margin: 0;
}
.cookie-banner__text a {
  color: var(--gold-main);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--ease);
}
.cookie-banner__text a:hover { color: var(--gold-dark); }

.cookie-banner__actions {
  flex: 0 0 auto;
  display: flex;
  gap: 14px;
}

/* Beide Buttons GLEICH gross und gleich gewichtet */
.cookie-btn {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  min-width: 150px;
  padding: 15px 28px;
  border-radius: 3px;
  cursor: pointer;
  text-align: center;
  transition: transform var(--ease), background-color var(--ease),
    color var(--ease), border-color var(--ease);
}
.cookie-btn--accept {
  background-color: var(--gold-main);
  color: var(--bg-white);
  border: 1px solid var(--gold-main);
}
.cookie-btn--accept:hover {
  background-color: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
}
.cookie-btn--reject {
  background-color: transparent;
  color: var(--gold-main);
  border: 1px solid var(--gold-main);
}
.cookie-btn--reject:hover {
  background-color: var(--gold-main);
  color: var(--bg-white);
  transform: translateY(-2px);
}

/* Footer-Link "Cookie-Einstellungen" – unauffaellig, wie footer__legal */
.cookie-settings-link {
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--ease);
}
.cookie-settings-link:hover { color: var(--gold-main); }

/* Mobile: vertikal stapeln, Buttons volle Breite */
@media (max-width: 767px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 20px 24px calc(20px + env(safe-area-inset-bottom, 0px));
  }
  .cookie-banner__text { text-align: left; }
  .cookie-banner__actions { width: 100%; }
  .cookie-btn { flex: 1 1 0; min-width: 0; }
}

/* Reduced Motion: kein Einschieben, nur sichtbar/verborgen */
@media (prefers-reduced-motion: reduce) {
  .cookie-banner {
    transition: opacity 0.3s ease;
    transform: none;
  }
}

/* ============================================================
   Über-mich-Seite (ueber-mich.html)
   ============================================================ */

/* Etwas Luft unter dem Sticky-Header für die erste Section */
.about-intro { padding: 132px 0 54px; }

.about-intro__grid {
  display: grid;
  grid-template-columns: 0.82fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.about-intro__media { margin: 0; }
.about-intro__portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 14px;
  box-shadow: var(--shadow-bold);
}
.about-intro__caption {
  margin-top: 18px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-main);
}
.about-intro__caption span { color: var(--text-muted); font-weight: 500; }

.about-intro__title {
  font-size: clamp(40px, 4vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 16px 0 24px;
}
.about-intro__lead { font-size: 19px; line-height: 1.7; }
.about-intro__lead p + p { margin-top: 18px; }
.about-intro__lead strong { color: var(--text-main); font-weight: 600; }

/* ---------- Timeline ---------- */
.timeline-section { padding: 40px 0 54px; }

.timeline {
  position: relative;
  max-width: 1080px;
  margin: 56px auto 0;
}
/* Zentrale Gold-Linie */
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  bottom: 8px;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(
    180deg,
    transparent 0%,
    var(--gold-soft) 6%,
    var(--gold-main) 50%,
    var(--gold-soft) 94%,
    transparent 100%
  );
}

.timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 64px;
}
.timeline__item:last-child { margin-bottom: 0; }

/* Zickzack: gerade Stationen spiegeln */
.timeline__item:nth-child(even) .timeline__media { order: 2; }
.timeline__item:nth-child(even) .timeline__content { order: 1; }

/* Nummern-Marker auf der Linie */
.timeline__marker {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-main);
  border: 2px solid var(--gold-main);
  color: var(--gold-dark);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 22px;
  /* Lining-Ziffern erzwingen: sonst rendert Cormorants "1" wie ein "I" */
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 6px var(--bg-main);
}

.timeline__media { margin: 0; }
.timeline__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}
/* Bilder in ihrem natürlichen Seitenverhältnis zeigen, damit nichts
   Wichtiges weggeschnitten wird (Produktreihe bzw. Profil-Bio voll sichtbar). */
.timeline__img--shop { aspect-ratio: 1280 / 977; }      /* 02 Onlineshop */
.timeline__img--profile { aspect-ratio: 1574 / 824; }   /* 08 Social Media */

.timeline__content { padding: 36px; }
.timeline__title {
  font-size: 30px;
  line-height: 1.12;
  margin-bottom: 14px;
}
.timeline__text { font-size: 17px; line-height: 1.7; }

/* "Für dich bedeutet das" – Gold-Akzent-Border links, leicht abgehoben */
.timeline__meaning {
  margin-top: 18px;
  padding: 14px 0 14px 20px;
  border-left: 3px solid var(--gold-main);
  background: rgba(201, 151, 63, 0.06);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-soft);
}
.timeline__meaning strong {
  font-style: normal;
  font-weight: 600;
  color: var(--gold-dark);
}

/* ---------- Abschluss-CTA ---------- */
.about-cta { padding: 40px 0 72px; }

/* Tablet / Mobile */
@media (max-width: 900px) {
  .about-intro { padding: 116px 0 40px; }
  .about-intro__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 560px;
    margin: 0 auto;
  }
  .about-intro__portrait { aspect-ratio: 4 / 4; }

  /* Timeline linksbündig, einspaltig, Bild über Text */
  .timeline { margin-top: 40px; }
  .timeline::before { left: 22px; }
  .timeline__item {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-left: 58px;
    margin-bottom: 44px;
  }
  .timeline__item:nth-child(even) .timeline__media,
  .timeline__item:nth-child(even) .timeline__content { order: 0; }
  .timeline__marker {
    left: 22px;
    top: 0;
    transform: translate(-50%, 0);
    width: 44px;
    height: 44px;
    font-size: 19px;
  }
  .timeline__content { padding: 24px; }
  .timeline__title { font-size: 26px; }
}

@media (max-width: 480px) {
  .timeline__item { padding-left: 48px; }
  .timeline::before { left: 18px; }
  .timeline__marker { left: 18px; width: 40px; height: 40px; font-size: 17px; }
}

/* ============================================================
   Booking-Choice-Modal (Strategiegespräch / Audit)
   ============================================================ */
.booking-lock { overflow: hidden; }

/* WICHTIG: explizite display-Werte überschreiben sonst das [hidden]-Attribut.
   Diese Regeln stellen sicher, dass verborgene Elemente wirklich weg sind. */
.booking-modal[hidden],
.booking-card__face[hidden],
.booking-form[hidden],
.booking-wizard[hidden],
.wizard-step[hidden],
.booking-slots__list[hidden],
.booking-slots__form[hidden],
.booking-success[hidden] { display: none; }

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.booking-modal.is-open { opacity: 1; }

.booking-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.booking-modal__box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 700px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--bg-main);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  box-shadow: var(--shadow-bold);
  padding: 44px 44px 40px;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.3s ease;
}
.booking-modal.is-open .booking-modal__box {
  transform: translateY(0) scale(1);
}

.booking-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-soft);
  background: var(--bg-white);
  color: var(--text-soft);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: color var(--ease), border-color var(--ease), transform var(--ease);
}
.booking-modal__close:hover {
  color: var(--gold-main);
  border-color: var(--gold-soft);
  transform: rotate(90deg);
}
.booking-modal__close svg { width: 18px; height: 18px; }

.booking-modal__head { margin-bottom: 28px; padding-right: 36px; }
.booking-modal__head .conversation { display: block; margin-bottom: 14px; }
.booking-modal__title {
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.booking-modal__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

/* Beide Karten gleich gewichtet */
.booking-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 28px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.booking-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-soft);
  box-shadow: var(--shadow-soft);
}

.booking-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--gold-main);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.booking-card__icon svg { width: 28px; height: 28px; }

.booking-card__title { font-size: 24px; line-height: 1.15; margin-bottom: 10px; }
.booking-card__text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-soft);
  margin-bottom: 22px;
}

/* Datenschutz-Hinweis direkt über dem jeweiligen CTA */
.booking-disclaimer {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0 0 12px;
}
.booking-disclaimer a {
  color: var(--gold-main);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--ease);
}
.booking-disclaimer a:hover { color: var(--gold-dark); }

/* Audit-"Face" füllt die Karte, damit der CTA unten bündig sitzt */
.booking-card__face {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

/* Karten-Fuß (Disclaimer + CTA) unten bündig halten */
.booking-card__foot { margin-top: auto; }
.booking-card__foot .booking-card__cta { margin-top: 0; }

/* Im Audit-Formular regelt der Flex-Gap den Abstand */
.booking-form .booking-disclaimer { margin-bottom: 0; }

/* CTA beider Karten: gleiche Größe (gefüllt vs. outline nur farblich) */
.booking-card__cta {
  margin-top: auto;
  width: 100%;
  padding: 15px 24px;
  font-size: 15px;
  border-radius: 3px;
}

/* ---------- Audit-Inline-Formular ---------- */
.booking-form { display: flex; flex-direction: column; gap: 14px; }
.booking-field { display: flex; flex-direction: column; gap: 6px; }
.booking-field label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-soft);
}
.booking-field input {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-main);
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  border-radius: 6px;
  padding: 12px 14px;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.booking-field input::placeholder { color: var(--text-muted); }
.booking-field input:focus {
  outline: none;
  border-color: var(--gold-main);
  box-shadow: 0 0 0 3px rgba(201, 151, 63, 0.15);
}

.booking-form__error {
  font-size: 14px;
  line-height: 1.5;
  color: #b3261e;
  margin-top: 2px;
}
.booking-form .btn { margin-top: 4px; }

.booking-form__back {
  align-self: flex-start;
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 2px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--ease);
}
.booking-form__back:hover { color: var(--gold-main); }

/* ---------- Erfolgsmeldung ---------- */
.booking-success {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding-top: 6px;
}
.booking-success__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201, 151, 63, 0.12);
  color: var(--gold-dark);
  display: grid;
  place-items: center;
}
.booking-success__icon svg { width: 26px; height: 26px; }
.booking-success p {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 20px;
  line-height: 1.4;
  color: var(--text-main);
}

/* ---------- Slot-Picker (Strategiegespräch) ---------- */
/* Sobald der Picker offen ist, nutzt die Call-Karte die volle Modalbreite
   und die Audit-Karte wird ausgeblendet. */
.booking-modal__cards.is-picker { grid-template-columns: 1fr; }
.booking-modal__cards.is-picker .booking-card--audit { display: none; }
.booking-modal__cards.is-picker .booking-card--call:hover {
  transform: none;
  border-color: var(--border-soft);
  box-shadow: none;
}

.booking-slots {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.booking-slots__title {
  font-size: 24px;
  line-height: 1.15;
  margin: 6px 0 6px;
}
.booking-slots__hint {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 18px;
}

/* Begrenzter, scrollbarer Bereich für die Tag-Akkordeons */
.booking-slots__list {
  max-height: 460px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-right: 8px;
  margin-bottom: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-soft) transparent;
}
.booking-slots__list::-webkit-scrollbar { width: 8px; }
.booking-slots__list::-webkit-scrollbar-thumb {
  background: var(--gold-light);
  border-radius: 8px;
}
.booking-slots__list::-webkit-scrollbar-track { background: transparent; }

/* ============================================================
   Step-Wizard (Strategiegespräch): Monat → Datum → Uhrzeit → Formular
   ============================================================ */
.booking-wizard { display: flex; flex-direction: column; flex: 1 1 auto; }

/* Breadcrumb: aktueller Schritt Gold, erledigte durchgestrichen/gedimmt */
.wizard-crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 8px;
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.wizard-crumb {
  color: var(--text-soft);
  transition: color var(--ease);
}
.wizard-crumb + .wizard-crumb::before {
  content: "›";
  margin-right: 8px;
  color: var(--border-soft);
  font-weight: 400;
}
.wizard-crumb.is-done {
  color: var(--text-muted);
  text-decoration: line-through;
  opacity: 0.75;
}
.wizard-crumb.is-active { color: var(--gold-main); }

/* Schritt-Wechsel: sanfte Fade-Transition (0.3s ease) */
.wizard-step { animation: wizardFade 0.3s ease; }
@keyframes wizardFade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}

/* Schritt 1: Monatskacheln */
.month-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 4px;
}
.month-tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  padding: 22px 18px;
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  cursor: pointer;
  text-align: left;
  transition: border-color var(--ease), box-shadow var(--ease),
    transform var(--ease), background var(--ease);
}
.month-tile:hover {
  border-color: var(--gold-main);
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}
.month-tile.is-active {
  background: var(--gold-main);
  border-color: var(--gold-main);
}
.month-tile__name {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.05;
  color: var(--text-main);
}
.month-tile__year { font-size: 13px; color: var(--text-muted); }
.month-tile.is-active .month-tile__name,
.month-tile.is-active .month-tile__year { color: #fff; }

/* Schritt 2: Datumsliste – klickbare Zeilen (führen zu Schritt 3) */
.date-row {
  width: 100%;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 18px;
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-main);
  text-align: left;
  transition: background var(--ease), color var(--ease),
    border-color var(--ease), transform var(--ease);
}
.date-row:hover {
  border-color: var(--gold-soft);
  color: var(--gold-dark);
  transform: translateX(2px);
}
.date-row__arrow { flex: none; display: grid; place-items: center; color: var(--gold-main); }
.date-row__arrow svg { width: 18px; height: 18px; }

/* Schritt 3: Uhrzeiten – 6 Chips im 3er-Grid (2 Reihen) */
.time-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 4px;
}
.slot-chip {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  color: var(--gold-dark);
  background: var(--bg-white);
  border: 1px solid var(--gold-soft);
  border-radius: 999px;
  padding: 12px 10px;
  cursor: pointer;
  transition: background var(--ease), color var(--ease),
    border-color var(--ease), transform var(--ease);
}
.slot-chip:hover {
  background: var(--gold-main);
  border-color: var(--gold-main);
  color: #fff;
  transform: translateY(-1px);
}

/* Zusammenfassung der bisherigen Wahl */
.wizard-summary {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 0 16px;
}
/* Termin-Banner in Schritt 4 (Gold-Akzent) */
.wizard-termin {
  font-family: var(--font-head);
  font-size: 21px;
  font-weight: 600;
  color: var(--gold-dark);
  margin: 2px 0 22px;
  padding: 14px 18px;
  background: var(--bg-soft);
  border: 1px solid var(--gold-light);
  border-left: 3px solid var(--gold-main);
  border-radius: 10px;
}

.booking-slots__form { display: flex; flex-direction: column; gap: 14px; }
.booking-slots__form .booking-disclaimer { margin-bottom: 0; }
.booking-slots__form .btn[disabled] { opacity: 0.5; cursor: not-allowed; }
.booking-slots__form .btn[disabled]:hover { transform: none; background: var(--gold-main); }

/* Honeypot – für Menschen komplett unsichtbar, aus dem Fokus-Fluss raus */
.booking-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

/* Checkbox "Ich habe noch keine Website" */
.booking-check {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-soft);
  user-select: none;
}
.booking-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--gold-main);
  cursor: pointer;
  flex: none;
}

/* Deaktiviertes Website-Feld (Checkbox aktiv): ausgegraut, nicht editierbar */
.booking-field[data-website-field].is-disabled { opacity: 0.45; }
.booking-field[data-website-field].is-disabled input {
  background: var(--bg-soft);
  cursor: not-allowed;
  pointer-events: none;
}

/* ---------- Mobile ---------- */
@media (max-width: 640px) {
  .booking-modal { padding: 0; align-items: stretch; }
  .booking-modal__box {
    max-width: 100%;
    max-height: 100vh;
    min-height: 100vh;
    border-radius: 0;
    padding: 72px 22px 32px;
  }
  .booking-modal__cards { grid-template-columns: 1fr; }
  .booking-card { padding: 24px; }
  .booking-field input { font-size: 16px; } /* kein iOS-Zoom */
  .booking-slots__list { max-height: 52vh; }
  .month-grid { grid-template-columns: repeat(2, 1fr); }
  .month-tile { padding: 18px 16px; }
  .month-tile__name { font-size: 22px; }
  .time-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .booking-modal,
  .booking-modal__box,
  .booking-modal__close { transition: opacity 0.2s ease; transform: none; }
  .wizard-step { animation: none; }
}
