/* ==========================================================================
   LBC Group – Marketing & Software
   Stylesheet
   ========================================================================== */

/* Schrift lokal eingebunden (keine Verbindung zu Google-Servern) */
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-latin-wght-normal.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

:root {
  --navy: #13294b;
  --navy-deep: #0b1a31;
  --navy-soft: #1f3b66;
  --blue: #3a6db0;
  --blue-light: #8fb1de;
  --ice: #eaf0f8;
  --grey: #8a93a6;
  --text: #16213a;
  --muted: #5a6479;
  --line: #e2e7ef;
  --bg: #ffffff;
  --bg-soft: #f5f7fb;
  --success: #1f9d6b;
  --error: #c0392b;

  --radius: 18px;
  --radius-lg: 26px;
  --shadow-sm: 0 2px 10px rgba(19, 41, 75, .06);
  --shadow: 0 18px 44px -18px rgba(19, 41, 75, .22);
  --shadow-lg: 0 40px 90px -30px rgba(19, 41, 75, .42);
  --ease: cubic-bezier(.22, 1, .36, 1);

  --container: 1200px;
  --gutter: 24px;
  --header-h: 78px;
  --intro-delay: 2.5s;
}

/* ---------- Reset & Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: "Montserrat", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

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

h1, h2, h3, h4 {
  margin: 0;
  color: var(--navy);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -.02em;
}

p { margin: 0; }

::selection { background: var(--navy); color: #fff; }

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

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute;
  left: 16px; top: -60px;
  z-index: 300;
  padding: 10px 18px;
  background: var(--navy);
  color: #fff;
  border-radius: 10px;
  transition: top .2s;
}
.skip-link:focus { top: 12px; }

/* Icons */
.i {
  width: 1.25em;
  height: 1.25em;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- Intro (Logo-Animation beim Laden) ---------- */
.intro {
  position: fixed;
  inset: 0;
  z-index: 250;
  display: grid;
  place-items: center;
  background: #fff;
  animation: intro-out .9s var(--ease) var(--intro-delay) forwards;
  pointer-events: none;
}

.intro__logo { text-align: center; color: var(--navy); }

.intro__name {
  display: block;
  font-size: clamp(1.6rem, 5vw, 3rem);
  font-weight: 500;
  letter-spacing: .5em;
  padding-left: .5em;
  white-space: nowrap;
}

.intro__name span {
  display: inline-block;
  opacity: 0;
  transform: translateY(22px);
  animation: letter-in .8s var(--ease) forwards;
  animation-delay: calc(var(--i) * 95ms + .15s);
}

.intro__line {
  display: block;
  width: 60%;
  height: 1px;
  margin: 18px auto 16px;
  background: var(--navy);
  transform: scaleX(0);
  animation: line-in .9s var(--ease) .9s forwards;
}

.intro__sub {
  display: block;
  font-size: clamp(.6rem, 1.6vw, .8rem);
  color: var(--grey);
  letter-spacing: .2em;
  padding-left: .2em;
  opacity: 0;
  animation: sub-in 1.2s var(--ease) 1.1s forwards;
}

@keyframes letter-in { to { opacity: 1; transform: none; } }
@keyframes line-in { to { transform: scaleX(1); } }
@keyframes sub-in { to { opacity: 1; letter-spacing: .5em; padding-left: .5em; } }
@keyframes intro-out {
  0% { clip-path: inset(0 0 0 0); }
  100% { clip-path: inset(0 0 100% 0); visibility: hidden; }
}

/* ---------- Scroll-Fortschritt ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 120;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--blue), var(--blue-light));
  transform-origin: left;
  transform: scaleX(var(--p, 0));
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  padding: 16px 28px;
  border: 1.5px solid transparent;
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .01em;
  line-height: 1.2;
  overflow: hidden;
  isolation: isolate;
  transition: transform .35s var(--ease), background-color .3s, color .3s, border-color .3s, box-shadow .35s var(--ease);
}

.btn .i { transition: transform .35s var(--ease); }
.btn:hover .i--arrow { transform: translateX(4px); }

.btn--primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(19, 41, 75, .6);
}
.btn--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, .28) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .8s var(--ease);
}
.btn--primary:hover {
  background: var(--navy-soft);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -12px rgba(19, 41, 75, .7);
}
.btn--primary:hover::after { transform: translateX(120%); }

.btn--ghost {
  border-color: var(--line);
  color: var(--navy);
  background: rgba(255, 255, 255, .7);
}
.btn--ghost:hover {
  border-color: var(--navy);
  transform: translateY(-2px);
}

.btn--light {
  background: #fff;
  color: var(--navy);
}
.btn--light:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -12px rgba(0, 0, 0, .45);
}

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

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  transition: background-color .4s, box-shadow .4s, height .4s var(--ease), backdrop-filter .4s;
}

.site-header.is-scrolled {
  --header-h: 66px;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px -20px rgba(19, 41, 75, .25);
}

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

/* Logo als Schriftzug */
.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  color: var(--navy);
  line-height: 1;
  position: relative;
  z-index: 2;
}
.brand__name {
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: .42em;
  padding-left: .42em;
  white-space: nowrap;
}
.brand__sub {
  margin-top: 7px;
  font-size: .5rem;
  font-weight: 400;
  color: var(--grey);
  letter-spacing: .42em;
  padding-left: .42em;
  white-space: nowrap;
}
.brand--light { color: #fff; }
.brand--light .brand__sub { color: rgba(255, 255, 255, .6); }

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__list {
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav__link {
  position: relative;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  padding: 6px 0;
  transition: color .3s;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1.5px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s var(--ease);
}
.nav__link:hover,
.nav__link.is-active { color: var(--navy); }
.nav__link:hover::after,
.nav__link.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
  padding: 10px 6px;
  white-space: nowrap;
}
.nav__phone .i { width: 1.1em; height: 1.1em; }

.nav .btn { padding: 12px 22px; font-size: .88rem; }

.burger {
  display: none;
  position: relative;
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
}
.burger span {
  position: absolute;
  left: 13px; right: 13px;
  height: 1.5px;
  background: var(--navy);
  transition: transform .45s var(--ease), opacity .3s;
}
.burger span:nth-child(1) { top: 17px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 27px; }
.nav-open .burger span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-open .burger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-open .burger span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 76px) 0 120px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.hero__grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(19, 41, 75, .06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(19, 41, 75, .06) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 60% 40%, #000 20%, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 60% at 60% 40%, #000 20%, transparent 75%);
  animation: grid-drift 30s linear infinite;
}

