/* Oppitz – editorial dark, warm orange accent */

:root {
  /* Warmer, tiefer Dunkelraum statt flachem Anthrazit */
  --bg: #0c0d11;
  --bg-raised: #131419;
  --bg-card: #181a21;
  --bg-elevated: #1d2029;
  --bg-input: #101118;
  --bg-glass: rgba(18, 20, 26, 0.7);
  /* Lebendigeres, premium-orange mit warmem Verlauf */
  --orange: #f47a20;
  --orange-light: #ffa552;
  --orange-hover: #ff8a32;
  --orange-deep: #d4620d;
  --orange-glow: rgba(244, 122, 32, 0.45);
  --orange-dim: rgba(244, 122, 32, 0.12);
  --orange-grad: linear-gradient(135deg, #ff9038 0%, #f47a20 45%, #e0680f 100%);
  /* Warmes „Papier" für editoriale Akzente (Anführungszeichen, Highlights) */
  --cream: #f6ede0;
  --text: #f4f5f8;
  --text-muted: #a6adba;
  --text-dim: #6a7280;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --hairline: rgba(244, 122, 32, 0.22);
  --font: 'Figtree', system-ui, sans-serif;
  --font-display: 'Fraunces', Georgia, serif;
  --header-h: 84px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-xl: 34px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.4, 0.64, 1);
  --shadow-soft: 0 30px 90px rgba(0, 0, 0, 0.5);
  --shadow-card: 0 1px 0 rgba(255, 255, 255, 0.04) inset, 0 20px 50px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 90px rgba(244, 122, 32, 0.14);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 65% 50% at 2% -8%, rgba(244, 122, 32, 0.12) 0%, transparent 52%),
    radial-gradient(ellipse 48% 38% at 100% 8%, rgba(244, 122, 32, 0.07) 0%, transparent 46%),
    radial-gradient(ellipse 60% 45% at 50% 108%, rgba(70, 92, 150, 0.06) 0%, transparent 42%);
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

main, .footer, .site-header { position: relative; z-index: 1; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--narrow { max-width: 680px; }

/* ---- Header ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 0.75rem 1rem 0;
  pointer-events: none;
}

.site-header__shell {
  pointer-events: auto;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  background: var(--bg-glass);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: box-shadow 0.5s var(--ease-out), background 0.5s var(--ease-out);
}

.site-header--scrolled .site-header__shell {
  background: rgba(18, 20, 24, 0.94);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

/* ---- Brand / Logo ---- */
.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.brand__img,
.brand__lockup {
  display: block;
  max-width: none;
  object-fit: contain;
}

.brand--header {
  padding: 0.15rem 0.35rem 0.15rem 0;
}

.brand--header .brand__lockup {
  height: 34px;
  width: auto;
}

.brand--footer .brand__img {
  width: 156px;
  height: auto;
}

@media (min-width: 901px) {
  .brand--header .brand__lockup {
    height: 38px;
  }
}

@media (max-width: 640px) {
  .brand--header .brand__lockup {
    height: 30px;
  }

  .brand--footer .brand__img {
    width: 136px;
  }
}

.site-header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.site-header__track {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.1rem;
  padding: 0.28rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 100px;
  border: 1px solid var(--border);
}

.site-header__indicator {
  position: absolute;
  top: 0.28rem;
  left: 0;
  height: calc(100% - 0.56rem);
  width: 0;
  box-sizing: border-box;
  background: var(--orange-dim);
  border: 1px solid transparent;
  border-radius: 100px;
  opacity: 0;
  transform: translate3d(0, 0, 0);
  transition: transform 0.35s cubic-bezier(0.34, 1.3, 0.64, 1),
              width 0.35s cubic-bezier(0.34, 1.3, 0.64, 1),
              opacity 0.2s ease;
  z-index: 0;
  pointer-events: none;
  will-change: transform, width;
}

.site-header__indicator.is-active {
  opacity: 1;
  border-color: rgba(232, 117, 26, 0.35);
}

.site-header__link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1;
  color: var(--text-muted);
  border-radius: 100px;
  white-space: nowrap;
  transition: color 0.2s;
}

.site-header__link:hover { color: var(--text); }

.site-header__link.is-active {
  color: var(--orange);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.site-header__phone {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  display: none;
}

@media (min-width: 901px) {
  .site-header__phone { display: block; }
  .site-header__phone:hover { color: var(--orange); }
}

.site-header__phone-pulse { display: none; }

.site-header__cta {
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--orange) 0%, #d96a12 100%);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 100px;
  box-shadow: 0 4px 16px rgba(232, 117, 26, 0.25);
  transition: background 0.25s, transform 0.25s var(--ease-spring), box-shadow 0.25s;
}

.site-header__cta:hover {
  background: linear-gradient(135deg, var(--orange-hover) 0%, var(--orange) 100%);
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 6px 22px rgba(232, 117, 26, 0.35);
}

.site-header__cta svg { display: none; }

.site-header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.site-header__burger span {
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: 0.25s;
}

