/* Mach mal Digital – Design-System
   Leitidee: "Zwei Generationen, ein System" + Ehrlichkeit statt Marketing-Zahlen.
   Gestaltungsmotiv: die Drei-Farb-Facette aus dem Logo-Kopf als wiederkehrender Akzentstrich
   (rot/gelb/cyan), asymmetrische Sektionen statt zentrierter Standard-Stapel. */

@font-face {
  font-family: 'Montserrat';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/montserrat-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/montserrat-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/montserrat-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-weight: 800;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/montserrat-800.woff2') format('woff2');
}
@font-face {
  font-family: 'Saira Condensed';
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/saira-condensed-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Saira Condensed';
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/saira-condensed-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Saira Condensed';
  font-weight: 800;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/saira-condensed-800.woff2') format('woff2');
}

:root {
  /* CI-Farben (Markenhandbuch) */
  --brandrot: #D8452A;
  /* Etwas dunklerer Rotton nur für kleine/fette weiße Schrift auf Rot-Flächen
     (Buttons, Tags) – reines --brandrot liegt dort knapp unter WCAG-AA 4.5:1. */
  --brandrot-btn: #C13D24;
  --sonnengelb: #E9B200;
  --cyan: #38C6DE;
  --tinte: #0B1340;
  --hellgrau: #E9E7E1;
  --papier: #FFFFFF;

  --tinte-70: rgba(11, 19, 64, 0.7);
  --tinte-12: rgba(11, 19, 64, 0.12);
  --tinte-06: rgba(11, 19, 64, 0.06);

  --font-display: 'Saira Condensed', sans-serif;
  --font-text: 'Montserrat', sans-serif;

  --radius: 4px;
  --maxw: 1180px;
  --section-pad: clamp(64px, 9vw, 128px);

  --ease: cubic-bezier(.22,.61,.36,1);
  --bs-ease: var(--ease); /* Bausteine-Bibliothek auf die Site-Kurve zwingen (eine Kurve pro Site) */
}

* { box-sizing: border-box; }
/* Sicherheitsnetz gegen horizontales Aufreißen der Seite auf Mobil/Tablet (z. B. durch
   einen zu breiten Flex-/Text-Block irgendwo auf der Seite): verhindert, dass die Seite
   seitlich scrollbar wird, egal was künftig dazukommt. */
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  overflow-x: hidden;
  max-width: 100vw;
  background: var(--papier);
  color: var(--tinte);
  font-family: var(--font-text);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 800; line-height: 1.18; margin: 0; letter-spacing: 0.3px; }
/* Saira Condensed ist als Schmalschrift eng gezeichnet – etwas mehr Laufweite
   auf großen Überschriften nimmt ihr das "zu eng aneinander"-Gefühl. */
h1 { letter-spacing: 0.4px; }
p { margin: 0 0 1em; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* Wiederkehrendes Motiv: Drei-Farb-Facette als Akzentstrich, mit dezentem
   Lauflicht – spielt auf den "AI-Knoten" im Kopf-Icon an. */
.facette {
  display: inline-flex;
  gap: 4px;
  height: 6px;
  width: 44px;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.facette span { flex: 1; border-radius: 2px; }
.facette span:nth-child(1) { background: var(--brandrot); }
.facette span:nth-child(2) { background: var(--sonnengelb); }
.facette span:nth-child(3) { background: var(--cyan); }
.facette::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.85) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: facette-shine 3.2s ease-in-out infinite;
}
@keyframes facette-shine {
  0%, 45% { transform: translateX(-100%); }
  65%, 100% { transform: translateX(100%); }
}

/* Zähl-Animation für die Beweis-Zahlen */
.count-up { display: inline-block; }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-anim > * { opacity: 0; animation: fade-up .7s var(--ease) forwards; }
.hero-anim > *:nth-child(1) { animation-delay: .05s; }
.hero-anim > *:nth-child(2) { animation-delay: .15s; }
.hero-anim > *:nth-child(3) { animation-delay: .25s; }
.hero-anim > *:nth-child(4) { animation-delay: .35s; }