@keyframes grid-drift {
  to { background-position: 64px 64px, 64px 64px; }
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .55;
  animation: blob-float 18s ease-in-out infinite alternate;
}
.blob--1 {
  width: 520px; height: 520px;
  right: -120px; top: -80px;
  background: radial-gradient(circle, var(--blue-light), transparent 70%);
}
.blob--2 {
  width: 420px; height: 420px;
  left: -160px; bottom: -120px;
  background: radial-gradient(circle, #d6e2f3, transparent 70%);
  animation-duration: 22s;
  animation-direction: alternate-reverse;
}

@keyframes blob-float {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-60px, 40px) scale(1.08); }
  100% { transform: translate(30px, -30px) scale(.95); }
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 64px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--grey);
}
.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  margin: 22px 0 26px;
  font-size: clamp(2.5rem, 5.4vw, 4.4rem);
  line-height: 1.06;
  letter-spacing: -.035em;
}

.hl {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  background: linear-gradient(100deg, var(--navy) 10%, var(--blue) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hl__line {
  position: absolute;
  left: 0;
  bottom: -.12em;
  width: 100%;
  height: .28em;
  overflow: visible;
}
.hl__line path {
  fill: none;
  stroke: var(--blue-light);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  animation: draw 1.2s var(--ease) calc(var(--intro-delay) + .9s) forwards;
}
@keyframes draw { to { stroke-dashoffset: 0; } }

.hero__lead {
  max-width: 34em;
  font-size: 1.13rem;
  color: var(--muted);
}
.hero__lead strong { color: var(--navy); font-weight: 600; }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.hero__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  font-size: .88rem;
  font-weight: 500;
  color: var(--navy);
}
.hero__checks li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero__checks .i {
  width: 20px; height: 20px;
  padding: 3px;
  border-radius: 50%;
  background: var(--ice);
  stroke-width: 2.6;
}

/* Hero Einstiegsanimation */
.hero-anim {
  opacity: 0;
  transform: translateY(26px);
  animation: fade-up 1s var(--ease) forwards;
  animation-delay: calc(var(--intro-delay) + .25s + var(--d, 0) * 120ms);
}
@keyframes fade-up { to { opacity: 1; transform: none; } }

/* Browser-Mockup */
.hero__visual {
  position: relative;
  perspective: 1400px;
}

.mockup {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-lg);
  transform: rotateY(var(--ry, -9deg)) rotateX(var(--rx, 5deg));
  transform-style: preserve-3d;
  transition: transform .6s var(--ease);
  will-change: transform;
}

