/* ========== Betsa Landing styles ========== */
:root {
  --red: #9B1427;
  --red-dark: #441216;
  --black: #191818;
  --grey: #F2F2F2;
  --grey-mid: #e7e7e7;
  --grey-line: #ebebeb;
  --white: #ffffff;
  --text: #191818;
  --text-mut: #6b6b6b;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: clip; }
body {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  font-size: 14px;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.play { font-family: 'Play', sans-serif; font-weight: 700; letter-spacing: -0.01em; }

/* ============ section primitives ============ */
.section { padding: var(--section-pad, 96px) 0; position: relative; }
.section-white { background: var(--white); }
.section-grey { background: var(--grey); }
.section-dark { background: var(--black); color: #fff; overflow: hidden; }

.sec-head { margin-bottom: 56px; max-width: 760px; }
.sec-head.centered { margin-left: auto; margin-right: auto; text-align: center; }
.sec-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--red); margin-bottom: 18px;
}
.sec-eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--red); }
.sec-eyebrow.on-dark { color: var(--red); }
.sec-h2 {
  font-family: 'Play', sans-serif; font-weight: 700;
  font-size: clamp(30px, 3.2vw, 44px); line-height: 1.1;
  margin: 0 0 16px; color: var(--black);
  letter-spacing: -0.01em;
}
.sec-h2.on-dark { color: #fff; }
.sec-lede { font-size: 15px; color: var(--text-mut); line-height: 1.72; max-width: 640px; margin: 0; }
.sec-lede.on-dark { color: rgba(255,255,255,0.6); }
.sec-head.centered .sec-lede { margin-left: auto; margin-right: auto; }

/* ============ buttons ============ */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Montserrat'; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 11.5px;
  padding: 16px 24px;
  cursor: pointer; border: 0;
  transition: background-color .18s, color .18s, transform .18s, border-color .18s;
  text-decoration: none;
  white-space: nowrap;
}
.btn .arr { font-family: 'Play'; font-size: 13px; transition: transform .18s; }
.btn-arrow:hover .arr { transform: translateX(4px); }
.btn-primary {
  background: var(--red); color: #fff;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.btn-primary:hover { background: var(--red-dark); }
.btn-ghost {
  background: transparent; color: var(--black);
  border: 1px solid var(--black);
}
.btn-ghost:hover { background: var(--black); color: #fff; }
.btn-full { width: 100%; justify-content: center; }

/* ============ HEADER ============ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid var(--grey-line);
  transition: box-shadow .18s;
}
.site-header.scrolled { box-shadow: 0 1px 0 rgba(0,0,0,0.04); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 88px; gap: 32px;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand-logo { height: 52px; width: auto; display: block; }

.site-nav { display: flex; gap: 28px; }
.nav-link {
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--black); text-decoration: none;
  padding: 8px 0; position: relative;
  transition: color .18s;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: 2px;
  height: 1.5px; width: 0; background: var(--red);
  transition: width .22s ease;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--red); }

.header-right { display: flex; align-items: center; gap: 20px; }
.header-phone { text-align: right; text-decoration: none; transition: color .18s; }
.header-phone:hover .hp-num { color: var(--red); }
.hp-num { font-family: 'Play'; font-weight: 700; font-size: 14px; letter-spacing: 0.02em; color: var(--black); transition: color .18s; }
.hp-hours { font-family: 'Montserrat'; font-size: 10px; color: var(--text-mut); letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; margin-top: 2px; }

/* ============ HERO ============ */
.hero {
  background: var(--black); color: #fff;
  padding: 120px 0 140px;
  position: relative; overflow: hidden;
}
.hero-deco { position: absolute; inset: 0; pointer-events: none; }
.hero-web {
  position: absolute;
  left: 25%; top: -20%;
  width: 100%; height: 150%;
  opacity: 1;
}
.hero-web .web-rays line {
  stroke: rgba(155,20,39,0.7);
  stroke-width: 0.4;
  vector-effect: non-scaling-stroke;
}
.hero-web .web-rings polygon {
  fill: none;
  stroke: rgba(255,255,255,0.18);
  stroke-width: 0.4;
  vector-effect: non-scaling-stroke;
}
.hero-web .web-rings polygon:nth-child(odd) {
  stroke: rgba(155,20,39,0.45);
}
.hero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.05) 1px, transparent 0);
  background-size: 22px 22px;
  opacity: 0.6;
}
.hero-triangle {
  position: absolute; right: -100px; bottom: -100px;
  width: 480px; height: 480px;
  background: var(--red);
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  opacity: 1;
}
.hero-vline { display: none; }
.hero-inner { position: relative; z-index: 2; }
.hero-h1 {
  font-family: 'Play', sans-serif; font-weight: 700;
  font-size: clamp(40px, 5vw, 62px); line-height: 1.06;
  margin: 0 0 28px; max-width: 1020px; color: #fff;
  letter-spacing: -0.015em;
}
.hero-h1 .accent { color: var(--red); }
.hero-sub {
  font-size: 15px; line-height: 1.72;
  max-width: 720px; color: rgba(255,255,255,0.7);
  margin: 0 0 40px;
}
.hero-ctas { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-bottom: 64px; }
.hero-cta-sec {
  font-size: 12px; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55); font-weight: 500;
  text-decoration: none;
  transition: color .18s;
}
.hero-cta-sec:hover { color: var(--red); }

.hero-tags {
  display: flex; gap: 36px; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 28px;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Montserrat'; font-weight: 600;
  font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}
.hero-tag .diamond {
  display: inline-block; width: 8px; height: 8px;
  background: var(--red); transform: rotate(45deg);
}

/* === Hero variants === */
/* v1: standard (above) */
/* v2: centered, big */
.hero-v2 { padding: 140px 0 160px; text-align: center; }
.hero-v2 .hero-h1 { margin-left: auto; margin-right: auto; }
.hero-v2 .hero-sub { margin-left: auto; margin-right: auto; }
.hero-v2 .hero-ctas { justify-content: center; }
.hero-v2 .sec-eyebrow { justify-content: center; }
.hero-v2 .hero-tags { justify-content: center; }
.hero-v2 .hero-triangle { right: 50%; transform: translateX(50%); bottom: -200px; opacity: 0.5; }
.hero-v2 .hero-vline { display: none; }
.hero-v2 .sec-eyebrow::before { display: none; }

