/* ═══════════════════════════════════════════════════════════
   LEADCROWN | Stylesheet
   Farben stammen aus dem Logo. Willst du etwas global ändern,
   fass nur den :root-Block unten an, der Rest zieht nach.
   ═══════════════════════════════════════════════════════════ */

:root {
  /* Marke */
  --navy-950: #060C17;
  --navy-900: #0B1526;
  --navy-850: #0E1B30;
  --navy-800: #0F1B34;   /* Hintergrund aus deinem Logo */
  --navy-700: #16243F;
  --navy-600: #1E3054;

  --gold:       #D8A94E;
  --gold-soft:  #E6C078;
  --gold-deep:  #B98D34;

  --cream:  #F5F1E8;
  --white:  #FFFFFF;
  --slate:  #93A3BE;   /* Fließtext auf dunklem Grund */
  --slate-dim: #6B7C99;

  /* Flächen */
  --surface:      rgba(255, 255, 255, 0.035);
  --surface-hi:   rgba(255, 255, 255, 0.06);
  --line:         rgba(255, 255, 255, 0.09);
  --line-hi:      rgba(216, 169, 78, 0.38);

  /* Typo */
  --f-display: 'Sora', system-ui, sans-serif;
  --f-body:    'Inter', system-ui, -apple-system, sans-serif;

  /* Raster */
  --wrap: 1180px;
  --wrap-narrow: 780px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --sec-y: clamp(5rem, 11vw, 9rem);
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;   /* damit die fixe Navigation Anker nicht verdeckt */
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--f-body);
  background: var(--navy-900);
  color: var(--slate);
  font-size: 1.0625rem;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
svg { display: block; }
a  { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; color: inherit; }

::selection { background: var(--gold); color: var(--navy-900); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--gold); color: var(--navy-900);
  padding: .75rem 1.25rem; border-radius: 0 0 var(--r-sm) 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ─── Layout ─── */
.container {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad);
}
.container--narrow { max-width: var(--wrap-narrow); }

.section { padding-block: var(--sec-y); position: relative; }
.section--dark { background: var(--navy-950); }

/* ─── Typografie-Bausteine ─── */
.eyebrow {
  font-family: var(--f-display);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: .8rem;
}
.eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--gold);
  opacity: .7;
  flex: none;
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: '';
  width: 28px; height: 1px;
  background: var(--gold);
  opacity: .7;
}

.sec-head { max-width: 640px; margin-bottom: clamp(2.75rem, 6vw, 4.5rem); }
.sec-head--center { margin-inline: auto; text-align: center; }

.sec-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(1.95rem, 4.3vw, 3.1rem);
  line-height: 1.12;
  letter-spacing: -.02em;
  color: var(--cream);
  margin-bottom: 1.15rem;
}

.sec-lead { font-size: clamp(1.02rem, 1.6vw, 1.17rem); color: var(--slate); }

.gold-text {
  background: linear-gradient(100deg, var(--gold-soft), var(--gold) 45%, var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.check { width: 16px; height: 16px; color: var(--gold); flex: none; }

/* ═══════════ BUTTONS ═══════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  padding: .95rem 1.6rem;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease),
              background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform .35s var(--ease); }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 55%, var(--gold-deep));
  color: var(--navy-900);
  box-shadow: 0 6px 22px -8px rgba(216,169,78,.55);
}
/* Glanz-Schimmer, der beim Hover über den Button läuft */
.btn--gold::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 25%, rgba(255,255,255,.5) 50%, transparent 75%);
  transform: translateX(-120%);
  transition: transform .75s var(--ease);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -10px rgba(216,169,78,.7);
}
.btn--gold:hover::after { transform: translateX(120%); }
.btn--gold:hover svg { transform: translateX(4px); }

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--line);
}
.btn--ghost:hover {
  border-color: var(--line-hi);
  background: var(--surface);
  transform: translateY(-2px);
}

.btn--lg { padding: 1.1rem 2rem; font-size: 1rem; }
.btn--sm { padding: .68rem 1.2rem; font-size: .875rem; }
.btn--block { width: 100%; }
.btn:active { transform: translateY(0); }

