/* =========================================================================
   Automatenservice Süd GbR — Stylesheet
   Design: freundlich-professionell. Creme als Grundfläche, Navy als Anker,
   Orange als einzelner Farbtupfer. Starke Rundungen aus dem Logo-Icon.
   Schrift: Montserrat, selbst gehostet (kein Google-Fonts-CDN).
   ========================================================================= */

/* ---------- Selbstgehostete Schrift (DSGVO: keine externen Requests) ----- */
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-latin-var.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-latin-ext-var.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
                 U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
                 U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- Design-Tokens ------------------------------------------------ */
:root {
  /* Markenfarben, direkt aus dem Logo */
  --c-navy: #14213D;
  --c-navy-700: #1D2E52;   /* aufgehellt, für Flächen im Navy-Bereich */
  --c-navy-300: #6B7994;   /* Navy auf Creme, für Sekundärtext */
  --c-orange: #F2A93B;
  --c-orange-dark: #D98F1E; /* dunkleres Orange, nur als Fläche (Button-Hover) */
  --c-orange-ink: #8A5605;  /* Orange als Textfarbe – erfüllt 4.5:1 auf Creme */
  --c-creme: #F5F2EA;
  --c-creme-2: #EAE5D9;    /* zweite Cremestufe, Ränder/Flächen */
  --c-white: #FFFFFF;
  --c-line: #DED8C9;
  --c-line-dark: #2C3B5C;  /* Trennlinien auf Navy */

  --c-text: #14213D;
  --c-text-soft: #4C5875;
  --c-text-on-dark: #FFFFFF;
  --c-text-on-dark-soft: #B9C2D4;

  --font: "Montserrat", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;

  /* Rundungen — abgeleitet vom Logo-Icon (Radius ≈ 20 % der Kantenlänge) */
  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 36px;
  --r-pill: 999px;
  --r-icon: 22%;           /* für quadratische Icon-Kacheln, wie im Logo */

  --shadow-sm: 0 2px 8px rgba(20, 33, 61, .06);
  --shadow-md: 0 10px 30px rgba(20, 33, 61, .08);
  --shadow-lg: 0 24px 60px rgba(20, 33, 61, .12);

  --wrap: 1180px;
  --gap: clamp(1rem, 2.6vw, 2rem);
  --pad-section: clamp(3.5rem, 8vw, 6.5rem);
  --focus-color: var(--c-navy);
}

/* ---------- Reset / Basis ------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.06rem);
  font-weight: 400;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-creme);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }
ul, ol { padding: 0; list-style: none; }
svg { display: block; }

/* Sichtbarer Tastatur-Fokus, überall */
:focus-visible {
  outline: 3px solid var(--focus-color);
  outline-offset: 3px;
  border-radius: var(--r-xs);
}
.section--dark :focus-visible,
.site-footer :focus-visible,
.cta-band :focus-visible { outline-color: var(--c-orange); }