/* v3: split, with technical block */
.hero-v3 .hero-inner { display: grid; grid-template-columns: 1.5fr 1fr; gap: 80px; align-items: end; }
.hero-v3 .hero-h1 { font-size: clamp(36px, 4.2vw, 54px); }
.hero-v3::after {
  content: ""; position: absolute; right: 0; top: 0; bottom: 0; width: 32%;
  background-image: linear-gradient(to right, rgba(155,20,39,0.15) 1px, transparent 1px),
                    linear-gradient(to bottom, rgba(155,20,39,0.15) 1px, transparent 1px);
  background-size: 32px 32px;
  z-index: 1;
}
.hero-v3 .hero-triangle { display: none; }

/* ============ LEISTUNGEN ============ */
.leistung-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.leistung-card {
  background: #fff;
  border-left: 3px solid var(--red);
  padding: 36px 32px 32px;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.leistung-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(25,24,24,0.08); }
.lc-num { font-family: 'Montserrat'; font-weight: 700; font-size: 11px; color: var(--red); letter-spacing: 0.2em; }
.lc-title { font-family: 'Play'; font-weight: 700; font-size: 22px; margin: 10px 0 16px; line-height: 1.25; letter-spacing: -0.005em; }
.lc-text { font-size: 13.5px; color: var(--text-mut); line-height: 1.7; margin: 0 0 24px; }
.lc-target {
  font-size: 11.5px; color: var(--text-mut); line-height: 1.6;
  padding: 14px 16px; background: var(--grey);
  display: flex; flex-direction: column; gap: 4px;
}
.lc-target-label {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; color: var(--red);
}

/* ============ DETAIL (accordion) ============ */
.acc-wrap { max-width: 920px; }
.acc-item { border-bottom: 1px solid var(--grey-line); }
.acc-item:first-child { border-top: 1px solid var(--grey-line); }
.acc-summary {
  width: 100%; display: flex; align-items: center; gap: 28px;
  padding: 24px 0; background: none; border: 0; cursor: pointer;
  text-align: left;
  font-family: inherit;
}
.acc-idx {
  font-family: 'Montserrat'; font-weight: 700; font-size: 11px;
  color: var(--red); letter-spacing: 0.18em; min-width: 28px;
}
.acc-title {
  flex: 1; font-family: 'Play'; font-weight: 700; font-size: 18px;
  color: var(--black); line-height: 1.3;
}
.acc-plus {
  width: 24px; height: 24px; position: relative;
  transition: transform .25s ease;
}
.acc-plus span {
  position: absolute; left: 50%; top: 50%; background: var(--red);
}
.acc-plus span:first-child { width: 14px; height: 1.5px; transform: translate(-50%, -50%); }
.acc-plus span:last-child { width: 1.5px; height: 14px; transform: translate(-50%, -50%); }
.acc-item.open .acc-plus { transform: rotate(45deg); }
.acc-body-wrap { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.acc-item.open .acc-body-wrap { max-height: 400px; }
.acc-body {
  font-size: 13.5px; color: var(--text-mut); line-height: 1.78;
  padding: 0 0 28px 60px; max-width: 760px;
}

/* ============ WARUM ============ */
.warum-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}
.warum-aside { position: sticky; top: 96px; }
.warum-phonebox {
  display: block; text-decoration: none;
  margin-top: 36px;
  background: var(--red); color: #fff;
  padding: 28px;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
  transition: background .18s, transform .18s;
}
.warum-phonebox:hover { background: var(--red-dark); transform: translateY(-2px); }
.wpb-label { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; opacity: 0.7; margin-bottom: 14px; }
.wpb-num { font-family: 'Play'; font-weight: 700; font-size: 24px; letter-spacing: 0.02em; margin-bottom: 10px; }
.wpb-text { font-size: 12.5px; line-height: 1.6; opacity: 0.85; }

.warum-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.warum-item {
  position: relative;
  padding: 28px 24px;
  border-right: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
  overflow: hidden;
}
.warum-item:nth-child(2n) { border-right: 0; }
.warum-item:nth-last-child(-n+2) { border-bottom: 0; }
.wi-num {
  font-family: 'Montserrat'; font-weight: 700; font-size: 11px;
  color: var(--red); letter-spacing: 0.2em; margin-bottom: 10px;
}
.wi-title { font-family: 'Play'; font-weight: 700; font-size: 14.5px; margin: 0 0 8px; line-height: 1.3; }
.wi-text { font-size: 12.5px; color: var(--text-mut); line-height: 1.66; margin: 0; }
.wi-ghost {
  position: absolute; right: -8px; bottom: -34px;
  font-family: 'Play'; font-weight: 700; font-size: 110px;
  color: var(--black); opacity: 0.04; line-height: 1; pointer-events: none;
}

/* ============ ABLAUF ============ */
.ablauf { padding-top: 96px; padding-bottom: 96px; }
.ablauf-deco { position: absolute; inset: 0; opacity: .7; pointer-events: none; }
.ablauf .container { position: relative; z-index: 2; }
.ablauf-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 72px;
  align-items: start;
}
.ablauf-main { min-width: 0; }
.ablauf-aside { position: sticky; top: 96px; }
.ablauf-imgwrap {
  position: relative;
  aspect-ratio: 3 / 5;
  overflow: hidden;
  background: #2a2a2a;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}
.ablauf-imgwrap img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: contrast(1.05) saturate(0.9);
}
.ablauf-imgwrap::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(25,24,24,0.6) 100%);
  pointer-events: none;
}
.ablauf-img-tag {
  position: absolute; left: 24px; bottom: 24px;
  z-index: 2;
  display: flex; align-items: center; gap: 16px;
  color: #fff;
}
.aitag-num {
  width: 44px; height: 44px;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Play'; font-weight: 700; font-size: 14px;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}
.aitag-txt { font-family: 'Play'; font-weight: 700; font-size: 13px; line-height: 1.3; }
.timeline { list-style: none; padding: 0; margin: 0; max-width: 820px; }
.tl-item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 32px;
  padding-bottom: 48px;
  position: relative;
}
.tl-item:not(:last-child) .tl-marker::after {
  content: ""; position: absolute; left: 50%; top: 38px; bottom: -48px;
  width: 1px; background: rgba(155,20,39,0.35);
  transform: translateX(-50%);
}
.tl-item:last-child { padding-bottom: 0; }
.tl-marker {
  width: 38px; height: 38px; background: var(--red);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}