.site-header__drawer {
  pointer-events: none;
  position: fixed;
  top: calc(var(--header-h) - 0.5rem);
  left: 1rem;
  right: 1rem;
  background: rgba(24, 27, 34, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(-10px) scale(0.98);
  transition: opacity 0.25s, transform 0.25s;
}

.site-header__drawer.is-open {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.site-header__drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.site-header__drawer-nav a {
  padding: 0.75rem 0;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.site-header__drawer-nav a.is-active,
.site-header__drawer-nav a:hover { color: var(--orange); }

.site-header__drawer-cta {
  margin-top: 0.75rem;
  text-align: center;
  padding: 0.75rem !important;
  background: var(--orange) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 4px;
}

.site-header__backdrop {
  position: fixed;
  inset: 0;
  z-index: 199;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: 0.25s;
}

.site-header__backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* ---- Buttons ---- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.65rem;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease-out), color 0.25s;
}

.btn--orange {
  color: #fff;
  background: var(--orange-grad);
  box-shadow: 0 10px 30px -8px rgba(244, 122, 32, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* dezenter Glanz, der beim Hover über den Button wandert */
.btn--orange::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.28) 50%, transparent 70%);
  transform: translateX(-130%);
  transition: transform 0.7s var(--ease-out);
}

.btn--orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -10px rgba(244, 122, 32, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn--orange:hover::after {
  transform: translateX(130%);
}

.btn--orange:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}

.btn--ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

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

.btn--sm {
  padding: 0.6rem 1.1rem;
  font-size: 0.82rem;
}

/* ---- Hero (editorial / orbital) ---- */
.hero {
  --hero-pad-top: calc(var(--header-h) + 2.5rem);
  position: relative;
  min-height: calc(100svh - 1rem);
  padding: var(--hero-pad-top) 0 2.5rem;
  overflow: clip;
  border-bottom: 1px solid var(--border);
}

.hero__atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__mesh {
  position: absolute;
  inset: -25% -15%;
  z-index: 0;
  background:
    radial-gradient(ellipse 48% 42% at 8% 18%, rgba(244, 122, 32, 0.16) 0%, transparent 58%),
    radial-gradient(ellipse 32% 28% at 92% 12%, rgba(244, 122, 32, 0.09) 0%, transparent 52%),
    radial-gradient(ellipse 38% 32% at 78% 72%, rgba(244, 122, 32, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 22% 88%, rgba(60, 80, 130, 0.1) 0%, transparent 58%),
    radial-gradient(ellipse 40% 35% at 65% 45%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
  animation: heroMeshShift 28s ease-in-out infinite alternate;
}

@keyframes heroMeshShift {
  to { transform: translate(2%, -1.5%) scale(1.03); }
}

/* Lichtpunkte – hinter dem Glaspanel */
.hero__glow {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}

.hero__glow--a {
  width: 520px;
  height: 520px;
  top: 10%;
  right: 0;
  background: rgba(244, 122, 32, 0.26);
  animation: heroGlowDrift 14s ease-in-out infinite alternate;
}

.hero__glow--b {
  width: 400px;
  height: 400px;
  bottom: 10%;
  right: 20%;
  background: rgba(244, 122, 32, 0.16);
  animation: heroGlowDrift 18s ease-in-out infinite alternate-reverse;
}

.hero__glow--c {
  width: 320px;
  height: 320px;
  top: 38%;
  left: 38%;
  background: rgba(255, 160, 80, 0.1);
  filter: blur(70px);
  opacity: 0.5;
  animation: heroGlowDrift 20s ease-in-out infinite alternate;
  animation-delay: -6s;
}

@keyframes heroGlowDrift {
  to { transform: translate(28px, -22px) scale(1.1); }
}

/* Glaspanel – rechts/unten verankert, diagonale linke Kante wie Skizze */
.hero__glass {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero__glass-pane {
  position: absolute;
  inset: 0;
  -webkit-backdrop-filter: blur(32px) saturate(1.45);
          backdrop-filter: blur(32px) saturate(1.45);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

/* Multilayer: parallele Diagonalen nach links versetzt (grüne Linien) */
.hero__glass-pane--layer1 {
  z-index: 1;
  clip-path: polygon(34% 0%, 100% 0%, 100% 100%, 0% 100%);
  opacity: 0.18;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.006) 100%);
  -webkit-backdrop-filter: blur(12px) saturate(1.15);
          backdrop-filter: blur(12px) saturate(1.15);
}

.hero__glass-pane--layer2 {
  z-index: 2;
  clip-path: polygon(40% 0%, 100% 0%, 100% 100%, 0% 100%);
  opacity: 0.28;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
  -webkit-backdrop-filter: blur(20px) saturate(1.25);
          backdrop-filter: blur(20px) saturate(1.25);
}

.hero__glass-pane--layer3 {
  z-index: 3;
  clip-path: polygon(46% 0%, 100% 0%, 100% 100%, 0% 100%);
  opacity: 0.38;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.07) 0%,
    rgba(255, 255, 255, 0.02) 50%,
    rgba(244, 122, 32, 0.012) 100%
  );
  -webkit-backdrop-filter: blur(28px) saturate(1.35);
          backdrop-filter: blur(28px) saturate(1.35);
}

