/* ─── Buttons ──────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 18px 44px;
  border-radius: 2px;
  border: none;
  cursor: none;
  transition: background var(--duration-fast) ease,
              box-shadow var(--duration-fast) ease,
              transform var(--duration-fast) var(--ease-out);
  white-space: nowrap;
  line-height: 1;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: linear-gradient(180deg, #FF2224 0%, #F50306 45%, #C40205 100%);
  color: var(--color-white);
  box-shadow:
    0 4px 32px rgba(245, 3, 6, 0.50),
    inset 0 1px 0 rgba(255,255,255,0.18),
    inset 0 -1px 0 rgba(0,0,0,0.25);
}

.btn--primary:hover {
  background: linear-gradient(180deg, #FF3335 0%, #F50306 50%, #A80204 100%);
  box-shadow:
    0 6px 48px rgba(245, 3, 6, 0.70),
    inset 0 1px 0 rgba(255,255,255,0.22),
    inset 0 -1px 0 rgba(0,0,0,0.3);
  transform: translateY(-2px);
}

.btn--primary:active {
  transform: translateY(0);
}

/* Gloss sheen sweep on hover */
.btn--primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transition: left 0.4s ease;
}

.btn--primary:hover::after {
  left: 150%;
}

.btn--secondary {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255,255,255,0.30);
  box-shadow: inset 0 0 0 0 rgba(255,255,255,0);
}

.btn--secondary:hover {
  border-color: rgba(255,255,255,0.70);
  background: rgba(255,255,255,0.05);
}

.btn--hero {
  padding: 22px 64px;
  font-size: 13px;
  letter-spacing: 0.22em;
  box-shadow:
    0 8px 60px rgba(245, 3, 6, 0.60),
    0 0 0 1px rgba(245,3,6,0.3),
    inset 0 1px 0 rgba(255,255,255,0.20),
    inset 0 -1px 0 rgba(0,0,0,0.3);
}

.btn--hero:hover {
  box-shadow:
    0 12px 80px rgba(245, 3, 6, 0.80),
    0 0 0 1px rgba(245,3,6,0.5),
    inset 0 1px 0 rgba(255,255,255,0.25),
    inset 0 -1px 0 rgba(0,0,0,0.3);
  transform: translateY(-3px);
}

/* ─── Navigation ───────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 var(--container-pad);
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--duration-base) ease,
              box-shadow var(--duration-base) ease;
}

.nav.is-scrolled {
  background: rgba(8, 8, 8, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 4px 40px rgba(0,0,0,0.8);
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nav__logo-accent {
  color: var(--color-red);
  text-shadow: 0 0 20px rgba(245, 3, 6, 0.5);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav__link {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-white-dim);
  position: relative;
  transition: color var(--duration-fast) ease;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--color-red);
  box-shadow: 0 0 8px var(--color-red);
  transition: width var(--duration-fast) var(--ease-out);
}

.nav__link:hover,
.nav__link--active {
  color: var(--color-white);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__cta {
  flex-shrink: 0;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--color-white);
  transition: transform var(--duration-fast) ease,
              opacity var(--duration-fast) ease;
}

.nav__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile overlay */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--color-bg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-base) ease;
}

.nav__mobile.is-open {
  opacity: 1;
  pointer-events: all;
}

.nav__mobile-link {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-white);
  transition: color var(--duration-fast) ease;
}

.nav__mobile-link:hover { color: var(--color-red); }

/* ─── Cards ────────────────────────────────────────────── */

.card {
  background: var(--color-surface);
  border-radius: 3px;
  padding: var(--space-lg) var(--space-md);
  box-shadow: 0 2px 0 rgba(255,255,255,0.04) inset,
              0 1px 0 rgba(255,255,255,0.03),
              var(--shadow-md);
  transition: transform var(--duration-fast) var(--ease-out),
              box-shadow var(--duration-fast) ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.card:hover {
  box-shadow: 0 2px 0 rgba(255,255,255,0.06) inset,
              0 0 0 1px rgba(245,3,6,0.15),
              0 12px 60px rgba(0,0,0,0.8),
              0 0 30px rgba(245,3,6,0.08);
}

.card__icon {
  width: 40px;
  height: 40px;
  color: var(--color-red);
  margin-bottom: var(--space-md);
  filter: drop-shadow(0 0 8px rgba(245,3,6,0.4));
}

.card__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-white);
  margin-bottom: var(--space-xs);
}