.tl-num { font-family: 'Play'; font-weight: 700; font-size: 14px; color: #fff; }
.tl-title { font-family: 'Play'; font-weight: 700; font-size: 18px; color: #fff; margin: 6px 0 8px; }
.tl-text { font-size: 13.5px; color: rgba(255,255,255,0.58); line-height: 1.72; max-width: 680px; margin: 0; }

/* ============ REFERENZEN — PORTFOLIO SLIDER ============ */
.refs-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  max-width: none; gap: 32px;
}
.refs-head > div { max-width: 760px; }
.refs-nav {
  display: flex; align-items: center; gap: 18px;
  flex-shrink: 0;
}
.refs-arrow {
  width: 52px; height: 52px;
  background: #fff; border: 1px solid var(--grey-line);
  color: var(--black); cursor: pointer;
  font-family: 'Play', sans-serif; font-size: 20px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .18s, color .18s, border-color .18s, transform .18s;
  clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 9px 100%, 0 calc(100% - 9px));
}
.refs-arrow:hover:not(:disabled) { background: var(--red); color: #fff; border-color: var(--red); }
.refs-arrow:disabled { opacity: 0.3; cursor: not-allowed; }
.refs-arrow span { display: block; line-height: 1; transition: transform .18s; }
.refs-arrow:hover:not(:disabled) span { transform: translateX(2px); }
.refs-arrow:first-child:hover:not(:disabled) span { transform: translateX(-2px); }
.refs-count {
  font-family: 'Play', sans-serif; font-weight: 700;
  font-size: 15px; letter-spacing: 0.08em; color: var(--black);
  display: inline-flex; align-items: baseline; gap: 4px;
  min-width: 72px; justify-content: center;
}
.refs-count .rc-cur { color: var(--red); font-size: 18px; }
.refs-count .rc-sep { color: var(--text-mut); opacity: 0.5; }
.refs-count .rc-total { color: var(--text-mut); font-size: 14px; }

.refs-slider { position: relative; }
.refs-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(380px, calc((100% - 36px) / 3));
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 0 12px;
  /* hide scrollbar */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.refs-track::-webkit-scrollbar { display: none; }
.refs-track > .ref-card {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  min-width: 0;
  transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}
.refs-track > .ref-card.is-active {
  box-shadow: 0 18px 40px rgba(25,24,24,0.12);
}

.refs-dots {
  display: flex; justify-content: center; gap: 10px;
  margin-top: 28px;
}
.refs-dot {
  width: 28px; height: 3px;
  background: var(--grey-mid); border: 0; padding: 0;
  cursor: pointer;
  transition: background .18s, width .18s;
}
.refs-dot.active { background: var(--red); width: 44px; }
.refs-dot:hover:not(.active) { background: var(--text-mut); }

@media (max-width: 1100px) {
  .refs-track { grid-auto-columns: minmax(340px, calc((100% - 18px) / 2)); }
}
@media (max-width: 820px) {
  .refs-head { flex-direction: column; align-items: stretch; }
  .refs-track { grid-auto-columns: 88%; gap: 14px; }
  .refs-arrow { width: 44px; height: 44px; font-size: 16px; }
}

.ref-card {
  background: #fff;
  display: flex; flex-direction: column;
  text-align: left;
  text-decoration: none; color: inherit;
  border: 0; padding: 0; font-family: inherit;
  transition: transform .25s ease, box-shadow .25s ease;
  cursor: pointer;
}
.ref-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(25,24,24,0.1); }
.ref-image { aspect-ratio: 5 / 3; overflow: hidden; position: relative; }
.ref-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.ref-card:hover .ref-image img { transform: scale(1.04); }
.ref-image svg { width: 100%; height: 100%; display: block; }

.ref-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(25,24,24,0.85) 0%, rgba(25,24,24,0.3) 50%, transparent 100%);
  opacity: 0;
  transition: opacity .25s ease;
  display: flex; align-items: flex-end; padding: 20px;
}
.ref-card:hover .ref-overlay { opacity: 1; }
.ref-overlay-cta {
  font-family: 'Montserrat'; font-weight: 600; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #fff;
  display: inline-flex; align-items: center; gap: 8px;
}
.ref-overlay-cta span { font-family: 'Play'; font-size: 14px; transition: transform .2s; }
.ref-card:hover .ref-overlay-cta span { transform: translateX(4px); }
.ref-body { padding: 24px 24px 28px; position: relative; overflow: hidden; flex: 1; }
.ref-details {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
  color: var(--red); margin-bottom: 10px;
}
.ref-title { font-family: 'Play'; font-weight: 700; font-size: 17px; margin: 0 0 12px; line-height: 1.3; }
.ref-text { font-size: 12.5px; color: var(--text-mut); line-height: 1.7; margin: 0; }
.ref-ghost {
  position: absolute; right: -8px; bottom: -32px;
  font-family: 'Play'; font-weight: 700; font-size: 110px;
  color: var(--red); opacity: 0.07; line-height: 1; pointer-events: none;
}

/* ============ REF MODAL ============ */
.rmod-backdrop {
  position: fixed; inset: 0; z-index: 130;
  background: rgba(25,24,24,0.75); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: ccFadeIn .25s ease;
  overflow-y: auto;
}
.rmod {
  background: #fff;
  max-width: 1040px; width: 100%;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  grid-template-rows: 1fr auto;
  grid-template-areas:
    "media body"
    "thumbs body";
  position: relative;
  max-height: calc(100vh - 48px);
  overflow: hidden;
  animation: rmodPop .3s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes rmodPop { from { transform: scale(0.96); opacity: 0 } to { transform: scale(1); opacity: 1 } }
.rmod-close {
  position: absolute; top: 16px; right: 16px; z-index: 5;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.9);
  border: 0; cursor: pointer;
  font-size: 22px; line-height: 1;
  color: var(--black);
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, color .15s;
}
.rmod-close:hover { background: var(--red); color: #fff; }
.rmod-media {
  grid-area: media;
  background: #191818;
  overflow: hidden;
  min-height: 420px;
  position: relative;
}
.rmod-media img { width: 100%; height: 100%; object-fit: cover; display: block; animation: rmodFade .35s ease; }
.rmod-media svg { width: 100%; height: 100%; }
@keyframes rmodFade { from { opacity: 0; transform: scale(1.02); } to { opacity: 1; transform: scale(1); } }

/* Gallery arrows inside modal */
.rmod-gal-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.9); color: var(--black);
  border: 0; cursor: pointer;
  font-family: 'Play'; font-size: 18px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, color .15s, opacity .15s;
  z-index: 2;
}
.rmod-gal-arrow:hover:not(:disabled) { background: var(--red); color: #fff; }
.rmod-gal-arrow:disabled { opacity: 0; pointer-events: none; }
.rmod-gal-prev { left: 16px; }
.rmod-gal-next { right: 16px; }
.rmod-gal-count {
  position: absolute; bottom: 16px; right: 16px;
  background: rgba(0,0,0,0.6); color: #fff;
  padding: 6px 12px;
  font-family: 'Play'; font-weight: 700; font-size: 12px;
  letter-spacing: 0.1em;
  z-index: 2;
}

/* Thumbnails strip */
.rmod-thumbs {
  grid-area: thumbs;
  display: flex; gap: 6px;
  padding: 8px;
  background: #f4f4f4;
  border-top: 1px solid var(--grey-line);
  overflow-x: auto;
  scrollbar-width: thin;
}
.rmod-thumb {
  flex-shrink: 0;
  width: 76px; height: 56px;
  border: 2px solid transparent;
  padding: 0; background: none; cursor: pointer;
  overflow: hidden;
  transition: border-color .15s, transform .15s;
  position: relative;
}
.rmod-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rmod-thumb::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(25,24,24,0.4); transition: opacity .15s;
}
.rmod-thumb:hover::after { opacity: 0.2; }
.rmod-thumb.active { border-color: var(--red); }
.rmod-thumb.active::after { opacity: 0; }

