/* =============================================
   Custom Properties
   ============================================= */
:root {
  --gold:          #ffbd59;
  --gold-glow:     rgba(255, 189, 89, 0.22);
  --gold-border:   rgba(255, 189, 89, 0.22);
  --bg:            #000000;
  --bg-card:       #0d0d0d;
  --bg-alt:        #000000;
  --bg-footer:     #000000;
  --text:          #f0f0f0;
  --text-muted:    #787878;
  --border:        rgba(255, 255, 255, 0.07);
  --outline-border: rgba(255, 255, 255, 0.28);
  --font-display:  'Bebas Neue', 'Impact', sans-serif;
  --font-body:     'Inter', system-ui, -apple-system, sans-serif;
  --container:     1200px;
  --section-py:    clamp(3rem, 6vw, 6rem);
  --ease:          cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Light mode — system preference OR manual toggle */
@media (prefers-color-scheme: light) {
  :root:not([data-theme="dark"]) {
    --gold:          #a06c00;
    --gold-glow:     rgba(160, 108, 0, 0.14);
    --gold-border:   rgba(160, 108, 0, 0.28);
    --bg:            #ffffff;
    --bg-card:       #f5f5f5;
    --bg-alt:        #f8f8f8;
    --bg-footer:     #efefef;
    --text:          #0d0d0d;
    --text-muted:    #606060;
    --border:        rgba(0, 0, 0, 0.08);
    --outline-border: rgba(0, 0, 0, 0.25);
  }
}

html[data-theme="light"] {
  --gold:          #a06c00;
  --gold-glow:     rgba(160, 108, 0, 0.14);
  --gold-border:   rgba(160, 108, 0, 0.28);
  --bg:            #ffffff;
  --bg-card:       #f5f5f5;
  --bg-alt:        #f8f8f8;
  --bg-footer:     #efefef;
  --text:          #0d0d0d;
  --text-muted:    #606060;
  --border:        rgba(0, 0, 0, 0.08);
  --outline-border: rgba(0, 0, 0, 0.25);
}

html[data-theme="dark"] {
  --gold:          #ffbd59;
  --gold-glow:     rgba(255, 189, 89, 0.22);
  --gold-border:   rgba(255, 189, 89, 0.22);
  --bg:            transparent;
  --bg-card:       rgba(6, 3, 0, 0.72);
  --bg-alt:        transparent;
  --bg-footer:     rgba(0, 0, 0, 0.92);
  --text:          #f0f0f0;
  --text-muted:    #888;
  --border:        rgba(255, 255, 255, 0.08);
  --outline-border: rgba(255, 255, 255, 0.28);
}

/* frosted-glass cards in dark mode */
html[data-theme="dark"] .card,
html[data-theme="dark"] .pricing__main,
html[data-theme="dark"] .extra-card,
html[data-theme="dark"] .aktion__card {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Background — gym photo with rich dark amber colour-grade */
html[data-theme="dark"] body {
  background:
    /* gold accent: top-left corner */
    radial-gradient(ellipse 55% 40% at 0% 0%,   rgba(255,189,89,.10) 0%, transparent 65%),
    /* gold accent: bottom-right corner */
    radial-gradient(ellipse 55% 40% at 100% 100%, rgba(255,140,30,.07) 0%, transparent 65%),
    /* warm amber vignette centre */
    radial-gradient(ellipse 80% 60% at 50% 45%,  rgba(20,10,0,.0)    0%, transparent 70%),
    /* top darkening band (nav readability) */
    linear-gradient(to bottom,
      rgba(0,0,0,.97)  0%,
      rgba(4,2,0,.82) 22%,
      rgba(8,4,0,.76) 50%,
      rgba(4,2,0,.84) 78%,
      rgba(0,0,0,.96) 100%),
    /* gym floor photo */
    url('../assets/b1.jpg') center / cover fixed;
  background-color: #000;
}

/* floating glow layer via ::before */
html[data-theme="dark"] body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 40% 30% at 15% 60%, rgba(255,189,89,.07) 0%, transparent 60%),
    radial-gradient(ellipse 35% 25% at 85% 35%, rgba(255,160,40,.05) 0%, transparent 55%);
}

/* make sure all content sits above the body ::before glow layer */
html[data-theme="dark"] main,
html[data-theme="dark"] section,
html[data-theme="dark"] footer {
  position: relative;
  z-index: 1;
}

/* =============================================
   Reset & Base
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
img    { max-width: 100%; display: block; }
a      { color: inherit; text-decoration: none; }
ul     { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* =============================================
   Utilities
   ============================================= */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
}
.section   { padding: var(--section-py) 0; }
.text-gold { color: var(--gold); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.1em;
  padding: 0.875rem 2rem;
  border-radius: 5px;
  border: 2px solid transparent;
  transition:
    background    0.25s var(--ease),
    color         0.25s var(--ease),
    border-color  0.25s var(--ease),
    box-shadow    0.25s var(--ease);
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold);
  color: #0a0a0a;
  border-color: var(--gold);
}
.btn--gold:hover {
  background: transparent;
  color: var(--gold);
  box-shadow: 0 0 24px var(--gold-glow);
}
.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--outline-border);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn--lg   { font-size: 1.125rem; padding: 1rem 2.5rem; }
.btn--sm   { font-size: 0.8125rem; padding: 0.6rem 1.25rem; }
.btn--full { width: 100%; }