/* Rote Schicht = oberste Ebene, rechter Trapez */
.hero__glass-pane--front {
  z-index: 4;
  clip-path: polygon(52% 0%, 100% 0%, 100% 100%, 0% 100%);
  opacity: 0.48;
  border-color: rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.09) 0%,
    rgba(255, 255, 255, 0.03) 35%,
    rgba(255, 255, 255, 0.01) 70%,
    rgba(244, 122, 32, 0.02) 100%
  );
  -webkit-backdrop-filter: blur(38px) saturate(1.5);
          backdrop-filter: blur(38px) saturate(1.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.11),
    inset 0 -1px 0 rgba(0, 0, 0, 0.12),
    -12px 0 40px -20px rgba(244, 122, 32, 0.08);
}

.hero__glass-pane--front::before {
  content: '';
  position: absolute;
  inset: 0;
  clip-path: inherit;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.12) 0%,
    transparent 45%
  );
  opacity: 0.35;
  pointer-events: none;
}

/* großer Bogen – hinter dem Glas */
.hero__arc {
  position: absolute;
  z-index: 1;
  top: -22%;
  right: -14%;
  width: min(62vw, 560px);
  height: min(62vw, 560px);
  border: 1px solid rgba(244, 122, 32, 0.11);
  border-radius: 50%;
  opacity: 0.55;
  animation: heroArcDrift 26s ease-in-out infinite alternate;
}

.hero__arc::after {
  content: '';
  position: absolute;
  inset: 22%;
  border: 1px solid rgba(255, 255, 255, 0.035);
  border-radius: 50%;
}

@keyframes heroArcDrift {
  to { transform: rotate(8deg) scale(1.04); opacity: 0.75; }
}

.hero__horizon {
  position: absolute;
  z-index: 1;
  left: -15%;
  right: 5%;
  bottom: 16%;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(244, 122, 32, 0.28) 42%, rgba(244, 122, 32, 0.12) 78%, transparent);
  transform: perspective(900px) rotateX(74deg) rotateZ(-2deg) scaleY(42);
  transform-origin: 35% bottom;
  opacity: 0.45;
}

/* feines Grain nur im Hero */
.hero__grain {
  position: absolute;
  z-index: 3;
  inset: 0;
  opacity: 0.055;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px;
}

.hero__watermark {
  position: absolute;
  z-index: 2;
  top: 48%;
  left: 38%;
  transform: translate(-42%, -50%) rotate(-2deg);
  font-family: var(--font-display);
  font-size: clamp(8rem, 22vw, 16rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.045);
  user-select: none;
  white-space: nowrap;
}

.hero__rail {
  position: absolute;
  z-index: 2;
  top: calc(var(--hero-pad-top) + 1rem);
  right: 1.25rem;
  writing-mode: vertical-rl;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-dim);
  opacity: 0.55;
}

.hero__stage.container {
  max-width: 1240px;
}

.hero__stage {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3.5rem);
  min-height: calc(100svh - var(--hero-pad-top) - 2.5rem);
}

.hero__reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: heroReveal 0.9s var(--ease-out) forwards;
  animation-delay: calc(var(--i, 0) * 0.07s + 0.15s);
}

@keyframes heroReveal {
  to { opacity: 1; transform: translateY(0); }
}

.hero__head {
  max-width: 920px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.8vw, 5.2rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.hero__title-line {
  display: block;
}

.hero__title-line--accent {
  position: relative;
  color: var(--text);
  margin: 0.08em 0;
}

.hero__title-line--accent em {
  font-style: normal;
  color: var(--orange);
  font-weight: 700;
  white-space: nowrap;
}

.hero__scribble {
  display: block;
  width: min(100%, 420px);
  height: 18px;
  margin-top: -0.15em;
  color: var(--orange);
  opacity: 0.85;
  transform-origin: left center;
}

.hero__scribble path {
  stroke-dasharray: 480;
  stroke-dashoffset: 480;
  animation: heroDraw 1.2s var(--ease-out) forwards;
  animation-delay: calc(var(--i, 2) * 0.07s + 0.6s);
}

@keyframes heroDraw {
  to { stroke-dashoffset: 0; }
}

.hero__title-line--soft {
  color: var(--text-muted);
  font-weight: 400;
  font-style: italic;
  font-size: 0.72em;
  letter-spacing: -0.02em;
  margin-top: 0.2em;
}

.hero__split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  flex: 1;
}

.hero__lead {
  max-width: 34ch;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 1.75rem;
}

.btn--hero {
  gap: 0.65rem;
  padding: 1.05rem 1.6rem;
  font-size: 0.95rem;
}

.btn--hero svg {
  transition: transform 0.35s var(--ease-out);
}

.btn--hero:hover svg {
  transform: translateX(4px);
}

.hero__tel {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-left: 1.25rem;
  border-left: 1px solid var(--border-strong);
  transition: border-color 0.25s ease, color 0.25s ease;
}

.hero__tel:hover {
  border-color: var(--orange);
}

.hero__tel:hover .hero__tel-num {
  color: var(--orange);
}

.hero__tel-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.hero__tel-num {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.25s ease;
}

.hero__calc {
  position: relative;
  margin: 0;
  justify-self: end;
  width: min(100%, 420px);
}