.mockup__bar {
  display: flex;
  align-items: center;
  gap: 14px;
  height: 44px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
  border-radius: 18px 18px 0 0;
}
.mockup__dots { display: flex; gap: 6px; }
.mockup__dots i {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #d3dae6;
}
.mockup__url {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 28px;
  padding: 0 12px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: .74rem;
  color: var(--muted);
  overflow: hidden;
  white-space: nowrap;
}
.mockup__url .i { width: 13px; height: 13px; color: var(--success); stroke-width: 2.2; }
.mockup__caret {
  display: inline-block;
  width: 1px;
  height: 14px;
  margin-left: 1px;
  background: var(--navy);
  animation: blink 1s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.mockup__body {
  display: grid;
  gap: 18px;
  padding: 22px;
}

.mk-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mk-logo {
  width: 74px; height: 12px;
  border-radius: 4px;
  background: var(--navy);
}
.mk-links { display: flex; gap: 10px; }
.mk-links i {
  width: 32px; height: 7px;
  border-radius: 4px;
  background: var(--line);
}

.mk-hero {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--ice), #f7f9fd);
}
.mk-text { display: grid; gap: 9px; }
.mk-text i {
  height: 11px;
  border-radius: 5px;
  background: var(--navy);
}
.mk-text i:nth-child(1) { width: 92%; }
.mk-text i:nth-child(2) { width: 70%; }
.mk-text i:nth-child(3) { width: 84%; height: 6px; background: #c3cedf; margin-top: 6px; }
.mk-text i:nth-child(4) { width: 60%; height: 6px; background: #c3cedf; }
.mk-btn {
  width: 86px; height: 24px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--blue);
}
.mk-img {
  position: relative;
  aspect-ratio: 1 / .85;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--navy), var(--blue));
  overflow: hidden;
}
.mk-img::before {
  content: "";
  position: absolute;
  width: 46%; aspect-ratio: 1;
  right: 12%; top: 16%;
  border-radius: 50%;
  background: rgba(255, 255, 255, .22);
}
.mk-img::after {
  content: "";
  position: absolute;
  left: -10%; right: -10%; bottom: -30%;
  height: 70%;
  border-radius: 50% 50% 0 0;
  background: rgba(255, 255, 255, .14);
}

.mk-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.mk-cards > div {
  display: grid;
  gap: 7px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.mk-cards b {
  width: 22px; height: 22px;
  border-radius: 7px;
  background: var(--ice);
}
.mk-cards i {
  height: 6px;
  border-radius: 4px;
  background: var(--line);
}
.mk-cards i:last-child { width: 70%; }

/* Skeleton-Schimmer */
.mk-shimmer {
  position: relative;
  overflow: hidden;
}
.mk-shimmer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 20%, rgba(255, 255, 255, .55) 50%, transparent 80%);
  transform: translateX(-100%);
  animation: shimmer 2.8s ease-in-out infinite;
}
@keyframes shimmer { 60%, 100% { transform: translateX(100%); } }

.mockup__status {
  position: absolute;
  left: 28px;
  bottom: -22px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px 12px 14px;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  transform: translateZ(40px);
}
.mockup__status small {
  display: block;
  font-weight: 500;
  font-size: .7rem;
  color: var(--muted);
}

.pulse {
  position: relative;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--success);
}
.pulse::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--success);
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: .6; }
  100% { transform: scale(3.2); opacity: 0; }
}

/* Aufbau-Sequenz des Mockups (gesteuert per JS) */
.js .mockup .seq {
  opacity: 0;
  transform: translateY(14px) scale(.97);
  transition: opacity .55s var(--ease), transform .7s var(--ease);
}
.js .mockup .seq.on {
  opacity: 1;
  transform: none;
}
.js .mockup .mockup__status.seq { transform: translateY(14px) translateZ(40px) scale(.95); }
.js .mockup .mockup__status.seq.on { transform: translateZ(40px); }

/* Schwebende Hinweise */
.float-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  font-size: .78rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  animation: chip-float 6s ease-in-out infinite alternate;
}
.float-chip__icon {
  display: grid;
  place-items: center;
  width: 32px; height: 32px;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
}
.float-chip__icon .i { width: 16px; height: 16px; stroke-width: 2.2; }
.float-chip--1 { top: -26px; right: 8%; }
.float-chip--2 { top: 40%; right: -34px; animation-delay: -2s; }
.float-chip--3 { top: 20%; left: -48px; animation-delay: -4s; }