.card__text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-white-dim);
  font-weight: 500;
}

/* ─── Feature Items ────────────────────────────────────── */

.feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--color-border);
}

.feature:last-child { border-bottom: none; }

.feature__icon {
  width: 36px;
  height: 36px;
  color: var(--color-red);
  margin-bottom: var(--space-md);
  filter: drop-shadow(0 0 10px rgba(245,3,6,0.5));
}

.feature__title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-white);
  margin-bottom: var(--space-xs);
}

.feature__text {
  font-size: 14px;
  color: var(--color-white-dim);
  line-height: 1.7;
  font-weight: 500;
}

/* ─── Divider ──────────────────────────────────────────── */

.divider {
  width: 44px;
  height: 3px;
  background: var(--color-red);
  box-shadow: 0 0 12px rgba(245,3,6,0.5);
  margin: var(--space-md) 0;
}

/* ─── Image Placeholder ────────────────────────────────── */

.img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 420px;
  background: linear-gradient(160deg, #161616 0%, #0a0a0a 60%, #111 100%);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.04);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white-muted);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ─── Ticker ───────────────────────────────────────────── */

.ticker {
  background: #0a0a0a;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 16px 0;
  overflow: hidden;
  position: relative;
}

.ticker::before,
.ticker::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.ticker::before {
  left: 0;
  background: linear-gradient(to right, #0a0a0a, transparent);
}

.ticker::after {
  right: 0;
  background: linear-gradient(to left, #0a0a0a, transparent);
}

.ticker__track {
  display: flex;
  white-space: nowrap;
  width: max-content;
  animation: ticker 30s linear infinite;
}

.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  padding: 0 var(--space-md);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.35);
}

.ticker__dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-red);
  box-shadow: 0 0 6px var(--color-red);
  flex-shrink: 0;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Stats ────────────────────────────────────────────── */

.stats {
  background: var(--color-surface);
  padding: var(--space-xl) 0;
  box-shadow: 0 -1px 0 var(--color-border), 0 1px 0 var(--color-border);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.stat {
  padding: var(--space-md) var(--space-lg);
  border-right: 1px solid var(--color-border);
  text-align: center;
}

.stat:last-child { border-right: none; }

.stat__number {
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 900;
  color: var(--color-white);
  line-height: 1;
  display: block;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 40px rgba(0,0,0,0.8);
}

.stat__suffix {
  color: var(--color-red);
  text-shadow: 0 0 20px rgba(245,3,6,0.6);
}

.stat__label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--color-white-muted);
  margin-top: var(--space-sm);
  display: block;
}

/* ─── CTA Banner ───────────────────────────────────────── */

.cta-banner {
  background: linear-gradient(160deg, #110000 0%, #0e0e0e 50%, #0a0a0a 100%);
  border-radius: 3px;
  padding: var(--space-2xl) var(--container-pad);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md), 0 0 0 1px var(--color-border);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 3px;
  background: var(--color-red);
  box-shadow: 0 0 30px rgba(245,3,6,0.8);
}

.cta-banner::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(245,3,6,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  margin-bottom: var(--space-md);
  text-shadow: 0 4px 40px rgba(0,0,0,0.8);
}

.cta-banner p {
  font-size: 17px;
  margin-bottom: var(--space-lg);
  color: var(--color-white-dim);
}

/* ─── Footer ───────────────────────────────────────────── */

.footer {
  background: #050505;
  border-top: 1px solid var(--color-border);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.footer__logo-accent {
  color: var(--color-red);
  text-shadow: 0 0 16px rgba(245,3,6,0.4);
}

.footer__tagline {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-white-muted);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.footer__social {
  display: flex;
  gap: var(--space-sm);
}

.footer__social-link {
  width: 38px; height: 38px;
  border: 1px solid var(--color-border);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white-muted);
  transition: color var(--duration-fast) ease,
              border-color var(--duration-fast) ease,
              box-shadow var(--duration-fast) ease;
}