.hero__calc-card {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  padding: clamp(1.35rem, 2.5vw, 1.75rem);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  background: linear-gradient(165deg, var(--bg-card) 0%, var(--bg-raised) 100%);
  box-shadow: var(--shadow-soft), var(--shadow-glow);
}

.hero__calc-kicker {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
}

.hero__calc-demo {
  display: grid;
  gap: 0.5rem;
}

.hero__calc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid var(--border);
  font-size: 0.84rem;
  color: var(--text-muted);
}

.hero__calc-row strong {
  font-variant-numeric: tabular-nums;
  color: var(--text);
}

.hero__calc-row--minus strong {
  color: #f0a88a;
}

.hero__calc-row--net {
  border-color: rgba(232, 117, 26, 0.35);
  background: var(--orange-dim);
}

.hero__calc-row--net strong {
  font-size: 1.2rem;
  color: var(--orange-light);
}

.hero__calc-cta {
  width: 100%;
  justify-content: center;
}

.hero__calc-note {
  margin: 0;
  font-size: 0.72rem;
  color: var(--text-dim);
  text-align: center;
}

.hero__foot {
  display: block;
  padding-top: 1.5rem;
  margin-top: 0.5rem;
  border-top: 1px solid var(--border);
}

/* Laufband am unteren Rand des Heros (rechts -> links) */
.hero__ticker {
  position: relative;
  overflow: hidden;
  width: 100%;
  -webkit-mask: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.hero__ticker-track {
  display: flex;
  width: max-content;
  animation: heroTicker 40s linear infinite;
}

.hero__ticker:hover .hero__ticker-track {
  animation-play-state: paused;
}

.hero__ticker-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.hero__ticker-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 0 1.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.hero__ticker-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.5;
}

.hero__ticker-item--link {
  color: var(--orange);
  transition: color 0.2s;
}

.hero__ticker-item--link:hover {
  color: var(--orange-light);
}

@keyframes heroTicker {
  to { transform: translateX(-50%); }
}

/* Desktop Hero Grid – Laptops bis 1399px, max. 1080px hoch */
@media (min-width: 901px) and (max-width: 1399px) and (max-height: 1080px) {
  .hero {
    --hero-pad-top: calc(var(--header-h) + 1.25rem);
    min-height: 100svh;
    padding-bottom: 1.5rem;
    overflow: clip;
  }

  .hero__stage {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
    grid-template-rows: minmax(0.2rem, 0.45fr) auto auto minmax(0.1rem, 0.3fr) auto;
    grid-template-areas:
      ". ."
      "head scene"
      "copy scene"
      ". ."
      "foot foot";
    column-gap: 1.5rem;
    row-gap: 0.55rem;
    gap: 0.55rem 1.5rem;
    min-height: calc(100svh - var(--hero-pad-top) - 1.5rem);
    align-items: start;
  }

  .hero__head { grid-area: head; max-width: none; }
  .hero__split { display: contents; }
  .hero__copy { grid-area: copy; }
  .hero__calc {
    grid-area: scene;
    grid-row: 2 / 4;
    align-self: center;
    justify-self: end;
    width: 100%;
    max-width: 380px;
  }
  .hero__foot {
    grid-area: foot;
    align-self: end;
    padding-top: 0.75rem;
  }

  .hero__title { font-size: clamp(2.2rem, 4.2vw, 3.2rem); line-height: 1.02; }
  .hero__title-line--soft { font-size: 0.7em; }
  .hero__scribble { width: min(100%, 340px); height: 14px; }
  .hero__lead { margin-bottom: 1.1rem; font-size: 0.95rem; line-height: 1.6; max-width: 36ch; }
  .hero__watermark { font-size: clamp(5.5rem, 14vw, 9rem); }
}

/* 1080p Desktop (1920×1080) – kompakt, wenig Freiraum */
@media (min-width: 1400px) and (min-height: 900px) and (max-height: 1080px) {
  .hero {
    --hero-pad-top: calc(var(--header-h) + 0.85rem);
    min-height: 100svh;
    padding-bottom: 1.15rem;
    overflow: clip;
  }

  .hero__stage.container {
    max-width: 1180px;
  }

  .hero__stage {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(350px, 400px);
    grid-template-rows: minmax(0.15rem, 0.42fr) auto auto minmax(0.1rem, 0.28fr) auto;
    grid-template-areas:
      ". ."
      "head scene"
      "copy scene"
      ". ."
      "foot foot";
    column-gap: 1.75rem;
    row-gap: 0.5rem;
    gap: 0.5rem 1.75rem;
    min-height: calc(100svh - var(--hero-pad-top) - 1.15rem);
    align-items: start;
  }

  .hero__head { grid-area: head; max-width: 52ch; }
  .hero__split { display: contents; }
  .hero__copy { grid-area: copy; }
  .hero__calc {
    grid-area: scene;
    grid-row: 2 / 4;
    align-self: center;
    justify-self: end;
    width: 100%;
    max-width: 400px;
  }
  .hero__foot {
    grid-area: foot;
    align-self: end;
    padding-top: 0.7rem;
    margin-top: 0;
  }

  .hero__title { font-size: clamp(2.35rem, 3.4vw, 3.45rem); line-height: 1.02; }
  .hero__title-line--soft { font-size: 0.68em; }
  .hero__scribble { width: min(100%, 350px); height: 14px; }
  .hero__lead { margin-bottom: 1rem; font-size: 0.96rem; line-height: 1.62; max-width: 38ch; }
  .hero__actions { gap: 0.9rem 1.15rem; }
  .btn--hero { padding: 0.9rem 1.35rem; font-size: 0.9rem; }
  .hero__watermark { font-size: clamp(5.5rem, 13vw, 8.5rem); }
}