@keyframes chip-float {
  0% { transform: translateY(0); }
  100% { transform: translateY(-14px); }
}

/* ---------- Kennzahlen-Leiste ---------- */
.stats {
  position: relative;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 30%, rgba(255, 255, 255, .07) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: sheen 7s ease-in-out infinite;
}
@keyframes sheen { 50%, 100% { transform: translateX(100%); } }

.stats__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 44px 28px;
  text-align: center;
}
.stat + .stat { border-left: 1px solid rgba(255, 255, 255, .12); }
.stat__value {
  display: block;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}
.stat__unit {
  font-size: .55em;
  font-weight: 500;
  margin-left: .15em;
  color: var(--blue-light);
}
.stat__label {
  display: block;
  margin-top: 12px;
  font-size: .82rem;
  color: rgba(255, 255, 255, .72);
}

/* ---------- Sektionen ---------- */
.section {
  position: relative;
  padding: 120px 0;
  scroll-margin-top: 40px;
}
.section--soft { background: var(--bg-soft); }

.section-head {
  max-width: 740px;
  margin-bottom: 60px;
}
.section-head--center {
  margin-inline: auto;
  text-align: center;
}
.section-head h2 {
  margin-top: 18px;
  font-size: clamp(2rem, 3.8vw, 3.1rem);
}
.section-head p {
  margin-top: 20px;
  font-size: 1.08rem;
  color: var(--muted);
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--blue);
}
.label__num {
  color: var(--grey);
  font-weight: 500;
}