@media (prefers-reduced-motion: reduce) {
  .facette::after { animation: none; display: none; }
  .hero-anim > * { opacity: 1; animation: none; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tinte-70);
  margin-bottom: 18px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  cursor: pointer;
}
.site-header .btn { padding: 12px 22px; font-size: 13.5px; }
.btn-primary { background: var(--brandrot-btn); color: var(--papier); box-shadow: 0 0 0 rgba(216,69,42,0); }
.btn-primary:hover { transform: translateY(-2px); background: #a8341f; box-shadow: 0 10px 24px -8px rgba(216,69,42,.55); }
.btn-outline { border-color: var(--tinte); color: var(--tinte); background: transparent; }
.btn-outline:hover { transform: translateY(-2px); border-color: var(--brandrot); color: var(--brandrot); box-shadow: 0 10px 20px -10px rgba(11,19,64,.25); }
.btn-light { border-color: rgba(255,255,255,.5); color: var(--papier); background: transparent; }
.btn-light:hover { transform: translateY(-2px); border-color: var(--papier); }

/* Klick-Ripple */
.btn-ripple {
  position: absolute; width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.55); transform: translate(-50%,-50%) scale(0);
  animation: ripple-pop .6s ease-out forwards; pointer-events: none;
}
@keyframes ripple-pop { to { transform: translate(-50%,-50%) scale(22); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .btn-ripple { display: none; } }

/* Header – dunkles Band wie im Markenhandbuch für Briefbogen vorgesehen
   (Kopf-/Fußband in Tinte mit Logo). Logo ist ein aus den echten Marke_CI-Assets
   zusammengesetztes, freigestelltes PNG/WebP (Bildmarke + Saira Condensed/Montserrat,
   Quelle: 00_Firma/Marke_CI/Logo_MachMalDigital_Web_Header.png), keine Nachbildung. */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11,19,64,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; padding-bottom: 16px; gap: 24px; }

.brand { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.brand-logo { height: 42px; width: auto; }

.nav { display: flex; align-items: center; gap: 32px; flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: 22px; flex-shrink: 0; }
/* ".nav-links a" zusätzlich zu ".nav a": das Menü wird beim Öffnen per JS kurzzeitig aus dem
   Header raus direkt unter <body> gehängt (siehe js/main.js), damit es nicht hinter dem Hero
   verschwindet. Damit ist es beim Öffnen kein Nachfahre von ".nav" mehr - die Styles müssen
   also auch ohne diese Verschachtelung greifen. */
.nav a, .nav-links a {
  font-size: 12px; font-weight: 700; text-decoration: none; color: rgba(255,255,255,.75);
  position: relative; padding: 6px 1px; text-transform: uppercase; letter-spacing: .05em;
  white-space: nowrap;
}
.nav a::after, .nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px; background: var(--sonnengelb);
  transition: right .25s var(--ease);
}
.nav a:hover, .nav-links a:hover { color: var(--papier); }
.nav a:hover::after, .nav a[aria-current="page"]::after,
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { right: 0; }
.nav a[aria-current="page"], .nav-links a[aria-current="page"] { color: var(--papier); }
.nav-cta { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.phone-link { font-weight: 700; font-size: 13.5px; text-decoration: none; white-space: nowrap; color: var(--papier); }
.menu-toggle { display: none; }

@media (max-width: 1220px) {
  .nav-links { position: fixed; inset: 74px 0 0 0; background: var(--tinte); flex-direction: column; align-items: flex-start; padding: 36px 28px; gap: 26px; transform: translateX(100%); transition: transform .3s var(--ease); z-index: 60; }
  .nav-links.open { transform: translateX(0); }
  .nav { gap: 14px; }
  .nav a, .nav-links a { font-size: 15px; text-transform: none; letter-spacing: normal; }
  .menu-toggle { display: block; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--papier); }
  /* Header darf auf Mobil/Tablet nie breiter als der Viewport werden: der Text-Button ist
     redundant (dieselbe CTA steht bereits im Hero), auf schmalen Screens ausblenden. */
  .nav-cta .btn { display: none; }
  .nav-cta { gap: 10px; }
  /* Höhere Spezifität nötig, sonst gewinnt ".nav a { font-size: 15px }" drüber (Element+Klasse
     schlägt sonst die einfache Klassenregel unten). */
  .nav-cta .phone-link { font-size: 12px; }
}
@media (max-width: 380px) {
  /* Auf sehr schmalen Handys reicht ein Telefon-Icon statt der vollen Nummer, damit
     Logo + Nummer + Menü-Button garantiert nebeneinander passen. */
  .nav-cta .phone-link { font-size: 0; }
  .nav-cta .phone-link::before { content: "\1F4DE"; font-size: 17px; }
}
@media (min-width: 1221px) {
  .site-header .wrap { flex-wrap: nowrap; }
  .nav { flex-wrap: nowrap; }
}