/* ═══════════ NAVIGATION ═══════════ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .4s var(--ease), border-color .4s var(--ease), padding .4s var(--ease);
  border-bottom: 1px solid transparent;
  padding-block: .85rem;
}
.nav.is-scrolled {
  background: rgba(11, 21, 38, .82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
  padding-block: .45rem;
}

.nav__inner {
  width: 100%; max-width: var(--wrap);
  margin-inline: auto; padding-inline: var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}

/* Logo-Kombination: Siegel + Schriftzug.
   Das Siegel allein traegt den Firmennamen nicht, deshalb steht er daneben. */
.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  transition: opacity .3s var(--ease);
}
.brand:hover { opacity: .85; }

.brand__mark {
  height: clamp(36px, 4.4vw, 44px);
  width: auto;
  border-radius: 22%;   /* das Siegel ist selbst schon rund, das glaettet nur die Kante */
  transition: height .4s var(--ease);
}
.nav.is-scrolled .brand__mark { height: 34px; }

.brand__name {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(1.1rem, 1.9vw, 1.32rem);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1;
  white-space: nowrap;
}
.brand__name-gold { color: var(--gold); }

.brand--lg .brand__mark { height: 54px; }
.brand--lg .brand__name { font-size: 1.45rem; }

.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links > a:not(.btn) {
  font-size: .93rem;
  font-weight: 500;
  color: var(--slate);
  position: relative;
  padding-block: .3rem;
  transition: color .25s var(--ease);
}
.nav__links > a:not(.btn)::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}
.nav__links > a:not(.btn):hover { color: var(--cream); }
.nav__links > a:not(.btn):hover::after { transform: scaleX(1); transform-origin: left; }

.nav__burger {
  display: none;
  background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav__burger span {
  width: 24px; height: 2px; border-radius: 2px;
  background: var(--cream);
  transition: transform .35s var(--ease), opacity .25s var(--ease);
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative;
  min-height: min(100svh, 900px);
  display: flex;
  align-items: center;
  padding-block: clamp(8rem, 16vh, 11rem) clamp(4rem, 9vh, 7rem);
  background: var(--navy-900);
  overflow: hidden;
}

/* Goldener Lichtschein hinter der Headline */
.hero__glow {
  position: absolute;
  top: -18%; left: 50%;
  width: min(1100px, 130%);
  aspect-ratio: 1;
  transform: translateX(-50%);
  background: radial-gradient(circle,
    rgba(216,169,78,.16) 0%,
    rgba(216,169,78,.06) 32%,
    transparent 62%);
  pointer-events: none;
}

/* Feines Raster im Hintergrund, gibt Tiefe, ohne aufzufallen */
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(ellipse 75% 60% at 50% 42%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 75% 60% at 50% 42%, #000 20%, transparent 78%);
  opacity: .55;
  pointer-events: none;
}

.hero__inner { position: relative; z-index: 1; text-align: center; }
.hero .eyebrow { justify-content: center; }
.hero .eyebrow::after {
  content: '';
  width: 28px; height: 1px; background: var(--gold); opacity: .7;
}

.hero__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(2.35rem, 6.4vw, 4.6rem);
  line-height: 1.06;
  letter-spacing: -.03em;
  color: var(--cream);
  margin-bottom: 1.6rem;
  text-wrap: balance;
}

.hero__sub {
  max-width: 640px;
  margin: 0 auto 2.6rem;
  font-size: clamp(1.05rem, 1.9vw, 1.28rem);
  color: var(--slate);
  text-wrap: pretty;
}

.hero__cta {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: center;
  margin-bottom: 3.4rem;
}

.hero__trust {
  list-style: none;
  display: flex; flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2.2rem;
  font-size: .92rem;
  color: var(--slate-dim);
}
.hero__trust li { display: flex; align-items: center; gap: .55rem; }

