/* Videowall Mainfranken — Stufe 1
   Markenrichtlinie kompakt, Stand 29.07.2026
   Akzent C8102E · Basis 414042 · Hintergrund FFFFFF / F2F2F2
*/

/* Hausschrift Inter — lokal, kein Google-Fonts-CDN.
   Die vier .woff2-Dateien nach assets/fonts/ legen, dann greifen diese Regeln
   automatisch. Solange sie fehlen, laedt der Browser sie nicht und nutzt den
   System-Font-Stack aus --font-stack. Bezugsquelle siehe assets/fonts/LIESMICH.md */
@font-face {
  font-family: "InterLocal";
  src: url("fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "InterLocal";
  src: url("fonts/Inter-Medium.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "InterLocal";
  src: url("fonts/Inter-SemiBold.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "InterLocal";
  src: url("fonts/Inter-Bold.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "InterLocal";
  src: url("fonts/Inter-ExtraBold.woff2") format("woff2");
  font-weight: 800; font-style: normal; font-display: swap;
}

:root {
  --c-red: #C8102E;
  --c-red-dark: #A50D26;
  --c-anthra: #414042;
  --c-grey: #5A5A5A;   /* WCAG AA: 6,90:1 auf Weiss, 6,16:1 auf #F2F2F2 */
  --c-light: #F2F2F2;
  --c-bg: #FFFFFF;
  --c-border: #E5E5E5;

  --maxw: 1140px;
  --pad-x: clamp(20px, 4vw, 32px);
  --sec-y: clamp(56px, 8vw, 96px);

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04), 0 1px 1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);

  /* InterLocal zuerst; ohne die Font-Dateien greift der System-Stack.
     Calibri bewusst nicht mehr an erster Stelle — existiert nur unter Windows. */
  --font-stack: "InterLocal", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

/* Sprungziele nicht unter dem Sticky-Header verstecken */
section[id], [id]:target { scroll-margin-top: 88px; }

/* Nutzer mit reduzierter Bewegung: kein Smooth-Scroll, keine Auto-Loops */
@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;
  }
}

/* Skip-Link — nur bei Tastaturfokus sichtbar */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--c-red);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 var(--r-md) 0;
  font-weight: 600;
}
.skip-link:focus {
  left: 0;
  text-decoration: none;
}

/* Durchgaengig sichtbarer Tastaturfokus */
:focus-visible {
  outline: 3px solid var(--c-red);
  outline-offset: 3px;
  border-radius: 2px;
}
.site-footer :focus-visible,
.contact-block :focus-visible,
.location-card :focus-visible,
.test-banner :focus-visible,
.btn-primary:focus-visible {
  outline-color: #fff;
}

body {
  font-family: var(--font-stack);
  color: var(--c-anthra);
  background: var(--c-bg);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-red); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---------- Container ---------- */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
section { padding-top: var(--sec-y); padding-bottom: var(--sec-y); }
section.tight { padding-top: clamp(40px, 6vw, 64px); padding-bottom: clamp(40px, 6vw, 64px); }
.bg-light { background: var(--c-light); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  color: var(--c-anthra);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.2rem); font-weight: 700; margin-bottom: 0.6em; }
h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.4em; }
p { margin-bottom: 1em; max-width: 65ch; }
.lead { font-size: 1.15rem; color: var(--c-anthra); max-width: 60ch; }
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--c-red);
  margin-bottom: 1rem;
}
.muted { color: var(--c-grey); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 13px 22px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--r-md);
  transition: background 0.15s ease, transform 0.1s ease;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--c-red);
  color: #fff;
}
.btn-primary:hover { background: var(--c-red-dark); text-decoration: none; }
.btn-secondary {
  background: transparent;
  color: var(--c-anthra);
  border-color: var(--c-anthra);
}
.btn-secondary:hover { background: var(--c-anthra); color: #fff; text-decoration: none; }
.btn-ghost {
  background: transparent;
  color: var(--c-red);
  padding: 6px 0;
  border-radius: 0;
}
.btn-ghost::after { content: " →"; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--c-border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}
.site-header .logo img { height: 38px; width: auto; }
.site-nav { display: flex; align-items: center; gap: 22px; }
.site-nav a {
  color: var(--c-anthra);
  font-weight: 500;
  font-size: 0.95rem;
}
.site-nav a:hover { color: var(--c-red); text-decoration: none; }

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--c-anthra);
  border-radius: var(--r-sm);
  padding: 6px 10px;
  color: var(--c-anthra);
  font-weight: 600;
  cursor: pointer;
}