/* Hero – asymmetrisch, Bild-Text-Split statt zentriert */
.hero {
  padding: 56px 0 var(--section-pad);
  background: linear-gradient(180deg, var(--hellgrau) 0%, var(--papier) 78%);
}
.hero .wrap { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(36px, 5vw, 58px); }
.hero .lead { font-size: 19px; color: var(--tinte-70); margin: 22px 0 32px; max-width: 46ch; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  padding: 9px;
  background: linear-gradient(135deg, rgba(216,69,42,.8) 0%, rgba(216,69,42,.8) 47%, rgba(56,198,222,.75) 53%, rgba(56,198,222,.75) 100%), var(--tinte);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
}
.hero-visual .placeholder-note {
  position: absolute; inset: auto 0 0 0; padding: 16px 18px;
  background: rgba(11,19,64,.85); color: var(--papier); font-size: 12px; font-weight: 600;
}
@media (max-width: 880px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-visual { order: -1; aspect-ratio: 16/10; }
}

/* Sofort-Beweis Leiste */
.proof-strip { background: url('../img/mesh-dark.svg') center/cover, var(--tinte); color: var(--papier); padding: 34px 0; position: relative; overflow: hidden; }
.proof-strip::before, .cta-band::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: radial-gradient(360px circle at var(--mx,50%) var(--my,20%), rgba(233,178,0,.16), transparent 62%);
}
.proof-strip .wrap, .cta-band .wrap { position: relative; z-index: 1; }
.proof-strip .wrap { display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; align-items: center; }
.proof-item { display: flex; flex-direction: column; gap: 2px; }
.proof-item .num { font-family: var(--font-display); font-weight: 800; font-size: 40px; color: var(--sonnengelb); line-height: 1; }
.proof-item .label { font-size: 13px; color: rgba(255,255,255,.75); max-width: 22ch; }
.proof-source { font-size: 12px; color: rgba(255,255,255,.55); }

/* Sektionen generisch */
section { padding: var(--section-pad) 0; }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 42px); }
.lead { font-size: 18px; color: var(--tinte-70); }

/* Unterseiten-Kopf (schmaler als Hero) */
.page-head { padding: 56px 0 44px; background: url('../img/mesh.svg') center/cover, var(--hellgrau); }
.page-head h1 { font-size: clamp(32px, 4.4vw, 50px); }
.page-head .lead { margin-top: 16px; max-width: 60ch; }

/* Werte-/Vorteils-Streifen (4 Spalten, bewusst anders als 2er-Problem-Grid) */
.value-strip { display: flex; flex-wrap: wrap; gap: 0; border-top: 1px solid var(--tinte-12); }
.value-item { flex: 1 1 220px; padding: 28px 28px 28px 26px; border-right: 1px solid var(--tinte-12); }
.value-item:first-child { padding-left: 0; }
.value-item:last-child { border-right: none; }
.value-item .n { font-family: var(--font-display); font-weight: 800; font-size: 30px; color: var(--brandrot); display: block; margin-bottom: 8px; }
.value-item h3 { font-size: 16px; margin-bottom: 6px; }
.value-item p { font-size: 14px; color: var(--tinte-70); margin: 0; }
@media (max-width: 780px) { .value-item { flex: 1 1 45%; border-right: none; border-bottom: 1px solid var(--tinte-12); } }

/* Zwei-Spalten-Textblock (für Abo, Über uns) */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
@media (max-width: 780px) { .two-col { grid-template-columns: 1fr; } }

/* Kontakt-Detailseite */
.info-list { display: grid; gap: 18px; }
.info-list .item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--tinte-12); }
.info-list .item strong { display: block; font-size: 14px; }
.info-list .item span.small { font-size: 13.5px; color: var(--tinte-70); }

/* Eigene Linien-Icons statt Emoji (Emoji als Icon ist ein typischer KI-Marker) */
.icon { width: 22px; height: 22px; flex-shrink: 0; color: var(--brandrot-btn); margin-top: 1px; }
.contact-info .icon { color: var(--sonnengelb); }

