@import url("fonts.932b3a40.css");

/* =========================================================
   MASTER DEFENSE – Design System
   ========================================================= */

:root {
  /* Farben */
  --ink: #16151a;
  --ink-2: #201f26;
  --ink-3: #2c2b33;
  --paper: #f4f4f1;
  --paper-2: #eaeae4;
  --paper-3: #dedcd5;
  --card: #ffffff;
  --line: #d5d3cb;
  --line-dark: rgba(255, 255, 255, 0.12);
  --muted: #5f5e57;
  --muted-dark: #a9a8a1;
  --orange: #e8622c;
  --orange-dark: #c74f1e;
  --orange-soft: #fdf0eb;
  --steel: #33495b;
  --steel-dark: #24343f;

  /* Typografie */
  --font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-body: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, sans-serif;

  /* Maße */
  --max: 1200px;
  --gutter: 24px;
  --radius: 3px;
  --radius-lg: 6px;

  /* Abstände */
  --space-section: clamp(64px, 8vw, 112px);

  /* Effekte */
  --shadow-sm: 0 1px 2px rgba(22, 21, 26, 0.06);
  --shadow-md: 0 12px 32px -12px rgba(22, 21, 26, 0.18);
  --shadow-lg: 0 28px 64px -24px rgba(22, 21, 26, 0.32);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset & Basis ---------- */

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

html {
  scroll-behavior: smooth;
  /* Sticky-Header beim Ansteuern von Ankern berücksichtigen */
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-wrap: break-word;
}

body.nav-open {
  overflow: hidden;
}

img,
svg,
video {
  max-width: 100%;
  display: block;
}

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

button {
  font: inherit;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.018em;
  margin: 0 0 0.5em;
  text-wrap: balance;
}

p {
  margin: 0 0 1em;
  max-width: 64ch;
}

p:last-child {
  margin-bottom: 0;
}

ul,
ol {
  margin: 0 0 1em;
}

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

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 200;
  background: var(--orange);
  color: #fff;
  padding: 12px 20px;
  font-weight: 600;
  border-radius: var(--radius);
  transition: top 0.2s var(--ease);
}

.skip-link:focus {
  top: 16px;
}

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

/* ---------- Layout ---------- */

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.wrap--narrow {
  max-width: 800px;
}

section {
  padding: var(--space-section) 0;
  position: relative;
}

section.tight {
  padding: clamp(48px, 5vw, 72px) 0;
}

.bg-paper-2 {
  background: var(--paper-2);
}

.bg-ink {
  background: var(--ink);
  color: var(--paper);
}

.bg-ink h2,
.bg-ink h3,
.bg-ink h4 {
  color: #fff;
}

.bg-ink p {
  color: var(--muted-dark);
}

/* ---------- Typo-Bausteine ---------- */

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.kicker::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--orange);
  flex: none;
}

.section-head {
  max-width: 680px;
  margin-bottom: clamp(36px, 4vw, 56px);
}

.section-head h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  margin-bottom: 0.4em;
}

.section-head p {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 0;
}

.bg-ink .section-head p {
  color: var(--muted-dark);
}

.lead {
  font-size: clamp(17px, 1.5vw, 19px);
  color: var(--muted);
}

.note {
  font-size: 14.5px;
  color: var(--muted);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15.5px;
  line-height: 1.2;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  text-align: center;
  transition: background-color 0.18s var(--ease), color 0.18s var(--ease),
    border-color 0.18s var(--ease), transform 0.18s var(--ease),
    box-shadow 0.18s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

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

.btn svg {
  width: 16px;
  height: 16px;
  flex: none;
}

.btn--orange {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 6px 18px -8px rgba(232, 98, 44, 0.9);
}

.btn--orange:hover {
  background: var(--orange-dark);
  box-shadow: 0 10px 24px -8px rgba(232, 98, 44, 0.9);
}

.btn--steel {
  background: var(--steel);
  color: #fff;
}

.btn--steel:hover {
  background: var(--steel-dark);
}

.btn--ink {
  background: var(--ink);
  color: #fff;
}

.btn--ink:hover {
  background: var(--ink-3);
}

.btn--light {
  background: #fff;
  color: var(--ink);
}

.btn--light:hover {
  background: var(--paper-2);
}

/* Outline auf dunklem Grund */
.btn--ghost {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.btn--ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(232, 98, 44, 0.08);
}

/* Outline auf hellem Grund */
.btn--outline {
  border-color: var(--ink);
  color: var(--ink);
}

.btn--outline:hover {
  background: var(--ink);
  color: #fff;
}

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

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

/* Textlink mit Pfeil */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--orange);
  border-bottom: 1px solid transparent;
  transition: border-color 0.18s var(--ease), gap 0.18s var(--ease);
}