@media (max-width: 820px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    padding: 16px var(--pad-x) 24px;
    border-bottom: 1px solid var(--c-border);
    gap: 12px;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 11px 0; }        /* Trefferflaeche >= 44 px (WCAG 2.5.8) */
  .nav-toggle { display: inline-block; padding: 10px 14px; }
  .site-nav .btn { width: 100%; justify-content: center; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: clamp(72px, 10vw, 120px);
  padding-bottom: clamp(72px, 10vw, 120px);
  background:
    radial-gradient(1100px 600px at 80% -10%, rgba(200, 16, 46, 0.10), transparent 65%),
    linear-gradient(180deg, #fff 0%, #fafafa 100%);
}
.hero .grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero h1 .accent { color: var(--c-red); }
.hero .cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
/* Hero-Foto mit echtem Spot auf der Wandfläche */
.hero-photo {
  position: relative;
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--c-anthra);
  line-height: 0;
}
.hero-photo img { width: 100%; display: block; }
.hero-photo__screen {
  position: absolute;
  /* exakt auf der Display-Innenfläche — der dunkle Rahmen der Wand bleibt sichtbar */
  left: 68.06%;
  top: 41.16%;
  width: 26.82%;
  height: 30.0%;
  object-fit: fill;
  display: block;
  /* an die Lichtstimmung des Fotos angeglichen: Videostill ist weicher,
     dunkler und weniger gesättigt als die Spot-Datei */
  filter: brightness(0.9) contrast(0.93) saturate(0.9) blur(0.5px);
  /* schließt die Kante zum Rahmen sauber ab */
  box-shadow: 0 0 0 1.5px rgba(38, 42, 48, 0.85);
}
/* dezenter Tageslicht-Schleier auf dem Display */
.hero-photo__glare {
  position: absolute;
  left: 68.06%;
  top: 41.16%;
  width: 26.82%;
  height: 30.0%;
  background: linear-gradient(160deg, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0.04) 42%, rgba(210,214,216,0.10) 100%);
  pointer-events: none;
}
.hero-photo figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px 16px 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
  color: rgba(255,255,255,0.92);
  font-size: 0.78rem;
  line-height: 1.4;
  text-align: center;
}

@media (max-width: 820px) {
  .hero .grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- USP / Card-Grid ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.card h3 { color: var(--c-anthra); }
.card .number {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--c-red);
  line-height: 1;
  margin-bottom: 8px;
}
.card p:last-child { margin-bottom: 0; }