/* Section labels */
.section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-label::before,
.section-label::after {
  content: '';
  flex: 0 0 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
  text-align: center;
}
.section-sub {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.8;
  margin-bottom: 3.5rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity   0.65s var(--ease),
    transform 0.65s var(--ease);
}
.revealed { opacity: 1; transform: none; }

.slide-left {
  opacity: 0;
  transform: translateX(-70px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.slide-right {
  opacity: 0;
  transform: translateX(70px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.slide-left.revealed,
.slide-right.revealed { opacity: 1; transform: none; }

.pricing__main.revealed {
  opacity: 1;
  transform: none;
}

/* =============================================
   Navigation
   ============================================= */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  padding: 1.25rem 0;
  transition:
    background      0.35s,
    backdrop-filter 0.35s,
    padding         0.35s,
    border-color    0.35s;
  border-bottom: 1px solid transparent;
}
.nav--scrolled {
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.875rem 0;
  border-color: var(--gold-border);
}
@media (prefers-color-scheme: light) {
  .nav--scrolled { background: rgba(255, 255, 255, 0.92); }
}

/* Dark mode: nav always has a dark background */
html[data-theme="dark"] .nav,
html:not([data-theme="light"]) .nav {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-color: var(--gold-border);
}
@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]) .nav {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-color: var(--gold-border);
  }
}

.nav__inner {
  width: 100%;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.nav__logo-img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
  transition: filter 0.3s, transform 0.3s;
  filter: drop-shadow(0 0 6px rgba(255,189,89,0.4));
}
.nav__logo:hover .nav__logo-img {
  transform: scale(1.08);
  filter: drop-shadow(0 0 12px rgba(255,189,89,0.7));
}
.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-left: 0.6rem;
}
@media (max-width: 400px) {
  .nav__logo-text { display: none; }
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav__link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.25s var(--ease);
}
.nav__link:hover { color: var(--gold); }
.nav__link:hover::after { width: 100%; }

/* Visual divider before CTA button */
.nav__links > li:has(.btn) {
  padding-left: 1rem;
  border-left: 1px solid var(--gold-border);
  margin-left: 0.25rem;
}

/* Theme toggle */
.theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-border);
  background: transparent;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s;
  flex-shrink: 0;
}
.theme-toggle:hover {
  background: var(--gold-glow);
  border-color: var(--gold);
  box-shadow: 0 0 12px var(--gold-glow);
}
.theme-toggle svg { pointer-events: none; }
.theme-toggle .icon-sun  { display: none; }
.theme-toggle .icon-moon { display: block; }
html[data-theme="light"] .theme-toggle .icon-sun  { display: block; }
html[data-theme="light"] .theme-toggle .icon-moon { display: none; }
@media (prefers-color-scheme: light) {
  :root:not([data-theme="dark"]) .theme-toggle .icon-sun  { display: block; }
  :root:not([data-theme="dark"]) .theme-toggle .icon-moon { display: none; }
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 201;
  position: relative;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s var(--ease), opacity 0.3s;
  transform-origin: center;
}
.nav__burger--open span:nth-child(1) { transform: translateY(7px)  rotate(45deg);  }
.nav__burger--open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   Hero
   ============================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  padding: 4rem clamp(1.25rem, 4vw, 2rem) 3rem;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 12% 55%, rgba(255,189,89,.09) 0%, transparent 55%),
    radial-gradient(ellipse 45% 65% at 88% 25%, rgba(255,189,89,.05) 0%, transparent 55%),
    var(--bg);
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -48deg,
    transparent 0px,
    transparent 80px,
    rgba(255,189,89,.013) 80px,
    rgba(255,189,89,.013) 81px
  );
}

/* Dark mode: hero bg transparent so body image shows through */
html[data-theme="dark"] .hero__bg,
html:not([data-theme="light"]) .hero__bg {
  background: transparent;
}
html[data-theme="dark"] .hero__bg::after,
html:not([data-theme="light"]) .hero__bg::after {
  display: none;
}
@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]) body {
    background:
      radial-gradient(ellipse 55% 40% at 0% 0%,    rgba(255,189,89,.10) 0%, transparent 65%),
      radial-gradient(ellipse 55% 40% at 100% 100%, rgba(255,140,30,.07) 0%, transparent 65%),
      linear-gradient(to bottom,
        rgba(0,0,0,.97)  0%,
        rgba(4,2,0,.82) 22%,
        rgba(8,4,0,.76) 50%,
        rgba(4,2,0,.84) 78%,
        rgba(0,0,0,.96) 100%),
      url('../assets/b1.jpg') center / cover fixed;
    background-color: #000;
  }
  html:not([data-theme="light"]) {
    --bg:        transparent;
    --bg-card:   rgba(6, 3, 0, 0.72);
    --bg-alt:    transparent;
    --bg-footer: rgba(0, 0, 0, 0.92);
  }
  html:not([data-theme="light"]) .hero__bg { background: transparent; }
  html:not([data-theme="light"]) .hero__bg::after { display: none; }
}
.hero__body {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.hero__logo-img {
  width: clamp(160px, 20vw, 260px);
  border-radius: 50%;
  margin: 0 auto 1rem;
  animation: fadeUp 0.85s 0.1s var(--ease) both;
  filter: drop-shadow(0 0 28px rgba(255, 189, 89, 0.45));
}

.hero__eye {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.85s var(--ease) both;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 13vw, 10rem);
  line-height: 0.93;
  letter-spacing: 0.015em;
  margin-bottom: 0;
  animation: fadeUp 0.85s 0.1s var(--ease) both;
}
.hero__title span {
  display: block;
  -webkit-text-stroke: 2px var(--text);
  color: transparent;
}
.hero__line {
  width: 80px;
  height: 3px;
  background: var(--gold);
  box-shadow: 0 0 14px var(--gold-glow);
  margin: 1.75rem 0 2rem;
  animation: fadeUp 0.85s 0.18s var(--ease) both;
}
.hero__aktion {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: fadeUp 0.85s 0.18s var(--ease) both;
  text-align: center;
  width: 100%;
  padding: 1rem 0;
}