.arrow-link:hover {
  border-bottom-color: var(--orange);
  gap: 12px;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--ink);
  color: var(--paper);
  border-bottom: 1px solid var(--line-dark);
  transition: box-shadow 0.25s var(--ease);
}

.site-header.is-stuck {
  box-shadow: 0 8px 28px -12px rgba(0, 0, 0, 0.7);
}

/* Die Kopfzeile darf breiter laufen als der Inhalt, damit Navigation,
   Telefonnummer und Button nebeneinander Platz haben. */
.nav-row {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 16px var(--gutter);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  flex: none;
  margin-right: auto;
}

.brand__mark {
  width: 34px;
  height: 34px;
  flex: none;
}

.brand__text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 19px;
  letter-spacing: 0.01em;
  line-height: 1.05;
  color: #fff;
  text-transform: uppercase;
}

.brand__text span {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--orange);
}

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

.nav-main a {
  position: relative;
  font-size: 15.5px;
  font-weight: 500;
  color: #d5d4ce;
  padding: 8px 0;
  white-space: nowrap;
  transition: color 0.18s var(--ease);
}

.nav-main a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s var(--ease);
}

.nav-main a:hover,
.nav-main a[aria-current="page"] {
  color: #fff;
}

.nav-main a:hover::after,
.nav-main a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: none;
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 500;
  color: #c3c2bb;
  transition: color 0.18s var(--ease);
}

.nav-phone:hover {
  color: #fff;
}

.nav-phone svg {
  width: 15px;
  height: 15px;
  color: var(--orange);
}

.nav-actions .btn {
  padding: 11px 20px;
  font-size: 14.5px;
}

/* Burger */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: #fff;
  position: relative;
  flex: none;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 0.25s var(--ease), opacity 0.15s var(--ease);
}

.nav-toggle span {
  top: 50%;
  transform: translate(-50%, -50%);
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  left: 0;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile-Panel */
.nav-panel {
  display: none;
  background: var(--ink);
  border-top: 1px solid var(--line-dark);
  padding: 8px var(--gutter) 28px;
}

.nav-panel a.nav-panel__link {
  display: block;
  padding: 15px 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: #fff;
  border-bottom: 1px solid var(--line-dark);
}

.nav-panel a.nav-panel__link[aria-current="page"] {
  color: var(--orange);
}

.nav-panel__foot {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

/* ---------- Hero ---------- */

.hero {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}

/* Diagonale Akzentfläche im Hintergrund */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      120% 80% at 85% 0%,
      rgba(51, 73, 91, 0.55) 0%,
      transparent 60%
    ),
    radial-gradient(90% 70% at 0% 100%, rgba(232, 98, 44, 0.16) 0%, transparent 55%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
  padding-top: clamp(56px, 7vw, 96px);
  padding-bottom: clamp(56px, 7vw, 96px);
}

.hero--single .hero__inner {
  grid-template-columns: 1fr;
  max-width: 900px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
  padding: 7px 14px;
  border: 1px solid rgba(232, 98, 44, 0.35);
  border-radius: 100px;
  background: rgba(232, 98, 44, 0.08);
}

.hero h1 {
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 900;
  color: #fff;
  max-width: 15ch;
  letter-spacing: -0.028em;
  margin-bottom: 0.42em;
}

.hero p.lead {
  color: #c5c4bd;
  font-size: clamp(17px, 1.6vw, 19.5px);
  max-width: 52ch;
}

/* Stufen-Grafik im Hero */
.hero-steps {
  display: flex;
  flex-direction: column;
  border-left: 2px solid rgba(255, 255, 255, 0.14);
  padding-left: 28px;
}

.hero-steps__item {
  position: relative;
  padding: 15px 0;
}

.hero-steps__item::before {
  content: "";
  position: absolute;
  left: -35px;
  top: 21px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(232, 98, 44, 0.16);
}

.hero-steps__item h3 {
  font-size: 17.5px;
  color: #fff;
  margin-bottom: 3px;
}

.hero-steps__item p {
  font-size: 14.5px;
  color: #a3a29b;
  margin: 0;
}

/* Kennzahlen-Leiste unter dem Hero */
.factbar {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.factbar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.factbar__item {
  padding: 22px 26px;
  border-right: 1px solid var(--line);
  font-size: 14.5px;
  color: var(--muted);
}

.factbar__item:first-child {
  padding-left: 0;
}

.factbar__item:last-child {
  border-right: none;
  padding-right: 0;
}

.factbar__item b {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 1px;
}

/* Branchenband */
.tagbar {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.tagbar__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 34px;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--muted);
}

.tagbar__inner span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.tagbar__inner span::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex: none;
}