/* 1440p Desktop (2560×1440 o. ä.) – etwas luftiger, aber kompakt */
@media (min-width: 1400px) and (min-height: 1081px) and (max-height: 1500px) {
  .hero {
    --hero-pad-top: calc(var(--header-h) + 1.25rem);
    min-height: 100svh;
    padding-bottom: 1.5rem;
    overflow: clip;
  }

  .hero__stage.container {
    max-width: 1260px;
  }

  .hero__stage {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, 450px);
    grid-template-rows: minmax(0.35rem, 0.55fr) auto auto minmax(0.2rem, 0.38fr) auto;
    grid-template-areas:
      ". ."
      "head scene"
      "copy scene"
      ". ."
      "foot foot";
    column-gap: 2rem;
    row-gap: 0.65rem;
    gap: 0.65rem 2rem;
    min-height: calc(100svh - var(--hero-pad-top) - 1.5rem);
    align-items: start;
  }

  .hero__head { grid-area: head; max-width: 56ch; }
  .hero__split { display: contents; }
  .hero__copy { grid-area: copy; }
  .hero__calc {
    grid-area: scene;
    grid-row: 2 / 4;
    align-self: center;
    justify-self: end;
    width: 100%;
    max-width: 440px;
  }
  .hero__foot {
    grid-area: foot;
    align-self: end;
    padding-top: 0.85rem;
    margin-top: 0;
  }

  .hero__title { font-size: clamp(2.65rem, 3.2vw, 3.85rem); line-height: 1.02; }
  .hero__title-line--soft { font-size: 0.7em; }
  .hero__scribble { width: min(100%, 380px); height: 16px; }
  .hero__lead { margin-bottom: 1.2rem; font-size: 1.02rem; line-height: 1.68; max-width: 40ch; }
  .hero__actions { gap: 1rem 1.4rem; }
  .hero__watermark { font-size: clamp(6.5rem, 12vw, 10rem); }
}

/* Sehr kurze Viewports (Skalierung, kleine Fenster) */
@media (min-width: 901px) and (max-height: 820px) {
  .hero {
    --hero-pad-top: calc(var(--header-h) + 1rem);
    --hero-foot-space: 5.5rem;
  }

  .hero__title {
    font-size: clamp(2rem, 3.8vw, 3rem);
  }

  .hero__calc {
    width: min(100%, 380px);
  }

  .hero__lead {
    margin-bottom: 1rem;
    font-size: 0.92rem;
  }

  .btn--hero {
    padding: 0.8rem 1.15rem;
    font-size: 0.85rem;
  }

  .hero__foot {
    padding-top: clamp(0.6rem, 1.5vh, 1.1rem);
  }

  .hero__ticker-item {
    font-size: 0.72rem;
    padding: 0 1.5rem;
  }
}

/* ---- Assurance (schlanke Qualitätszeile über dem Footer) ---- */
.assurance {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-raised);
}

.assurance__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(1.5rem, 5vw, 4rem);
  padding: 1.6rem 0;
}

.assurance__item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.assurance__item img {
  width: 22px;
  height: 22px;
  opacity: 0.9;
}

/* ---- Sections ---- */
.section {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  border-bottom: none;
  position: relative;
}

.section:not(:last-of-type)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
}

.section--alt {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(244, 122, 32, 0.05) 0%, transparent 60%),
    linear-gradient(180deg, rgba(24, 27, 34, 0.55) 0%, rgba(20, 22, 28, 0.25) 100%);
}

.section-head {
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
  max-width: 560px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.1rem;
}

.section-tag__num {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--orange);
  padding: 0.18rem 0.5rem;
  border: 1px solid var(--hairline);
  border-radius: 100px;
  background: var(--orange-dim);
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.6vw, 2.85rem);
  font-weight: 600;
  margin-bottom: 0.85rem;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.section-head h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
}