/* "WIRB EINEN FREUND" top label */
.hero__aktion-top,
.hero__aktion-bottom {
  font-family: 'Audiowide', var(--font-display);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(0.95rem, 2.8vw, 1.4rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  -webkit-text-stroke: 1px #111;
  paint-order: stroke fill;
}

/* Gold divider lines */
.hero__aktion-rule {
  height: 2.5px;
  background: var(--gold);
  margin: 0.5rem auto;
  width: 85%;
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(255, 189, 89, 0.6);
}

/* FIRMEN RABATT — letter-by-letter animated */
.hero__aktion-main {
  font-family: 'Audiowide', var(--font-display);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(3rem, 11vw, 8rem);
  transform: skewX(-8deg);
  line-height: 0.9;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  text-shadow:
    -4px -4px 0 #111, 0 -4px 0 #111,  4px -4px 0 #111,
    -4px  0   0 #111,                   4px  0   0 #111,
    -4px  4px 0 #111, 0  4px 0 #111,  4px  4px 0 #111,
    -3px -3px 0 #111, 3px -3px 0 #111,
    -3px  3px 0 #111, 3px  3px 0 #111;
  margin: 0.15rem 0;
  width: 100%;
}

.hero__aktion-main .letter {
  display: inline-block;
  opacity: 0;
  animation:
    letterReveal 0.55s var(--ease) forwards calc(1s + var(--i) * 0.07s),
    letterGlow   3s   ease-in-out  infinite  calc(2s + var(--i) * 0.15s);
}

@keyframes letterReveal {
  0%   { opacity: 0; transform: translateY(-60px) scaleY(1.4); }
  65%  { opacity: 1; transform: translateY(6px)   scaleY(0.95); }
  100% { opacity: 1; transform: translateY(0)     scaleY(1); }
}

@keyframes letterGlow {
  0%, 100% { text-shadow:
    -4px -4px 0 #111, 0 -4px 0 #111, 4px -4px 0 #111,
    -4px  0   0 #111,                  4px  0   0 #111,
    -4px  4px 0 #111, 0  4px 0 #111, 4px  4px 0 #111,
    0 0 10px rgba(255,189,89,0.3); }
  50% { text-shadow:
    -4px -4px 0 #111, 0 -4px 0 #111, 4px -4px 0 #111,
    -4px  0   0 #111,                  4px  0   0 #111,
    -4px  4px 0 #111, 0  4px 0 #111, 4px  4px 0 #111,
    0 0 30px rgba(255,189,89,0.8), 0 0 60px rgba(255,189,89,0.3); }
}

.hero__aktion-note {
  font-size: clamp(0.75rem, 1.6vw, 0.9rem);
  color: var(--text-muted);
  letter-spacing: 0.03em;
  margin-top: 0.6rem;
  text-align: center;
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 3rem;
  animation: fadeUp 0.85s 0.22s var(--ease) both;
  text-align: center;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  animation: fadeUp 0.85s 0.32s var(--ease) both;
  margin-top: 2.5rem;
}
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 64px;
  overflow: hidden;
  z-index: 1;
}
.hero__scroll::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollDrop 2.2s ease-in-out infinite;
}

@keyframes scrollDrop {
  0%   { transform: translateY(-100%); opacity: 0; }
  30%  { opacity: 1; }
  100% { transform: translateY(100%); opacity: 0; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: none; }
}

/* =============================================
   Über uns
   ============================================= */
.ueber { background: var(--bg); }

.ueber__intro {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: var(--text-muted);
  text-align: center;
  max-width: 660px;
  margin: 0 auto 3.5rem;
  line-height: 1.8;
  font-style: italic;
}

/* 4-column feature cards */
.ueber__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.ueber__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s var(--ease);
}

/* top accent line on hover */
.ueber__card::after {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}
.ueber__card:hover { border-color: var(--gold-border); box-shadow: 0 8px 40px rgba(0,0,0,.35), 0 0 24px var(--gold-glow); transform: translateY(-5px); }
.ueber__card:hover::after { opacity: 1; }