.legal-body h2 { font-family: var(--font-text); font-weight: 800; font-size: 20px; margin: 34px 0 12px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p, .legal-body li { color: var(--tinte-70); font-size: 15px; }
.legal-note { background: var(--hellgrau); border-radius: var(--radius); padding: 16px 20px; font-size: 13.5px; color: var(--tinte-70); margin-bottom: 36px; }

/* Problem – Liste statt Karten */
.problem-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--tinte-12); border: 1px solid var(--tinte-12); border-radius: var(--radius); overflow: hidden; }
.problem-item { background: var(--papier); padding: 36px 38px; }
.problem-item h3 { font-family: var(--font-text); font-weight: 700; font-size: 18px; margin-bottom: 8px; }
.problem-item p { color: var(--tinte-70); font-size: 15px; margin: 0; }
@media (max-width: 720px) { .problem-list { grid-template-columns: 1fr; } }

/* Leistungen – Zickzack-Liste, priorisiert (nicht 5 gleiche Karten) */
.pillars { display: flex; flex-direction: column; }
.pillar { display: grid; grid-template-columns: 90px 1fr; gap: 28px; padding: 30px 0; border-top: 1px solid var(--tinte-12); transition: padding-left .3s var(--ease); }
.pillar:hover { padding-left: 10px; }
.pillar:last-child { border-bottom: 1px solid var(--tinte-12); }
.pillar .rank { font-family: var(--font-display); font-weight: 800; font-size: 44px; color: var(--hellgrau); -webkit-text-stroke: 1.5px var(--tinte-12); }
.pillar.primary .rank { color: var(--brandrot); -webkit-text-stroke: 0; }
.pillar h3 { font-size: 22px; margin-bottom: 6px; }
.pillar p { color: var(--tinte-70); margin: 0; max-width: 60ch; }
.pillar .tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; background: var(--brandrot-btn); color: var(--papier); padding: 3px 9px; border-radius: 3px; margin-bottom: 8px; }
.pillar.collapse-close-edge { border-bottom: 1px solid var(--tinte-12); }

/* Mobiles Einklappen langer Listen ("Mehr anzeigen") – nur auf dem Handy aktiv (main.js, <=640px),
   auf Tablet/Desktop bleibt immer alles sichtbar, kein Button vorhanden. */
.collapse-toggle { display: flex; align-items: center; justify-content: center; gap: 9px; width: 100%; margin-top: 22px; padding: 14px 20px; border: 1.5px solid var(--tinte-12); border-radius: var(--radius); background: var(--papier); color: var(--tinte); font-family: var(--font-text); font-weight: 700; font-size: 14.5px; cursor: pointer; transition: border-color .2s var(--ease), color .2s var(--ease), transform .15s var(--ease); }
.collapse-toggle:hover { border-color: var(--brandrot); color: var(--brandrot); }
.collapse-toggle:active { transform: scale(.98); }
.collapse-toggle .chevron { width: 9px; height: 9px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); transition: transform .25s var(--ease); margin-top: -3px; flex: none; }
.collapse-toggle[aria-expanded="true"] .chevron { transform: rotate(-135deg); margin-top: 3px; }
.collapse-reveal { opacity: 0; transform: translateY(10px); transition: opacity .4s var(--ease), transform .4s var(--ease); }
.collapse-reveal.collapse-reveal--in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .collapse-reveal { transition: none; } }

/* Vater & Sohn Split */
.split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.split.reverse { grid-template-columns: 1.1fr 0.9fr; }
.split.reverse .split-visual { order: 2; }
.split-visual {
  aspect-ratio: 4/3;
  padding: 8px;
  background: linear-gradient(135deg, rgba(216,69,42,.6) 0%, rgba(216,69,42,.6) 47%, rgba(56,198,222,.55) 53%, rgba(56,198,222,.55) 100%), var(--hellgrau);
  border-radius: calc(var(--radius) + 4px); position: relative; overflow: hidden;
}
/* Variante ohne Foto: Mesh-Textur + große Kennziffer statt Farbverlaufs-Fläche
   ("leere Gradient-Box" ist selbst ein typischer KI-Platzhalter-Look). */