.bg-light .card { background: #fff; }

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

/* ---------- Two-column blocks ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.split .col-text p { max-width: none; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; gap: 28px; } }

.location-card {
  background: var(--c-anthra);
  color: #fff;
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 40px);
  box-shadow: var(--shadow-md);
}
.location-card h3 { color: #fff; }
.location-card .row {
  display: flex; gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.location-card .row:last-child { border-bottom: none; }
.location-card .row .key {
  flex: 0 0 130px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}
.location-card .row .val { font-weight: 500; }

/* ---------- Pricing teaser ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.price-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  border-color: var(--c-red);
  box-shadow: 0 8px 24px rgba(200, 16, 46, 0.12);
  position: relative;
}
.price-card.featured::before {
  content: "Beliebt";
  position: absolute;
  top: -12px; left: 24px;
  background: var(--c-red);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.price-card .label { font-size: 0.85rem; color: var(--c-grey); text-transform: uppercase; letter-spacing: 0.08em; }
.price-card .price {
  font-size: 2rem; font-weight: 800; color: var(--c-anthra); margin: 8px 0;
  letter-spacing: -0.02em;
}
.price-card .price small { font-size: 0.85rem; color: var(--c-grey); font-weight: 500; }
.price-card ul { list-style: none; margin: 16px 0 24px; }
.price-card ul li {
  padding: 6px 0 6px 22px;
  position: relative;
  font-size: 0.95rem;
}
.price-card ul li::before {
  content: ""; position: absolute; left: 0; top: 14px;
  width: 8px; height: 8px; background: var(--c-red); border-radius: 50%;
}
.price-card .btn { margin-top: auto; align-self: flex-start; }

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

/* ---------- Cases ---------- */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.case-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.case-card .image {
  aspect-ratio: 4 / 3;
  background: var(--c-anthra);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  position: relative;
  overflow: hidden;
}
.case-card .image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Pause-Schalter: erscheint beim Ueberfahren und bei Tastaturfokus (WCAG 2.2.2) */
.video-toggle {
  position: absolute;
  right: 10px; bottom: 10px;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1;
  opacity: 0;
  transition: opacity 0.15s ease, background 0.15s ease;
}
.case-card .image:hover .video-toggle,
.video-toggle:focus-visible,
.video-toggle[aria-pressed="true"] { opacity: 1; }
.video-toggle:hover { background: rgba(0, 0, 0, 0.8); }
@media (hover: none) { .video-toggle { opacity: 1; } }

/* Dritte Karte: gestaltete Einladung statt Leerstelle */
.wall-invite {
  width: 100%; height: 100%;
  background:
    radial-gradient(120% 90% at 50% 0%, #4a4a4c 0%, #313133 60%, #262628 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 12px;
}
.wall-invite .screen {
  width: 100%; height: 100%;
  border: 3px solid #17171a;
  border-radius: 4px;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.045) 0 1px, transparent 1px 3px),
    linear-gradient(150deg, #1d1d20 0%, #2b2b2f 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px;
  text-align: center;
  box-shadow: inset 0 0 32px rgba(0,0,0,0.55);
}
.wall-invite .placeholder {
  width: 54px; height: 54px;
  border: 2px dashed rgba(255,255,255,0.45);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.75);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.wall-invite .line {
  color: #fff;
  font-weight: 800;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.wall-invite .line em { color: var(--c-red); font-style: normal; }
.wall-invite .sub {
  color: rgba(255,255,255,0.7);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.case-card .image .live-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

/* Karte / Anfahrt */
.map-block {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--c-border);
}
.map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.map-card {
  margin: 0;
  position: relative;
}
.map-card .frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-border);
  line-height: 0;
}
.map-card img { width: 100%; display: block; }
.map-card figcaption {
  font-size: 0.85rem;
  color: var(--c-grey);
  margin-top: 10px;
  line-height: 1.4;
}
/* Standort-Marker auf der Karte */
.map-pin {
  position: absolute;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  border-radius: 50%;
  background: var(--c-red);
  border: 3px solid #fff;
  box-shadow: 0 0 0 7px rgba(200, 16, 46, 0.20), 0 1px 4px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}
.map-note {
  font-size: 0.78rem;
  color: var(--c-grey);
  margin: 18px 0 0;
}
.map-note a { color: var(--c-grey); text-decoration: underline; }
.map-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--c-border);
}
.map-info h3 { margin-bottom: 12px; }
.map-info .cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 8px; }

@media (max-width: 820px) {
  .map-grid { grid-template-columns: 1fr; gap: 28px; }
  .map-info { grid-template-columns: 1fr; gap: 20px; }
}

.case-card .body { padding: 22px; }
.case-card .branche {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--c-red); font-weight: 700; margin-bottom: 8px;
}
.case-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.case-card p { font-size: 0.95rem; margin-bottom: 0; }

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

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin-top: 32px; }
.faq-list details {
  border-bottom: 1px solid var(--c-border);
  padding: 18px 0;
}
.faq-list details:first-child { border-top: 1px solid var(--c-border); }
.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  position: relative;
  padding-right: 40px;
  color: var(--c-anthra);
  font-size: 1.05rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: var(--c-red);
  font-weight: 400;
  line-height: 1;
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { padding-top: 12px; color: var(--c-anthra); margin-bottom: 0; }