.skip-link {
  position: absolute;
  left: 1rem; top: -100%;
  background: var(--c-navy);
  color: #fff;
  padding: .8rem 1.35rem;
  border-radius: 0 0 var(--r-md) var(--r-md);
  z-index: 300;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

/* ---------- Typografie --------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--c-navy);
  text-wrap: balance;
}
h1, h2 { font-weight: 800; text-transform: uppercase; letter-spacing: 0.005em; }
h3 { font-weight: 700; letter-spacing: -0.005em; }

h1 { font-size: clamp(2.05rem, 4.9vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.85rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); line-height: 1.25; }

p a, .prose a {
  color: var(--c-navy);
  text-decoration: underline;
  text-decoration-color: var(--c-orange);
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
}
p a:hover { color: var(--c-orange-ink); text-decoration-color: var(--c-orange-ink); }
.section--dark p a, .cta-band p a, .panel--navy p a { color: #fff; text-decoration-color: var(--c-orange); }
.section--dark p a:hover, .cta-band p a:hover, .panel--navy p a:hover { color: var(--c-orange); text-decoration-color: var(--c-orange); }

.lead {
  font-size: clamp(1.08rem, 1rem + 0.55vw, 1.32rem);
  line-height: 1.55;
  color: var(--c-text-soft);
}
.section--dark .lead, .cta-band .lead { color: var(--c-text-on-dark-soft); }

.eyebrow {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--c-text-soft);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  width: 10px; height: 10px;
  border-radius: var(--r-icon);
  background: var(--c-orange);
  flex: none;
}
.section--dark .eyebrow,
.cta-band .eyebrow,
.hero--dark .eyebrow { color: var(--c-orange); }

.accent { color: var(--c-orange); }

/* ---------- Layout ------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(1.15rem, 4vw, 2.5rem);
}
.section { padding-block: var(--pad-section); }
.section--surface { background: var(--c-creme-2); }
.section--white { background: var(--c-white); }
.section--dark { background: var(--c-navy); color: var(--c-text-on-dark); }
.section--dark h1, .section--dark h2,
.section--dark h3, .section--dark h4 { color: #fff; }

.section-head { max-width: 660px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head h2 { margin-top: 0.9rem; }
.section-head p { margin-top: 1rem; color: var(--c-text-soft); }
.section--dark .section-head p { color: var(--c-text-on-dark-soft); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

.grid { display: grid; gap: var(--gap); }
@media (min-width: 640px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 800px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.grid-split { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
@media (min-width: 900px) { .grid-split { grid-template-columns: 1.05fr 0.95fr; } }

/* ---------- Logo-Motiv: Fächer-Raster als dezentes Grafikelement --------- */
/* Sechs abgerundete Kacheln, unten rechts ein oranger Kreis — wie im Icon. */
.fanmark {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(6px, 1.4vw, 12px);
  width: clamp(84px, 12vw, 132px);
  aspect-ratio: 3 / 2;
}
.fanmark i {
  display: block;
  border-radius: var(--r-icon);
  background: var(--c-creme-2);
}
.fanmark i:last-child { border-radius: 50%; background: var(--c-orange); }
.section--dark .fanmark i { background: var(--c-navy-700); }
.section--dark .fanmark i:last-child { background: var(--c-orange); }

/* Hintergrundmuster: gepunktetes Raster in Cremeton, sehr zurückhaltend */
.pattern-bg { position: relative; isolation: isolate; }
.pattern-bg::before {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
  background-image: radial-gradient(circle, rgba(20, 33, 61, .07) 2px, transparent 2px);
  background-size: 34px 34px;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 72%);
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
  pointer-events: none;
}