/* ---------- Grids ---------- */

.grid {
  display: grid;
  gap: 24px;
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

/* ---------- Karten ---------- */

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 30px;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease),
    border-color 0.22s var(--ease);
}

.card h3 {
  font-size: 19.5px;
  margin-bottom: 10px;
}

.card p {
  color: var(--muted);
  font-size: 15.5px;
  margin-bottom: 0;
}

.card--hover:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--paper-3);
}

.card__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--orange-soft);
  color: var(--orange);
  margin-bottom: 20px;
}

.card__icon svg {
  width: 22px;
  height: 22px;
}

/* Statistik-Karte */
.stat {
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 3px solid var(--orange);
  border-radius: var(--radius);
  padding: 30px 26px;
}

.stat__value {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 12px;
}

.stat p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 0;
}

/* ---------- Zwei Wege (B2B / Privat) ---------- */

.paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.path {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 5vw, 76px) clamp(28px, 3.4vw, 56px);
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}

.path--biz {
  background: var(--steel);
}

.path--personal {
  background: var(--orange);
}

/* Große Ziffer als Hintergrundgrafik */
.path::after {
  content: attr(data-num);
  position: absolute;
  right: -0.08em;
  top: -0.22em;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 260px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.07);
  pointer-events: none;
}

.path__tag {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 12px;
}

.path h2 {
  font-size: clamp(24px, 2.7vw, 34px);
  color: #fff;
  max-width: 14ch;
}

.path p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 40ch;
}

.path .btn {
  margin-top: 22px;
  width: max-content;
}

/* ---------- Säulen ---------- */

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.pillar {
  background: var(--card);
  padding: 34px 28px;
  transition: background-color 0.22s var(--ease);
}

.pillar:hover {
  background: #fbfbf9;
}

.pillar__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 16px;
}

.pillar h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.pillar__quote {
  font-style: italic;
  color: var(--muted);
  font-size: 14.5px;
  margin-bottom: 16px;
  padding-left: 12px;
  border-left: 2px solid var(--paper-3);
}

.pillar ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14.5px;
}

.pillar li {
  margin-bottom: 5px;
}

/* ---------- Prozess ---------- */