/* Scroll-Reveal */
.js .reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .9s var(--ease), transform 1s var(--ease);
  transition-delay: calc(var(--d, 0) * 90ms);
}
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Leistungen ---------- */
.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.card {
  position: relative;
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .4s, opacity .9s var(--ease);
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(320px circle at var(--mx, 50%) var(--my, 50%), rgba(58, 109, 176, .11), transparent 60%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.card:hover::before { opacity: 1; }

.card__icon {
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  margin-bottom: 24px;
  border-radius: 15px;
  background: var(--ice);
  color: var(--navy);
  transition: background-color .4s, color .4s, transform .6s var(--ease);
}
.card__icon .i { width: 24px; height: 24px; }
.card:hover .card__icon {
  background: var(--navy);
  color: #fff;
  transform: rotate(-8deg) scale(1.06);
}

.card h3 {
  font-size: 1.08rem;
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.card p {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ---------- Laufband ---------- */
.marquee {
  overflow: hidden;
  padding: 26px 0;
  border-block: 1px solid var(--line);
  background: #fff;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 42s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.marquee__group li {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-right: 40px;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--navy);
  white-space: nowrap;
}
.marquee__group li::after {
  content: "";
  width: 6px; height: 6px;
  background: var(--blue-light);
  transform: rotate(45deg);
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Preis ---------- */
.pricing {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 44px;
  border-radius: var(--radius-lg);
}

/* Animierter Rahmen für das Hauptpaket */
.price-card--main {
  color: #fff;
  background: linear-gradient(155deg, var(--navy-soft), var(--navy) 45%, var(--navy-deep));
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}
.price-card--main::before {
  content: "";
  position: absolute;
  inset: -1.5px;
  z-index: -2;
  border-radius: calc(var(--radius-lg) + 1.5px);
  background: conic-gradient(from var(--angle), var(--navy) 0%, var(--blue-light) 12%, var(--navy) 25%, var(--navy) 50%, var(--blue) 62%, var(--navy) 75%);
  animation: spin 6s linear infinite;
}
.price-card--main::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(500px circle at 100% 0%, rgba(143, 177, 222, .22), transparent 55%),
    linear-gradient(155deg, var(--navy-soft), var(--navy) 45%, var(--navy-deep));
}
@keyframes spin { to { --angle: 360deg; } }

.price-card--sub {
  border: 1px solid var(--line);
  background: #fff;
}

.price-card__badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  font-size: .78rem;
  font-weight: 600;
}
.price-card__badge .i { width: 16px; height: 16px; stroke-width: 2.4; color: #8ee0bd; }

.price-card h3 {
  margin-top: 26px;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
}
.price-card--main h3 { color: rgba(255, 255, 255, .78); }
.price-card--sub h3 { color: var(--grey); margin-top: 0; }

.price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 12px;
  margin: 14px 0 6px;
}
.price__amount {
  font-size: clamp(3.6rem, 7vw, 5.4rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.04em;
  font-variant-numeric: tabular-nums;
}
.price__currency {
  font-size: .5em;
  font-weight: 500;
  margin-left: .1em;
}
.price__meta {
  font-size: .9rem;
  opacity: .75;
}
.price-card--sub .price__amount { font-size: clamp(3rem, 5vw, 4rem); color: var(--navy); }
.price-card--sub .price__meta { color: var(--muted); opacity: 1; }

.price-card__intro {
  margin-bottom: 26px;
  font-size: .95rem;
  opacity: .8;
}
.price-card--sub .price-card__intro { color: var(--muted); opacity: 1; }

.checklist {
  display: grid;
  gap: 13px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
  font-size: .94rem;
}
.checklist--2 { grid-template-columns: 1fr 1fr; column-gap: 24px; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.45;
}
.checklist .i {
  width: 22px; height: 22px;
  padding: 4px;
  margin-top: -1px;
  border-radius: 50%;
  stroke-width: 2.6;
}
.price-card--main .checklist .i { background: rgba(255, 255, 255, .12); color: #fff; }
.price-card--sub .checklist .i { background: var(--ice); color: var(--navy); }

.price-card .btn { margin-top: auto; }

.terms {
  display: flex;
  gap: 12px;
  margin: 0 0 30px;
  padding: 16px 18px;
  border-radius: 14px;
  background: var(--bg-soft);
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.55;
}
.terms .i { color: var(--blue); margin-top: 1px; }
.terms strong { color: var(--navy); }

.pricing__note {
  margin-top: 30px;
  font-size: .82rem;
  color: var(--muted);
  text-align: center;
}

/* ---------- Ablauf ---------- */
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps__line {
  position: absolute;
  top: 31px;
  left: 32px;
  right: 12%;
  height: 2px;
  background: var(--line);
  overflow: hidden;
}
.steps__line span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--navy), var(--blue), var(--success));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 2.2s var(--ease) .2s;
}
.steps.is-visible .steps__line span { transform: scaleX(1); }

.step { position: relative; }

.step__num {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 64px; height: 64px;
  margin-bottom: 28px;
  border: 2px solid var(--line);
  border-radius: 50%;
  background: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--grey);
  transition: border-color .6s, color .6s, background-color .6s, box-shadow .6s;
  transition-delay: calc(var(--d, 0) * 500ms + .3s);
}
.steps.is-visible .step__num {
  border-color: var(--navy);
  color: var(--navy);
  box-shadow: 0 0 0 8px var(--bg-soft);
}
.step--final .step__num .i { width: 26px; height: 26px; stroke-width: 2.4; }
.steps.is-visible .step--final .step__num {
  border-color: var(--success);
  background: var(--success);
  color: #fff;
  box-shadow: 0 0 0 8px rgba(31, 157, 107, .12);
}

.step h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}
.step p {
  font-size: .93rem;
  color: var(--muted);
}

.step__tag {
  display: inline-block;
  margin-top: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(31, 157, 107, .1);
  color: var(--success);
  font-size: .75rem;
  font-weight: 600;
}

/* ---------- Vorteile ---------- */
.why {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
}

.benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 32px;
  margin-top: 48px;
}
.benefit__icon {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  margin-bottom: 18px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--navy);
  transition: transform .6s var(--ease), background-color .4s, color .4s;
}
.benefit:hover .benefit__icon {
  background: var(--navy);
  color: #fff;
  transform: translateY(-4px);
}
.benefit h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}
.benefit p {
  font-size: .93rem;
  color: var(--muted);
}