.footer__social-link:hover {
  color: var(--color-white);
  border-color: rgba(245,3,6,0.5);
  box-shadow: 0 0 16px rgba(245,3,6,0.2);
}

.footer__col-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--color-red);
  margin-bottom: var(--space-md);
  display: block;
  text-shadow: 0 0 12px rgba(245,3,6,0.3);
}

.footer__col p,
.footer__col address {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-white-dim);
  line-height: 1.9;
  font-style: normal;
}

.footer__col a:hover {
  color: var(--color-white);
}

.footer__bottom {
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer__copyright {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-white-muted);
  letter-spacing: 0.05em;
}

.footer__legal {
  display: flex;
  gap: var(--space-md);
}

.footer__legal a {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-white-muted);
  letter-spacing: 0.05em;
  transition: color var(--duration-fast) ease;
}

.footer__legal a:hover { color: var(--color-white); }

/* ─── Responsive ───────────────────────────────────────── */

@media (max-width: 1023px) {
  .nav__links { gap: 24px; }

  .training-grid { grid-template-columns: repeat(2, 1fr); }
  .about-split  { grid-template-columns: 1fr; gap: var(--space-lg); }
  .about-split__image::after { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
  .stats__grid  { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3) { border-top: 1px solid var(--color-border); }
}

@media (max-width: 767px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .nav__mobile { display: flex; }

  .footer__grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ═══════════════════════════════════════════════════════════
   SUBPAGE COMPONENTS
   ═══════════════════════════════════════════════════════════ */

/* ─── Page Hero ─────────────────────────────────────────── */

.page-hero {
  min-height: 54vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(76px + var(--space-xl)) var(--container-pad) var(--space-xl);
  position: relative;
  overflow: hidden;
  background: var(--color-bg);
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 76px; left: 50%;
  transform: translateX(-50%);
  width: 75%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,3,6,0.3), transparent);
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(245,3,6,0.055) 0%, transparent 62%);
  pointer-events: none;
}

.page-hero__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.page-hero__label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--color-red);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.page-hero__label::before,
.page-hero__label::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: var(--color-red);
  opacity: 0.7;
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(52px, 10vw, 130px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 0.9;
  color: var(--color-white);
  text-shadow: 0 4px 60px rgba(0,0,0,0.5);
}

.page-hero__sub {
  font-size: 16px;
  color: var(--color-white-dim);
  margin-top: var(--space-md);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
  font-weight: 500;
}

/* ─── Trainer Cards ─────────────────────────────────────── */

.trainer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.trainer-card {
  background: var(--color-surface);
  border-radius: 3px;
  overflow: hidden;
  box-shadow: var(--shadow-md), 0 0 0 1px var(--color-border);
  transition: transform var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) ease;
}

.trainer-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(245,3,6,0.2),
              0 0 40px rgba(245,3,6,0.07);
}

.trainer-card__img {
  width: 100%;
  height: 400px;
}

.trainer-card__body {
  padding: var(--space-md) var(--space-lg) var(--space-lg);
}

.trainer-card__role {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--color-red);
  text-shadow: 0 0 10px rgba(245,3,6,0.3);
  margin-bottom: 6px;
  display: block;
}

.trainer-card__name {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-white);
  margin-bottom: var(--space-md);
  line-height: 1.1;
}

.trainer-card__stats {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: var(--space-sm) 0;
  margin-bottom: var(--space-md);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.trainer-card__stat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-white-dim);
  letter-spacing: 0.01em;
}

.trainer-card__stat-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-red);
  box-shadow: 0 0 8px rgba(245,3,6,0.7);
  flex-shrink: 0;
}

.trainer-card__text {
  font-size: 13px;
  line-height: 1.75;
  color: var(--color-white-muted);
  font-weight: 500;
}

/* ─── Course Cards ──────────────────────────────────────── */

.course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.course-card {
  background: var(--color-surface);
  border-radius: 3px;
  padding: var(--space-xl) var(--space-lg);
  box-shadow: var(--shadow-md), 0 0 0 1px var(--color-border);
  position: relative;
  overflow: hidden;
  transition: transform var(--duration-fast) var(--ease-out),
              box-shadow var(--duration-fast) ease;
}

.course-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(245,3,6,0.2),
              0 0 30px rgba(245,3,6,0.07);
}