/* Photo count badge on card */
.ref-photo-badge {
  position: absolute; top: 14px; right: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(25,24,24,0.85);
  color: #fff;
  padding: 6px 10px 6px 8px;
  font-family: 'Montserrat'; font-weight: 700;
  font-size: 10.5px; letter-spacing: 0.06em;
  z-index: 1;
  backdrop-filter: blur(2px);
}
.ref-photo-badge svg { display: block; }

.rmod-body {
  grid-area: body;
  padding: 48px 40px;
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.rmod-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.rmod-num {
  font-family: 'Play'; font-weight: 700; font-size: 28px;
  color: var(--red); letter-spacing: -0.02em; line-height: 1;
}
.rmod-details {
  font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 600; color: var(--text-mut);
}
.rmod-title {
  font-family: 'Play'; font-weight: 700; font-size: 26px;
  line-height: 1.15; margin: 0 0 16px;
  letter-spacing: -0.01em;
}
.rmod-text {
  font-size: 13.5px; color: var(--text-mut); line-height: 1.72;
  margin: 0 0 28px;
}

.rmod-spec {
  background: var(--grey);
  padding: 16px 20px;
  margin-bottom: 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.rmod-spec-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 12px;
}
.rmod-spec-label { color: var(--text-mut); letter-spacing: 0.06em; }
.rmod-spec-val { font-family: 'Play'; font-weight: 700; color: var(--black); }

.rmod-actions { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }
.rmod-cta {
  display: inline-flex; align-items: center; justify-content: space-between;
  font-family: 'Montserrat'; font-weight: 600; font-size: 11.5px;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 16px 22px; background: var(--red); color: #fff;
  border: 0; cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  transition: background .18s;
}
.rmod-cta span { font-family: 'Play'; font-size: 14px; transition: transform .18s; }
.rmod-cta:hover { background: var(--red-dark); }
.rmod-cta:hover span { transform: translateX(4px); }
.rmod-back {
  font-family: 'Montserrat'; font-weight: 600; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 12px; background: transparent; color: var(--text-mut);
  border: 0; cursor: pointer;
  transition: color .18s;
}
.rmod-back:hover { color: var(--red); }

@media (max-width: 760px) {
  .rmod-backdrop { padding: 0; align-items: flex-start; }
  .rmod {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas: "media" "thumbs" "body";
    max-height: none;
    overflow: visible;
    width: 100%;
    min-height: 100vh;
  }
  .rmod-media { min-height: 240px; aspect-ratio: 5 / 3; }
  .rmod-gal-arrow { width: 36px; height: 36px; }
  .rmod-thumbs { padding: 6px; }
  .rmod-thumb { width: 60px; height: 44px; }
  .rmod-body { padding: 28px 20px 40px; overflow-y: visible; }
}

/* ============ STATS / ZAHLEN UND FAKTEN ============ */
.stats-sec { background: var(--white); }
.stats-sec-head { margin-bottom: 56px; max-width: 760px; }
.stats-sec-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--grey-line);
  background: #fff;
}
.stats-sec-card {
  position: relative;
  padding: 40px 28px 32px;
  border-right: 1px solid var(--grey-line);
  transition: background .25s, transform .25s;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto auto auto;
  justify-items: center;
  text-align: center;
}
.ssc-num { align-self: center; }
.stats-sec-card:last-child { border-right: 0; }
.stats-sec-card:hover { background: var(--grey); }
.ssc-corner {
  position: absolute; top: 0; right: 0;
  width: 18px; height: 18px;
  background: var(--red);
  clip-path: polygon(100% 0, 100% 100%, 0 0);
}
.ssc-idx {
  font-family: 'Montserrat'; font-weight: 700;
  font-size: 10px; letter-spacing: 0.22em;
  color: var(--red);
  margin-bottom: 22px;
}
.ssc-num {
  font-family: 'Play', sans-serif; font-weight: 700;
  font-size: clamp(36px, 3.8vw, 60px); line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--black);
  margin: 0 0 10px;
}
.ssc-rule {
  width: 32px; height: 2px;
  background: var(--red);
  margin: 0 0 12px;
}
.ssc-label {
  font-family: 'Montserrat'; font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--black);
  margin-bottom: 6px;
  line-height: 1.4;
}
.ssc-sub {
  font-size: 11.5px;
  color: var(--text-mut);
  line-height: 1.65;
}

@media (max-width: 880px) {
  .stats-sec-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-sec-card:nth-child(2) { border-right: 0; }
  .stats-sec-card:nth-child(1),
  .stats-sec-card:nth-child(2) { border-bottom: 1px solid var(--grey-line); }
}
@media (max-width: 480px) {
  .stats-sec-grid { grid-template-columns: 1fr; }
  .stats-sec-card { border-right: 0 !important; border-bottom: 1px solid var(--grey-line); padding: 32px 24px 28px; }
  .stats-sec-card:last-child { border-bottom: 0; }
}

/* ============ AWARDS / AUSZEICHNUNGEN ============ */
.awards { padding: 80px 0; }
.awards-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 0;
  border: 1px solid var(--grey-line);
  background: #fff;
}
.award-tile {
  padding: 48px 24px 40px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px;
  border-right: 1px solid var(--grey-line);
  position: relative;
  transition: background .2s;
  min-height: 260px;
}
.award-tile:last-child { border-right: 0; }
.award-tile:hover { background: var(--grey); }
.award-frame {
  width: 100%;
  height: 150px;
  display: flex; align-items: center; justify-content: center;
}
.award-frame img {
  max-width: 100%; max-height: 100%;
  width: auto; height: auto;
  object-fit: contain; display: block;
  filter: grayscale(1) contrast(0.95);
  opacity: 0.85;
  transition: filter .25s, opacity .25s, transform .25s;
}
.award-tile:hover .award-frame img { filter: none; opacity: 1; transform: scale(1.04); }
.award-empty {
  font-family: 'Play'; font-weight: 700;
  font-size: 14px; color: var(--text-mut);
  text-align: center;
}
.award-name {
  font-family: 'Montserrat'; font-weight: 600;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-mut); text-align: center;
  line-height: 1.4; word-break: break-word;
}