.section-head p {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

/* ---- Benefits (Bento) ---- */
.benefits {
  counter-reset: benefit;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.benefit {
  counter-increment: benefit;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2.35rem 1.9rem 2.1rem;
  background:
    radial-gradient(130% 110% at 0% 0%, rgba(244, 122, 32, 0.07) 0%, transparent 42%),
    linear-gradient(168deg, var(--bg-card) 0%, var(--bg-raised) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.45s var(--ease-spring), box-shadow 0.45s var(--ease-out);
}

/* animierter Gradient-Rahmen beim Hover (Mask-Technik) */
.benefit::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(140deg, var(--orange) 0%, rgba(244, 122, 32, 0.15) 35%, transparent 55%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.45s var(--ease-out);
  pointer-events: none;
}

/* dezente Ghost-Nummer */
.benefit::after {
  content: counter(benefit, decimal-leading-zero);
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.09);
  transition: -webkit-text-stroke-color 0.45s;
  pointer-events: none;
}

.benefit:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 72px -26px rgba(0, 0, 0, 0.62), var(--shadow-glow);
}

.benefit:hover::before { opacity: 1; }
.benefit:hover::after { -webkit-text-stroke-color: rgba(244, 122, 32, 0.5); }

.benefit__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  padding: 12px;
  border-radius: 16px;
  background:
    linear-gradient(150deg, rgba(244, 122, 32, 0.22) 0%, rgba(244, 122, 32, 0.06) 100%);
  border: 1px solid var(--hairline);
  box-sizing: border-box;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.45s var(--ease-spring);
}

.benefit:hover .benefit__icon {
  transform: scale(1.08) rotate(-4deg);
}

.benefit h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.benefit p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---- Gründe – kompakte Karten-Reihe ---- */
.reasons {
  margin-top: 4rem;
}

.reasons__head {
  max-width: 640px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.reasons__kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.85rem;
}

.reasons__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.reasons__list {
  list-style: none;
  counter-reset: reason;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.reasons__list li {
  counter-increment: reason;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.6rem 1.4rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: linear-gradient(168deg, var(--bg-card) 0%, var(--bg-raised) 100%);
  box-shadow: var(--shadow-card);
  transition: transform 0.4s var(--ease-spring), border-color 0.4s, box-shadow 0.4s;
}

.reasons__list li::before {
  content: counter(reason, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--orange);
  margin-bottom: 0.35rem;
}

.reasons__list li:hover {
  transform: translateY(-6px);
  border-color: var(--hairline);
  box-shadow: 0 28px 52px -24px rgba(0, 0, 0, 0.6), var(--shadow-glow);
}

.reasons__list strong {
  display: block;
  color: var(--text);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.reasons__list span {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

/* Prozess – horizontaler Stepper mit Verbindungslinie */
.process {
  list-style: none;
  counter-reset: process;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  position: relative;
}

/* durchgehende Linie hinter den Nummern (Desktop) */
.process::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--hairline) 12%, var(--hairline) 88%, transparent);
  z-index: 0;
}

.process__step {
  position: relative;
  z-index: 1;
  counter-increment: process;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0;
}

.process__step::before {
  content: counter(process, decimal-leading-zero);
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  margin-bottom: 0.85rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--orange);
  background:
    radial-gradient(circle at 30% 25%, rgba(244, 122, 32, 0.18), transparent 70%),
    var(--bg-card);
  border: 1px solid var(--hairline);
  border-radius: 50%;
  box-shadow: 0 0 0 8px var(--bg), 0 12px 28px -12px rgba(0, 0, 0, 0.6);
  transition: background 0.4s, color 0.4s, transform 0.4s var(--ease-spring), box-shadow 0.4s;
}

.section--alt .process__step::before {
  box-shadow: 0 0 0 8px rgba(20, 22, 28, 1), 0 12px 28px -12px rgba(0, 0, 0, 0.6);
}

.process__step:hover::before {
  background: var(--orange-grad);
  color: #fff;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 0 0 8px var(--bg), 0 16px 34px -10px var(--orange-glow);
}

.process__step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.process__step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .process {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* vertikale Linie links */
  .process::before {
    top: 0.5rem;
    bottom: 2.5rem;
    left: 2rem;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, transparent, var(--hairline) 8%, var(--hairline) 92%, transparent);
  }

  .process__step {
    display: block;
    position: relative;
    padding: 0 0 2.25rem 5.5rem;
  }

  .process__step::before {
    position: absolute;
    left: 0;
    top: 0;
    margin-bottom: 0;
  }

  .process__step h3 { margin-top: 0.75rem; }
}

/* LOHNunion-Stil: Leistungspakete */
.packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.35s var(--ease-spring), border-color 0.35s, box-shadow 0.35s;
}

.package-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 117, 26, 0.25);
}

.package-card--featured {
  border-color: rgba(232, 117, 26, 0.45);
  background: linear-gradient(180deg, rgba(232, 117, 26, 0.1) 0%, var(--bg) 55%);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.package-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--orange);
  padding: 0.25rem 0.55rem;
  border-radius: 100px;
}

.package-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  padding-right: 4rem;
}

.package-card__desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  flex: 1;
}

.package-card ul {
  list-style: none;
  margin-bottom: 1.25rem;
}

.package-card li {
  font-size: 0.84rem;
  color: var(--text-muted);
  padding: 0.35rem 0 0.35rem 1.35rem;
  position: relative;
}

.package-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.75rem;
}

.package-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* ---- Services ---- */
.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  counter-reset: service;
}