/* ---------- Contact CTA ---------- */
.contact-block {
  background: var(--c-anthra);
  color: #fff;
  border-radius: var(--r-lg);
  padding: clamp(36px, 6vw, 64px);
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
.contact-block h2, .contact-block h3 { color: #fff; margin-bottom: 16px; }
.contact-block h3 { font-size: clamp(1.6rem, 3.6vw, 2.2rem); font-weight: 700; }
.contact-block p { color: rgba(255, 255, 255, 0.85); }
.contact-block .contact-row {
  display: flex; gap: 12px; padding: 8px 0;
  align-items: baseline;
}
.contact-block .contact-row .key {
  color: rgba(255, 255, 255, 0.65);   /* 5,43:1 auf Anthrazit */
  flex: 0 0 90px; font-size: 0.9rem;
}
.contact-block a.phone {
  color: #fff; font-weight: 700; font-size: 1.15rem;
}
.contact-block .btn-primary { background: var(--c-red); }

@media (max-width: 820px) { .contact-block { grid-template-columns: 1fr; gap: 28px; } }

/* ---------- Footer ---------- */
.site-footer {
  background: #1f1f20;
  color: rgba(255, 255, 255, 0.75);
  padding: clamp(48px, 6vw, 72px) 0 24px;
  margin-top: 0;
  font-size: 0.92rem;
}
.site-footer a { color: rgba(255, 255, 255, 0.85); }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.site-footer h2 {
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.site-footer ul { list-style: none; }
.site-footer ul li { padding: 4px 0; }
.site-footer .brand img { height: 36px; margin-bottom: 14px; filter: brightness(0) invert(1); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }

/* ---------- Sub-page header ---------- */
.page-hero {
  padding-top: clamp(48px, 7vw, 80px);
  padding-bottom: clamp(40px, 6vw, 64px);
  background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
  border-bottom: 1px solid var(--c-border);
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { max-width: 60ch; color: var(--c-grey); font-size: 1.1rem; }

/* ---------- Table ---------- */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.95rem;
}
.price-table th, .price-table td {
  padding: 14px 12px;
  text-align: left;
  border-bottom: 1px solid var(--c-border);
}
.price-table th {
  background: var(--c-light);
  color: var(--c-anthra);
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.price-table td.right { text-align: right; }
.price-table tr:hover { background: rgba(0, 0, 0, 0.015); }
.price-table .highlight { color: var(--c-red); font-weight: 700; }

.test-banner {
  background: linear-gradient(135deg, var(--c-red) 0%, var(--c-red-dark) 100%);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin: 32px 0;
}
.test-banner h2, .test-banner h3 { color: #fff; font-size: 1.3rem; margin-bottom: 6px; }
.test-banner p { color: rgba(255, 255, 255, 0.9); margin-bottom: 0; }
.test-banner .btn { background: #fff; color: var(--c-red); }
.test-banner .btn:hover { background: var(--c-light); }

/* ---------- Form ---------- */
.form-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 40px);
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; gap: 6px; margin-bottom: 18px; }
.form-row.two { grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row.two { grid-template-columns: 1fr; } }
.form-row label { font-size: 0.88rem; font-weight: 600; color: var(--c-anthra); }
.form-row input, .form-row textarea, .form-row select {
  padding: 11px 14px;
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  font-family: inherit;
  font-size: 1rem;
  color: var(--c-anthra);
  background: #fff;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: 2px solid var(--c-red);
  outline-offset: 1px;
  border-color: var(--c-red);
}
.form-row textarea { resize: vertical; min-height: 110px; }
.form-row.checkbox {
  display: flex; flex-direction: row; align-items: flex-start; gap: 10px;
}
.form-row.checkbox input { width: 18px; height: 18px; margin-top: 2px; flex: 0 0 auto; }
.form-row.checkbox label { font-weight: 400; font-size: 0.88rem; }
.form-note { font-size: 0.85rem; color: var(--c-grey); margin-top: 8px; }
.form-row .req { color: var(--c-red); }
.form-hint {
  background: var(--c-light);
  border-left: 4px solid var(--c-red);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  font-size: 0.88rem;
  margin-bottom: 20px;
}
.form-hint p:last-child { margin-bottom: 0; }

/* Hinweis auf reines B2B-Angebot */
.b2b-note {
  font-size: 0.88rem;
  color: var(--c-grey);
  border-top: 1px solid var(--c-border);
  padding-top: 16px;
  margin-top: 24px;
  max-width: 68ch;
}
.site-footer .b2b-note {
  color: rgba(255, 255, 255, 0.75);
  border-top-color: rgba(255, 255, 255, 0.12);
}

/* ---------- Legal pages ---------- */
.legal-content {
  max-width: 760px;
  padding-bottom: clamp(56px, 8vw, 96px);
}
.legal-content h2 { margin-top: 2em; }
.legal-content h3 { margin-top: 1.4em; }
.legal-content p, .legal-content li { font-size: 0.97rem; }
.legal-content ul { padding-left: 1.2em; margin-bottom: 1em; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ---------- Print ---------- */
@media print {
  .site-header, .site-footer, .nav-toggle { display: none; }
  body { font-size: 11pt; }
}