.course-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--color-red);
  box-shadow: 2px 0 20px rgba(245,3,6,0.3);
}

.course-card__icon {
  width: 40px; height: 40px;
  color: var(--color-red);
  margin-bottom: var(--space-md);
  filter: drop-shadow(0 0 10px rgba(245,3,6,0.5));
}

.course-card__time {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-red);
  margin-bottom: var(--space-xs);
  display: block;
}

.course-card__title {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-white);
  margin-bottom: var(--space-xs);
  line-height: 1.1;
}

.course-card__target {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-white-muted);
  margin-bottom: var(--space-md);
  display: block;
}

.course-card__text {
  font-size: 14px;
  line-height: 1.75;
  color: var(--color-white-dim);
  font-weight: 500;
}

/* ─── Schedule Table ────────────────────────────────────── */

.schedule-wrap {
  background: var(--color-surface);
  border-radius: 3px;
  box-shadow: var(--shadow-md), 0 0 0 1px var(--color-border);
  overflow: hidden;
}

.schedule {
  width: 100%;
  border-collapse: collapse;
}

.schedule thead {
  background: rgba(245,3,6,0.05);
  border-bottom: 1px solid rgba(245,3,6,0.18);
}

.schedule th {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-red);
  padding: var(--space-md) var(--space-lg);
  text-align: left;
}

.schedule tbody tr {
  border-bottom: 1px solid var(--color-border);
  transition: background var(--duration-fast) ease;
}

.schedule tbody tr:last-child { border-bottom: none; }
.schedule tbody tr:hover { background: rgba(255,255,255,0.018); }

.schedule td {
  padding: var(--space-md) var(--space-lg);
  vertical-align: middle;
}

.schedule td:first-child {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-white);
  border-right: 1px solid var(--color-border);
  width: 130px;
}

.schedule-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 2px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.schedule-badge--kids    { background: rgba(245,3,6,0.10); color: var(--color-red); border: 1px solid rgba(245,3,6,0.22); }
.schedule-badge--fitness { background: rgba(255,255,255,0.05); color: var(--color-white-dim); border: 1px solid var(--color-border); }
.schedule-badge--olympic { background: rgba(245,3,6,0.18); color: #FF5555; border: 1px solid rgba(245,3,6,0.35); }

.schedule-time {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-white-muted);
  display: block;
  margin-bottom: 6px;
}

/* ─── Pricing ───────────────────────────────────────────── */

.pricing-section-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-white);
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.pricing-section-title::before {
  content: '';
  width: 28px; height: 3px;
  background: var(--color-red);
  box-shadow: 0 0 12px rgba(245,3,6,0.5);
  flex-shrink: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.pricing-card {
  background: var(--color-surface);
  border-radius: 3px;
  padding: var(--space-lg);
  box-shadow: var(--shadow-md), 0 0 0 1px var(--color-border);
  position: relative;
  overflow: hidden;
}

.pricing-card--featured {
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(245,3,6,0.35),
              0 0 40px rgba(245,3,6,0.07);
}

.pricing-card--featured::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--color-red);
  box-shadow: 0 0 20px rgba(245,3,6,0.7);
}

.pricing-card__label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--color-red);
  margin-bottom: 6px;
  display: block;
}

.pricing-card__title {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-white);
  margin-bottom: var(--space-lg);
  line-height: 1.1;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table tr { border-bottom: 1px solid var(--color-border); }
.pricing-table tr:last-child { border-bottom: none; }

.pricing-table td {
  padding: 13px 0;
  font-size: 14px;
  color: var(--color-white-dim);
  font-weight: 500;
  vertical-align: middle;
}

.pricing-table td:last-child {
  text-align: right;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 900;
  color: var(--color-white);
  letter-spacing: 0.02em;
}

/* ─── Form ──────────────────────────────────────────────── */

.form-wrap {
  background: var(--color-surface);
  border-radius: 3px;
  padding: var(--space-xl) var(--space-2xl);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--color-border);
  position: relative;
  overflow: hidden;
  max-width: 860px;
  margin: 0 auto;
}

.form-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--color-red);
  box-shadow: 0 0 30px rgba(245,3,6,0.6);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group--full { grid-column: 1 / -1; }