.process {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.process__step {
  background: var(--card);
  padding: 26px 22px;
  border-top: 3px solid var(--orange);
}

.process__step .n {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 10px;
}

.process__step h3 {
  font-size: 16.5px;
  margin-bottom: 5px;
}

.process__step p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

/* ---------- Branchen ---------- */

.branchen {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.branche {
  background: var(--card);
  padding: 26px 24px;
  transition: background-color 0.2s var(--ease);
}

.branche:hover {
  background: #fbfbf9;
}

.branche h3 {
  font-size: 16.5px;
  margin-bottom: 7px;
}

.branche p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

/* ---------- Angebots-Staffel ---------- */

.ladder {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.rung {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.rung--featured {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  box-shadow: var(--shadow-lg);
}

.rung--featured h3,
.rung--featured .rung__price {
  color: #fff;
}

.rung--featured .rung__meta,
.rung--featured ul {
  color: #c5c4bd;
}

.rung__flag {
  position: absolute;
  top: -12px;
  left: 30px;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 100px;
}

.rung .kicker {
  margin-bottom: 14px;
}

.rung h3 {
  font-size: 23px;
  margin-bottom: 6px;
}

.rung__meta {
  font-size: 14.5px;
  color: var(--muted);
  margin-bottom: 22px;
}

.rung ul {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  font-size: 15px;
  color: var(--muted);
  display: grid;
  gap: 10px;
}

.rung li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.rung li::before {
  content: "";
  flex: none;
  width: 16px;
  height: 16px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--orange-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e8622c' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
    center / 10px 10px no-repeat;
}

.rung--featured li::before {
  background-color: rgba(232, 98, 44, 0.2);
}

.rung__price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: auto;
  padding-top: 4px;
}

.rung__price small {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0;
  margin-top: 3px;
}

.rung--featured .rung__price small {
  color: #a3a29b;
}

.rung .btn {
  margin-top: 22px;
}

/* ---------- Trainingsstufen (Timeline) ---------- */

.stufen {
  display: grid;
  gap: 26px;
  border-left: 2px solid var(--line);
  padding-left: 34px;
  margin-left: 13px;
}

.stufe {
  position: relative;
}

.stufe::before {
  content: attr(data-n);
  position: absolute;
  left: -48px;
  top: -2px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12.5px;
  display: grid;
  place-items: center;
}

.stufe h3 {
  font-size: 17.5px;
  margin-bottom: 4px;
}

.stufe p {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
}

/* ---------- Badges ---------- */

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  padding: 9px 16px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--ink-2);
}

.badge::before {
  content: "";
  width: 14px;
  height: 14px;
  flex: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e8622c' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

/* ---------- Zitat ---------- */

.quote-block {
  background: var(--ink);
  color: #fff;
  padding: clamp(56px, 6vw, 88px) 0;
  position: relative;
  overflow: hidden;
}

.quote-block::before {
  content: "\201E";
  position: absolute;
  left: 50%;
  top: -30px;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 280px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.045);
  pointer-events: none;
}

.quote-block blockquote {
  position: relative;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 3.2vw, 38px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  max-width: 22ch;
  margin: 0 0 20px;
  color: #fff;
}

.quote-block cite {
  position: relative;
  color: var(--muted-dark);
  font-style: normal;
  font-size: 14.5px;
}

/* ---------- Erfahrungsbericht ---------- */

.testimonial {
  position: relative;
  margin: 0;
  padding: 34px 32px;
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--orange);
  border-radius: var(--radius);
}

.testimonial p {
  font-size: 17px;
  line-height: 1.62;
  color: var(--ink-2);
  margin-bottom: 18px;
}

.testimonial footer {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--muted);
}

/* ---------- Akkordeon (FAQ) ---------- */

.faq {
  border-top: 1px solid var(--line);
  max-width: 860px;
}

.faq__item {
  border-bottom: 1px solid var(--line);
}

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  background: none;
  border: 0;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17.5px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

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

.faq__icon {
  flex: none;
  width: 22px;
  height: 22px;
  position: relative;
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--orange);
  transition: transform 0.25s var(--ease);
}

.faq__icon::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.faq__icon::after {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
}

.faq__q[aria-expanded="true"] .faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s var(--ease);
}

.faq__a > div {
  overflow: hidden;
}

.faq__item.is-open .faq__a {
  grid-template-rows: 1fr;
}

.faq__a p {
  color: var(--muted);
  font-size: 16px;
  padding-bottom: 24px;
  max-width: 70ch;
}

/* ---------- CTA-Band ---------- */

.cta-band {
  background: var(--orange);
  color: #fff;
  padding: clamp(48px, 5vw, 72px) 0;
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(23px, 2.8vw, 34px);
  max-width: 20ch;
  margin: 0;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.9);
  margin: 10px 0 0;
  max-width: 46ch;
}

/* ---------- Formular ---------- */

.form-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(26px, 3vw, 40px);
  box-shadow: var(--shadow-sm);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.field label .req {
  color: var(--orange);
}

.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  padding: 13px 15px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 98, 44, 0.15);
}

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

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235f5e57' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 42px;
}

.field__error {
  font-size: 13.5px;
  font-weight: 500;
  color: #c0341c;
  min-height: 0;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: #c0341c;
}

/* Checkbox (Datenschutz-Einwilligung) */
.check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.5;
}

.check input {
  flex: none;
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--orange);
}

.check a {
  color: var(--orange);
  border-bottom: 1px solid currentColor;
}

/* Honeypot gegen Spam-Bots */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 500;
  display: none;
}

.form-status.is-visible {
  display: block;
}

.form-status--error {
  background: #fdece8;
  border: 1px solid #f1b7a9;
  color: #94240f;
}