.split-visual.mesh {
  background: url('../img/mesh.svg') center/cover, var(--hellgrau);
  display: flex; align-items: center; justify-content: center;
}
.split-visual.mesh .big-num {
  font-family: var(--font-display); font-weight: 800; color: var(--papier);
  -webkit-text-stroke: 2px var(--tinte); font-size: clamp(70px, 11vw, 130px); line-height: 1;
  text-shadow: 4px 4px 0 var(--tinte-12);
}
.visual-photo {
  width: 100%; height: 100%; object-fit: cover; display: block;
  border-radius: var(--radius);
}
@media (max-width: 880px) { .split, .split.reverse { grid-template-columns: 1fr; } .split.reverse .split-visual { order: -1; } }

.quote-line { font-family: var(--font-display); font-weight: 700; font-size: clamp(22px, 2.6vw, 30px); color: var(--tinte); border-left: 4px solid var(--brandrot); padding-left: 20px; margin: 26px 0; }

/* Prozess – nummerierte Zeitleiste */
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; }
.process-steps::before { content: ""; position: absolute; top: 26px; left: 8%; right: 8%; height: 2px; background: var(--tinte-12); }
.process-step { position: relative; padding-top: 70px; }
.process-step .step-num {
  position: absolute; top: 0; left: 0; width: 52px; height: 52px; border-radius: 50%;
  background: var(--papier); border: 2px solid var(--tinte); color: var(--tinte);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 20px; z-index: 1;
}
.process-step.active .step-num { background: var(--brandrot-btn); border-color: var(--brandrot-btn); color: var(--papier); }
.process-step h3 { font-size: 18px; margin-bottom: 8px; }
.process-step p { color: var(--tinte-70); font-size: 14.5px; }
@media (max-width: 780px) { .process-steps { grid-template-columns: 1fr; gap: 36px; } .process-steps::before { display: none; } }