.service-item {
  position: relative;
  padding: 2.25rem 2rem;
  background: linear-gradient(170deg, var(--bg-card) 0%, var(--bg-raised) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  counter-increment: service;
  overflow: hidden;
  transition: transform 0.4s var(--ease-spring), border-color 0.4s, box-shadow 0.4s;
}

.service-item::after {
  content: counter(service, decimal-leading-zero);
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(244, 122, 32, 0.18);
  pointer-events: none;
  transition: -webkit-text-stroke-color 0.4s;
}

.service-item:hover {
  transform: translateY(-6px);
  border-color: var(--hairline);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.55), var(--shadow-glow);
}

.service-item:hover::after {
  -webkit-text-stroke-color: rgba(244, 122, 32, 0.4);
}

.service-item h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
  max-width: 80%;
}

.service-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
  line-height: 1.7;
}

.service-item p:last-child { margin-bottom: 0; }

/* ---- About ---- */
.about {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.about__panel {
  position: relative;
  margin: 0;
  padding: 1.75rem 1.6rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background:
    radial-gradient(ellipse 80% 60% at 0% 0%, rgba(244, 122, 32, 0.12) 0%, transparent 55%),
    linear-gradient(170deg, var(--bg-card) 0%, var(--bg-raised) 100%);
  box-shadow: var(--shadow-card);
}

.about__panel-head {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 1.35rem;
}

.about__avatar {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 4.5rem;
  height: 4.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--orange-light);
  background: var(--orange-dim);
  border: 1px solid var(--hairline);
  border-radius: 50%;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.about__panel-kicker {
  margin: 0 0 0.2rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}

.about__panel-name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.about__panel-role {
  margin: 0.3rem 0 0;
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.about__quote {
  margin: 0 0 1.35rem;
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: rgba(0, 0, 0, 0.22);
}

.about__quote p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--text);
}