.hero__scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 38px;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: grid; place-items: start center;
  padding-top: 7px;
}
.hero__scroll span {
  width: 3px; height: 7px; border-radius: 2px;
  background: var(--gold);
  animation: scrollDot 1.9s var(--ease) infinite;
}
@keyframes scrollDot {
  0%, 100% { opacity: 0; transform: translateY(0); }
  35%      { opacity: 1; }
  70%      { opacity: 0; transform: translateY(12px); }
}

/* ═══════════ PROBLEM ═══════════ */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 1.25rem;
}

.pain {
  position: relative;
  padding: 2.1rem 1.75rem 1.9rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform .45s var(--ease), border-color .45s var(--ease), background .45s var(--ease);
}
.pain::before {   /* goldene Kante, die beim Hover einfährt */
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .55s var(--ease);
}
.pain:hover {
  transform: translateY(-5px);
  border-color: var(--line-hi);
  background: var(--surface-hi);
}
.pain:hover::before { transform: scaleX(1); }

.pain__no {
  display: block;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 2rem;
  color: rgba(216,169,78,.24);
  line-height: 1;
  margin-bottom: 1rem;
}
.pain h3 {
  font-family: var(--f-display);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: .6rem;
  line-height: 1.35;
}
.pain p { font-size: .96rem; }

/* ═══════════ LEISTUNGEN ═══════════ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.svc {
  padding: 2.3rem 2rem;
  background: linear-gradient(160deg, var(--surface-hi), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: transform .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease);
}
.svc:hover {
  transform: translateY(-5px);
  border-color: var(--line-hi);
  box-shadow: 0 24px 50px -30px rgba(0,0,0,.85);
}

/* Die erste Karte nimmt die volle Breite, weil "Website" dein Kernprodukt ist */
.svc--wide { grid-column: 1 / -1; }
@media (min-width: 900px) {
  .svc-grid { grid-template-columns: repeat(3, 1fr); }
  .svc--wide { grid-column: span 3; }
}

.svc__icon {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 13px;
  background: rgba(216,169,78,.11);
  border: 1px solid rgba(216,169,78,.22);
  color: var(--gold);
  margin-bottom: 1.5rem;
  transition: transform .45s var(--ease);
}
.svc:hover .svc__icon { transform: scale(1.06) rotate(-3deg); }
.svc__icon svg { width: 24px; height: 24px; }

.svc h3 {
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: .7rem;
}
.svc p { font-size: .98rem; }

.svc__list {
  list-style: none;
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: .65rem 1.75rem;
}
.svc__list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: .93rem;
  color: var(--slate);
}
.svc__list li::before {
  content: '';
  position: absolute;
  left: 0; top: .62em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(216,169,78,.15);
}

/* ═══════════ ARBEITSPROBE ═══════════ */
.proof { background: var(--navy-950); }

.proof__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 940px) {
  .proof__grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.proof__text .sec-lead { margin-bottom: 1.4rem; }

.proof__ask {
  font-size: 1.02rem;
  margin-bottom: 2.2rem;
  padding-left: 1.15rem;
  border-left: 2px solid var(--gold);
  text-wrap: pretty;
}
.proof__ask strong { color: var(--cream); font-weight: 600; }

/* Die Faktenkarte: übernimmt die Rolle, die bei anderen Agenturen
   die Referenz-Zahlen spielen, nur mit nachprüfbaren Aussagen. */
.proof__facts {
  padding: clamp(1.75rem, 4vw, 2.4rem);
  background: linear-gradient(160deg, var(--surface-hi), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}

.proof__facts-title {
  font-family: var(--f-display);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 1.35rem;
  margin-bottom: 1.6rem;
  border-bottom: 1px solid var(--line);
}

.fact-list { list-style: none; display: flex; flex-direction: column; gap: 1.35rem; }

.fact { display: flex; gap: .95rem; align-items: flex-start; }
.fact .check { margin-top: .3rem; }
.fact strong {
  display: block;
  font-family: var(--f-display);
  font-size: .99rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: .15rem;
  line-height: 1.4;
}
.fact span { font-size: .9rem; line-height: 1.55; color: var(--slate); }

.proof__note {
  margin-top: 1.9rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: .87rem;
  color: var(--slate-dim);
  line-height: 1.6;
}

/* ═══════════ VERSPRECHEN ═══════════ */
.promise {
  position: relative;
  background: linear-gradient(180deg, var(--navy-900), var(--navy-850) 50%, var(--navy-900));
  overflow: hidden;
  border-block: 1px solid var(--line);
}
.promise__glow {
  position: absolute;
  top: 50%; left: 50%;
  width: min(900px, 120%);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(216,169,78,.13), transparent 60%);
  pointer-events: none;
}
.promise__inner {
  position: relative; z-index: 1;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}
.promise__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -.025em;
  color: var(--cream);
  margin-bottom: 1.4rem;
  text-wrap: balance;
}
.promise__text {
  font-size: clamp(1.03rem, 1.7vw, 1.16rem);
  margin-bottom: 3rem;
  text-wrap: pretty;
}