/* Preise – ehrlich, keine Kartenwand */
.price-table { border-top: 1px solid var(--tinte-12); }
.price-row { display: grid; grid-template-columns: 1.3fr 0.9fr 0.9fr 1.3fr; gap: 20px; align-items: center; padding: 26px 0; border-bottom: 1px solid var(--tinte-12); }
.price-row.highlight { background: var(--hellgrau); margin: 0 -28px; padding: 26px 28px; border-radius: var(--radius); border-bottom-color: transparent; }
.price-row .name { font-family: var(--font-display); font-weight: 700; font-size: 22px; }
.price-row .tag-anchor { display: inline-block; font-size: 10.5px; font-weight: 700; background: var(--brandrot-btn); color: #fff; padding: 2px 7px; border-radius: 3px; letter-spacing: .05em; margin-bottom: 4px; }
.price-row .tag-feature { display: inline-block; font-size: 10.5px; font-weight: 700; background: var(--cyan); color: var(--tinte); padding: 2px 7px; border-radius: 3px; letter-spacing: .05em; margin-bottom: 4px; }
.price-row .tag-feature.pop { animation: badge-pop .7s var(--ease) 1 both; }
@keyframes badge-pop {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(56, 198, 222, 0); }
  40% { transform: scale(1.12); box-shadow: 0 0 0 7px rgba(56, 198, 222, .25); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(56, 198, 222, 0); }
}
@media (hover: hover) {
  /* Echte "Box", die sich hervorhebt (wie .highlight, nur animiert) statt einer
     kaum sichtbaren Grau-Abtönung. ::before statt background, damit nur
     transform/opacity animiert werden (GPU, kein Layout-Sprung bei Nachbarzeilen). */
  .price-row:not(.highlight) { position: relative; isolation: isolate; }
  .price-row:not(.highlight)::before {
    content: ""; position: absolute; z-index: -1; inset: 0 -28px;
    background: var(--hellgrau); border-radius: var(--radius);
    opacity: 0; transform: scale(.97);
    transition: opacity .22s var(--ease), transform .22s var(--ease);
  }
  .price-row:not(.highlight):hover::before { opacity: 1; transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .price-row:not(.highlight)::before { transition: none; }
}
@media (prefers-reduced-motion: reduce) { .price-row .tag-feature.pop { animation: none; } }
.price-row .amount { font-family: var(--font-display); font-weight: 800; font-size: 26px; }
.price-row .amount small { font-family: var(--font-text); font-weight: 500; font-size: 13px; color: var(--tinte-70); }
.price-row .desc { font-size: 14px; color: var(--tinte-70); }
@media (max-width: 780px) { .price-row { grid-template-columns: 1fr; gap: 6px; text-align: left; } .price-row.highlight { margin: 0; } }
.price-note { margin-top: 22px; font-size: 13px; color: var(--tinte-70); }

/* Bewertungen */
.reviews-band { background: var(--hellgrau); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: var(--papier); padding: 30px; border-radius: var(--radius); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.review-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -22px rgba(11,19,64,.3); }
.review-card .stars { color: var(--sonnengelb); letter-spacing: 2px; margin-bottom: 10px; font-size: 15px; }
.review-card p { font-size: 14.5px; color: var(--tinte-70); }
.review-card .who { font-weight: 700; font-size: 13.5px; color: var(--tinte); margin-top: 10px; }
.demo-flag { display: inline-block; font-size: 11px; font-weight: 700; background: var(--cyan); color: var(--tinte); padding: 2px 8px; border-radius: 3px; margin-bottom: 16px; }
@media (max-width: 880px) { .reviews-grid { grid-template-columns: 1fr; } }

/* Instagram */
.insta-embed-wrap { display: flex; justify-content: center; }
.insta-embed-wrap iframe { border-radius: var(--radius) !important; }

/* FAQ Akkordeon */
.faq-item { border-bottom: 1px solid var(--tinte-12); }
.faq-item summary { cursor: pointer; list-style: none; padding: 22px 0; font-weight: 700; font-size: 17px; display: flex; justify-content: space-between; gap: 20px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-family: var(--font-display); font-size: 22px; color: var(--brandrot); flex-shrink: 0; transition: transform .25s var(--ease); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .a { padding: 0 0 24px; color: var(--tinte-70); max-width: 65ch; }

/* CTA / Kontakt */
.cta-band { background: url('../img/mesh-dark.svg') center/cover, var(--tinte); color: var(--papier); position: relative; overflow: hidden; }
.cta-band h2 { color: var(--papier); }
.cta-band .lead { color: rgba(255,255,255,.75); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.contact-form { display: grid; gap: 18px; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.field { display: grid; gap: 7px; }
.field label {
  font-family: var(--font-text); font-weight: 700; font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.6);
}
.contact-form input, .contact-form textarea {
  width: 100%; padding: 15px 18px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.06); color: var(--papier); font-family: var(--font-text); font-size: 14.5px;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,.4); }
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--cyan); background: rgba(255,255,255,.1); }

/* Helle Variante des Formulars (Kontakt-Seite, nicht im dunklen CTA-Band) */
.contact-form--light { background: var(--hellgrau); padding: 32px; border-radius: var(--radius); }
.contact-form--light .field label { color: var(--tinte-70); }
.contact-form--light input, .contact-form--light textarea {
  border-color: var(--tinte-12); background: var(--papier); color: var(--tinte);
}
.contact-form--light input::placeholder, .contact-form--light textarea::placeholder { color: rgba(11,19,64,.35); }
.contact-form--light input:focus, .contact-form--light textarea:focus { background: var(--papier); }

.contact-info a { color: var(--papier); text-decoration: none; }

/* Buchungs-Widget (Outlook Bookings) */
.booking-embed {
  height: 720px; max-width: 900px; margin: 0 auto;
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--tinte-12);
  box-shadow: 0 24px 60px -30px rgba(11,19,64,.35);
  position: relative; display: flex; align-items: center; justify-content: center;
  background: var(--hellgrau);
}
.booking-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
.booking-embed.not-loaded iframe { display: none; }
.booking-consent-note { display: none; max-width: 380px; text-align: center; padding: 32px; }
.booking-embed.not-loaded .booking-consent-note { display: block; }
.booking-consent-note p { color: var(--tinte-70); font-size: 14px; margin-bottom: 18px; }
@media (max-width: 600px) { .booking-embed { height: 640px; } }
.contact-info .row { display: flex; gap: 14px; padding: 12px 0; border-top: 1px solid rgba(255,255,255,.15); font-size: 15px; }
@media (max-width: 780px) { .contact-grid { grid-template-columns: 1fr; gap: 36px; } }