html[data-theme="dark"] .ueber__card,
html:not([data-theme="light"]) .ueber__card {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.ueber__card-icon {
  width: 56px;
  height: 56px;
  color: var(--gold);
  background: rgba(255,189,89,.08);
  border: 1px solid var(--gold-border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  padding: 13px;
  transition: background 0.3s, box-shadow 0.3s;
}
.ueber__card:hover .ueber__card-icon {
  background: rgba(255,189,89,.16);
  box-shadow: 0 0 18px rgba(255,189,89,.25);
}

.ueber__card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}
.ueber__card-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* CTA row */
.ueber__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .ueber__cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .ueber__cards { grid-template-columns: 1fr; }
}

/* =============================================
   Aktuelle Aktion
   ============================================= */
.aktion { background: var(--bg); }

.aktion__card {
  position: relative;
  border: 1px solid var(--gold);
  border-radius: 16px;
  padding: 3rem;
  background:
    radial-gradient(ellipse 70% 100% at 100% 50%, rgba(255,189,89,.07) 0%, transparent 60%),
    var(--bg-card);
  box-shadow: 0 0 48px var(--gold-glow), inset 0 0 0 1px rgba(255,189,89,.08);
  overflow: hidden;
}
.aktion__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -48deg,
    transparent 0px, transparent 60px,
    rgba(255,189,89,.018) 60px, rgba(255,189,89,.018) 61px
  );
  pointer-events: none;
}

.aktion__badge {
  position: absolute;
  top: 0; right: 2.5rem;
  background: var(--gold);
  color: #0a0a0a;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  padding: 0.35rem 1rem;
  border-radius: 0 0 8px 8px;
}

.aktion__body {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.aktion__icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  box-shadow: 0 0 24px var(--gold-glow);
}
.aktion__icon svg { width: 36px; height: 36px; }

.aktion__text { flex: 1; min-width: 220px; }

.aktion__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.04em;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 32px var(--gold-glow);
}

.aktion__offer {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  letter-spacing: 0.03em;
  color: var(--text);
  margin-bottom: 1rem;
}

.aktion__desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 480px;
}

.aktion__cta { flex-shrink: 0; }

@media (max-width: 768px) {
  .aktion__card { padding: 2rem 1.5rem; }
  .aktion__body { gap: 1.75rem; }
  .aktion__cta  { width: 100%; }
}

/* =============================================
   Stats Bar
   ============================================= */
.stats {
  position: relative;
  z-index: 1;
  padding: 2.5rem 0;
  background: var(--bg-card);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}

html[data-theme="dark"] .stats,
html:not([data-theme="light"]) .stats {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.stats__item {
  padding: 0.75rem 0.5rem;
  position: relative;
}

.stats__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 15%; bottom: 15%;
  width: 1px;
  background: var(--gold-border);
}

.stats__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  letter-spacing: 0.04em;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}

html[data-theme="dark"] .stats__num,
html:not([data-theme="light"]) .stats__num {
  text-shadow: 0 0 16px rgba(255,189,89,0.5), 0 0 40px rgba(255,189,89,0.2);
}

.stats__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (max-width: 640px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__item:nth-child(2)::after { display: none; }
}

/* =============================================
   Features / Why
   ============================================= */
.why {
  background: var(--bg-alt);
  position: relative;
}
.why::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  opacity: 0.35;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  text-align: center;
  transition:
    border-color 0.3s,
    box-shadow   0.3s,
    transform    0.3s var(--ease);
}

/* Gold gradient accent line on top */
.card::after {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 0 0 4px 4px;
  opacity: 0;
  transition: opacity 0.35s;
}

.card:hover {
  border-color: var(--gold-border);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3), 0 0 24px var(--gold-glow);
  transform: translateY(-6px);
}
.card:hover::after { opacity: 1; }

.card__icon {
  width: 56px;
  height: 56px;
  color: var(--gold);
  margin: 0 auto 1.75rem;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 189, 89, 0.08);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, box-shadow 0.3s;
}
.card:hover .card__icon {
  background: rgba(255, 189, 89, 0.14);
  box-shadow: 0 0 20px rgba(255,189,89,0.2);
}
.card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.875rem;
}
.card__text {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.75;
}

/* Gold gradient divider between sections */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  opacity: 0.25;
  margin: 0;
}