/* ---------- Buttons ------------------------------------------------------ */
.btn {
  --btn-bg: var(--c-navy);
  --btn-fg: #fff;
  --btn-bd: var(--c-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  padding: 0.9rem 1.6rem;
  text-align: center;
  border: 2px solid var(--btn-bd);
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: transform .14s ease, background-color .14s ease,
              color .14s ease, border-color .14s ease, box-shadow .14s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn .arw { transition: transform .16s ease; }
.btn:hover .arw { transform: translateX(4px); }

.btn--primary { --btn-bg: var(--c-orange); --btn-fg: var(--c-navy); --btn-bd: var(--c-orange); }
.btn--primary:hover { --btn-bg: var(--c-orange-dark); --btn-bd: var(--c-orange-dark); }

.btn--ghost { --btn-bg: transparent; --btn-fg: var(--c-navy); --btn-bd: var(--c-navy); }
.btn--ghost:hover { --btn-bg: var(--c-navy); --btn-fg: #fff; }

.section--dark .btn--ghost,
.cta-band .btn--ghost,
.hero--dark .btn--ghost { --btn-fg: #fff; --btn-bd: rgba(255,255,255,.55); }
.section--dark .btn--ghost:hover,
.cta-band .btn--ghost:hover,
.hero--dark .btn--ghost:hover { --btn-bg: #fff; --btn-fg: var(--c-navy); --btn-bd: #fff; }

.btn--white { --btn-bg: #fff; --btn-fg: var(--c-navy); --btn-bd: #fff; }
.btn--white:hover { --btn-bg: var(--c-creme-2); --btn-bd: var(--c-creme-2); }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; }

@media (prefers-reduced-motion: reduce) {
  .btn, .btn .arw { transition: none; }
  .btn:hover, .btn:hover .arw { transform: none; }
}

/* Textlink mit Pfeil */
.link-arrow {
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 700; text-decoration: none; color: var(--c-navy);
  border-bottom: 2px solid var(--c-orange);
  padding-bottom: 2px;
}
.link-arrow:hover { color: var(--c-orange-ink); }

/* ---------- Header / Navigation ----------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245, 242, 234, .92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--c-line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.25rem;
  min-height: 76px;
}
.brand { display: inline-flex; align-items: center; border-radius: var(--r-sm); }
.brand img { height: 32px; width: auto; }
@media (min-width: 600px) { .brand img { height: 40px; } }

.nav { display: flex; align-items: center; }
.nav-list { display: flex; align-items: center; gap: 0.15rem; }
.nav-list a {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.55rem 0.9rem;
  border-radius: var(--r-pill);
  color: var(--c-text-soft);
  transition: background-color .14s ease, color .14s ease;
}
.nav-list a:hover { color: var(--c-navy); background: var(--c-creme-2); }
.nav-list a[aria-current="page"] {
  color: var(--c-navy);
  font-weight: 700;
  background: var(--c-creme-2);
}
.nav-list .nav-cta {
  margin-left: 0.5rem;
  background: var(--c-orange);
  color: var(--c-navy);
  font-weight: 700;
  padding: 0.62rem 1.15rem;
}
.nav-list .nav-cta:hover,
.nav-list .nav-cta[aria-current="page"] { background: var(--c-orange-dark); color: var(--c-navy); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px; height: 44px;
  background: var(--c-navy);
  border: none;
  border-radius: var(--r-sm);
  cursor: pointer;
  padding: 11px;
}
.nav-toggle span { display: block; height: 3px; border-radius: 2px; background: #fff; width: 100%; }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav {
    display: block;                 /* sonst bleibt die Liste inhaltsbreit */
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--c-creme);
    border-bottom: 1px solid var(--c-line);
    box-shadow: var(--shadow-md);
    transform: translateY(-130%);
    transition: transform .25s ease;
    z-index: -1;
  }
  .nav[data-open="true"] { transform: translateY(0); }
  .nav-list {
    flex-direction: column; align-items: stretch; gap: 0.25rem;
    padding: 0.75rem clamp(1.15rem, 4vw, 2.5rem) 1.25rem;
  }
  .nav-list a { display: block; padding: 0.85rem 1.1rem; border-radius: var(--r-md); }
  .nav-list .nav-cta { margin: 0.4rem 0 0; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  .nav, .nav-list a { transition: none; }
}

/* ---------- Hero --------------------------------------------------------- */
.hero { background: var(--c-creme); overflow: hidden; }
.hero-grid {
  display: grid; gap: clamp(2.25rem, 5vw, 3.5rem); align-items: center;
  padding-block: clamp(2.5rem, 6vw, 4.75rem);
}
@media (min-width: 940px) { .hero-grid { grid-template-columns: 1.08fr 0.92fr; } }
.hero h1 { margin: 1rem 0 1.25rem; }
.hero .lead { max-width: 48ch; }
.hero .btn-row { margin-top: 1.9rem; }
.hero-note { margin-top: 1.1rem; font-size: .9rem; color: var(--c-text-soft); }

/* Kompakter Seitenkopf (Unterseiten) */
.pagehead { padding-block: clamp(2.5rem, 5.5vw, 4rem); }
.pagehead h1 { margin: 1rem 0 1.15rem; }

/* Hero-Grafik: das Logo-Icon als großflächiges Motiv (Automatenfront) */
.hero-visual {
  background: var(--c-navy);
  border-radius: var(--r-xl);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: clamp(.9rem, 2vw, 1.35rem);
}
.hero-visual .slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(.75rem, 1.8vw, 1.15rem);
}
.hero-visual .slot {
  aspect-ratio: 1;
  border-radius: var(--r-icon);
  background: var(--c-creme);
  display: grid; place-items: center;
  color: var(--c-navy-300);
}
.hero-visual .slot--orange { background: var(--c-orange); border-radius: 50%; }
.hero-visual .tray {
  height: clamp(26px, 4.5vw, 38px);
  border-radius: var(--r-pill);
  background: var(--c-orange);
}
.hero-visual .slot svg { width: 46%; height: auto; }

/* ---------- Faktenleiste ------------------------------------------------- */
.factbar { background: var(--c-navy); color: #fff; }
.factbar ul { display: grid; grid-template-columns: 1fr; }
@media (min-width: 760px) { .factbar ul { grid-template-columns: repeat(3, 1fr); } }
.factbar li {
  padding: 1.6rem clamp(1.15rem, 4vw, 2.5rem);
  border-top: 1px solid var(--c-line-dark);
}
@media (min-width: 760px) {
  .factbar li { border-top: none; border-left: 1px solid var(--c-line-dark); }
  .factbar li:first-child { border-left: none; }
}
.factbar .num {
  display: block;
  font-weight: 800; font-size: clamp(1.8rem, 3.4vw, 2.4rem); line-height: 1.1;
  color: #fff; letter-spacing: -0.02em;
}
.factbar .num .unit { color: var(--c-orange); }
.factbar .lbl { display: block; margin-top: .4rem; font-size: 0.92rem; color: var(--c-text-on-dark-soft); }

/* ---------- Karten (Basis) ----------------------------------------------- */
.card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow-sm);
}
.section--white .card { background: var(--c-creme); }
.section--dark .card {
  background: var(--c-navy-700);
  border-color: var(--c-line-dark);
  box-shadow: none;
  color: var(--c-text-on-dark-soft);
}
.card p { color: var(--c-text-soft); }
.section--dark .card p { color: var(--c-text-on-dark-soft); }

/* Icon-Kachel im Logo-Radius */
.icon-tile {
  width: 56px; height: 56px;
  border-radius: var(--r-icon);
  background: var(--c-navy);
  color: var(--c-orange);
  display: grid; place-items: center;
  margin-bottom: 1.2rem;
  flex: none;
}
.icon-tile svg { width: 28px; height: 28px; }
.icon-tile--orange { background: var(--c-orange); color: var(--c-navy); }
.section--dark .icon-tile,
.cta-band .icon-tile { background: var(--c-orange); color: var(--c-navy); }

/* ---------- Leistungsbereiche -------------------------------------------- */
.service { display: flex; flex-direction: column; height: 100%; }
.service h3 { margin-bottom: .6rem; }
.service p { font-size: .98rem; }
.service ul { margin-top: 1.1rem; display: grid; gap: .55rem; }
.service ul li {
  position: relative; padding-left: 1.55rem;
  font-size: .95rem; color: var(--c-text-soft);
}
.service ul li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 11px; height: 11px; border-radius: var(--r-icon);
  background: var(--c-orange);
}
.service .service-foot { margin-top: auto; padding-top: 1.35rem; }