/* DACH-Karte */
.region {
  position: relative;
  padding: 40px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--navy), var(--navy-deep));
  color: #fff;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.region::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .12) 1px, transparent 1px);
  background-size: 18px 18px;
  -webkit-mask-image: radial-gradient(circle at 60% 45%, #000, transparent 70%);
  mask-image: radial-gradient(circle at 60% 45%, #000, transparent 70%);
}
.region__map {
  position: relative;
  width: 100%;
  height: auto;
  overflow: visible;
}
.region__route {
  fill: none;
  stroke: var(--blue-light);
  stroke-width: 1.5;
  stroke-dasharray: 5 6;
  animation: dash 14s linear infinite;
}
@keyframes dash { to { stroke-dashoffset: -220; } }

.region__node circle.core { fill: #fff; }
.region__node circle.halo {
  fill: rgba(143, 177, 222, .25);
  transform-box: fill-box;
  transform-origin: center;
  animation: halo 3s ease-out infinite;
}
.region__node:nth-of-type(2) circle.halo { animation-delay: -1s; }
.region__node:nth-of-type(3) circle.halo { animation-delay: -2s; }
@keyframes halo {
  0% { transform: scale(.6); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}
.region__node text {
  fill: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .2em;
}
.region__home circle.core { fill: #8ee0bd; }
.region__home circle.halo { fill: rgba(142, 224, 189, .35); }
.region__home text { fill: #8ee0bd; font-size: 10px; letter-spacing: .12em; font-weight: 500; }

.region h3 {
  position: relative;
  margin-top: 18px;
  color: #fff;
  font-size: 1.4rem;
}
.region p {
  position: relative;
  margin-top: 10px;
  font-size: .93rem;
  color: rgba(255, 255, 255, .72);
}
.region__tags {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.region__tags li {
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .18);
  font-size: .78rem;
  font-weight: 500;
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 860px;
  margin-inline: auto;
  border-top: 1px solid var(--line);
}
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 26px 4px;
  border: 0;
  background: none;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  transition: color .3s;
}
.faq__q:hover { color: var(--blue); }
.faq__icon {
  position: relative;
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  transition: background-color .4s, border-color .4s, transform .5s var(--ease);
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 12px; height: 1.5px;
  margin: -.75px 0 0 -6px;
  background: currentColor;
  transition: transform .5s var(--ease);
}
.faq__icon::after { transform: rotate(90deg); }
.faq__q[aria-expanded="true"] .faq__icon {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
  transform: rotate(180deg);
}
.faq__q[aria-expanded="true"] .faq__icon::after { transform: rotate(0deg); }

.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .5s var(--ease);
}
.faq__a > div { overflow: hidden; }
.faq__a p {
  padding: 0 60px 28px 4px;
  color: var(--muted);
}
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.no-js .faq__a { grid-template-rows: 1fr; }

/* ---------- Kontakt ---------- */
.contact {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.contact__info .section-head { margin-bottom: 40px; }

.contact__list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.contact__item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  transition: border-color .3s, transform .4s var(--ease), box-shadow .4s var(--ease);
}
a.contact__item:hover {
  border-color: var(--navy);
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
}
.contact__item-icon {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  flex-shrink: 0;
  border-radius: 13px;
  background: var(--ice);
  color: var(--navy);
}
.contact__item small {
  display: block;
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--grey);
}
.contact__item span {
  display: block;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.45;
}

.contact__hint {
  display: flex;
  gap: 14px;
  margin-top: 26px;
  padding: 20px;
  border-radius: 16px;
  background: var(--navy);
  color: #fff;
  font-size: .9rem;
  line-height: 1.55;
}
.contact__hint .i { color: #8ee0bd; width: 22px; height: 22px; }

.form-card {
  position: relative;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.form-card h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.form-card > p {
  margin-bottom: 30px;
  font-size: .9rem;
  color: var(--muted);
}

.form { display: grid; gap: 20px; }
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field { display: grid; gap: 8px; align-content: start; }
.field label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
}
.field label .req { color: var(--blue); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--bg-soft);
  font-size: .95rem;
  transition: border-color .3s, background-color .3s, box-shadow .3s;
  -webkit-appearance: none;
  appearance: none;
}
.field textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}
.field select {
  padding-right: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2313294b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px;
}
.field input::placeholder,
.field textarea::placeholder { color: #9aa3b5; }

.field input:hover,
.field select:hover,
.field textarea:hover { border-color: #cdd5e2; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy);
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(19, 41, 75, .08);
}

.field.has-error input,
.field.has-error textarea,
.field.has-error select { border-color: var(--error); }

.field__error {
  display: none;
  font-size: .78rem;
  font-weight: 500;
  color: var(--error);
}
.field.has-error .field__error { display: block; }

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .85rem;
  line-height: 1.55;
  color: var(--muted);
  cursor: pointer;
}
.check input {
  position: relative;
  flex-shrink: 0;
  width: 22px; height: 22px;
  margin: 0;
  border: 1.5px solid #c6cfdd;
  border-radius: 7px;
  background: #fff;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: background-color .25s, border-color .25s;
}
.check input::after {
  content: "";
  position: absolute;
  left: 7px; top: 3px;
  width: 5px; height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: transform .3s var(--ease);
}
.check input:checked {
  background: var(--navy);
  border-color: var(--navy);
}
.check input:checked::after { transform: rotate(45deg) scale(1); }
.check a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.field.has-error .check input { border-color: var(--error); }

.form__foot {
  font-size: .78rem;
  color: var(--grey);
}

.btn.is-loading { pointer-events: none; opacity: .85; }
.btn.is-loading .btn__label { opacity: .6; }
.btn .spinner {
  display: none;
  width: 18px; height: 18px;
  border: 2px solid rgba(255, 255, 255, .35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: rotate .8s linear infinite;
}
.btn.is-loading .spinner { display: block; }
.btn.is-loading .i--arrow { display: none; }
@keyframes rotate { to { transform: rotate(360deg); } }

.form-status {
  display: none;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: .88rem;
  font-weight: 500;
}
.form-status.is-error {
  display: block;
  background: rgba(192, 57, 43, .08);
  color: var(--error);
}
.form-status a { text-decoration: underline; font-weight: 600; }

/* Erfolgsmeldung */
.form-success {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 12px;
  padding: 40px;
  text-align: center;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s var(--ease), visibility .5s;
}
.form-card.is-sent .form-success {
  opacity: 1;
  visibility: visible;
}
.form-success svg {
  width: 84px; height: 84px;
  margin-bottom: 10px;
}
.form-success circle {
  fill: none;
  stroke: var(--success);
  stroke-width: 3;
  stroke-dasharray: 252;
  stroke-dashoffset: 252;
  transform: rotate(-90deg);
  transform-origin: center;
}
.form-success path {
  fill: none;
  stroke: var(--success);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
}
.form-card.is-sent .form-success circle { animation: draw-check .8s var(--ease) .2s forwards; }
.form-card.is-sent .form-success path { animation: draw-check .5s var(--ease) .8s forwards; }
@keyframes draw-check { to { stroke-dashoffset: 0; } }
.form-success h3 { font-size: 1.5rem; }
.form-success p { max-width: 26em; color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  padding: 90px 0 36px;
  background: var(--navy-deep);
  color: rgba(255, 255, 255, .72);
  font-size: .92rem;
  overflow: hidden;
}
.site-footer::before {
  content: "LBC GROUP";
  position: absolute;
  left: 50%;
  bottom: -.28em;
  transform: translateX(-50%);
  font-size: clamp(4rem, 15vw, 13rem);
  font-weight: 600;
  letter-spacing: .2em;
  color: rgba(255, 255, 255, .03);
  white-space: nowrap;
  pointer-events: none;
}

.footer__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1fr;
  gap: 48px;
}
.footer__about p {
  max-width: 24em;
  margin-top: 26px;
  line-height: 1.7;
}
.footer__about .brand { align-items: flex-start; }
.footer__about .brand__name,
.footer__about .brand__sub { padding-left: 0; }

.site-footer h4 {
  margin-bottom: 20px;
  color: #fff;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
}
.footer__links {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer__links a {
  position: relative;
  transition: color .3s;
}
.footer__links a:hover { color: #fff; }

.footer__bottom {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 70px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .8rem;
  color: rgba(255, 255, 255, .5);
}

/* ---------- Rechtliche Seiten ---------- */
.legal {
  padding: calc(var(--header-h) + 70px) 0 110px;
}
.legal__inner {
  max-width: 820px;
  margin-inline: auto;
}
.legal h1 {
  margin: 18px 0 14px;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
}
.legal__lead {
  margin-bottom: 48px;
  color: var(--muted);
}
.legal h2 {
  margin: 52px 0 16px;
  font-size: 1.35rem;
}
.legal h3 {
  margin: 30px 0 10px;
  font-size: 1.05rem;
}
.legal p,
.legal li {
  color: #3a4459;
}
.legal p + p { margin-top: 14px; }
.legal ul {
  margin: 14px 0;
  padding-left: 22px;
}
.legal li + li { margin-top: 6px; }
.legal a:not(.btn) {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-table {
  display: grid;
  grid-template-columns: minmax(180px, 34%) 1fr;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.legal-table dt,
.legal-table dd {
  margin: 0;
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
}
.legal-table dt {
  background: var(--bg-soft);
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
}
.legal-table dd { color: #3a4459; }
.legal-table dt:last-of-type,
.legal-table dd:last-of-type { border-bottom: 0; }

.legal-box {
  margin-top: 20px;
  padding: 24px 26px;
  border-left: 3px solid var(--navy);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--bg-soft);
}
.legal-box p { color: var(--text); }

.todo {
  padding: 1px 8px;
  border-radius: 6px;
  background: #fff3cd;
  color: #7a5a00;
  font-weight: 600;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
}
.back-link .i { transform: rotate(180deg); transition: transform .35s var(--ease); }
.back-link:hover .i { transform: rotate(180deg) translateX(4px); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1160px) {
  .nav__phone span { display: none; }
  .services { grid-template-columns: repeat(2, 1fr); }
  .float-chip--2 { right: -12px; }
  .float-chip--3 { left: -16px; }
}

@media (max-width: 980px) {
  :root { --header-h: 70px; }

  .burger { display: block; }

  /* backdrop-filter würde das fixierte Menü auf die Header-Höhe beschränken */
  .nav-open .site-header {
    background: #fff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav {
    position: fixed;
    inset: 0;
    z-index: 1;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
    padding: 100px var(--gutter) 40px;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transition: opacity .45s var(--ease), visibility .45s;
  }
  .nav-open .nav {
    opacity: 1;
    visibility: visible;
  }
  .nav__list {
    flex-direction: column;
    gap: 6px;
  }
  .nav__link {
    display: block;
    padding: 10px 0;
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--navy);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s var(--ease), transform .6s var(--ease);
  }
  .nav__link::after { display: none; }
  .nav-open .nav__link {
    opacity: 1;
    transform: none;
  }
  .nav-open .nav__list li:nth-child(1) .nav__link { transition-delay: .08s; }
  .nav-open .nav__list li:nth-child(2) .nav__link { transition-delay: .13s; }
  .nav-open .nav__list li:nth-child(3) .nav__link { transition-delay: .18s; }
  .nav-open .nav__list li:nth-child(4) .nav__link { transition-delay: .23s; }
  .nav-open .nav__list li:nth-child(5) .nav__link { transition-delay: .28s; }
  .nav__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .nav__phone { justify-content: center; }
  .nav__phone span { display: inline; }
  .nav .btn { padding: 16px 24px; font-size: .95rem; }

  .hero { padding-top: calc(var(--header-h) + 56px); }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 80px;
  }
  .hero__visual {
    max-width: 620px;
    margin-inline: auto;
    width: 100%;
  }

  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid rgba(255, 255, 255, .12); }

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

  .steps {
    grid-template-columns: 1fr 1fr;
    row-gap: 50px;
  }
  .steps__line { display: none; }

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

  .contact { grid-template-columns: 1fr; gap: 48px; }

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

@media (max-width: 640px) {
  :root { --gutter: 16px; }

  .section { padding: 84px 0; }
  .section-head { margin-bottom: 44px; }

  .hero { padding-bottom: 90px; }
  .hero h1 { font-size: clamp(2.1rem, 10vw, 2.7rem); }
  .hero__lead { font-size: 1.02rem; }
  .hero__actions .btn { width: 100%; }

  .mockup { --ry: 0deg !important; --rx: 0deg !important; }
  .mockup__body { padding: 14px; gap: 12px; }
  .mk-hero { padding: 14px; gap: 12px; }
  .mk-cards { gap: 8px; }
  .mk-cards > div { padding: 10px; }
  .float-chip { font-size: .7rem; padding: 7px 12px 7px 7px; }
  .float-chip__icon { width: 26px; height: 26px; border-radius: 8px; }
  .float-chip--1 { top: -22px; right: 4px; }
  .float-chip--2 { display: none; }
  .float-chip--3 { bottom: auto; top: 44%; left: -6px; }
  .mockup__status { left: 14px; bottom: -24px; }

  .stat { padding: 34px 12px; }

  .services { grid-template-columns: 1fr; }
  .card { padding: 28px 24px; }

  .price-card { padding: 32px 24px; }
  .checklist--2 { grid-template-columns: 1fr; }

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

  .benefits { grid-template-columns: 1fr; gap: 30px; margin-top: 36px; }
  .region { padding: 28px 22px; }

  .faq__q { font-size: .98rem; padding: 22px 0; }
  .faq__a p { padding-right: 0; }

  .form-card { padding: 30px 20px; }
  .form__row { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; }

  .legal-table { grid-template-columns: 1fr; }
  .legal-table dt { border-bottom: 0; padding-bottom: 4px; }
  .legal-table dd { padding-top: 4px; }
}

/* Weniger Bewegung, wenn im System so eingestellt */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .intro { display: none; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-delay: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    transition-delay: 0s !important;
  }
  .js .reveal,
  .hero-anim,
  .js .mockup .seq {
    opacity: 1 !important;
    transform: none !important;
  }
  .hl__line path { stroke-dashoffset: 0; }
}