.promise__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
  margin-bottom: 2.6rem;
  text-align: left;
}
.pstep {
  display: flex; gap: .95rem;
  padding: 1.4rem 1.3rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  transition: border-color .4s var(--ease), transform .4s var(--ease);
}
.pstep:hover { border-color: var(--line-hi); transform: translateY(-3px); }
.pstep__no {
  flex: none;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(216,169,78,.13);
  border: 1px solid rgba(216,169,78,.35);
  color: var(--gold);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: .82rem;
}
.pstep p { font-size: .95rem; line-height: 1.6; }
.pstep strong { color: var(--cream); font-weight: 600; }

.promise__kicker {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  color: var(--cream);
  margin-bottom: 2.2rem;
}

/* ═══════════ ABLAUF ═══════════ */
.steps { list-style: none; position: relative; max-width: 830px; }
/* durchgehende Linie, die die vier Schritte verbindet */
.steps::before {
  content: '';
  position: absolute;
  left: 27px; top: 12px; bottom: 12px;
  width: 1px;
  background: linear-gradient(180deg, var(--gold), rgba(216,169,78,.12));
}

.step {
  display: flex;
  gap: clamp(1.25rem, 3vw, 2.25rem);
  padding-bottom: 3rem;
  position: relative;
}
.step:last-child { padding-bottom: 0; }

.step__no {
  flex: none;
  width: 55px; height: 55px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--navy-950);
  border: 1px solid rgba(216,169,78,.35);
  color: var(--gold);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: .95rem;
  position: relative;
  z-index: 1;
  transition: background .4s var(--ease), color .4s var(--ease), box-shadow .4s var(--ease);
}
.step:hover .step__no {
  background: var(--gold);
  color: var(--navy-900);
  box-shadow: 0 0 0 6px rgba(216,169,78,.11);
}

.step__body { padding-top: .55rem; }
.step__body h3 {
  font-family: var(--f-display);
  font-size: clamp(1.2rem, 2.3vw, 1.5rem);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: .6rem;
}
.step__body p { font-size: 1rem; max-width: 560px; }

/* ═══════════ INKLUSIVE ═══════════ */
.incl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.incl {
  padding: 1.85rem 1.6rem;
  background: var(--navy-900);
  transition: background .4s var(--ease);
}
.incl:hover { background: var(--navy-800); }
.incl__dot {
  display: block;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(216,169,78,.14);
  margin-bottom: 1.1rem;
}
.incl h3 {
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: .35rem;
}
.incl p { font-size: .9rem; line-height: 1.6; }

/* ═══════════ FAQ ═══════════ */
.faq { display: flex; flex-direction: column; gap: .75rem; }

.faq__item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color .35s var(--ease), background .35s var(--ease);
}
.faq__item:hover { border-color: var(--line-hi); }
.faq__item[open] { background: var(--surface-hi); border-color: var(--line-hi); }

.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.4rem 3.4rem 1.4rem 1.6rem;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.03rem;
  color: var(--cream);
  position: relative;
  line-height: 1.45;
}
.faq__item summary::-webkit-details-marker { display: none; }