.about__facts {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.about__facts li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.about__facts img {
  flex-shrink: 0;
  opacity: 0.9;
}

.about__panel-foot {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.about__panel-mark {
  opacity: 0.85;
}

.about__content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 600;
  margin-bottom: 0.85rem;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.about__content h2 em,
.contact__left h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
}

.about__lead {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

/* Kennzahlen-Reihe im Über-uns-Bereich */
.about__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  margin: 0 0 1.9rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about__stats dt {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  background: var(--orange-grad);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.35rem;
}

.about__stats dd {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.about__point {
  padding-left: 1rem;
  border-left: 2px solid rgba(232, 117, 26, 0.35);
  transition: border-color 0.3s, transform 0.3s var(--ease-spring);
}

.about__point:hover {
  border-left-color: var(--orange);
  transform: translateX(4px);
}

.about__points {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.about__point h4 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 0.25rem;
}

.about__point p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ---- Reviews ---- */
.reviews {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.review {
  position: relative;
  padding: 2.5rem 2rem 1.85rem;
  background: linear-gradient(170deg, var(--bg-card) 0%, var(--bg-raised) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.4s var(--ease-spring), border-color 0.4s, box-shadow 0.4s;
}

/* übergroßes editoriales Anführungszeichen */
.review::before {
  content: '\201C';
  position: absolute;
  top: -0.35em;
  left: 0.6rem;
  font-family: var(--font-display);
  font-size: 7rem;
  line-height: 1;
  color: var(--orange);
  opacity: 0.16;
  pointer-events: none;
}

.review:hover {
  transform: translateY(-6px);
  border-color: var(--hairline);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.55), var(--shadow-glow);
}

.review p {
  position: relative;
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-style: italic;
  font-weight: 400;
}

.review footer {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.82rem;
  font-style: normal;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.review footer strong {
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.review footer span {
  font-size: 0.78rem;
  color: var(--text-dim);
}

.review__stars {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

/* ---- CTA band ---- */
.cta-band {
  position: relative;
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  margin: 0 1.25rem;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(ellipse 60% 120% at 100% 0%, rgba(244, 122, 32, 0.22) 0%, transparent 55%),
    linear-gradient(115deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border-strong);
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: -40% -10% auto auto;
  width: 60%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(244, 122, 32, 0.18) 0%, transparent 65%);
  filter: blur(20px);
  animation: ctaGlow 7s ease-in-out infinite alternate;
  pointer-events: none;
}

/* riesiges Wasserzeichen für editorialen Charakter */
.cta-band::after {
  content: '€';
  position: absolute;
  right: 2rem;
  bottom: -2.5rem;
  font-family: var(--font-display);
  font-size: 14rem;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

@keyframes ctaGlow {
  from { opacity: 0.55; transform: translate(0, 0) scale(1); }
  to { opacity: 1; transform: translate(-14px, 12px) scale(1.12); }
}

.cta-band__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.cta-band p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-top: 0.4rem;
}

/* ---- FAQ ---- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  border: none;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-item:hover {
  border-color: rgba(232, 117, 26, 0.25);
}

.faq-item[open] {
  border-color: rgba(232, 117, 26, 0.35);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.faq-item:last-child { border-bottom: 1px solid var(--border); }

.faq-item summary {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: transparent;
  transition: color 0.2s;
}

.faq-item[open] summary {
  color: var(--orange);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '';
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background:
    linear-gradient(var(--text-dim), var(--text-dim)) center / 11px 2px no-repeat,
    linear-gradient(var(--text-dim), var(--text-dim)) center / 2px 11px no-repeat;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  transition: transform 0.35s var(--ease-spring), border-color 0.3s, background 0.3s;
}

.faq-item summary:hover::after { border-color: var(--hairline); }

.faq-item[open] summary::after {
  transform: rotate(135deg);
  border-color: var(--hairline);
  background:
    linear-gradient(var(--orange), var(--orange)) center / 11px 2px no-repeat,
    linear-gradient(var(--orange), var(--orange)) center / 2px 11px no-repeat;
}

.faq-item p {
  padding: 0 1.35rem 1.15rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  background: transparent;
  animation: faqOpen 0.35s var(--ease-out);
}

@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- Contact ---- */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.contact__left h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact__left > p {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.contact__info li {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.contact__info strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  margin-bottom: 0.15rem;
}

.contact__info a:hover { color: var(--orange); }

.contact__form {
  padding: 2.25rem;
  background: linear-gradient(170deg, var(--bg-card) 0%, var(--bg-raised) 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact__form:focus-within {
  border-color: var(--hairline);
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(244, 122, 32, 0.12);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field { margin-bottom: 1rem; }

.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  margin-bottom: 0.35rem;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.75rem 0.95rem;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 117, 26, 0.12);
  transform: translateY(-1px);
}

.field textarea { resize: vertical; min-height: 100px; }

.form-note {
  font-size: 0.72rem;
  color: var(--text-dim);
  text-align: center;
  margin-top: 0.65rem;
}

.form-note a { color: var(--orange); }

/* ---- Footer ---- */
.footer {
  position: relative;
  padding: 3.5rem 0 0;
  background: var(--bg-raised);
  border-top: 1px solid var(--border-strong);
}

.footer::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hairline), transparent);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.footer__brand p {
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.logo { display: none; }
.logo__icon { display: none; }
.logo__name { display: none; }

.footer h4 {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  margin-bottom: 0.65rem;
}

.footer__grid > div {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer a:hover { color: var(--orange); }

.footer__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer__bar div {
  display: flex;
  gap: 1.25rem;
}

.footer__credit {
  color: var(--text-dim);
}

.footer__credit a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.footer__credit a:hover {
  color: var(--orange);
}

/* ---- Legal pages ---- */
.legal-header {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg-raised);
}

.legal-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.legal-header__back {
  font-size: 0.88rem;
  color: var(--orange);
}

.legal-main {
  padding: 3rem 1.25rem 4rem;
  max-width: 680px;
  margin: 0 auto;
}

.legal-main h1 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 0.35rem;
}

.legal-updated {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.legal-block {
  margin-bottom: 1.75rem;
}

.legal-block h2 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.legal-block p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.legal-block a { color: var(--orange); }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding-bottom: 3rem;
  }

  .hero__stage { min-height: auto; }

  .hero__rail { display: none; }

  .hero__split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero__calc {
    order: -1;
    justify-self: center;
    max-width: 380px;
  }

  .hero__glass-pane--front { clip-path: polygon(44% 0%, 100% 0%, 100% 100%, 0% 100%); }
  .hero__glass-pane--layer3 { clip-path: polygon(38% 0%, 100% 0%, 100% 100%, 0% 100%); }
  .hero__glass-pane--layer2 { clip-path: polygon(32% 0%, 100% 0%, 100% 100%, 0% 100%); }
  .hero__glass-pane--layer1 { clip-path: polygon(26% 0%, 100% 0%, 100% 100%, 0% 100%); }

  .benefits { grid-template-columns: 1fr; }
  .services-list { grid-template-columns: 1fr; }
  .reasons__list { grid-template-columns: repeat(2, 1fr); gap: 0.9rem; }

  .assurance__row { gap: 1.25rem 2rem; }

  .about { grid-template-columns: 1fr; }
  .reviews { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .cta-band { margin: 0 1rem; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }

  .site-header__nav,
  .site-header__actions .site-header__cta { display: none; }

  .site-header__burger { display: flex; }
}

@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .reasons__list { grid-template-columns: 1fr; }
  .footer__bar { flex-direction: column; text-align: center; }
  .about__stats { gap: 1.25rem 2rem; }
  .hero__title { font-size: clamp(2.2rem, 11vw, 3rem); }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__tel { padding-left: 0; border-left: none; padding-top: 0.5rem; border-top: 1px solid var(--border); }
  .service-item { padding: 1.85rem 1.5rem; }
  .service-item h3 { max-width: 100%; }
}

@media (max-width: 900px) {
  .site-header__burger.is-open span:first-child { transform: rotate(45deg) translate(5px, 5px); }
  .site-header__burger.is-open span:last-child { transform: rotate(-45deg) translate(5px, -5px); }
}

/* ---- Scroll reveal (dezent & schnell) ---- */
.is-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
  will-change: opacity, transform;
}

.is-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__reveal,
  .hero__scribble,
  .hero__scribble path,
  .hero__glow,
  .hero__mesh,
  .hero__glass,
  .hero__arc,
  .hero__ticker-track,
  .btn--orange::after,
  .cta-band::before {
    animation: none !important;
    opacity: 1;
    transform: none;
    stroke-dashoffset: 0;
  }
  .is-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