/* Why section: subtle frosted backdrop in dark mode */
html[data-theme="dark"] .why,
html:not([data-theme="light"]) .why {
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* =============================================
   Pricing
   ============================================= */
.pricing { background: var(--bg); }

.pricing__wrap {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.pricing__body {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: center;
}

.pricing__left { min-width: 220px; }

.pricing__right {
  display: flex;
  flex-direction: column;
}

.pricing__extras-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 680px;
  margin: 1.5rem auto 0;
}

.pricing__trial {
  text-align: center;
  margin-top: 1.75rem;
}

html[data-theme="light"] .btn--outline {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(255,189,89,0.08);
}
html[data-theme="light"] .btn--outline:hover {
  background: var(--gold);
  color: #fff;
}


.pricing__main {
  background: var(--bg-card);
  border: 1px solid var(--gold);
  border-radius: 14px;
  padding: 2rem 2.5rem;
  position: relative;
  box-shadow: 0 0 48px var(--gold-glow);
}
.pricing__badge {
  position: absolute;
  top: -1px; left: 2.25rem;
  background: var(--gold);
  color: #0a0a0a;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  padding: 0.3rem 0.9rem;
  border-radius: 0 0 7px 7px;
}
.pricing__name {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.pricing__price {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}
.pricing__amount { font-family: var(--font-display); font-size: 4.5rem; letter-spacing: -0.01em; }
.pricing__cur    { font-family: var(--font-display); font-size: 1.75rem; }
.pricing__per    { font-size: 0.875rem; color: var(--text-muted); margin-left: 0.25rem; }
.pricing__note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0;
}
.pricing__features { margin-bottom: 1.25rem; }
.pricing__features li {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
  color: var(--text-muted);
}
.pricing__features li:first-child { border-top: 1px solid var(--border); }

.pricing__extras {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.pricing__extras-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.extra-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.2s var(--ease);
}
.extra-card:hover {
  border-color: var(--gold-border);
  box-shadow: 0 3px 18px rgba(0,0,0,0.18), 0 0 12px var(--gold-glow);
  transform: translateY(-2px);
}
.extra-card h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
  opacity: 0.85;
}
.extra-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.25rem 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.extra-row:last-of-type { border-bottom: none; }
.extra-row strong {
  color: var(--text);
  font-weight: 700;
  font-size: 0.9375rem;
}
.extra-note {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  opacity: 0.7;
}

/* =============================================
   HYROX
   ============================================= */
.hyrox {
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}

/* Light mode subtle gold accent */
.hyrox::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 80% at 85% 50%, rgba(255,189,89,.07) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Dark mode: full HYROX-branded background */
html[data-theme="dark"] .hyrox,
html:not([data-theme="light"]) .hyrox {
  background:
    /* gym photo base */
    url('../assets/HYROX_Bild1.jpg') center / cover fixed;
}

html[data-theme="dark"] .hyrox::before,
html:not([data-theme="light"]) .hyrox::before {
  background:
    /* HYROX crimson glow — right */
    radial-gradient(ellipse 60% 70% at 90% 50%, rgba(200, 20, 20, .35) 0%, transparent 65%),
    /* HYROX crimson glow — left edge */
    radial-gradient(ellipse 40% 60% at 5%  50%, rgba(160, 10, 10, .20) 0%, transparent 60%),
    /* gold centre accent */
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(255,189,89,.06) 0%, transparent 60%),
    /* diagonal speed lines */
    repeating-linear-gradient(
      -58deg,
      transparent 0px, transparent 38px,
      rgba(255,255,255,.025) 38px, rgba(255,255,255,.025) 39px
    ),
    /* dark overlay — lighter since image is already dark */
    linear-gradient(to right,
      rgba(0,0,0,.88) 0%,
      rgba(0,0,0,.62) 40%,
      rgba(8,0,0,.55)  70%,
      rgba(0,0,0,.80) 100%);
}