@media (max-width: 1200px) {
  .awards-grid { grid-template-columns: repeat(3, 1fr); }
  .award-tile { border-bottom: 1px solid var(--grey-line); }
  .award-tile:nth-child(3n) { border-right: 0; }
}
@media (max-width: 700px) {
  .awards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); overflow: hidden; }
  .award-tile { padding: 24px 12px 20px; min-height: 160px; }
  .award-tile:nth-child(3n) { border-right: 1px solid var(--grey-line); }
  .award-tile:nth-child(2n) { border-right: 0; }
  .award-frame { height: 90px; }
  .award-name { font-size: 10px; letter-spacing: 0.12em; }
}

/* ============ STIMMEN ============ */
.stimmen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.stimme-card {
  position: relative;
  background: #fff;
  border-left: 3px solid var(--red);
  padding: 32px 28px 28px;
  overflow: hidden;
}
.stimme-quotemark {
  position: absolute; right: 14px; top: -10px;
  font-family: 'Play'; font-weight: 700; font-size: 96px;
  color: var(--red); opacity: 0.1; line-height: 1; pointer-events: none;
}
.stimme-quote { font-size: 13.5px; color: #444; line-height: 1.72; margin: 0 0 24px; }
.sm-name { font-family: 'Montserrat'; font-weight: 700; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--red); }
.sm-role { font-size: 11px; color: var(--text-mut); margin-top: 4px; letter-spacing: 0.06em; }