/* Footer */
.site-footer { background: var(--tinte); color: rgba(255,255,255,.65); padding: 40px 0; font-size: 13px; }
.site-footer .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; align-items: center; }
.site-footer a { color: rgba(255,255,255,.8); text-decoration: none; }
.site-footer a:hover { color: var(--papier); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.footer-logo { height: 30px; width: auto; }

/* Gestaffelter Reveal beim Scrollen */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* Wort-für-Wort-Einflug der Hero-Headline */
.word-in { display: inline-block; overflow: hidden; vertical-align: top; }
.word-in span { display: inline-block; transform: translateY(115%) rotate(4deg); animation: word-rise .7s var(--ease) forwards; }
@keyframes word-rise { to { transform: translateY(0) rotate(0); } }
@media (prefers-reduced-motion: reduce) { .word-in span { animation: none; transform: none; } }

/* Auto-laufendes Wort-Band (Marquee) */
.marquee { overflow: hidden; background: var(--tinte); padding: 16px 0; white-space: nowrap; }
.marquee-track { display: inline-flex; gap: 40px; animation: marquee-scroll 26s linear infinite; }
.marquee-track span { font-family: var(--font-display); font-weight: 800; font-size: 18px; letter-spacing: .04em; color: rgba(255,255,255,.55); display: inline-flex; align-items: center; gap: 40px; text-transform: uppercase; }
.marquee-track span .dot { color: var(--sonnengelb); }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

.skip-link { position: absolute; left: -999px; top: 0; background: var(--brandrot-btn); color: #fff; padding: 10px 16px; z-index: 100; }
.skip-link:focus { left: 12px; top: 12px; }

/* Cookie-Banner */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 300;
  background: var(--tinte); color: var(--papier);
  transform: translateY(110%); transition: transform .4s var(--ease);
  box-shadow: 0 -10px 30px -10px rgba(0,0,0,.4);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 20px 24px; box-sizing: border-box;
  display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: space-between;
}
/* min-width:0 ist hier Pflicht: ohne das weigert sich der Flex-Text-Absatz, unter seine
   eigene Inhaltsbreite zu schrumpfen, und reißt auf schmalen Screens die ganze Seite
   (inkl. <body>) horizontal auf – genau der Bug, der den mobilen Nav-Bug ausgelöst hat. */
.cookie-banner-inner p { margin: 0; font-size: 13.5px; color: rgba(255,255,255,.85); max-width: 640px; min-width: 0; flex: 1 1 260px; }
.cookie-banner-inner a { color: var(--sonnengelb); font-weight: 700; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-actions .btn { padding: 11px 20px; font-size: 13.5px; }

/* Eigener Cursor (nur Geräte mit Maus): facettierter Farb-Glow + Kopf-Icon,
   statt eines schlichten Kreises – Muster/Form aus dem eigenen Logo. */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 999;
  will-change: transform; opacity: 0;
  transition: opacity .2s ease, width .3s var(--ease), height .3s var(--ease), filter .3s ease;
}
.cursor-dot {
  width: 26px; height: 26px;
  margin: -13px 0 0 -13px;
  filter: drop-shadow(0 2px 6px rgba(11,19,64,.35));
}
.cursor-ring {
  width: 52px; height: 52px;
  margin: -26px 0 0 -26px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--brandrot) 0deg, var(--sonnengelb) 120deg, var(--cyan) 240deg, var(--brandrot) 360deg);
  filter: blur(9px);
}
body.cursor-visible .cursor-dot { opacity: .95; }
body.cursor-visible .cursor-ring { opacity: .35; }
body.cursor-active .cursor-ring { width: 84px; height: 84px; margin: -42px 0 0 -42px; opacity: .5; filter: blur(12px); }
body.cursor-active .cursor-dot { width: 32px; height: 32px; margin: -16px 0 0 -16px; }
@media (hover: none), (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }

/* Scroll-Fortschritt */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--brandrot), var(--sonnengelb), var(--cyan));
  z-index: 200; transition: width .1s linear;
}

/* Rotierendes Wort im Hero */
.word-rotate {
  display: inline-block; color: var(--brandrot-btn);
  transition: opacity .22s ease, transform .22s ease;
}

/* Magnetische Buttons brauchen eine weiche Rückfeder-Transition */
.btn-primary, .btn-outline { transition: transform .18s ease-out, background .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease); }
