/* ============================================================
   IMPULSIV FITNESS — Design System & Styles
   Dark / Gold / urban. Built for conversion.
   ============================================================ */

/* ---------- 0. Fonts (selbst gehostet – kein Google-Request, DSGVO) ---------- */
@font-face {
  font-family: 'Anton'; font-style: normal; font-weight: 400; font-display: swap;
  src: url('../assets/fonts/anton-v27-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap;
  src: url('../assets/fonts/inter-v20-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap;
  src: url('../assets/fonts/inter-v20-latin-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap;
  src: url('../assets/fonts/inter-v20-latin-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter'; font-style: normal; font-weight: 700; font-display: swap;
  src: url('../assets/fonts/inter-v20-latin-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter'; font-style: normal; font-weight: 800; font-display: swap;
  src: url('../assets/fonts/inter-v20-latin-800.woff2') format('woff2');
}

/* ---------- 1. Design Tokens ---------- */
:root {
  /* Surfaces */
  --bg:            #0a0a0c;
  --bg-2:          #0f0f13;
  --bg-3:          #16161c;
  --card:          #14141a;
  --card-2:        #1b1b23;
  --line:          rgba(255, 255, 255, 0.08);
  --line-strong:   rgba(255, 255, 255, 0.14);

  /* Gold (from logo) */
  --gold:          #d4af5a;
  --gold-hi:       #ecd08a;
  --gold-lo:       #a9843a;
  --gold-grad:     linear-gradient(135deg, #ecd08a 0%, #d4af5a 45%, #b08a3c 100%);

  /* Text */
  --ink:           #f5f2ea;
  --ink-soft:      #cdc9c1;
  --ink-mut:       #8f8d94;
  --ink-faint:     #63626a;

  /* Utility */
  --wa:            #25d366;
  --ok:            #4ade80;
  --shadow:        0 24px 60px -20px rgba(0, 0, 0, 0.75);
  --shadow-gold:   0 20px 50px -18px rgba(212, 175, 90, 0.35);
  --radius:        18px;
  --radius-sm:     12px;
  --radius-lg:     28px;

  /* Rhythm */
  --container:     1200px;
  --gutter:        clamp(20px, 5vw, 40px);
  --section-y:     clamp(72px, 10vw, 140px);

  /* Type */
  --font-display:  'Anton', 'Arial Narrow', sans-serif;
  --font-body:     'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --ease:          cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }
ul { list-style: none; }
::selection { background: var(--gold); color: #1a1300; }

/* ---------- 3. Typography ---------- */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.7rem, 8vw, 5.6rem); }
h2 { font-size: clamp(2.1rem, 5.2vw, 3.9rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.9rem); }
p  { color: var(--ink-soft); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-weight: 700; font-size: 0.78rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px;
  background: var(--gold-grad); border-radius: 2px;
}
.eyebrow.center::before { display: none; }

.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--gold);
}
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink-soft); }
.muted { color: var(--ink-mut); }

/* ---------- 4. Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); position: relative; }
.section--tint { background: var(--bg-2); }
.section-head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 72px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 20px; }
.section-head p { margin-top: 20px; font-size: 1.1rem; }

.grid { display: grid; gap: clamp(18px, 2.4vw, 28px); }

/* ---------- 5. Buttons ---------- */
.btn {
  --bh: 58px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: var(--bh); padding: 0 30px;
  border-radius: 999px;
  font-weight: 700; font-size: 1rem; letter-spacing: 0.01em;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.2s;
  will-change: transform; white-space: nowrap;
}
.btn svg { flex: none; width: 20px; height: 20px; transition: transform 0.25s var(--ease); }
.btn--primary {
  background: var(--gold-grad); color: #1c1400;
  box-shadow: var(--shadow-gold);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 0 0 3px rgba(212,175,90,0.22), 0 28px 60px -16px rgba(212,175,90,0.55); }
.btn--primary:hover svg { transform: translateX(4px); }
.btn--ghost {
  background: rgba(255,255,255,0.04); color: var(--ink);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { transform: translateY(-3px); border-color: var(--gold); color: var(--gold-hi); }
.btn--wa { background: var(--wa); color: #04220f; box-shadow: 0 20px 44px -18px rgba(37,211,102,0.55); }
.btn--wa:hover { transform: translateY(-3px); }
.btn--lg { --bh: 66px; padding: 0 40px; font-size: 1.08rem; }
.btn--block { display: flex; width: 100%; }
.btn--sm { --bh: 46px; padding: 0 20px; font-size: 0.9rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; color: var(--gold);
  transition: gap 0.25s var(--ease), color 0.2s;
}
.link-arrow svg { flex: none; width: 18px; height: 18px; }
.link-arrow:hover { gap: 14px; color: var(--gold-hi); }

/* ---------- 6. Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(10,10,12,0.82);
  backdrop-filter: blur(14px) saturate(1.1);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -18px rgba(0,0,0,0.9);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 24px; }
.nav__logo img { height: 40px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a {
  font-size: 0.92rem; font-weight: 600; color: var(--ink-soft);
  letter-spacing: 0.01em; transition: color 0.2s; position: relative;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--gold-grad); transition: width 0.28s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; color: var(--ink); font-size: 0.95rem;
}
.nav__phone svg { width: 18px; height: 18px; color: var(--gold); }
.nav__burger { display: none; width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--line-strong); }
.nav__burger span { display: block; width: 20px; height: 2px; background: var(--ink); margin: 4px auto; transition: 0.3s; }
/* 5 Nav-Reiter (nur Kundenseiten, nicht die kompakte B2B-Nav auf firmen.html):
   im Zwischenbereich Telefonnummer ausblenden + Links kompakter, sonst Zeilenumbruch */
@media (max-width: 1260px) and (min-width: 1000px) {
  .header:not(.header--b2b) .nav__links { gap: 20px; }
  .header:not(.header--b2b) .nav__links a { font-size: 0.88rem; }
  .header:not(.header--b2b) .nav__phone { display: none; }
}
/* Unter 1000px reicht der Platz nicht mehr (5 Reiter bzw. B2B-Nav + Telefon) -> Burger-Menü
   (nur Nav; Sticky-Bar etc. bleiben beim 820er-Block) */
@media (max-width: 999px) {
  .nav__links, .nav__phone { display: none; }
  .nav__burger { display: block; }
}

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(8,8,10,0.98); backdrop-filter: blur(10px);
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
  padding: var(--gutter);
  transform: translateX(100%); transition: transform 0.4s var(--ease);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { font-family: var(--font-display); font-size: 2rem; text-transform: uppercase; color: var(--ink); padding: 10px 0; border-bottom: 1px solid var(--line); }
.mobile-menu a:last-of-type { border: none; }
.mobile-menu .btn { margin-top: 24px; }

/* ---------- 7. Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; padding-top: 78px; }
.hero__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__poster, .hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__poster { animation: kenburns 26s var(--ease) infinite alternate; }
.hero__video { opacity: 0; transition: opacity 1.1s ease; }
.hero__video.is-playing { opacity: 1; }
@keyframes kenburns { from { transform: scale(1.03); } to { transform: scale(1.08); } }
@media (prefers-reduced-motion: reduce) {
  .hero__video { display: none; }
  .hero__poster { animation: none; }
}
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(10,10,12,0.94) 0%, rgba(10,10,12,0.72) 42%, rgba(10,10,12,0.4) 74%, rgba(10,10,12,0.6) 100%),
    linear-gradient(180deg, rgba(10,10,12,0.6) 0%, rgba(10,10,12,0.2) 32%, rgba(10,10,12,0.4) 68%, var(--bg-2) 100%); /* dunkel links (Textseite), endet in --bg-2 */
}
.hero__inner {
  position: relative; z-index: 2; padding-block: clamp(40px, 8vh, 90px);
  /* Am linken BILDSCHIRMRAND verankert, nicht am zentrierten Container */
  max-width: none; width: 100%;
  display: grid; grid-template-columns: minmax(0, 640px); justify-content: start; /* minmax(0,…): nowrap-Buttons dürfen den Track nicht über den Viewport drücken */
  padding-left: clamp(24px, 11vw, 230px);
}
.hero h1 { margin: 18px 0 0; font-size: clamp(2.3rem, 4.6vw, 3.7rem); line-height: 1.04; }
@media (max-width: 920px) {
  .hero__inner { justify-content: start; grid-template-columns: minmax(0, 880px); padding-left: var(--gutter); }
}
.hero h1 .gold-text { display: inline-block; }
.hero__sub { margin-top: 26px; max-width: 560px; font-size: clamp(1.05rem, 1.7vw, 1.28rem); color: var(--ink-soft); }
.hero__cta { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 14px; }
.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.stars svg { width: 17px; height: 17px; }

.scroll-cue {
  position: absolute; left: 50%; bottom: 26px; z-index: 3; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-mut);
}
.scroll-cue span { width: 1px; height: 34px; background: linear-gradient(var(--gold), transparent); animation: cue 2s ease-in-out infinite; }
@keyframes cue { 0%,100% { opacity: 0.3; transform: scaleY(0.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* ---------- 9. Cards / generic ---------- */
.card:hover { transform: translateY(-6px); border-color: var(--line-strong); box-shadow: var(--shadow); }


/* ---------- 11. Pain / empathy ---------- */
.pain-grid { grid-template-columns: repeat(2, 1fr); }
.pain {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 24px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--card); transition: border-color 0.3s, transform 0.3s var(--ease);
}
.pain:hover { border-color: rgba(212,175,90,0.35); transform: translateY(-4px); }
.pain__ic { flex: none; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(212,175,90,0.12); color: var(--gold); }
.pain__ic svg { width: 24px; height: 24px; }
.pain h4 { font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.pain p { font-size: 0.95rem; color: var(--ink-mut); }

/* ---------- 12. Services ---------- */
.services { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 1fr; }
.svc {
  position: relative; overflow: hidden; border-radius: var(--radius);
  border: 1px solid var(--line); min-height: 340px; display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform 0.4s var(--ease), border-color 0.4s;
}
.svc--3 { grid-column: span 3; min-height: 440px; }
.svc--2 { grid-column: span 2; min-height: 400px; }
.svc-more { margin-top: clamp(18px, 3vw, 26px); text-align: center; color: var(--ink-mut); font-size: 0.95rem; }
.svc-more strong { color: var(--ink-soft); }
.svc__img { position: absolute; inset: 0; z-index: 0; }
.svc__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.svc__scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(10,10,12,0.1) 0%, rgba(10,10,12,0.4) 45%, rgba(10,10,12,0.94) 100%); }
.svc__body { position: relative; z-index: 2; padding: clamp(22px, 3vw, 34px); }
.svc__tag { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.svc h3 { color: #fff; }
.svc p { margin-top: 10px; color: var(--ink-soft); font-size: 0.98rem; max-width: 46ch; }
.svc__link { margin-top: 16px; display: inline-flex; }
.svc:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.svc:hover .svc__img img { transform: scale(1.07); }

/* Herzstück-Karte: EMS sticht als Kernangebot heraus */
.svc--feat { border-color: rgba(212, 175, 90, 0.5); }
.svc--feat:hover { border-color: rgba(212, 175, 90, 0.8); }
.svc--feat .svc__tag { background: var(--gold); color: #131316; padding: 4px 10px; border-radius: 4px; }

/* ---------- 13. EMS explainer ---------- */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.split__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); }
.split__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.split__badge {
  position: absolute; left: 20px; bottom: 20px; z-index: 2;
  background: rgba(10,10,12,0.72); backdrop-filter: blur(10px);
  border: 1px solid var(--line-strong); border-radius: 16px; padding: 16px 20px;
}
.split__badge b { font-family: var(--font-display); font-size: 2rem; color: var(--gold); display: block; line-height: 1; }
.split__badge span { font-size: 0.82rem; color: var(--ink-soft); }

.steps { display: grid; gap: 18px; margin-top: 30px; }
.step { display: flex; gap: 18px; align-items: flex-start; }
.step__n { flex: none; width: 44px; height: 44px; border-radius: 12px; background: var(--gold-grad); color: #1c1400; display: grid; place-items: center; font-family: var(--font-display); font-size: 1.3rem; }
.step h4 { font-size: 1.1rem; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.step p { font-size: 0.96rem; color: var(--ink-mut); }

/* ---------- 14. Process / Ablauf ---------- */
.process { grid-template-columns: repeat(4, 1fr); counter-reset: step; }
.proc { position: relative; padding: 30px 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); }
.proc__n { font-family: var(--font-display); font-size: 3rem; line-height: 1; color: rgba(212,175,90,0.28); }
.proc h4 { margin: 10px 0 8px; font-size: 1.12rem; font-weight: 700; color: var(--ink); }
.proc p { font-size: 0.94rem; color: var(--ink-mut); }
.proc__arrow { position: absolute; top: 44px; right: -14px; z-index: 2; color: var(--gold); opacity: 0.5; }
.proc:last-child .proc__arrow { display: none; }

/* ---------- 15. Testimonials ---------- */
.tst-grid { grid-template-columns: repeat(3, 1fr); }
.tst { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); display: flex; flex-direction: column; gap: 16px; }
.tst .stars svg { width: 16px; height: 16px; }
.tst__quote { color: var(--ink-soft); font-size: 1rem; line-height: 1.6; flex: 1; }
.tst__who { display: flex; align-items: center; gap: 12px; }
.tst__av { width: 44px; height: 44px; border-radius: 50%; background: var(--gold-grad); color: #1c1400; display: grid; place-items: center; font-family: var(--font-display); font-size: 1.1rem; }
.tst__name { font-weight: 700; color: var(--ink); font-size: 0.95rem; }
.tst__meta { font-size: 0.82rem; color: var(--ink-mut); }

/* ---------- 16. Team ---------- */

/* ---------- 17. FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 4px; text-align: left; font-size: 1.1rem; font-weight: 700; color: var(--ink); }
.faq__q:hover { color: var(--gold-hi); }
.faq__ic { flex: none; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line-strong); display: grid; place-items: center; transition: transform 0.35s var(--ease), background 0.3s, color 0.3s; }
.faq__ic svg { width: 16px; height: 16px; }
.faq__item.open .faq__ic { transform: rotate(45deg); background: var(--gold); color: #1c1400; border-color: var(--gold); }
.faq__a { overflow: hidden; max-height: 0; transition: max-height 0.4s var(--ease); }
.faq__a p { padding: 0 4px 26px; color: var(--ink-mut); font-size: 1rem; }

/* ---------- 18. CTA band ---------- */

/* ---------- 19. Contact / Lead form ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.contact-info { display: grid; gap: 12px; }
.info-row { display: flex; gap: 16px; align-items: flex-start; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--card); transition: border-color 0.3s; }
.info-row:hover { border-color: var(--line-strong); }
.info-row__ic { flex: none; width: 46px; height: 46px; border-radius: 12px; background: rgba(212,175,90,0.12); color: var(--gold); display: grid; place-items: center; }
.info-row__ic svg { width: 22px; height: 22px; }
.info-row__label { font-size: 0.8rem; color: var(--ink-mut); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; }
.info-row__val { font-size: 1.08rem; font-weight: 600; color: var(--ink); margin-top: 2px; }
.info-row a.info-row__val:hover { color: var(--gold-hi); }
.hours { margin-top: 6px; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--card); }
.hours h3 { font-family: var(--font-body); font-size: 0.8rem; color: var(--ink-mut); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; margin-bottom: 14px; }
.hours dl { display: grid; grid-template-columns: auto 1fr; gap: 8px 20px; }
.hours dt { color: var(--ink-soft); font-weight: 600; font-size: 0.95rem; }
.hours dd { color: var(--ink); text-align: right; font-weight: 600; font-size: 0.95rem; }
.hours dd.closed { color: var(--ink-faint); }
.hours dt.is-today, .hours dd.is-today { color: #4ade80; }
.hours dt.is-today { position: relative; padding-left: 14px; }
.hours dt.is-today::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 7px; height: 7px; border-radius: 50%; background: #4ade80; }

/* Live-Öffnungsstatus im Kontakt-Block */
.open-status { display: inline-flex; align-items: center; gap: 6px; text-transform: none; letter-spacing: 0; font-weight: 600; font-size: 0.8rem; color: var(--ink-soft); }
.open-status::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--ink-faint); }
.open-status--open { color: #4ade80; }
.open-status--open::before { background: #4ade80; }
.open-status[hidden] { display: none; } /* Author-display würde sonst das hidden-Attribut überschreiben */

/* Zeithinweis unter den Mini-Steps */
.ministeps-note { text-align: center; margin-top: 12px; font-size: 0.88rem; color: var(--ink-mut); }

/* Erreichbarkeit aus ganz Wien (nur belegbare Angaben!) */
.reach { margin-top: 14px; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--card); }
.reach h3 { font-family: var(--font-body); font-size: 0.8rem; color: var(--ink-mut); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; margin-bottom: 12px; }
.reach ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.reach li { color: var(--ink-soft); font-size: 0.93rem; padding-left: 18px; position: relative; }
.reach li::before { content: ''; position: absolute; left: 0; top: 0.5em; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); opacity: 0.7; }
.reach li b { color: var(--ink); }
.reach > p { margin-top: 12px; font-size: 0.9rem; color: var(--ink-mut); }

/* Robert-Zitat vor der Deal-Karte */
.coach-note { display: flex; align-items: center; gap: 16px; max-width: 640px; margin: 0 auto clamp(22px, 3vw, 34px); }
.coach-note img,
.coach-note__av { width: 64px; height: 64px; border-radius: 50%; flex: none; border: 2px solid rgba(212, 175, 90, 0.5); }
.coach-note img { object-fit: cover; object-position: 50% 32%; }
.coach-note__av { display: grid; place-items: center; font-family: var(--font-display); font-size: 1.7rem; color: var(--gold); background: var(--card); }
.coach-note blockquote { margin: 0; font-size: 0.98rem; color: var(--ink-soft); font-style: italic; }
.coach-note figcaption { margin-top: 6px; font-size: 0.85rem; font-weight: 600; color: var(--gold); }

.form-card { background: var(--card); border: 1px solid var(--line-strong); border-radius: var(--radius-lg); padding: clamp(26px, 3.5vw, 42px); box-shadow: var(--shadow); }
.form-card h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
.form-card > p { margin-top: 10px; color: var(--ink-mut); font-size: 0.98rem; }
.form { margin-top: 26px; display: grid; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label { font-size: 0.82rem; font-weight: 700; color: var(--ink-soft); letter-spacing: 0.02em; }
.field label .req { color: var(--gold); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border-radius: var(--radius-sm);
  background: var(--bg-2); border: 1px solid var(--line-strong); color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,90,0.16); }
.field textarea { resize: vertical; min-height: 92px; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__hint { font-size: 0.82rem; color: var(--ink-mut); text-align: center; }
.form__hint a { color: var(--gold); }
.form__divider { display: flex; align-items: center; gap: 14px; color: var(--ink-faint); font-size: 0.82rem; margin: 4px 0; }
.form__divider::before, .form__divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.form-note { display: none; padding: 14px 16px; border-radius: var(--radius-sm); font-size: 0.92rem; font-weight: 600; }
.form-note.show { display: block; }
.form-note.ok { background: rgba(74,222,128,0.12); color: var(--ok); border: 1px solid rgba(74,222,128,0.3); }

/* ---------- 20. Map ---------- */
.map-wrap { margin-top: 26px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); filter: grayscale(0.35) contrast(1.05) brightness(0.85); }
.map-wrap iframe { width: 100%; height: 280px; border: 0; display: block; }

/* ---------- 21. Footer ---------- */
.footer { background: var(--bg-2); border-top: 1px solid var(--line); padding-top: 70px; }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 50px; }
.footer__brand img { height: 44px; margin-bottom: 18px; }
.footer__brand p { color: var(--ink-mut); font-size: 0.95rem; max-width: 34ch; }
.footer__socials { display: flex; gap: 12px; margin-top: 20px; }
.footer__socials a { width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--line-strong); display: grid; place-items: center; color: var(--ink-soft); transition: 0.25s; }
.footer__socials a:hover { color: var(--gold); border-color: var(--gold); transform: translateY(-3px); }
.footer__socials svg { width: 20px; height: 20px; }
.footer h5, .footer__col h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-mut); font-weight: 700; margin-bottom: 18px; }
.footer__col a + h4 { margin-top: 22px; }
.footer__col a, .footer__col p { display: block; color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 12px; transition: color 0.2s; }
.footer__col a:hover { color: var(--gold); }
.footer__bottom { border-top: 1px solid var(--line); padding: 24px 0; display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center; }
.footer__bottom p { font-size: 0.85rem; color: var(--ink-mut); }
.footer__bottom nav { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.footer__bottom nav a { font-size: 0.85rem; color: var(--ink-mut); }
.footer__bottom nav a:hover { color: var(--gold); }

/* ---------- 22. Sticky mobile action bar ---------- */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; grid-template-columns: 0.85fr 0.85fr 1.5fr; gap: 1px;
  background: var(--line); border-top: 1px solid var(--line-strong);
  padding-bottom: env(safe-area-inset-bottom);
}
.mobile-bar a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; min-height: 54px; padding: 9px 6px; background: var(--bg-2); font-size: 0.72rem; font-weight: 700; color: var(--ink-soft); }
.mobile-bar a svg { width: 20px; height: 20px; }
.mobile-bar a.call svg { color: var(--gold); }
.mobile-bar a.wa svg { color: var(--wa); }
.mobile-bar a.book { background: var(--gold-grad); color: #1c1400; }

/* ---------- 23. Floating WhatsApp ---------- */
.fab {
  position: fixed; right: 20px; bottom: 24px; z-index: 88;
  width: 58px; height: 58px; border-radius: 50%; background: var(--wa);
  display: grid; place-items: center; box-shadow: 0 14px 34px -10px rgba(37,211,102,0.6);
  transition: transform 0.3s var(--ease);
}
.fab:hover { transform: scale(1.08) translateY(-2px); }
.fab svg { width: 30px; height: 30px; color: #fff; }
.fab::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--wa); animation: ping 2.4s var(--ease) infinite; }
@keyframes ping { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(1.6); opacity: 0; } }