/* Plus-Symbol, das sich beim Öffnen zum Minus dreht */
.faq__item summary::before,
.faq__item summary::after {
  content: '';
  position: absolute;
  right: 1.6rem; top: 50%;
  width: 13px; height: 2px;
  border-radius: 2px;
  background: var(--gold);
  transition: transform .4s var(--ease);
}
.faq__item summary::before { transform: translateY(-50%); }
.faq__item summary::after  { transform: translateY(-50%) rotate(90deg); }
.faq__item[open] summary::after { transform: translateY(-50%) rotate(0); }

.faq__body { padding: 0 1.6rem 1.5rem; }
.faq__body p { font-size: .98rem; }
.faq__body p + p { margin-top: .85rem; }

/* ═══════════ KONTAKT ═══════════ */
.contact {
  position: relative;
  background: linear-gradient(180deg, var(--navy-900), var(--navy-950));
  overflow: hidden;
}
.contact__glow {
  position: absolute;
  bottom: -30%; left: 50%;
  width: min(1000px, 130%);
  aspect-ratio: 1;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(216,169,78,.1), transparent 60%);
  pointer-events: none;
}

.contact__grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 940px) {
  .contact__grid { grid-template-columns: 1fr 1.05fr; gap: 2.5rem; }
}

/* Die drei Kontaktwege */
.contact__ways { display: flex; flex-direction: column; gap: .85rem; }

.way {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  padding: 1.35rem 1.4rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  transition: transform .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
}
.way:hover {
  transform: translateX(4px);
  border-color: var(--line-hi);
  background: var(--surface-hi);
}
.way--primary {
  background: linear-gradient(135deg, rgba(216,169,78,.14), rgba(216,169,78,.05));
  border-color: rgba(216,169,78,.4);
}

.way__icon {
  flex: none;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(216,169,78,.11);
  border: 1px solid rgba(216,169,78,.22);
  color: var(--gold);
}
.way__icon svg { width: 22px; height: 22px; }

.way__body { flex: 1; min-width: 0; }
.way__label {
  display: inline-block;
  font-family: var(--f-display);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(216,169,78,.13);
  border: 1px solid rgba(216,169,78,.3);
  padding: .16rem .5rem;
  border-radius: 5px;
  margin-bottom: .45rem;
}
.way__body h3 {
  font-family: var(--f-display);
  font-size: 1.06rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: .18rem;
}
.way__body p { font-size: .92rem; line-height: 1.5; }

.way__arrow {
  flex: none;
  width: 20px; height: 20px;
  color: var(--slate-dim);
  transition: transform .4s var(--ease), color .4s var(--ease);
}
.way:hover .way__arrow { transform: translateX(4px); color: var(--gold); }

.contact__note {
  display: flex; align-items: center; gap: .55rem;
  font-size: .89rem;
  color: var(--slate-dim);
  margin-top: .5rem;
  padding-left: .3rem;
}