/* ============ FAQ ============ */
.faq .container > .sec-head { text-align: center; }
.faq .container > .sec-head .sec-eyebrow { justify-content: center; }
.faq-list { max-width: 820px; margin: 0 auto; background: #fff; padding: 8px 32px; }
.faq-item { border-bottom: 1px solid var(--grey-line); }
.faq-item:last-child { border-bottom: 0; }
.faq-q {
  width: 100%; padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: none; border: 0; cursor: pointer;
  font-family: 'Play'; font-weight: 700; font-size: 15.5px; color: var(--black);
  text-align: left; line-height: 1.4;
}
.faq-q-plus { width: 22px; height: 22px; position: relative; flex-shrink: 0; transition: transform .25s ease; }
.faq-q-plus span { position: absolute; left: 50%; top: 50%; background: var(--red); }
.faq-q-plus span:first-child { width: 12px; height: 1.5px; transform: translate(-50%, -50%); }
.faq-q-plus span:last-child { width: 1.5px; height: 12px; transform: translate(-50%, -50%); }
.faq-item.open .faq-q-plus { transform: rotate(45deg); }
.faq-a-wrap { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a-wrap { max-height: 400px; }
.faq-a { font-size: 13px; color: #555; line-height: 1.78; padding: 0 0 22px 0; max-width: 720px; }

/* ============ KONTAKT ============ */
.kontakt { position: relative; overflow: hidden; }
.kontakt-deco { position: absolute; inset: 0; pointer-events: none; opacity: .8; }
.kontakt-wedge {
  position: absolute; right: -120px; top: -100px;
  width: 380px; height: 380px;
  background: var(--red);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  opacity: 0.6;
}
.kontakt .container { position: relative; z-index: 2; }
.kontakt-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start;
}
.kontakt-info { padding-top: 8px; }
.kontakt-details {
  margin-top: 48px;
  display: flex; flex-direction: column; gap: 24px;
  border-top: 1px solid rgba(255,255,255,0.15); padding-top: 36px;
}
.kd-item {
  display: flex; flex-direction: column; gap: 6px;
  text-decoration: none; color: inherit;
  transition: transform .15s;
}
.kd-item:hover { transform: translateX(4px); }
.kd-item:hover .kd-val { color: var(--red); }
.kd-val { transition: color .18s; }
.kd-label { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; color: rgba(255,255,255,0.5); }
.kd-val { font-family: 'Montserrat'; font-weight: 500; font-size: 14px; color: #fff; line-height: 1.5; }
.kd-val.play { font-family: 'Play'; font-weight: 700; font-size: 22px; letter-spacing: 0.02em; }

.kontakt-form {
  background: #fff;
  padding: 40px 36px;
  color: var(--black);
}
.kf-title { font-family: 'Play'; font-weight: 700; font-size: 20px; margin: 0 0 24px; color: var(--black); }
.kf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.kf-field { display: flex; flex-direction: column; gap: 6px; }
.kf-full { grid-column: 1 / -1; }
.kf-field label { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; color: var(--text-mut); }
.kf-field input, .kf-field select, .kf-field textarea {
  font-family: 'Montserrat'; font-weight: 500; font-size: 13px;
  border: 1px solid var(--grey-line); background: #fff;
  padding: 12px 14px; color: var(--text); border-radius: 0;
  transition: border-color .18s;
}
.kf-field input:focus, .kf-field select:focus, .kf-field textarea:focus { outline: none; border-color: var(--red); }
.kf-field textarea { resize: vertical; min-height: 96px; font-family: 'Montserrat'; }
.kf-check { display: flex; gap: 10px; align-items: flex-start; }
.kf-check input { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--red); }
.kf-check label { font-size: 11.5px; color: var(--text-mut); line-height: 1.6; letter-spacing: 0; text-transform: none; font-weight: 400; }

/* ============ FOOTER ============ */
.site-footer { background: #0e0e0e; color: rgba(255,255,255,0.55); padding: 72px 0 36px; font-size: 13px; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo { height: 56px; width: auto; display: block; margin-bottom: 18px; filter: brightness(0) invert(1); opacity: 0.92; }
.footer-tagline { font-size: 12px; color: rgba(255,255,255,0.4); max-width: 280px; line-height: 1.65; }
.footer-col h4 { font-family: 'Play'; font-weight: 700; font-size: 14px; color: #fff; margin: 0 0 16px; letter-spacing: 0.01em; }
.footer-line { font-size: 12.5px; line-height: 1.8; color: rgba(255,255,255,0.55); }
.footer-link {
  display: block; font-size: 12.5px; line-height: 1.9;
  color: rgba(255,255,255,0.55); text-decoration: none;
  transition: color .18s;
}
.footer-link:hover { color: var(--red); }
.footer-bottom {
  padding-top: 28px; font-size: 11.5px; color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em;
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  align-items: baseline;
}

/* === .grandma watermark — canonical, do not modify === */
.gm-watermark {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-family: 'Geist', sans-serif;
  font-size: 12px;
  line-height: 1;
  color: #5C5C6B;
  letter-spacing: 0;
  text-transform: none;
}
.gm-watermark-label { font-weight: 400; opacity: 0.85; }
.gm-watermark-link {
  font-weight: 600;
  letter-spacing: -0.02em;
  color: inherit;
  text-decoration: none;
  transition: color 150ms ease;
}
.gm-watermark-link .gm-dot { color: #B8156B; }
.gm-watermark-link:hover { color: #ECECEF; }
.gm-watermark-link:hover .gm-dot { color: #D11B7E; }

/* ============ ADMIN PANEL ============ */
.adm-fab {
  position: fixed; right: 24px; bottom: 24px; z-index: 90;
  background: var(--red); color: #fff;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  font-family: 'Montserrat'; font-weight: 600; font-size: 11.5px;
  letter-spacing: 0.16em; text-transform: uppercase;
  border: 0; cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  box-shadow: 0 8px 28px rgba(155,20,39,0.4);
  transition: background .18s, transform .18s;
}
.adm-fab:hover { background: var(--red-dark); transform: translateY(-2px); }
.adm-fab .fab-gear { font-size: 14px; }

.adm-backdrop {
  position: fixed; inset: 0; z-index: 95;
  background: rgba(25,24,24,0.4); backdrop-filter: blur(2px);
  animation: fadeIn .2s ease;
}
.adm-panel {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 420px; max-width: 100vw;
  background: #fff; z-index: 96;
  display: flex; flex-direction: column;
  box-shadow: -16px 0 40px rgba(0,0,0,0.16);
  animation: slideIn .25s ease;
}
@keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } }
@keyframes slideIn { from { transform: translateX(100%) } to { transform: translateX(0) } }

.adm-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--grey-line);
}
.adm-title { display: flex; align-items: center; gap: 12px; font-family: 'Play'; font-weight: 700; font-size: 16px; }
.adm-title img { width: 24px; height: 24px; }
.adm-title span b { color: var(--red); }
.adm-close { background: none; border: 0; font-size: 26px; line-height: 1; color: var(--text-mut); cursor: pointer; padding: 0 4px; }
.adm-close:hover { color: var(--red); }

.adm-actions { display: flex; gap: 8px; padding: 16px 24px; border-bottom: 1px solid var(--grey-line); background: var(--grey); }
.adm-btn-ghost, .adm-btn-save {
  font-family: 'Montserrat'; font-weight: 600; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 10px 18px; border: 0; cursor: pointer;
  transition: background .18s, color .18s;
}
.adm-btn-ghost { background: transparent; color: var(--text-mut); border: 1px solid var(--grey-line); }
.adm-btn-ghost:hover { color: var(--red); border-color: var(--red); }
.adm-btn-save {
  background: var(--red); color: #fff;
  flex: 1;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.adm-btn-save:hover { background: var(--red-dark); }
.adm-btn-save.saved { background: #1F8A5B; }

.adm-body { flex: 1; overflow-y: auto; padding: 8px 0 80px; }
.adm-section { border-bottom: 1px solid var(--grey-line); }
.adm-section-head {
  width: 100%; background: none; border: 0;
  padding: 18px 24px;
  display: flex; align-items: center; gap: 14px;
  cursor: pointer; text-align: left;
}
.adm-section-num { font-family: 'Montserrat'; font-weight: 700; font-size: 10px; color: var(--red); letter-spacing: 0.2em; min-width: 24px; }
.adm-section-title { flex: 1; font-family: 'Play'; font-weight: 700; font-size: 14px; color: var(--black); }
.adm-section-chev { font-size: 18px; color: var(--red); font-family: 'Play'; line-height: 1; }
.adm-section-body { padding: 0 24px 24px; display: flex; flex-direction: column; gap: 14px; }
.adm-section.open .adm-section-head { background: var(--grey); }

.adm-field { display: flex; flex-direction: column; gap: 6px; }
.adm-field label { font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; color: var(--text-mut); }
.adm-field input, .adm-field textarea {
  font-family: 'Montserrat'; font-weight: 500; font-size: 12.5px;
  border: 1px solid var(--grey-line); background: #fff;
  padding: 9px 11px; color: var(--text); border-radius: 0;
  transition: border-color .18s;
}
.adm-field input:focus, .adm-field textarea:focus { outline: none; border-color: var(--red); }
.adm-field textarea { resize: vertical; min-height: 60px; font-family: 'Montserrat'; line-height: 1.5; }

.adm-sub {
  padding: 14px 16px;
  border-left: 3px solid var(--grey);
  background: #fafafa;
  display: flex; flex-direction: column; gap: 12px;
}
.adm-sub-label { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; color: var(--red); }

/* ============ PARTNERS ============ */
.partners { overflow: hidden; }
.marquee {
  margin-top: 48px;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.partner-tile {
  flex-shrink: 0;
  width: 220px; height: 120px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  border-right: 1px solid var(--grey-line);
  background: #fff;
  position: relative;
}
.partner-tile:hover .partner-name { color: var(--red); }
.partner-name {
  font-family: 'Play'; font-weight: 700; font-size: 19px;
  color: var(--black);
  transition: color .18s;
  letter-spacing: 0.02em;
}
.partner-sub {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-mut);
}
.partner-tile img {
  max-width: 70%; max-height: 50%;
  object-fit: contain;
  filter: grayscale(1);
  transition: filter .18s, opacity .18s;
  opacity: 0.7;
}
.partner-tile:hover img { filter: grayscale(0); opacity: 1; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ TRUST BAR ============ */
.trust-bar {
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 12px 0;
}
.trust-inner {
  display: flex; justify-content: center; align-items: center;
  gap: 36px; flex-wrap: wrap;
}
.trust-item {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Montserrat'; font-weight: 600; font-size: 10.5px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}
.trust-bullet { color: var(--red); font-size: 8px; }

/* ============ STICKY MOBILE CTA ============ */
.sticky-cta {
  display: none;
  position: fixed; left: 16px; right: 16px; bottom: 16px;
  z-index: 80;
  padding: 16px 22px;
  background: var(--red); color: #fff;
  font-family: 'Montserrat'; font-weight: 600;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none;
  align-items: center; justify-content: space-between;
  gap: 12px;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  box-shadow: 0 8px 28px rgba(155,20,39,0.4);
  transform: translateY(120%);
  transition: transform .25s ease;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-arr { font-family: 'Play'; font-size: 14px; }
@media (max-width: 720px) {
  .sticky-cta { display: flex; }
}

/* ============ EXIT INTENT MODAL ============ */
.exit-backdrop {
  position: fixed; inset: 0; z-index: 120;
  background: rgba(25,24,24,0.7); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: ccFadeIn .25s ease;
}
.exit-modal {
  background: #fff; max-width: 480px; width: 100%;
  padding: 44px 40px;
  position: relative;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}
.exit-close { position: absolute; top: 14px; right: 18px; background: none; border: 0; font-size: 26px; cursor: pointer; color: var(--text-mut); line-height: 1; }
.exit-close:hover { color: var(--red); }
.exit-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--red); margin-bottom: 14px;
}
.exit-eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--red); }
.exit-title { font-family: 'Play'; font-weight: 700; font-size: 26px; margin: 0 0 12px; letter-spacing: -0.01em; line-height: 1.15; }
.exit-text { font-size: 13.5px; color: var(--text-mut); line-height: 1.7; margin: 0 0 24px; }
.exit-form { display: flex; flex-direction: column; gap: 12px; }
.exit-form input {
  font-family: 'Montserrat'; font-weight: 500; font-size: 13px;
  border: 1px solid var(--grey-line); background: #fff;
  padding: 13px 16px; color: var(--black); border-radius: 0;
}
.exit-form input:focus { outline: none; border-color: var(--red); }
.exit-cta {
  display: inline-flex; align-items: center; justify-content: space-between;
  font-family: 'Montserrat'; font-weight: 600; font-size: 11.5px;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 14px 22px; background: var(--red); color: #fff;
  border: 0; cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 9px 100%, 0 calc(100% - 9px));
  transition: background .18s;
}
.exit-cta span { font-family: 'Play'; font-size: 14px; }
.exit-cta:hover { background: var(--red-dark); }
.exit-foot { font-size: 11px; color: var(--text-mut); margin-top: 12px; line-height: 1.5; }
.exit-check {
  width: 60px; height: 60px; margin: 0 auto 22px;
  border: 1.5px solid var(--red); border-radius: 50%;
  color: var(--red); font-family: 'Play'; font-weight: 700; font-size: 26px;
  display: flex; align-items: center; justify-content: center;
}

/* ============ LEAD MAGNET ============ */
.lead-magnet { padding: 96px 0; }
.lm-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.lm-left .sec-h2 { margin-bottom: 18px; }
.lm-list {
  list-style: none; padding: 0; margin: 28px 0 0;
  display: flex; flex-direction: column; gap: 12px;
}
.lm-list li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 13.5px; color: var(--black); line-height: 1.6;
}
.lm-bullet { width: 8px; height: 8px; background: var(--red); transform: rotate(45deg); margin-top: 7px; flex-shrink: 0; }

.lm-card {
  background: #fff;
  padding: 36px;
  position: relative;
  border: 1px solid var(--grey-line);
  display: flex; flex-direction: column; gap: 28px;
}
.lm-card-doc {
  display: flex; align-items: center; justify-content: center;
  padding: 24px 0 12px;
}
.lm-card-pages {
  position: relative;
  width: 180px; height: 240px;
}
.lm-page, .lm-page-front {
  position: absolute; inset: 0;
  background: #fff;
  border: 1px solid var(--grey-line);
  box-shadow: 0 6px 20px rgba(25,24,24,0.06);
}
.lm-page:nth-child(1) { transform: rotate(-6deg) translateX(-10px); }
.lm-page:nth-child(2) { transform: rotate(4deg) translateX(8px); }
.lm-page-front { padding: 24px 18px; display: flex; flex-direction: column; gap: 8px; }
.lm-page-front::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; background: var(--red);
}
.lm-page-bar { width: 75%; height: 8px; background: #eee; margin-bottom: 4px; }
.lm-page-bar.short { width: 45%; }
.lm-page-title { font-family: 'Play'; font-weight: 700; font-size: 14px; margin-top: auto; line-height: 1.25; }
.lm-page-pdf { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; color: var(--red); margin-top: 6px; }

.lm-form { display: flex; flex-direction: column; gap: 8px; }
.lm-form label { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; color: var(--text-mut); }
.lm-form input {
  font-family: 'Montserrat'; font-weight: 500; font-size: 13px;
  border: 1px solid var(--grey-line); background: #fff;
  padding: 13px 16px; color: var(--black); border-radius: 0;
  margin-bottom: 6px;
}
.lm-form input:focus { outline: none; border-color: var(--red); }
.lm-cta {
  display: inline-flex; align-items: center; justify-content: space-between;
  font-family: 'Montserrat'; font-weight: 600; font-size: 11.5px;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 14px 22px; background: var(--red); color: #fff;
  border: 0; cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 9px 100%, 0 calc(100% - 9px));
  transition: background .18s;
}
.lm-cta span { font-family: 'Play'; font-size: 14px; }
.lm-cta:hover { background: var(--red-dark); }
.lm-foot { font-size: 10.5px; color: var(--text-mut); margin-top: 8px; line-height: 1.5; }

.lm-done { text-align: center; padding: 28px 0; }
.lm-check { width: 56px; height: 56px; margin: 0 auto 16px; border: 1.5px solid var(--red); border-radius: 50%; color: var(--red); font-family: 'Play'; font-weight: 700; font-size: 22px; display: flex; align-items: center; justify-content: center; }
.lm-done-title { font-family: 'Play'; font-weight: 700; font-size: 18px; margin-bottom: 6px; }
.lm-done-text { font-size: 13px; color: var(--text-mut); }

@media (max-width: 980px) {
  .lm-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ============ COOKIE BANNER ============ */
.cc-banner {
  position: fixed; left: 24px; right: 24px; bottom: 24px;
  z-index: 100;
  background: #ffffff;
  border: 1px solid var(--grey-line);
  box-shadow: 0 16px 48px rgba(0,0,0,0.18);
  animation: ccSlideUp .3s ease;
  max-width: 1240px; margin: 0 auto;
}
@keyframes ccSlideUp { from { transform: translateY(20px); opacity: 0 } to { transform: translateY(0); opacity: 1 } }
.cc-banner-inner {
  display: grid; grid-template-columns: 1fr auto;
  gap: 28px; padding: 22px 28px;
  align-items: center;
}
.cc-banner-title { font-family: 'Play'; font-weight: 700; font-size: 14px; color: var(--black); margin-bottom: 4px; }
.cc-banner-text p { font-size: 12.5px; color: var(--text-mut); line-height: 1.6; margin: 0; max-width: 720px; }
.cc-banner-text a { color: var(--red); text-decoration: none; border-bottom: 1px solid var(--red); }
.cc-banner-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.cc-btn {
  font-family: 'Montserrat'; font-weight: 600; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 12px 18px; border: 0; cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
  white-space: nowrap;
}
.cc-btn-ghost { background: transparent; color: var(--text-mut); border: 1px solid var(--grey-line); }
.cc-btn-ghost:hover { color: var(--red); border-color: var(--red); }
.cc-btn-primary {
  background: var(--red); color: #fff;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.cc-btn-primary:hover { background: var(--red-dark); }

/* Cookie settings modal */
.cc-modal-backdrop {
  position: fixed; inset: 0; z-index: 110;
  background: rgba(25,24,24,0.55); backdrop-filter: blur(2px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: ccFadeIn .2s ease;
}
@keyframes ccFadeIn { from { opacity: 0 } to { opacity: 1 } }
.cc-modal {
  background: #fff; max-width: 560px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  padding: 32px;
}
.cc-modal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.cc-modal-head h3 { font-family: 'Play'; font-weight: 700; font-size: 22px; margin: 0; letter-spacing: -0.01em; }
.cc-close { background: none; border: 0; font-size: 26px; line-height: 1; cursor: pointer; color: var(--text-mut); padding: 0; }
.cc-close:hover { color: var(--red); }
.cc-modal-intro { font-size: 12.5px; color: var(--text-mut); line-height: 1.65; margin: 0 0 28px; }

.cc-category { padding: 16px 0; border-top: 1px solid var(--grey-line); }
.cc-cat-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.cc-cat-title { font-family: 'Play'; font-weight: 700; font-size: 14px; color: var(--black); }
.cc-cat-text { font-size: 12px; color: var(--text-mut); line-height: 1.6; }

.cc-toggle {
  width: 42px; height: 22px; background: #d8d8d8;
  border: 0; border-radius: 999px; cursor: pointer;
  padding: 0; position: relative; flex-shrink: 0;
  transition: background .18s;
}
.cc-toggle.on { background: var(--red); }
.cc-toggle.cc-toggle-locked { background: #999; cursor: not-allowed; opacity: 0.7; }
.cc-toggle span {
  position: absolute; left: 3px; top: 3px;
  width: 16px; height: 16px;
  background: #fff; border-radius: 50%;
  transition: transform .18s;
}
.cc-toggle.on span { transform: translateX(20px); }
.cc-toggle.cc-toggle-locked span { transform: translateX(20px); }

.cc-actions {
  display: flex; gap: 8px; flex-wrap: wrap;
  padding-top: 24px; margin-top: 8px;
  border-top: 1px solid var(--grey-line);
}
.cc-actions .cc-btn { flex: 1; min-width: 120px; }

@media (max-width: 720px) {
  .cc-banner { left: 12px; right: 12px; bottom: 12px; }
  .cc-banner-inner { grid-template-columns: 1fr; padding: 20px; }
  .cc-banner-actions { flex-direction: column; }
  .cc-banner-actions .cc-btn { width: 100%; }
  .cc-modal { padding: 24px 20px; }
  .cc-actions { flex-direction: column; }
}
/* CTA corners */
body[data-cta="sharp"] .btn-primary { clip-path: none; }
body[data-cta="sharp"] .btn-ghost { border-radius: 0; }
body[data-cta="rounded"] .btn-primary { clip-path: none; border-radius: 999px; }
body[data-cta="rounded"] .btn-ghost { border-radius: 999px; }
body[data-cta="rounded"] .wpb { /* phonebox keeps clip-path */ }
body[data-cta="rounded"] .adm-btn-save { clip-path: none; border-radius: 999px; }
body[data-cta="rounded"] .adm-fab { clip-path: none; border-radius: 999px; }
body[data-cta="rounded"] .tl-marker { clip-path: none; border-radius: 50%; }
body[data-cta="rounded"] .warum-phonebox { clip-path: none; border-radius: 12px; }
body[data-cta="sharp"] .tl-marker { clip-path: none; }
body[data-cta="sharp"] .adm-fab { clip-path: none; }
body[data-cta="sharp"] .adm-btn-save { clip-path: none; }
body[data-cta="sharp"] .warum-phonebox { clip-path: none; }

/* Card styles */
body[data-card="ghost"] .leistung-card { border-left: 0; padding-top: 32px; }
body[data-card="ghost"] .leistung-card::after {
  content: attr(data-num); position: absolute; right: -6px; bottom: -38px;
  font-family: 'Play'; font-weight: 700; font-size: 150px;
  color: var(--red); opacity: 0.08; line-height: 1; pointer-events: none;
}
body[data-card="minimal"] .leistung-card { border-left: 0; background: transparent; padding-left: 0; padding-right: 0; }
body[data-card="minimal"] .leistung-card:hover { transform: none; box-shadow: none; }
body[data-card="minimal"] .leistung-card { border-top: 1px solid var(--grey-line); padding-top: 28px; }
body[data-card="minimal"] .lc-target { background: transparent; border-left: 2px solid var(--red); padding-left: 14px; }

/* Hero decoration */
body[data-hdeco="grid"] .hero-triangle, body[data-hdeco="grid"] .hero-web { display: none; }
body[data-hdeco="grid"] .hero-dots {
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 1;
}
body[data-hdeco="none"] .hero-triangle,
body[data-hdeco="none"] .hero-dots,
body[data-hdeco="none"] .hero-vline,
body[data-hdeco="none"] .hero-web { display: none; }

/* Hero tags toggle */
body[data-tags="off"] .hero-tags { display: none; }

/* ============ Responsive ============ */
@media (max-width: 980px) {
  .site-nav { display: none; }
  .header-phone { display: none; }
  .ablauf-grid { grid-template-columns: 1fr; gap: 48px; }
  .ablauf-aside { position: static; max-width: 360px; }
  .leistung-grid, .warum-list, .stimmen-grid { grid-template-columns: 1fr; }
  .warum-grid { grid-template-columns: 1fr; gap: 48px; }
  .warum-aside { position: static; }
  .warum-item { border-right: 0; }
  .kontakt-grid { grid-template-columns: 1fr; gap: 48px; }
  .kf-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-v3 .hero-inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .section { padding: var(--section-pad-mobile, 64px) 0; }
  .hero { padding: 80px 0 96px; }
  .hero-tags { gap: 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .acc-body { padding-left: 0; }
  .adm-panel { width: 100vw; }
  .header-inner { gap: 12px; }
  .header-right { gap: 12px; }
  .header-right .btn { padding: 12px 16px; font-size: 10.5px; }
  .trust-inner { gap: 16px; flex-direction: column; }
  .trust-item { font-size: 9.5px; }
}