/* ---------- 24. Scroll reveal (only hidden when JS is active) ---------- */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

/* ---------- 25. Responsive ---------- */
@media (max-width: 1000px) {
  .services { grid-template-columns: repeat(2, 1fr); }
  .svc--3 { grid-column: span 2; min-height: 380px; }
  .svc--2 { grid-column: span 1; }
  .process { grid-template-columns: repeat(2, 1fr); }
  .proc__arrow { display: none; }
  .tst-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 820px) {
  .nav__links, .nav__phone { display: none; }
  .nav__burger { display: block; }
  .nav__cta .btn { display: none; }
  .split { grid-template-columns: 1fr; }
  .split__media { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-grid > .form-card { order: -1; } /* Anfrage zuerst – Sticky-Bar-Taps landen direkt auf dem Formular */
  .stats { grid-template-columns: repeat(2, 1fr); }
  .pain-grid { grid-template-columns: 1fr; }
  .tst-grid { grid-template-columns: 1fr; }
  .mobile-bar { display: grid; }
  /* Ein Fokus above the fold: Anrufen liegt bereits in der Sticky-Bar (gleicher Breakpoint) */
  body:not(.no-mobilebar) .hero__cta .btn--ghost { display: none; }
  .fab { display: none; } /* Sticky-Bar deckt WhatsApp bereits ab – kein doppelter Einstieg */
  body { padding-bottom: 64px; }
  .footer__top { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .scroll-cue { display: none; } /* kollidiert mit Hero-Rating; Sticky-Bar überlagert ihn ohnehin */
  /* Mobile-Text-Diät (Zakir 16.08.): Stütz-Zeilen raus, Überschriften tragen allein */
  .section-head p, .reach > p, .ministeps-note { display: none; }
  .services { grid-template-columns: 1fr; }
  .svc--3, .svc--2 { grid-column: span 1; min-height: 300px; }
}
@media (max-width: 480px) {
  .field--row { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
  .btn { white-space: normal; text-align: center; } /* lange CTA-Texte dürfen umbrechen statt abgeschnitten zu werden */
  .stats { grid-template-columns: 1fr 1fr; }
}

/* ---------- 26. Conversion components (redesign) ---------- */
/* Micro-trust / risk-reversal line */
.microtrust {
  display: flex; flex-wrap: wrap; width: auto; max-width: 100%; align-items: center; gap: 9px;
  margin-top: 16px; font-size: 0.88rem; font-weight: 600; color: var(--ink-mut);
}
.microtrust svg { flex: none; width: 17px; height: 17px; color: var(--gold); }
.microtrust.center { justify-content: center; margin-inline: auto; margin-top: 16px; }

/* Hero learn text-link */

/* Reassurance band ("zu unfit") */
.reassure {
  display: flex; gap: 22px; align-items: center;
  padding: clamp(24px, 3.5vw, 38px); border-radius: var(--radius-lg);
  background: linear-gradient(120deg, rgba(212,175,90,0.08), rgba(212,175,90,0.02));
  border: 1px solid rgba(212,175,90,0.28);
}
.reassure__ic { flex: none; width: 62px; height: 62px; border-radius: 16px; display: grid; place-items: center; background: var(--gold-grad); color: #1c1400; }
.reassure__ic svg { width: 32px; height: 32px; }
.reassure h3 { font-family: var(--font-body); text-transform: none; font-size: clamp(1.2rem,2.4vw,1.6rem); font-weight: 800; letter-spacing: 0; margin-bottom: 8px; }
.reassure p { color: var(--ink-soft); font-size: 1rem; }

/* Price honesty strip */
.price-strip {
  display: flex; gap: 18px; align-items: center;
  padding: 22px 26px; border-radius: var(--radius); background: var(--card-2); border: 1px solid var(--line);
}
.price-strip__ic { flex: none; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: rgba(212,175,90,0.12); color: var(--gold); }
.price-strip__ic svg { width: 22px; height: 22px; }
.price-strip p { color: var(--ink-soft); font-size: 0.98rem; }

/* Probetraining includes line */
.incl {
  display: flex; gap: 12px; align-items: flex-start; max-width: 720px; margin: clamp(20px,3vw,28px) auto 0;
  padding: 16px 20px; border-radius: var(--radius-sm); background: var(--card); border: 1px solid var(--line);
  font-size: 0.96rem; color: var(--ink-soft); text-align: left;
}
.incl svg { flex: none; width: 22px; height: 22px; color: var(--gold); margin-top: 1px; }
.incl strong { color: var(--ink); }

/* Coach quote */
.coach-quote {
  margin: 22px 0 6px; padding: 4px 0 4px 20px; border-left: 3px solid var(--gold);
  font-size: 1.12rem; line-height: 1.6; color: var(--ink); font-style: italic;
}

/* Scarcity line */
.scarcity { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 24px; font-size: 0.9rem; font-weight: 600; color: var(--gold-hi); }
.scarcity svg { flex: none; width: 18px; height: 18px; }

/* WhatsApp-first row (contact) */
.wa-first {
  display: flex; align-items: center; gap: 16px; padding: 18px 20px; border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(37,211,102,0.16), rgba(37,211,102,0.06));
  border: 1px solid rgba(37,211,102,0.4); transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.wa-first:hover { transform: translateY(-3px); box-shadow: 0 20px 44px -22px rgba(37,211,102,0.6); }
.wa-first__ic { flex: none; width: 48px; height: 48px; border-radius: 50%; background: var(--wa); display: grid; place-items: center; }
.wa-first__ic svg { width: 27px; height: 27px; color: #fff; }
.wa-first__txt { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.wa-first__txt b { color: var(--ink); font-size: 1rem; }
.wa-first__txt small { color: var(--ink-mut); font-size: 0.85rem; }
.wa-first__arrow { flex: none; width: 22px; height: 22px; color: var(--wa); transition: transform 0.25s var(--ease); }
.wa-first:hover .wa-first__arrow { transform: translateX(4px); }

/* Chips (goal / time micro-commitment) */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  padding: 10px 16px; border-radius: 999px; border: 1px solid var(--line-strong);
  background: var(--bg-2); color: var(--ink-soft); font-size: 0.92rem; font-weight: 600;
  transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.15s;
}
.chip:hover { border-color: var(--gold); color: var(--gold-hi); }
.chip.active { background: var(--gold-grad); color: #1c1400; border-color: transparent; }
.field label .opt { color: var(--ink-faint); font-weight: 500; }
.form-note__fb { display: block; margin-top: 10px; padding-top: 10px; border-top: 1px solid rgba(74,222,128,0.25); font-weight: 600; color: var(--ink-soft); font-size: 0.92rem; }
.form-note__fb a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }

/* Hero trust link */

/* Reviews CTA (honest Google/Facebook cards) */
.reviews-cta { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(14px,2vw,20px); max-width: 760px; margin-inline: auto; }
.review-card {
  display: flex; align-items: center; gap: 16px; padding: 20px 22px;
  border: 1px solid var(--line-strong); border-radius: var(--radius); background: var(--card);
  transition: transform 0.25s var(--ease), border-color 0.25s, box-shadow 0.25s;
}
.review-card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: var(--shadow); }
.review-card__ic { flex: none; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; }
.review-card__ic svg { width: 24px; height: 24px; }
.review-card__ic--g { background: rgba(212,175,90,0.14); color: var(--gold); }
.review-card__ic--f { background: rgba(59,89,152,0.22); color: #6b8ceb; }
.review-card__txt { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.review-card__txt b { color: var(--ink); font-size: 1rem; }
.review-card__txt small { color: var(--ink-mut); font-size: 0.85rem; }
.review-card__arr { flex: none; width: 20px; height: 20px; color: var(--ink-mut); transition: transform 0.25s var(--ease), color 0.25s; }
.review-card:hover .review-card__arr { transform: translateX(4px); color: var(--gold); }

/* Map click-to-load */
.map-load {
  width: 100%; height: 280px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  background: linear-gradient(135deg, var(--bg-3), var(--card)); color: var(--ink-soft); text-align: center; padding: 20px;
  transition: background 0.25s;
}
.map-load:hover { background: linear-gradient(135deg, var(--card-2), var(--bg-3)); }
.map-load svg { width: 40px; height: 40px; color: var(--gold); }
.map-load__txt { display: flex; flex-direction: column; gap: 3px; }
.map-load__txt b { color: var(--ink); font-size: 1.05rem; }
.map-load__txt small { color: var(--ink-mut); font-size: 0.85rem; max-width: 34ch; }

/* Accessibility: visible keyboard focus on all interactive elements */
:where(a, button, .chip, .faq__q, input, select, textarea, [tabindex]):focus-visible {
  outline: 2px solid var(--gold-hi); outline-offset: 3px; border-radius: 6px;
}
.chip:focus-visible { outline-offset: 2px; }

@media (max-width: 560px) {
  .reassure, .price-strip { flex-direction: column; text-align: center; align-items: center; }
  .incl { flex-direction: column; align-items: center; text-align: center; }
  .reviews-cta { grid-template-columns: 1fr; }

  /* Mobile-Kompaktierung: weniger gefühlter Text, gleiche Substanz */
  :root { --section-y: clamp(56px, 9vw, 72px); }
  .section-head { margin-bottom: 32px; }
  .section-head p { font-size: 0.98rem; margin-top: 14px; }
  .pain { padding: 18px; gap: 12px; }
  .pain p { font-size: 0.9rem; }
  .steps { gap: 14px; }
  .proc { padding: 18px 14px; }
  .proc__n { font-size: 2rem; }
  .proc h4 { font-size: 0.95rem; }
  .proc p { font-size: 0.84rem; }
  .svc p { font-size: 0.92rem; }
  .svc--2 { min-height: 220px; }
  .form__hint { font-size: 0.78rem; }
}

/* ---------- 27. Subpage hero + Instagram-Karte (firmen.html u. Ä.) ---------- */
.header--solid { background: rgba(10,10,12,0.82); backdrop-filter: blur(14px) saturate(1.1); border-bottom-color: var(--line); }
.subhero { position: relative; display: flex; align-items: center; min-height: clamp(480px, 62vh, 640px); padding-top: 78px; overflow: hidden; }
.subhero__bg { position: absolute; inset: 0; z-index: 0; }
.subhero__bg img { width: 100%; height: 100%; object-fit: cover; }
.subhero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(10,10,12,0.88) 0%, rgba(10,10,12,0.55) 45%, rgba(10,10,12,0.22) 100%),
    linear-gradient(180deg, rgba(10,10,12,0.35) 0%, transparent 45%, var(--bg-2) 100%); /* bewusst heller: Studio-Foto soll sichtbar bleiben (Feedback 2026-08-15) */
}
.subhero__inner { position: relative; z-index: 2; padding-block: clamp(40px, 7vh, 80px); max-width: 780px; }
.subhero h1 { margin: 18px 0 0; font-size: clamp(2.1rem, 4.6vw, 3.6rem); line-height: 1.05; }
.subhero__sub { margin-top: 20px; max-width: 620px; color: var(--ink-soft); font-size: clamp(1rem, 1.4vw, 1.12rem); line-height: 1.65; }

/* Instagram-Karte in .reviews-cta */
.reviews-cta--3 { grid-template-columns: repeat(3, 1fr); max-width: 1040px; }
.review-card__ic--ig { background: linear-gradient(45deg, rgba(225,48,108,0.25), rgba(253,181,90,0.22)); color: #f2789f; }
@media (max-width: 820px) {
  .reviews-cta--3 { grid-template-columns: 1fr; }
  body.no-mobilebar { padding-bottom: 0; } /* Seiten ohne Sticky-Bar (firmen.html): kein reservierter Streifen */
}

/* ---------- 28. Hero-Deal-Siegel + Deal-Karte (McFit-Klarheit, Premium-Look) ---------- */
/* Zertifikats-Siegel: rotierender Text-Ring + goldener Kern */
.hero__deal {
  position: absolute; z-index: 3;
  right: clamp(20px, 9vw, 150px); top: clamp(120px, 26vh, 260px);
  width: clamp(120px, 15vw, 195px); aspect-ratio: 1;
  display: block; transition: transform 0.3s var(--ease);
}
.hero__deal:hover { transform: scale(1.06); }
.hero__deal-ring { position: absolute; inset: 0; width: 100%; height: 100%; animation: sealSpin 26s linear infinite; }
.hero__deal-ring text { fill: var(--gold-hi); font-size: 7.1px; font-weight: 700; letter-spacing: 0.14em; }
@keyframes sealSpin { to { transform: rotate(360deg); } }
.hero__deal-core {
  position: absolute; inset: 17%; border-radius: 50%;
  background: var(--gold-grad); color: #1c1400;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  text-align: center;
  box-shadow: 0 0 0 5px rgba(212,175,90,0.14), 0 26px 60px -18px rgba(212,175,90,0.6);
  transition: box-shadow 0.3s;
}
.hero__deal:hover .hero__deal-core { box-shadow: 0 0 0 8px rgba(212,175,90,0.22), 0 30px 70px -18px rgba(212,175,90,0.7); }
.hero__deal-core b { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.5rem, 2.8vw, 2.4rem); line-height: 1; }
.hero__deal-core span { font-size: clamp(0.5rem, 0.72vw, 0.66rem); font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; max-width: 88%; }
@media (prefers-reduced-motion: reduce) { .hero__deal-ring { animation: none; } }
/* ≤920px: Text steht wieder links -> Siegel wandert nach oben rechts, sonst Kollision */
@media (max-width: 920px) {
  .hero__deal { left: auto; right: clamp(12px, 4vw, 44px); top: clamp(92px, 12vh, 140px); width: clamp(108px, 15vw, 140px); }
}

.deal {
  max-width: 520px; margin: clamp(36px, 5vw, 56px) auto 0;
  padding: clamp(26px, 4vw, 40px);
  background: var(--card); border: 1px solid rgba(212,175,90,0.4); border-radius: var(--radius-lg);
  box-shadow: 0 0 0 5px rgba(212,175,90,0.07), var(--shadow);
  text-align: center;
}
.deal__tag {
  display: inline-block; padding: 7px 16px; border-radius: 999px;
  background: rgba(212,175,90,0.14); color: var(--gold-hi);
  font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em;
}
.deal__price { margin: 18px 0 6px; }
.deal__price b { display: block; font-family: var(--font-display); font-weight: 400; font-size: clamp(3.4rem, 7vw, 4.8rem); line-height: 1; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.deal__price span { display: block; margin-top: 6px; color: var(--ink-soft); font-weight: 600; }
.deal__list { list-style: none; margin: 22px 0 24px; padding: 0; display: grid; gap: 12px; text-align: left; }
.deal__list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-soft); font-size: 0.98rem; }
.deal__list svg { flex: none; width: 20px; height: 20px; color: var(--gold); margin-top: 1px; }
.deal .microtrust { flex-wrap: nowrap; font-size: 0.85rem; margin-top: 14px; }
@media (max-width: 560px) {
  .hero__deal { width: 108px; top: 92px; left: auto; right: 10px; }
  .hero__deal-core b { font-size: 1.35rem; }
  .hero__deal-core span { font-size: 0.42rem; }
  .hero__inner .eyebrow { max-width: calc(100% - 118px); }
  .deal .microtrust { flex-wrap: wrap; justify-content: center; }
}

/* Kompakte Problem-Zeilen (ersetzt pain-Karten) */
.quickpains { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 14px; max-width: 720px; margin-inline: auto; }
.qp {
  display: flex; align-items: center; gap: 12px;
  padding: 15px 18px; border-radius: 14px;
  background: var(--card); border: 1px solid var(--line);
  color: var(--ink-soft); font-weight: 600; font-size: 0.97rem;
}
.qp svg { flex: none; width: 21px; height: 21px; color: var(--gold); }
.quickpains--stack { grid-template-columns: 1fr; max-width: 430px; margin-inline: 0; gap: 10px; }
@media (max-width: 560px) {
  .quickpains { grid-template-columns: 1fr; }
  .qp { padding: 13px 16px; font-size: 0.93rem; }
}

/* ---------- Demo-Polish: Premium-Details ---------- */
/* Gold-Scrollbar (Desktop) */
html { scrollbar-color: var(--gold-lo) var(--bg-2); scrollbar-width: thin; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--gold), var(--gold-lo)); border-radius: 99px; border: 2px solid var(--bg-2); }

/* Sanfter Page-Fade beim Laden */
@keyframes pagein { from { opacity: 0; } to { opacity: 1; } }
html.js body { animation: pagein 0.45s ease-out; }

/* WhatsApp-Button: Glow wie der Gold-Primär */
.btn--wa:hover { transform: translateY(-3px); box-shadow: 0 0 0 3px rgba(37,211,102,0.25), 0 24px 55px -14px rgba(37,211,102,0.6); }
.btn--wa:hover svg { transform: translateX(4px); }

/* Gold-Schimmer: 0-€-Siegel + Deal-Preis */
@keyframes goldshine { 0%, 55% { background-position: 180% center; } 100% { background-position: -80% center; } }
.hero__deal-core {
  background: linear-gradient(110deg, #ecd08a 0%, #d4af5a 38%, #f9ecc0 50%, #d4af5a 62%, #b08a3c 100%);
  background-size: 220% auto;
  animation: goldshine 5.5s ease-in-out infinite;
}
.deal__price b {
  background: linear-gradient(110deg, #ecd08a 0%, #d4af5a 38%, #fff3cf 50%, #d4af5a 62%, #b08a3c 100%);
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text;
  animation: goldshine 4.5s ease-in-out infinite;
}

/* Karten-Physik */
.svc__img img { transition: transform 0.65s var(--ease); }
.svc:hover .svc__img img { transform: scale(1.06); }
.qp { transition: border-color 0.25s, transform 0.25s var(--ease); }
.qp:hover { border-color: rgba(212,175,90,0.45); transform: translateY(-2px); }
.why { transition: border-color 0.25s, transform 0.25s var(--ease); }
.why:hover { border-color: rgba(212,175,90,0.45); transform: translateY(-3px); }

/* Slim-Laufband (Marken-Puls unter dem Hero) */
.tick { overflow: hidden; border-block: 1px solid var(--line); background: var(--bg-2); padding: 13px 0; }
.tick__row { display: flex; width: max-content; animation: tickmove 28s linear infinite; }
.tick__row span {
  display: flex; align-items: center; gap: 44px; padding-right: 44px;
  font-family: var(--font-display); text-transform: uppercase;
  font-size: 1.1rem; letter-spacing: 0.14em; color: var(--gold); opacity: 0.7; white-space: nowrap;
}
.tick__row b { font-weight: 400; opacity: 0.45; }
@keyframes tickmove { to { transform: translateX(-50%); } }

.footer__bottom a { text-decoration: underline; text-underline-offset: 3px; }

/* Mini-Steps (Ablauf in einer Zeile) */
.ministeps {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 12px 16px; margin-bottom: clamp(8px, 2vw, 16px);
  color: var(--ink-soft); font-weight: 600; font-size: 1rem;
}
.ministeps b {
  display: inline-grid; place-items: center; width: 26px; height: 26px; margin-right: 8px;
  border-radius: 50%; background: var(--gold-grad); color: #1c1400;
  font-size: 0.85rem; font-weight: 800;
}
.ministeps span { display: inline-flex; align-items: center; }
.ministeps svg { width: 18px; height: 18px; color: var(--gold); flex: none; }
@media (max-width: 560px) {
  .ministeps { flex-direction: column; gap: 8px; }
  .ministeps svg { transform: rotate(90deg); width: 15px; height: 15px; }
}

/* "Warum"-Beweiskarten (ems.html) */
.whys { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(14px, 2vw, 22px); }
.why {
  padding: clamp(22px, 3vw, 30px); border-radius: var(--radius);
  background: var(--card); border: 1px solid var(--line);
}
.why h3 { font-family: var(--font-body); text-transform: none; letter-spacing: 0; font-size: 1.08rem; font-weight: 800; margin-bottom: 10px; color: var(--gold-hi); }
.why p { color: var(--ink-soft); font-size: 0.97rem; }
.whys--list { grid-template-columns: 1fr; max-width: 780px; margin-inline: auto; }
@media (max-width: 720px) { .whys { grid-template-columns: 1fr; } }

/* Unterschrift unter Versprechen-Karte */
.deal__sign { margin-top: 20px; text-align: right; color: var(--gold-hi); font-weight: 600; font-style: italic; }

/* EMS video peek */
.peek {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  background: rgba(10,10,12,0.35); color: var(--ink);
  font-weight: 700; font-size: 0.95rem;
  transition: background 0.25s;
}
.peek:hover { background: rgba(10,10,12,0.5); }
.peek__ic {
  width: 68px; height: 68px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--gold-grad); color: #1c1400;
  box-shadow: 0 0 0 8px rgba(212,175,90,0.2), 0 22px 50px -14px rgba(212,175,90,0.6);
  transition: transform 0.25s var(--ease);
}
.peek:hover .peek__ic { transform: scale(1.08); }
.peek__ic svg { width: 30px; height: 30px; margin-left: 3px; }
.split__video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- 29. Legal / prose pages ---------- */
.legal { padding-top: 120px; padding-bottom: var(--section-y); }
.legal__back { display: inline-flex; align-items: center; gap: 8px; color: var(--gold); font-weight: 700; margin-bottom: 30px; }
.legal__back:hover { color: var(--gold-hi); }
.prose { max-width: 780px; }
.prose .eyebrow { margin-bottom: 14px; }
.prose h1 { font-size: clamp(2.2rem, 6vw, 3.4rem); margin-bottom: 12px; }
.prose h2 { font-size: clamp(1.3rem, 3vw, 1.7rem); margin: 40px 0 14px; color: var(--gold-hi); }
.prose h3 { font-size: 1.1rem; margin: 24px 0 8px; color: var(--ink); text-transform: none; font-family: var(--font-body); font-weight: 700; }
.prose p, .prose li { color: var(--ink-soft); font-size: 1rem; line-height: 1.75; margin-bottom: 12px; }
.prose ul { padding-left: 22px; list-style: disc; margin-bottom: 12px; }
.prose a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--gold-hi); }
.prose strong { color: var(--ink); }
.prose .todo { background: rgba(212,175,90,0.1); border: 1px dashed var(--gold-lo); border-radius: 8px; padding: 2px 8px; color: var(--gold-hi); font-size: 0.92em; }
.prose .updated { color: var(--ink-faint); font-size: 0.9rem; margin-top: 40px; }
.legal-nav { position: fixed; inset: 0 0 auto 0; z-index: 100; background: rgba(10,10,12,0.9); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.legal-nav .nav { height: 70px; }


/* ---------- 30. Welle 4: WhatsApp-Chat, Hero-Rating, Review-Laufband ---------- */
.chat { max-width: 620px; margin-inline: auto; }
.chat__hint { text-align: center; color: var(--ink-mut); font-size: 0.9rem; margin-bottom: 18px; }
.chat__bubble { max-width: 85%; padding: 14px 18px; border-radius: 16px; font-size: 0.98rem; line-height: 1.6; color: var(--ink-soft); }
.chat__bubble--in { background: var(--card); border: 1px solid var(--line); border-bottom-left-radius: 4px; margin-right: auto; }
.chat__bubble--out { background: rgba(37, 211, 102, 0.09); border: 1px solid rgba(37, 211, 102, 0.25); border-bottom-right-radius: 4px; margin-left: auto; margin-top: 12px; }
.chat__who { display: block; font-size: 0.78rem; font-weight: 700; color: var(--gold); margin-bottom: 4px; }
.chat__cta { text-align: center; margin-top: 22px; }

.hero-rating { display: inline-flex; align-self: flex-start; align-items: center; gap: 8px; margin-top: 14px; font-size: 0.9rem; color: var(--ink-soft); }
.hero-rating b { color: var(--ink); }
.hero-rating:hover { color: var(--gold-hi); }

.revband { overflow-x: auto; margin-bottom: 20px; } /* ohne JS/Animation scrollbar */
.revband--anim { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.revband__track { display: flex; width: max-content; }
.revband__track.is-anim { animation: revscroll 60s linear infinite; }
.revband:hover .revband__track.is-anim { animation-play-state: paused; }
@keyframes revscroll { to { transform: translateX(-50%); } }
.rev { width: min(320px, 78vw); flex: none; margin: 0 18px 0 0; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px 20px; }
.rev blockquote { margin: 10px 0 12px; font-size: 0.93rem; color: var(--ink-soft); line-height: 1.6; }
.rev figcaption { font-size: 0.82rem; font-weight: 600; color: var(--gold); }
.revband__note { text-align: center; font-size: 0.85rem; color: var(--ink-mut); margin-bottom: clamp(26px, 4vw, 40px); }
.revband__note a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }



/* ---------- 31. Helle Vertrauens-Zone ("dunkler Rahmen, helles Herz") ----------
   Scoped Token-Override: Komponenten in .section--light adaptieren automatisch.
   Die dunkle Deal-Karte bleibt bewusst dunkel und wird zum Fokus-Punkt. */
.section--light {
  background: #f4f1ea;
  color: #17171c; /* Vererbung: h1-h3 erben sonst die helle Body-Farbe */
  --ink: #17171c;
  --ink-soft: #3a3a42;
  --ink-mut: #63636d;
  --ink-faint: #9b9ba3;
  --card: #ffffff;
  --line: rgba(23, 23, 28, 0.12);
  --line-strong: rgba(23, 23, 28, 0.22);
  --gold: #9c7326; /* dunkleres Gold fuer Text-Kontrast auf hellem Grund */
  --gold-hi: #7d5c1e;
}
.section--light .section-head p { color: var(--ink-mut); }
.section--light .hours dt.is-today, .section--light .hours dd.is-today { color: #15803d; }
.section--light .hours dt.is-today::before { background: #15803d; }
/* Deal-Karte innerhalb der hellen Zone: bewusst dunkel gepinnt (Fokus-Moment) */
.section--light .deal {
  --ink: #f2ede2; --ink-soft: #cfcabf; --ink-mut: #a39e93; --ink-faint: #7c786e;
  --card: #14141a; --line: rgba(255,255,255,0.1); --line-strong: rgba(255,255,255,0.18);
  --gold: #d4af5a; --gold-hi: #e6c67a;
}
.section--light .rev { box-shadow: 0 4px 18px rgba(23, 23, 28, 0.06); }
.section--light .open-status--open { color: #15803d; }
.section--light .open-status--open::before { background: #15803d; }