/* ---------- Schritte ----------------------------------------------------- */
.steps { counter-reset: step; }
.step { position: relative; }
.step::before {
  counter-increment: step;
  content: counter(step);
  display: grid; place-items: center;
  width: 46px; height: 46px;
  border-radius: var(--r-icon);
  background: var(--c-orange);
  color: var(--c-navy);
  font-weight: 800; font-size: 1.25rem;
  margin-bottom: 1.1rem;
}
.step h3 { margin-bottom: .5rem; font-size: 1.12rem; }
.step p { color: var(--c-text-soft); font-size: .96rem; }
.section--dark .step p { color: var(--c-text-on-dark-soft); }

/* ---------- Vorteile ----------------------------------------------------- */
.benefit { display: flex; gap: 1.1rem; align-items: flex-start; }
.benefit .icon-tile { width: 44px; height: 44px; margin-bottom: 0; }
.benefit .icon-tile svg { width: 22px; height: 22px; }
.benefit h3 { font-size: 1.08rem; margin-bottom: .4rem; }
.benefit p { color: var(--c-text-soft); font-size: .96rem; }
.section--dark .benefit p { color: var(--c-text-on-dark-soft); }

/* ---------- Ansprechpartner ---------------------------------------------- */
.people { display: grid; gap: var(--gap); }
@media (min-width: 620px) { .people--2 { grid-template-columns: repeat(2, 1fr); } }
.person { display: flex; gap: 1.25rem; align-items: center; }
.person .avatar {
  width: 72px; height: 72px; flex: none;
  border-radius: var(--r-icon);
  background: var(--c-orange);
  color: var(--c-navy);
  display: grid; place-items: center;
  font-weight: 800; font-size: 1.5rem; letter-spacing: .02em;
}
.person .role {
  display: block; font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--c-orange-ink);
}
.section--dark .person .role { color: var(--c-orange); }
.person h3 { margin: .25rem 0 .45rem; font-size: 1.3rem; }
.person a.tel {
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 700; font-size: 1.06rem; text-decoration: none;
  color: var(--c-navy);
  border-bottom: 2px solid var(--c-orange);
  padding-bottom: 1px;
  white-space: nowrap;
}
.person a.tel:hover { color: var(--c-orange-ink); }
.section--dark .person a.tel { color: #fff; }
.section--dark .person a.tel:hover { color: var(--c-orange); }

/* ---------- Referenz ----------------------------------------------------- */
.ref {
  display: grid; gap: 0; overflow: hidden; padding: 0;
}
@media (min-width: 860px) { .ref { grid-template-columns: 0.85fr 1.15fr; } }
.ref-visual {
  background: var(--c-navy);
  padding: clamp(2rem, 5vw, 3rem);
  display: grid; place-items: center; gap: 1.5rem;
  align-content: center;
}
.ref-visual .board {
  width: min(230px, 60%); aspect-ratio: 1;
  border-radius: 50%;
  background:
    repeating-conic-gradient(var(--c-creme) 0deg 18deg, var(--c-navy-700) 18deg 36deg);
  border: 8px solid var(--c-orange);
  display: grid; place-items: center;
  box-shadow: var(--shadow-lg);
}
.ref-visual .board span {
  width: 26%; aspect-ratio: 1; border-radius: 50%;
  background: var(--c-orange); border: 6px solid var(--c-navy);
}
.ref-visual .cap {
  color: var(--c-text-on-dark-soft); font-size: .88rem;
  font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  text-align: center;
}
.ref-body { padding: clamp(1.75rem, 4vw, 2.75rem); }
.ref-body h3 { font-size: clamp(1.4rem, 2.6vw, 1.85rem); margin: .7rem 0 1rem; }
.ref-body .lead { font-size: 1.05rem; }
.ref-meta {
  margin-top: 1.5rem; padding-top: 1.35rem; border-top: 1px solid var(--c-line);
  display: grid; gap: .7rem;
}
.ref-meta div { display: grid; gap: .15rem; font-size: .95rem; }
@media (min-width: 560px) { .ref-meta div { grid-template-columns: 10.5rem 1fr; gap: .35rem .75rem; } }
.ref-meta .k { font-weight: 700; color: var(--c-navy); }
.ref-meta .v { color: var(--c-text-soft); }
.ref-foot { margin-top: 1.6rem; display: flex; flex-wrap: wrap; gap: .85rem; }

.badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--c-orange); color: var(--c-navy);
  font-weight: 700; font-size: .76rem;
  text-transform: uppercase; letter-spacing: .1em;
  padding: .38rem .85rem; border-radius: var(--r-pill);
}
.badge--soft { background: var(--c-creme-2); color: var(--c-navy); }