.form-status--success {
  background: #e8f5ec;
  border: 1px solid #a9d5b8;
  color: #1c6335;
}

/* Zweiter Weg, falls der Versand scheitert */
.form-fallback {
  display: inline-block;
  margin-top: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Kontakt-Sidebar */
.contact-aside {
  display: grid;
  gap: 20px;
  align-content: start;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item__icon {
  flex: none;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--orange-soft);
  color: var(--orange);
}

.contact-item__icon svg {
  width: 20px;
  height: 20px;
}

.contact-item h3 {
  font-size: 15.5px;
  margin-bottom: 3px;
}

.contact-item p,
.contact-item a {
  font-size: 15.5px;
  color: var(--muted);
  margin: 0;
}

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

/* ---------- Rechtstexte ---------- */

.legal h2 {
  font-size: 24px;
  margin: 2em 0 0.6em;
}

.legal h3 {
  font-size: 18.5px;
  margin: 1.6em 0 0.5em;
}

.legal p,
.legal li {
  color: var(--ink-2);
  font-size: 16.5px;
}

.legal ul {
  padding-left: 20px;
}

.legal li {
  margin-bottom: 6px;
}

.legal a {
  color: var(--orange);
  border-bottom: 1px solid currentColor;
}

.callout {
  background: var(--orange-soft);
  border-left: 3px solid var(--orange);
  padding: 20px 24px;
  border-radius: var(--radius);
  margin-bottom: 32px;
}

.callout p {
  font-size: 15.5px;
  color: var(--ink-2);
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: var(--muted-dark);
  padding: clamp(48px, 5vw, 72px) 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-grid h2 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 18px;
}

.footer-grid p {
  font-size: 14.5px;
  color: var(--muted-dark);
  max-width: 34ch;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-grid li {
  margin-bottom: 10px;
}

.footer-grid a {
  font-size: 14.5px;
  color: var(--muted-dark);
  transition: color 0.18s var(--ease);
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 18px;
}

.footer-brand .brand__mark {
  width: 32px;
  height: 32px;
}

.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13.5px;
}

/* ---------- Scroll-Reveal ---------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

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

/* ---------- Responsive ---------- */

/* Die Telefonnummer weicht zuerst, danach klappt die ganze Leiste ins Menü.
   So entsteht kein Zwischenzustand, in dem die Navigation umbricht. */
@media (max-width: 1319px) {
  .nav-phone {
    display: none;
  }
}

@media (max-width: 1199px) {
  .nav-main {
    gap: 22px;
  }

  .nav-main a {
    font-size: 15px;
  }
}

@media (max-width: 1099px) {
  .nav-main,
  .nav-actions {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-header.is-open .nav-panel {
    display: block;
  }
}

@media (max-width: 940px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 18ch;
  }

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

  .factbar__item {
    padding: 18px 20px;
    border-bottom: 1px solid var(--line);
  }

  .factbar__item:nth-child(odd) {
    padding-left: 0;
  }

  .factbar__item:nth-child(even) {
    border-right: none;
    padding-right: 0;
  }

  .factbar__item:nth-last-child(-n + 2) {
    border-bottom: none;
  }

  .grid--2,
  .grid--3,
  .grid--4,
  .ladder,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .grid--2 {
    gap: 28px;
  }

  .pillars,
  .branchen {
    grid-template-columns: 1fr 1fr;
  }

  .process {
    grid-auto-flow: row;
    grid-auto-columns: auto;
    grid-template-columns: 1fr 1fr;
  }

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

  .path {
    min-height: 0;
  }

  .path::after {
    font-size: 190px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  /* Auf Touchgeräten brauchen die Links eine größere Trefferfläche. */
  .footer-grid li {
    margin-bottom: 2px;
  }

  .footer-grid li a,
  .footer-bottom a {
    display: inline-block;
    padding: 9px 0;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16.5px;
  }

  .pillars,
  .branchen,
  .process {
    grid-template-columns: 1fr;
  }

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

  .factbar__item {
    padding: 16px 0;
    border-right: none;
  }

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

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

  .cta-band__inner .btn {
    width: 100%;
  }

  .quote-block::before {
    font-size: 180px;
  }
}

/* ---------- Bewegungsreduktion & Druck ---------- */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .site-footer,
  .cta-band,
  .nav-toggle {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