.form-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-white-dim);
}

.form-input,
.form-select,
.form-textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-white);
  transition: border-color var(--duration-fast) ease,
              box-shadow var(--duration-fast) ease,
              background var(--duration-fast) ease;
  outline: none;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(245,3,6,0.45);
  background: rgba(255,255,255,0.045);
  box-shadow: 0 0 0 3px rgba(245,3,6,0.07);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-white-muted);
}

.form-select option {
  background: #141414;
  color: var(--color-white);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.form-checkbox-row input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--color-red);
  cursor: pointer;
}

.form-checkbox-text {
  font-size: 13px;
  color: var(--color-white-muted);
  line-height: 1.6;
  font-weight: 500;
}

.form-checkbox-text a {
  color: var(--color-white-dim);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.25);
}

.form-alert {
  padding: 16px var(--space-md);
  border-radius: 2px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: var(--space-md);
  display: none;
  letter-spacing: 0.02em;
}

.form-alert--success {
  background: rgba(30,200,80,0.08);
  border: 1px solid rgba(30,200,80,0.3);
  color: #5DDF8A;
}

.form-alert--error {
  background: rgba(245,3,6,0.08);
  border: 1px solid rgba(245,3,6,0.4);
  color: #FF6060;
}

.form-alert.is-visible { display: block; }

.btn--submit.is-loading {
  pointer-events: none;
  opacity: 0.7;
}

@keyframes spin {
  to { transform: translate(-50%,-50%) rotate(360deg); }
}

/* ─── Fight Night / Events ──────────────────────────────── */

.fight-night {
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px var(--container-pad) var(--space-xl);
  position: relative;
  overflow: hidden;
  background: var(--color-bg);
}

.fight-night::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 55%, rgba(245,3,6,0.09) 0%, transparent 60%);
  pointer-events: none;
}

.fight-night::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 64px,
    rgba(255,255,255,0.007) 64px,
    rgba(255,255,255,0.007) 65px
  );
  pointer-events: none;
}

.fight-night__inner {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.fight-night__eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--color-red);
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.fight-night__eyebrow::before,
.fight-night__eyebrow::after {
  content: '';
  width: 48px; height: 1px;
  background: var(--color-red);
  opacity: 0.5;
}

.fight-night__word-fight {
  font-family: var(--font-display);
  font-size: clamp(80px, 16vw, 200px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.85;
  color: var(--color-white);
  text-shadow: 0 0 100px rgba(245,3,6,0.12), 0 8px 80px rgba(0,0,0,0.9);
  display: block;
}

.fight-night__word-night {
  font-family: var(--font-display);
  font-size: clamp(56px, 11vw, 140px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 0.85;
  color: var(--color-red);
  text-shadow: 0 0 80px rgba(245,3,6,0.55), 0 4px 40px rgba(245,3,6,0.3);
  display: block;
}

.fight-night__soon {
  font-size: clamp(11px, 1.4vw, 14px);
  font-weight: 700;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--color-white-muted);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-xs);
  display: block;
}

.fight-night__desc {
  max-width: 500px;
  margin: var(--space-sm) auto var(--space-xl);
  font-size: 15px;
  color: var(--color-white-muted);
  line-height: 1.8;
  font-weight: 500;
}

.notify-form-wrap {
  max-width: 480px;
  margin: 0 auto;
}

.notify-form {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.notify-form .form-input {
  flex: 1;
  min-width: 200px;
}

.notify-msg {
  margin-top: var(--space-sm);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--color-red);
  display: none;
}

.notify-msg.is-visible { display: block; }

/* ─── Values Grid ───────────────────────────────────────── */

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-sm);
}

.value-card {
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  border: 1px solid var(--color-border);
  border-radius: 3px;
  background: var(--color-surface);
  transition: border-color var(--duration-fast) ease,
              box-shadow var(--duration-fast) ease,
              transform var(--duration-fast) var(--ease-out);
}

.value-card:hover {
  border-color: rgba(245,3,6,0.3);
  box-shadow: 0 0 24px rgba(245,3,6,0.06);
  transform: translateY(-4px);
}

.value-card__bar {
  width: 28px; height: 3px;
  background: var(--color-red);
  box-shadow: 0 0 12px rgba(245,3,6,0.5);
  margin: 0 auto var(--space-sm);
}