/* ─── Formular ─── */
.contact__form-wrap {
  padding: clamp(1.75rem, 4vw, 2.5rem);
  background: linear-gradient(160deg, var(--surface-hi), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.form__title {
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: .35rem;
}
.form__sub { font-size: .94rem; margin-bottom: 1.9rem; }

.form { display: flex; flex-direction: column; gap: 1.05rem; }

.field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.05rem;
}
@media (min-width: 520px) {
  .field-row { grid-template-columns: 1fr 1fr; }
}

.field { display: flex; flex-direction: column; gap: .45rem; }
.field label {
  font-family: var(--f-display);
  font-size: .84rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: .01em;
}
.field label span { color: var(--gold); }

.field input,
.field textarea {
  width: 100%;
  padding: .88rem 1rem;
  background: rgba(6, 12, 23, .55);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  color: var(--cream);
  font-size: .97rem;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.field textarea { resize: vertical; min-height: 110px; line-height: 1.6; }

.field input::placeholder,
.field textarea::placeholder { color: var(--slate-dim); opacity: .65; }

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(6, 12, 23, .8);
  box-shadow: 0 0 0 3px rgba(216,169,78,.13);
}

.field.is-invalid input,
.field.is-invalid textarea { border-color: #E5674F; }

.field__err {
  font-size: .82rem;
  color: #F08A72;
  min-height: 0;
  display: none;
}
.field.is-invalid .field__err,
.field__err.is-shown { display: block; }

/* Spam-Falle: unsichtbar für Menschen, aber nicht via display:none (Bots prüfen das) */
.hp {
  position: absolute !important;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: .85rem;
  line-height: 1.55;
  color: var(--slate);
  cursor: pointer;
  margin-top: .2rem;
}
.consent input {
  flex: none;
  width: 18px; height: 18px;
  margin-top: .18rem;
  accent-color: var(--gold);
  cursor: pointer;
}
.consent a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.consent span span { color: var(--gold); }

/* Ladezustand des Absenden-Buttons */
.btn__spinner { display: none; width: 17px; height: 17px; }
.btn.is-loading { pointer-events: none; opacity: .75; }
.btn.is-loading .btn__label { display: none; }
.btn.is-loading .btn__spinner {
  display: block;
  border: 2px solid rgba(11,21,38,.28);
  border-top-color: var(--navy-900);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.form__status {
  font-size: .93rem;
  padding: .9rem 1.1rem;
  border-radius: var(--r-sm);
  display: none;
  line-height: 1.55;
}
.form__status.is-ok {
  display: block;
  background: rgba(216,169,78,.11);
  border: 1px solid rgba(216,169,78,.35);
  color: var(--cream);
}
.form__status.is-err {
  display: block;
  background: rgba(229,103,79,.1);
  border: 1px solid rgba(229,103,79,.35);
  color: #F0A695;
}

/* ═══════════ FOOTER ═══════════ */
.footer {
  background: var(--navy-950);
  border-top: 1px solid var(--line);
  padding-block: clamp(3.25rem, 6vw, 4.5rem) 2rem;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.75rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 860px) {
  .footer__top { grid-template-columns: 1.15fr 1.6fr; gap: 4rem; }
}

.footer__brand .brand { margin-bottom: 1.35rem; }
.footer__brand p { font-size: .94rem; max-width: 340px; }

.footer__nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2rem;
}
.footer__nav h4 {
  font-family: var(--f-display);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.05rem;
}
.footer__nav a {
  display: block;
  font-size: .93rem;
  color: var(--slate);
  padding-block: .35rem;
  transition: color .25s var(--ease), transform .25s var(--ease);
}
.footer__nav a:hover { color: var(--cream); transform: translateX(3px); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .75rem;
  padding-top: 1.85rem;
  font-size: .85rem;
  color: var(--slate-dim);
}
.footer__made { color: var(--gold); opacity: .75; }

/* ═══════════ RECHTSTEXTE (Impressum / Datenschutz) ═══════════ */
.legal { padding-block: clamp(8rem, 16vh, 10rem) var(--sec-y); }
.legal h1 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -.02em;
  color: var(--cream);
  margin-bottom: 2.5rem;
}
.legal h2 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--cream);
  margin: 2.75rem 0 .9rem;
}
.legal h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--cream);
  margin: 1.9rem 0 .6rem;
}
.legal p, .legal li { font-size: .99rem; }

/* Deutsche Rechtstexte enthalten Woerter wie "Auftragsverarbeitungsvertrag".
   Auf schmalen Handys passen die nicht in eine Zeile und wuerden die Seite
   seitlich verschieben. Deshalb hier Silbentrennung erlauben. */
.legal h1, .legal h2, .legal h3,
.legal p, .legal li, .legal address {
  overflow-wrap: break-word;
  hyphens: auto;
}
.legal p + p { margin-top: .9rem; }
.legal ul { margin: .9rem 0 .9rem 1.3rem; }
.legal li { margin-bottom: .45rem; }
.legal a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.legal address { font-style: normal; line-height: 1.9; }