/* ---------- Laufzeiten --------------------------------------------------- */
.terms { display: grid; gap: .75rem; }
@media (min-width: 700px) { .terms { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .terms { grid-template-columns: repeat(6, 1fr); } }
.term {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 1.1rem .9rem;
  text-align: center;
}
.term .m { display: block; font-weight: 800; font-size: 1.6rem; line-height: 1.1; color: var(--c-navy); }
.term .u { display: block; font-size: .82rem; color: var(--c-text-soft); margin-top: .1rem; }
.term--best { background: var(--c-navy); border-color: var(--c-navy); }
.term--best .m { color: #fff; }
.term--best .u { color: var(--c-orange); font-weight: 700; }

/* ---------- Panels & Listen ---------------------------------------------- */
.panel {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3.5vw, 2.25rem);
  box-shadow: var(--shadow-sm);
}
.panel--navy {
  background: var(--c-navy); border-color: var(--c-navy); color: var(--c-text-on-dark-soft);
}
.panel--navy h3 { color: #fff; }
.panel h3 { margin-bottom: 1.25rem; }

.split-list { display: grid; gap: .95rem; }
.split-list li {
  display: grid; grid-template-columns: auto 1fr; gap: .85rem; align-items: start;
  padding-bottom: .95rem; border-bottom: 1px solid var(--c-line);
}
.panel--navy .split-list li { border-bottom-color: var(--c-line-dark); }
.split-list li:last-child { border-bottom: none; padding-bottom: 0; }
.split-list li::before {
  content: ""; width: 18px; height: 18px; margin-top: .35em;
  border-radius: var(--r-icon);
  background: var(--c-navy);
}
.panel--navy .split-list li::before,
.split-list.list-orange li::before { background: var(--c-orange); }
.split-list li b { display: block; color: var(--c-navy); font-weight: 700; }
.panel--navy .split-list li b { color: #fff; }
.split-list li span span { color: var(--c-text-soft); font-size: .95rem; }
.panel--navy .split-list li span span { color: var(--c-text-on-dark-soft); }

/* Aufzählung mit Logo-Marker */
.marker-list { display: grid; gap: .7rem; }
.marker-list li { position: relative; padding-left: 1.9rem; }
.marker-list li::before {
  content: ""; position: absolute; left: 0; top: .5em;
  width: 13px; height: 13px; border-radius: var(--r-icon);
  background: var(--c-orange);
}

/* ---------- FAQ ---------------------------------------------------------- */
.faq { display: grid; gap: .8rem; }
.faq details {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.faq details[open] { box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer; list-style: none;
  padding: 1.15rem 3.4rem 1.15rem 1.4rem;
  position: relative;
  font-weight: 700; font-size: clamp(1rem, 1.3vw, 1.1rem);
  color: var(--c-navy);
  border-radius: var(--r-lg);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { background: var(--c-creme); }
.faq summary::after {
  content: ""; position: absolute; right: 1.15rem; top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px; border-radius: var(--r-icon);
  background: var(--c-orange)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2314213D' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E")
    center / 16px 16px no-repeat;
}
.faq details[open] summary::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2314213D' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M5 12h14'/%3E%3C/svg%3E");
}
.faq .faq-a { padding: 0 1.4rem 1.4rem; color: var(--c-text-soft); }
.faq .faq-a p + p { margin-top: .75rem; }

/* ---------- CTA-Band ----------------------------------------------------- */
.cta-band { background: var(--c-navy); color: #fff; }
.cta-band .wrap { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 880px) { .cta-band .wrap { grid-template-columns: 1.25fr 1fr; } }
.cta-band h2 { color: #fff; }
.cta-band .lead { margin-top: .9rem; }
.cta-phones { display: grid; gap: .9rem; }
.cta-phone {
  display: flex; align-items: center; gap: .8rem;
  text-decoration: none; color: #fff;
  background: var(--c-navy-700);
  border-radius: var(--r-md);
  padding: .85rem 1.1rem;
  font-weight: 700;
  transition: background-color .14s ease;
}
.cta-phone:hover { background: #24365F; }
.cta-phone .who {
  display: block; font-size: .74rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--c-orange);
}
.cta-phone .no { font-size: 1.05rem; }
@media (prefers-reduced-motion: reduce) { .cta-phone { transition: none; } }

/* ---------- Kontakt / Formular ------------------------------------------- */
.form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: .4rem; }
.field label { font-weight: 700; font-size: .92rem; color: var(--c-navy); }
.field label .opt { font-weight: 500; color: var(--c-text-soft); }
.field input, .field select, .field textarea {
  font-family: var(--font); font-size: 1rem;
  padding: .85rem 1rem;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  background: var(--c-white); color: var(--c-text);
  width: 100%;
}
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--c-navy-300); }
.field textarea { resize: vertical; min-height: 160px; }
.field-2 { display: grid; gap: 1.1rem; }
@media (min-width: 620px) { .field-2 { grid-template-columns: 1fr 1fr; } }
.form-note { font-size: .85rem; color: var(--c-text-soft); }
[hidden] { display: none !important; }

.contact-direct { display: grid; gap: 1.25rem; align-content: start; }
.contact-block + .contact-block { margin-top: 1.35rem; padding-top: 1.35rem; border-top: 1px solid var(--c-line); }
.contact-block .k {
  display: block; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; font-size: .74rem; color: var(--c-orange-ink);
  margin-bottom: .4rem;
}
.contact-block a { color: var(--c-navy); font-weight: 700; text-decoration: none; }
.contact-block a:hover { color: var(--c-orange-ink); text-decoration: underline; }
.contact-block address { font-style: normal; color: var(--c-text-soft); }

.callout {
  background: #FDF4E4;
  border: 1px solid #F0DDB6;
  border-left: 5px solid var(--c-orange);
  border-radius: var(--r-md);
  padding: 1.1rem 1.25rem;
  font-size: .95rem;
  color: var(--c-text-soft);
}
.callout b { color: var(--c-navy); }

/* ---------- Prose (Impressum/Datenschutz) -------------------------------- */
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(1.35rem, 2.6vw, 1.8rem); margin-top: 2.75rem; margin-bottom: .9rem; }
.prose h3 { font-size: 1.1rem; margin-top: 1.75rem; margin-bottom: .5rem; }
.prose p { margin-bottom: 1rem; color: var(--c-text-soft); }
.prose p strong, .prose p b { color: var(--c-navy); }
.prose ul { margin: 0 0 1rem 0; display: grid; gap: .5rem; }
.prose ul li { padding-left: 1.6rem; position: relative; color: var(--c-text-soft); }
.prose ul li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 11px; height: 11px; border-radius: var(--r-icon); background: var(--c-orange);
}
.prose address { font-style: normal; }

/* ---------- 404 ---------------------------------------------------------- */
.notfound { padding-block: clamp(3.5rem, 9vw, 7rem); text-align: center; }
.notfound .code {
  font-weight: 800; font-size: clamp(4rem, 15vw, 9rem); line-height: 1;
  color: var(--c-navy); letter-spacing: -.03em;
}
.notfound .code span { color: var(--c-orange); }
.notfound h1 { margin: 1.25rem 0 1rem; }
.notfound p { margin-inline: auto; max-width: 52ch; }
.notfound .btn-row { justify-content: center; margin-top: 2rem; }
.notfound .fanmark { margin: 0 auto 2rem; }

/* ---------- Footer ------------------------------------------------------- */
.site-footer {
  background: var(--c-navy); color: var(--c-text-on-dark-soft);
  padding-block: clamp(2.75rem, 6vw, 4.5rem) 2rem;
}
.site-footer a { color: var(--c-text-on-dark-soft); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-grid { display: grid; gap: 2.25rem; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1.2fr; } }
.footer-brand img { height: 42px; width: auto; margin-bottom: 1.15rem; }
.footer-brand p { font-size: .95rem; max-width: 36ch; }
.footer-col h2 {
  font-size: .78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: #fff; margin-bottom: 1rem;
}
.footer-col li { margin-bottom: .6rem; font-size: .95rem; }
.footer-col address { font-style: normal; font-size: .95rem; }
.footer-bottom {
  margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--c-line-dark);
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between;
  font-size: .85rem; color: #8C97AE;
}
.footer-bottom .dot {
  display: inline-block; width: 10px; height: 10px;
  border-radius: var(--r-icon); background: var(--c-orange);
  margin-right: .5rem; vertical-align: -1px;
}

/* ---------- Scroll-Reveal ------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Hilfsklassen ------------------------------------------------- */
.mt-1 { margin-top: .75rem; }
.mt-2 { margin-top: 1.5rem; }
.mt-3 { margin-top: 2.25rem; }
.mb-2 { margin-bottom: 1.5rem; }
.center { text-align: center; }
.maxw-60 { max-width: 60ch; }
.text-soft { color: var(--c-text-soft); }
.fs-sm { font-size: .95rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