.value-card__title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-white);
}

/* ─── Studio Page Grids ─────────────────────────────────── */

.values-grid--studio {
  grid-template-columns: repeat(3, 1fr);
}

.studio-netzwerk-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.studio-einblicke-imgs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

/* ─── Goals List ────────────────────────────────────────── */

.goals-list {
  display: flex;
  flex-direction: column;
}

.goals-list__item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: 18px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-white-dim);
  transition: color var(--duration-fast) ease,
              padding-left var(--duration-fast) var(--ease-out);
}

.goals-list__item:first-child { border-top: 1px solid var(--color-border); }

.goals-list__item:hover {
  color: var(--color-white);
  padding-left: var(--space-xs);
}

.goals-list__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-red);
  box-shadow: 0 0 10px rgba(245,3,6,0.65);
  flex-shrink: 0;
}

/* ─── Responsive: Subpages ──────────────────────────────── */

@media (max-width: 1023px) {
  .trainer-grid  { grid-template-columns: 1fr 1fr; }
  .course-grid   { grid-template-columns: 1fr; }
  .pricing-grid  { grid-template-columns: 1fr; }
  .values-grid   { grid-template-columns: repeat(3, 1fr); }
  .form-wrap     { padding: var(--space-xl) var(--space-lg); }
  .schedule td, .schedule th { padding: var(--space-sm) var(--space-md); }
}

@media (max-width: 767px) {
  .page-hero__title { font-size: clamp(40px, 13vw, 72px); }
  .trainer-grid  { grid-template-columns: 1fr; }
  .form-grid     { grid-template-columns: 1fr; }
  .values-grid   { grid-template-columns: repeat(2, 1fr); }
  .fight-night__word-fight { font-size: clamp(64px, 18vw, 110px); }
  .fight-night__word-night { font-size: clamp(48px, 13vw, 80px); }
  .notify-form   { flex-direction: column; }
}

/* ─── Mitgliedschaftsvertrag-Formular ───────────────────── */

.contract-heading {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-white);
  margin: var(--space-lg) 0 var(--space-sm);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.contract-heading:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }

.contract-heading::before {
  content: '';
  width: 22px; height: 3px;
  background: var(--color-red);
  box-shadow: 0 0 10px rgba(245,3,6,0.5);
  flex-shrink: 0;
}

.contract-subtext {
  font-size: 13px;
  color: var(--color-white-muted);
  line-height: 1.75;
  margin-bottom: var(--space-md);
}

.checkbox-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.checkbox-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  background: rgba(255,255,255,0.03);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-white-dim);
  transition: border-color .2s ease, background .2s ease;
}

.checkbox-pill:has(input:checked) {
  border-color: rgba(245,3,6,0.5);
  background: rgba(245,3,6,0.08);
  color: var(--color-white);
}

.checkbox-pill input { accent-color: var(--color-red); }

.beitrag-display {
  background: rgba(245,3,6,0.06);
  border: 1px solid rgba(245,3,6,0.25);
  border-radius: 2px;
  padding: 16px var(--space-md);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-white);
}

.beitrag-display strong {
  color: var(--color-red);
  font-size: 20px;
  font-family: var(--font-display);
}

.hint-box {
  font-size: 12.5px;
  line-height: 1.8;
  color: var(--color-white-muted);
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  padding: var(--space-md);
}

.sig-field { margin-bottom: var(--space-md); }

.sig-pad-wrap {
  position: relative;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2px;
  background: #F7F5F1;
  touch-action: none;
}

.sig-pad {
  width: 100%;
  height: 130px;
  display: block;
  cursor: crosshair;
}

.sig-clear {
  position: absolute;
  top: 8px; right: 8px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(0,0,0,0.55);
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 2px;
  padding: 5px 10px;
  cursor: pointer;
}

.sig-clear:hover { color: #000; border-color: rgba(245,3,6,0.4); }

.form-hidden { display: none !important; }

.download-link-wrap {
  margin-top: var(--space-md);
  text-align: center;
}

.download-link-wrap a {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-red);
  text-decoration: underline;
}

@media (max-width: 767px) {
  .checkbox-pill-row { flex-direction: column; }
}