.legal__back {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--gold);
  font-family: var(--f-display);
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: 2.5rem;
}
.legal__back svg { width: 17px; height: 17px; transition: transform .3s var(--ease); }
.legal__back:hover svg { transform: translateX(-3px); }

/* Gelber Hinweiskasten, zeigt dir, was du noch ausfüllen musst.
   VOR DEM LIVEGANG: alle .todo-Blöcke aus impressum.html/datenschutz.html löschen! */
.todo {
  background: rgba(216,169,78,.09);
  border: 1px dashed rgba(216,169,78,.5);
  border-radius: var(--r-sm);
  padding: 1.2rem 1.4rem;
  margin: 1.5rem 0;
  font-size: .93rem;
  color: var(--gold-soft);
}
.todo strong { color: var(--gold); }

/* ═══════════ SCROLL-ANIMATION ═══════════ */
/* Wichtig: nur "html.js" versteckt Inhalte. Ohne laufendes JavaScript greift
   diese Regel nicht und die komplette Seite ist ganz normal sichtbar. */
html.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
html.js .reveal.is-visible { opacity: 1; transform: none; }

/* Karten in einer Reihe erscheinen leicht versetzt nacheinander */
.pain-grid .reveal:nth-child(2),
.svc-grid .reveal:nth-child(2),
.incl-grid .reveal:nth-child(2) { transition-delay: .08s; }
.pain-grid .reveal:nth-child(3),
.svc-grid .reveal:nth-child(3),
.incl-grid .reveal:nth-child(3) { transition-delay: .16s; }
.pain-grid .reveal:nth-child(4),
.svc-grid .reveal:nth-child(4),
.incl-grid .reveal:nth-child(4) { transition-delay: .24s; }
.incl-grid .reveal:nth-child(5) { transition-delay: .1s; }
.incl-grid .reveal:nth-child(6) { transition-delay: .18s; }
.incl-grid .reveal:nth-child(7) { transition-delay: .26s; }
.incl-grid .reveal:nth-child(8) { transition-delay: .34s; }

/* ═══════════ MOBIL ═══════════ */
@media (max-width: 880px) {
  .nav__burger { display: flex; }

  /* Impressum, Datenschutz und AGB haben keinen Menue-Knopf. Ihre Navigation
     darf sich deshalb NICHT in das ausklappbare Handy-Menue verwandeln, sonst
     waere der Button unsichtbar und wuerde die Seite seitlich verschieben. */
  .nav--simple .nav__links {
    position: static;
    flex-direction: row;
    padding: 0;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 0;
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .nav--simple .nav__burger { display: none; }
  .nav--simple .brand__name { font-size: 1rem; }

  .nav__links {
    position: fixed;
    inset: 0 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 6rem 1.5rem 2rem;
    background: rgba(6, 12, 23, .97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform .45s var(--ease), opacity .35s var(--ease), visibility .45s;
  }
  .nav__links.is-open { transform: translateY(0); opacity: 1; visibility: visible; }

  .nav__links > a:not(.btn) {
    padding: 1.05rem 0;
    font-size: 1.08rem;
    border-bottom: 1px solid var(--line);
    color: var(--cream);
  }
  .nav__links > a:not(.btn)::after { display: none; }
  .nav__cta { margin-top: 1.5rem; justify-content: center; padding: 1rem; }

  body.nav-open { overflow: hidden; }

  .steps::before { left: 22px; }
  .step__no { width: 45px; height: 45px; font-size: .85rem; }
}

@media (max-width: 520px) {
  .hero__trust { flex-direction: column; align-items: center; gap: .7rem; }
  .hero__cta .btn { width: 100%; }
  .footer__bottom { flex-direction: column; }
}

/* Nutzer, die Animationen abgeschaltet haben, bekommen keine */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html.js .reveal { opacity: 1; transform: none; }
}

/* Druckansicht */
@media print {
  .nav, .hero__scroll, .contact__ways, .footer__nav { display: none; }
  body { background: #fff; color: #000; }
}