@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]) .hyrox {
    background: url('../assets/HYROX_Bild1.jpg') center / cover fixed;
  }
  html:not([data-theme="light"]) .hyrox::before {
    background:
      radial-gradient(ellipse 60% 70% at 90% 50%, rgba(200, 20, 20, .35) 0%, transparent 65%),
      radial-gradient(ellipse 40% 60% at 5%  50%, rgba(160, 10, 10, .20) 0%, transparent 60%),
      radial-gradient(ellipse 50% 40% at 50% 50%, rgba(255,189,89,.06) 0%, transparent 60%),
      repeating-linear-gradient(
        -58deg,
        transparent 0px, transparent 38px,
        rgba(255,255,255,.025) 38px, rgba(255,255,255,.025) 39px
      ),
      linear-gradient(to right,
        rgba(0,0,0,.92) 0%,
        rgba(0,0,0,.78) 40%,
        rgba(10,0,0,.72) 70%,
        rgba(0,0,0,.88) 100%);
  }
}
.hyrox::after {
  content: 'HYROX';
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(6rem, 15vw, 14rem);
  color: rgba(255,189,89,.04);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: 0.05em;
}
.hyrox__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.hyrox__text {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.hyrox__gear {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-top: 2.5rem;
  justify-content: center;
}
.hyrox__tag {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: 6px;
  padding: 0.65rem 1.25rem;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.hyrox__tag::before { content: '▸'; color: var(--gold); font-size: 0.75rem; }
.hyrox__tag:hover {
  background: rgba(255,189,89,.08);
  color: var(--text);
  box-shadow: 0 0 16px var(--gold-glow);
}

/* =============================================
   Footer
   ============================================= */
.footer {
  background: var(--bg-footer);
  border-top: 1px solid var(--border);
  padding: 5rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.25fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer__brand-name {
  font-family: var(--font-display);
  font-size: 2.25rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.footer__tagline { color: var(--text-muted); font-size: 0.9375rem; }
.footer__head {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer__list li     { margin-bottom: 0.5rem; font-size: 0.9375rem; color: var(--text-muted); line-height: 1.6; }
.footer__list a      { color: var(--text-muted); transition: color 0.2s; }
.footer__list a:hover { color: var(--gold); }
.footer__list a:hover svg { stroke: var(--gold); }

.footer__item {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer__item svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
  stroke: var(--text-muted);
  transition: stroke 0.2s;
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
  transition: color 0.2s;
}
.footer__social:hover { color: var(--gold); }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.footer__credit {
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.2s;
}
.footer__credit:hover { opacity: 0.75; }

/* =============================================
   WhatsApp FAB
   ============================================= */
/* ── WhatsApp floating button ── */
.wa-btn {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 100;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

/* ── WhatsApp popup widget ── */
.wa-widget {
  position: fixed;
  bottom: 5.25rem;
  right: 1.75rem;
  z-index: 99;
  width: 300px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.25);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.96);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.wa-widget.wa-widget--open {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.wa-widget__head {
  background: #075E54;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.wa-widget__avatar {
  width: 40px;
  height: 40px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.wa-widget__name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: #fff;
}
.wa-widget__status {
  font-size: 0.75rem;
  color: rgba(255,255,255,.7);
  margin-top: 0.1rem;
}
.wa-widget__close {
  margin-left: auto;
  background: none;
  border: none;
  color: rgba(255,255,255,.7);
  font-size: 1.1rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
  transition: color .2s;
  flex-shrink: 0;
}
.wa-widget__close:hover { color: #fff; }
.wa-widget__body {
  padding: 1rem 1.25rem;
}
.wa-widget__bubble {
  background: #fff;
  border-radius: 0 10px 10px 10px;
  padding: 0.7rem 0.9rem;
  font-size: 0.875rem;
  color: #111;
  line-height: 1.55;
  box-shadow: 0 1px 3px rgba(0,0,0,.12);
  max-width: 90%;
}
html[data-theme="dark"] .wa-widget__bubble,
html:not([data-theme="light"]) .wa-widget__bubble {
  background: #1e2a20;
  color: rgba(255,255,255,.88);
}
.wa-widget__cta {
  display: block;
  margin: 0 1.25rem 1.25rem;
  background: #25D366;
  color: #fff;
  text-align: center;
  padding: 0.65rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background .2s;
}
.wa-widget__cta:hover { background: #1ebe5b; }

/* b2.jpg background for pricing + über-uns in dark mode */
html[data-theme="dark"] .pricing,
html[data-theme="dark"] .ueber,
html:not([data-theme="light"]) .pricing,
html:not([data-theme="light"]) .ueber {
  background:
    linear-gradient(rgba(0,0,0,.82), rgba(0,0,0,.82)),
    url('../assets/b2.jpg') center / cover fixed;
}

@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]) .pricing,
  html:not([data-theme="light"]) .ueber {
    background:
      linear-gradient(rgba(0,0,0,.82), rgba(0,0,0,.82)),
      url('../assets/b2.jpg') center / cover fixed;
  }
}

/* =============================================
   Dark Mode — Neon Effects
   ============================================= */
html[data-theme="dark"],
html:not([data-theme="light"]) {
  --neon: rgba(255, 189, 89, 0.85);
  --neon-far: rgba(255, 189, 89, 0.3);
  --neon-text: 0 0 6px var(--neon), 0 0 18px var(--neon), 0 0 40px var(--neon-far);
  --neon-box:  0 0 8px var(--neon), 0 0 20px var(--neon-far);
}

@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]) {
    --neon: rgba(255, 189, 89, 0.85);
    --neon-far: rgba(255, 189, 89, 0.3);
    --neon-text: 0 0 6px var(--neon), 0 0 18px var(--neon), 0 0 40px var(--neon-far);
    --neon-box:  0 0 8px var(--neon), 0 0 20px var(--neon-far);
  }
}

/* Nav logo */
.hero__aktion.gold-section {
  animation: fadeUp 0.85s 0.18s var(--ease) both;
}

html[data-theme="light"] .hero__aktion.gold-section {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 12px;
  padding: 1rem;
}

@media (prefers-color-scheme: light) {
  html:not([data-theme="dark"]) .hero__aktion.gold-section {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 12px;
    padding: 1rem;
  }
}

/* Nav links hover */
html[data-theme="dark"] .nav__link:hover,
html:not([data-theme="light"]) .nav__link:hover {
  text-shadow: 0 0 8px var(--neon), 0 0 20px var(--neon-far);
}

/* Nav scrolled border glow */
html[data-theme="dark"] .nav--scrolled,
html:not([data-theme="light"]) .nav--scrolled {
  box-shadow: 0 1px 0 0 rgba(255,189,89,0.15), 0 4px 24px rgba(0,0,0,0.6);
}

/* Gold primary button */
html[data-theme="dark"] .btn--gold,
html:not([data-theme="light"]) .btn--gold {
  box-shadow: 0 0 12px rgba(255,189,89,0.5), 0 0 30px rgba(255,189,89,0.2);
}
html[data-theme="dark"] .btn--gold:hover,
html:not([data-theme="light"]) .btn--gold:hover {
  box-shadow: 0 0 20px rgba(255,189,89,0.7), 0 0 50px rgba(255,189,89,0.3);
}

/* Section labels & titles */
html[data-theme="dark"] .section-label,
html:not([data-theme="light"]) .section-label {
  text-shadow: 0 0 10px rgba(255,189,89,0.6);
  filter: drop-shadow(0 0 4px rgba(255,189,89,0.4));
}
html[data-theme="dark"] .section-title,
html:not([data-theme="light"]) .section-title {
  text-shadow: 0 0 30px rgba(255,189,89,0.15);
}
/* .text-gold neon removed */

/* Cards */
html[data-theme="dark"] .card:hover,
html:not([data-theme="light"]) .card:hover {
  box-shadow: 0 0 20px rgba(255,189,89,0.25), 0 0 60px rgba(255,189,89,0.1);
}
html[data-theme="dark"] .card__icon,
html:not([data-theme="light"]) .card__icon {
  filter: drop-shadow(0 0 6px rgba(255,189,89,0.5));
}

/* Pricing main card */
html[data-theme="dark"] .pricing__main,
html:not([data-theme="light"]) .pricing__main {
  box-shadow: 0 0 30px rgba(255,189,89,0.25), 0 0 80px rgba(255,189,89,0.1), inset 0 0 0 1px rgba(255,189,89,0.15);
}
html[data-theme="dark"] .pricing__name,
html:not([data-theme="light"]) .pricing__name {
  text-shadow: var(--neon-text);
}
html[data-theme="dark"] .pricing__amount,
html:not([data-theme="light"]) .pricing__amount {
  text-shadow: 0 0 20px rgba(255,189,89,0.4);
}

/* Aktion hero block */
html[data-theme="dark"] .hero__aktion-main,
html:not([data-theme="light"]) .hero__aktion-main {
  text-shadow:
    -4px -4px 0 #111, 0 -4px 0 #111,  4px -4px 0 #111,
    -4px  0   0 #111,                   4px  0   0 #111,
    -4px  4px 0 #111, 0  4px 0 #111,  4px  4px 0 #111,
    -3px -3px 0 #111, 3px -3px 0 #111,
    -3px  3px 0 #111, 3px  3px 0 #111,
    0 0 20px rgba(255,189,89,0.8),
    0 0 50px rgba(255,189,89,0.5),
    0 0 90px rgba(255,189,89,0.25);
}
html[data-theme="dark"] .hero__aktion-rule,
html:not([data-theme="light"]) .hero__aktion-rule {
  box-shadow: 0 0 8px rgba(255,189,89,0.8), 0 0 20px rgba(255,189,89,0.4);
}
html[data-theme="dark"] .hero__aktion-top,
html[data-theme="dark"] .hero__aktion-bottom,
html:not([data-theme="light"]) .hero__aktion-top,
html:not([data-theme="light"]) .hero__aktion-bottom {
  text-shadow: 0 0 8px rgba(255,255,255,0.4);
}

/* HYROX tags */
html[data-theme="dark"] .hyrox__tag:hover,
html:not([data-theme="light"]) .hyrox__tag:hover {
  box-shadow: 0 0 14px rgba(255,189,89,0.4), 0 0 30px rgba(255,189,89,0.15);
}

/* Footer brand name — neon removed */

/* Theme toggle button */
html[data-theme="dark"] .theme-toggle,
html:not([data-theme="light"]) .theme-toggle {
  box-shadow: 0 0 8px rgba(255,189,89,0.2);
}
html[data-theme="dark"] .theme-toggle:hover,
html:not([data-theme="light"]) .theme-toggle:hover {
  box-shadow: 0 0 16px rgba(255,189,89,0.5), 0 0 32px rgba(255,189,89,0.2);
}

/* WhatsApp button */
html[data-theme="dark"] .wa-btn,
html:not([data-theme="light"]) .wa-btn {
  box-shadow: 0 0 12px rgba(37,211,102,0.5), 0 4px 20px rgba(37,211,102,0.4);
}

/* Aktion section card */
html[data-theme="dark"] .aktion__card,
html:not([data-theme="light"]) .aktion__card {
  box-shadow: 0 0 40px rgba(255,189,89,0.2), 0 0 80px rgba(255,189,89,0.08),
              inset 0 0 0 1px rgba(255,189,89,0.12);
}
/* .aktion__title neon removed */
html[data-theme="dark"] .aktion__icon,
html:not([data-theme="light"]) .aktion__icon {
  box-shadow: 0 0 16px rgba(255,189,89,0.35), inset 0 0 12px rgba(255,189,89,0.1);
}

/* =============================================
   Responsive — Tablet ≤ 1024px
   ============================================= */
@media (max-width: 1024px) {
  .pricing__wrap { max-width: 540px; grid-template-columns: 1fr; }
  .pricing__body { grid-template-columns: 1fr; gap: 1.5rem; }
  .pricing__extras-row { grid-template-columns: 1fr; max-width: 540px; }
  .slide-left  { transform: translateX(0); opacity: 0; }
  .slide-right { transform: translateX(0); opacity: 0; }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .ueber__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =============================================
   Responsive — Mobile ≤ 768px
   ============================================= */
@media (max-width: 768px) {
  /* --- Nav --- */
  .nav__burger { display: flex; }

  .nav__inner { gap: 0.75rem; }

  .nav__logo { font-size: 1.35rem; }

  .nav__links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(300px, 85vw);
    height: 100dvh;
    background: var(--bg-card);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 5.5rem 1.75rem 2rem;
    border-left: 1px solid var(--border);
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    z-index: 199;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .nav__links--open { transform: translateX(0); }
  .nav__links > li { width: 100%; }
  .nav__links .nav__link {
    display: block;
    font-size: 1rem;
    padding: 0.65rem 0;
    width: 100%;
    border-bottom: 1px solid var(--border);
  }
  .nav__links > li:last-child .nav__link { border-bottom: none; }
  .nav__links .btn { width: 100%; text-align: center; margin-top: 1rem; }
  .nav__links .theme-toggle { margin-top: 1rem; }

  /* --- Hero --- */
  .hero {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-bottom: 4rem;
    min-height: 100svh;
  }
  .hero__logo-img { width: clamp(140px, 45vw, 220px); }
  .hero__eye { font-size: 0.625rem; letter-spacing: 0.2em; }
  .hero__sub { font-size: 0.9375rem; }
  .hero__ctas { flex-direction: column; align-items: center; width: 100%; }
  .hero__ctas .btn { width: 100%; max-width: 320px; }

  /* Hero aktion — smaller on mobile */
  .hero__aktion { max-width: 100%; }
  .hero__aktion-main { font-size: clamp(2.8rem, 11vw, 5rem); }
  .hero__aktion-top,
  .hero__aktion-bottom { font-size: 0.8rem; }

  /* --- Stats --- */
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__item:nth-child(2)::after { display: none; }

  /* --- Section headers --- */
  .section-title { font-size: clamp(2rem, 7vw, 3rem); }
  .section-sub   { font-size: 0.9375rem; margin-bottom: 2.5rem; }

  /* --- Über uns cards --- */
  .ueber__cards  { grid-template-columns: 1fr; }
  .ueber__intro  { font-size: 0.9375rem; }
  .ueber__cta    { flex-direction: column; align-items: center; }
  .ueber__cta .btn { width: 100%; max-width: 320px; }

  /* --- Aktion card --- */
  .aktion__card  { padding: 2rem 1.25rem; }
  .aktion__body  {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }
  .aktion__cta   { width: 100%; }
  .aktion__title { font-size: clamp(1.6rem, 5vw, 2.2rem); }

  /* --- Features cards --- */
  .cards { grid-template-columns: 1fr; }

  /* --- Pricing --- */
  .pricing__main  { padding: 2.5rem 1.5rem; }
  .pricing__amount { font-size: 3.5rem; }

  /* --- HYROX --- */
  .hyrox__gear { gap: 0.625rem; }
  .hyrox__tag  { font-size: 0.875rem; padding: 0.5rem 1rem; }

  /* --- Footer --- */
  .footer__grid  { grid-template-columns: 1fr; gap: 2rem; }
  .footer        { padding: 3.5rem 0 1.5rem; }

  /* --- WhatsApp FAB --- */
  .wa-btn { bottom: 4.5rem; right: 1.25rem; width: 50px; height: 50px; }

  /* --- General section spacing --- */
  .section { padding-top: clamp(3rem, 7vw, 5rem); padding-bottom: clamp(3rem, 7vw, 5rem); }
}

/* =============================================
   Responsive — Small Mobile ≤ 400px
   ============================================= */
@media (max-width: 400px) {
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .stats__num  { font-size: 1.5rem; }
  .hero__aktion-main { font-size: clamp(2.4rem, 10vw, 3.5rem); }
  .nav__logo   { font-size: 1.2rem; }
  .hero__logo-img { width: 130px; }
  .pricing__amount { font-size: 3rem; }
}

/* =============================================
   Light Mode — Section Background Images
   ============================================= */

/* b4.jpg → Hero (start) */
html[data-theme="light"] .hero__bg {
  background:
    linear-gradient(rgba(255,255,255,0.82), rgba(255,255,255,0.82)),
    url('../assets/b4.jpg') center / cover fixed;
}
html[data-theme="light"] .hero__bg::after { display: none; }

/* b2.jpg → Pricing + Über uns */
html[data-theme="light"] .pricing,
html[data-theme="light"] .ueber {
  background:
    linear-gradient(rgba(255,255,255,0.88), rgba(255,255,255,0.88)),
    url('../assets/b2.jpg') center / cover fixed;
}

/* b2.jpg → Stats + Why + HYROX index-section + Aktion */
html[data-theme="light"] .stats {
  background:
    linear-gradient(rgba(255,255,255,0.90), rgba(255,255,255,0.90)),
    url('../assets/b2.jpg') center / cover fixed;
  border-top-color: var(--gold-border);
  border-bottom-color: var(--gold-border);
}

html[data-theme="light"] .why {
  background:
    linear-gradient(rgba(255,255,255,0.87), rgba(255,255,255,0.87)),
    url('../assets/b2.jpg') center / cover fixed;
}

html[data-theme="light"] .hyrox {
  background:
    linear-gradient(rgba(255,255,255,0.87), rgba(255,255,255,0.87)),
    url('../assets/b5.jpg') center / cover fixed;
}

html[data-theme="light"] .aktion {
  background:
    linear-gradient(rgba(255,255,255,0.88), rgba(255,255,255,0.88)),
    url('../assets/b2.jpg') center / cover fixed;
}
