/* ====================================================
   BOGATYR BOXING TEAM — Premium Landing Page Styles
   ==================================================== */

/* ---- TOKENS ---- */
:root {
  --red:       #E83535;
  --red-dark:  #C01C1C;
  --red-glow:  rgba(232, 53, 53, 0.20);
  --black:     #0C0C0E;
  --charcoal:  #141417;
  --surface:   #1C1C20;
  --surface-2: #26262C;
  --border:    rgba(255,255,255,0.11);
  --white:     #FFFFFF;
  --grey-100:  #F0F0F0;
  --grey-400:  #AAAAAA;
  --grey-500:  #787878;
  --font-head: 'Bebas Neue', 'Arial Black', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease-out:  cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
  --shadow-card: 0 8px 36px rgba(0,0,0,0.55);
  --shadow-glow: 0 0 60px rgba(232,53,53,0.28);
  --radius:    14px;
  --radius-sm: 9px;
  --section-pad: clamp(80px, 10vw, 140px);
  --container: 1200px;
}

/* ---- RESET ---- */
*, *::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(--black);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
  color: inherit;
}
ul { list-style: none; }

/* ---- CONTAINER ---- */
.container {
  width: min(var(--container), 100% - clamp(32px, 5vw, 80px) * 2);
  margin-inline: auto;
}

/* ---- TYPOGRAPHY ---- */
.section-heading {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: 0.03em;
  color: var(--white);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 30px rgba(255,255,255,0.08);
  overflow-wrap: break-word;
  word-break: break-word;
}
.section-heading--left { text-align: left; }

.section-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--grey-400);
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 4rem;
  line-height: 1.7;
  overflow-wrap: break-word;
}
.section-sub--left { text-align: left; margin-inline: 0; }
.section-sub a { color: var(--red); }
.section-sub a:hover { text-decoration: underline; }

.section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.1rem;
}
.section-label--left { justify-content: flex-start; }
.label-line {
  display: block;
  width: 44px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  flex-shrink: 0;
}
.section-label--left .label-line:last-child { display: none; }

.text-red { color: var(--red); }

/* ---- SECTION ---- */
.section {
  padding-block: var(--section-pad);
  position: relative;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 7px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: all 0.28s var(--ease-out);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.09);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::after { opacity: 1; }

.btn--primary {
  background: linear-gradient(135deg, #EF3B3B 0%, #C41A1A 100%);
  color: var(--white);
  box-shadow: 0 4px 22px rgba(232,53,53,0.40), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn--primary:hover {
  background: linear-gradient(135deg, #F94545 0%, #D02020 100%);
  box-shadow: 0 8px 36px rgba(232,53,53,0.55), inset 0 1px 0 rgba(255,255,255,0.20);
  transform: translateY(-2px);
}
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: rgba(255,255,255,0.04);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  border-color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: rgba(255,255,255,0.75);
  border: 1.5px solid rgba(255,255,255,0.14);
}
.btn--outline:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(232,53,53,0.06);
  transform: translateY(-2px);
}

.btn--lg { padding: 17px 40px; font-size: 0.96rem; }
.btn--sm { padding: 10px 22px; font-size: 0.78rem; }
.btn--full { width: 100%; justify-content: center; padding: 16px 28px; }

.btn-arrow { width: 18px; height: 18px; flex-shrink: 0; }

/* ===================================================
   HEADER
   =================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--black);
  transition: background 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), padding 0.3s;
  padding-block: 16px;
}
.header.scrolled {
  background: rgba(12, 12, 14, 0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08), 0 4px 24px rgba(0,0,0,0.4);
  padding-block: 10px;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.header__logo-img {
  height: 110px;
  width: auto;
  display: block;
  filter: invert(1);
  mix-blend-mode: screen;
  opacity: 0.97;
  transition: opacity 0.3s, filter 0.3s, transform 0.3s;
}
.header.scrolled .header__logo-img {
  height: 82px;
}
.header__logo:hover .header__logo-img {
  opacity: 1;
  transform: scale(1.04);
  filter: invert(1) drop-shadow(0 0 14px rgba(214,40,40,0.7));
}
/* Footer */
.footer__logo .header__logo-img {
  height: 120px;
  opacity: 0.88;
}

/* Nav */
.header__nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 32px);
}
.header__nav a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey-400);
  transition: color 0.2s;
  position: relative;
}
.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--red);
  transition: width 0.25s var(--ease-out);
}
.header__nav a:hover,
.header__nav a.active { color: var(--white); }
.header__nav a:hover::after,
.header__nav a.active::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: 12px; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  flex-shrink: 0;
}
.burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s, width 0.3s;
  transform-origin: center;
}
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; width: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 24px;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}
.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-nav__link {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--grey-400);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-nav__link:hover { color: var(--white); }
.mobile-nav__cta { margin-top: 16px; width: 100%; justify-content: center; }

/* ---- Language Switcher ---- */
.lang-switcher {
  position: relative;
}
.lang-switcher__btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  cursor: pointer;
  color: var(--grey-100);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.lang-switcher__btn:hover { background: var(--surface-2); border-color: rgba(255,255,255,0.22); }
.lang-switcher__btn svg { transition: transform 0.2s; }
.lang-switcher__btn.open svg { transform: rotate(180deg); }

.lang-switcher__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  list-style: none;
  margin: 0;
  padding: 4px 0;
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  min-width: 155px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.7);
  z-index: 2000;
}
.lang-switcher__dropdown.open { display: block; }

.lang-opt {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  padding: 9px 14px;
  background: none;
  border: none;
  color: var(--grey-400);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  white-space: nowrap;
}
.lang-opt:hover { background: var(--surface-2); color: var(--white); }
.lang-opt--active { color: var(--white); }
.lang-opt--active::after { content: '✓'; margin-left: auto; color: var(--red); font-size: 0.78rem; }

/* Mobile lang switcher */
.mobile-lang-switcher {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.mobile-lang-switcher .lang-opt {
  padding: 7px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  width: auto;
  color: var(--grey-400);
}
.mobile-lang-switcher .lang-opt:hover,
.mobile-lang-switcher .lang-opt.lang-opt--active {
  background: var(--surface-2);
  color: var(--white);
  border-color: var(--red);
}
.mobile-lang-switcher .lang-opt--active::after { display: none; }

/* ===================================================
   HERO
   =================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 80px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 75% 65% at 72% 38%, rgba(232,53,53,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 8% 85%, rgba(232,53,53,0.09) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 50% 0%, rgba(255,255,255,0.04) 0%, transparent 50%),
    linear-gradient(170deg, #141416 0%, #0C0C0E 50%, #100808 100%);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.022'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero__geo {
  position: absolute;
  top: 50%;
  right: -120px;
  transform: translateY(-50%);
  width: clamp(300px, 45vw, 650px);
  aspect-ratio: 1;
  border: 1px solid rgba(214,40,40,0.12);
  border-radius: 50%;
  pointer-events: none;
}
.hero__geo::before {
  content: '';
  position: absolute;
  inset: 40px;
  border: 1px solid rgba(214,40,40,0.05);
  border-radius: 50%;
}
.hero__geo::after {
  content: '';
  position: absolute;
  inset: 90px;
  border: 1px solid rgba(214,40,40,0.05);
  border-radius: 50%;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  animation: heroFadeIn 1s var(--ease-out) both;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.4rem;
  animation: heroFadeIn 1s 0.1s var(--ease-out) both;
}
.dot {
  display: block;
  width: 5px;
  height: 5px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero__heading {
  font-family: var(--font-head);
  font-size: clamp(3.8rem, 9vw, 8.5rem);
  line-height: 0.93;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 4px 40px rgba(0,0,0,0.6);
  margin-bottom: 1.8rem;
  animation: heroFadeIn 1s 0.15s var(--ease-out) both;
}
.hero__heading em { font-style: normal; color: var(--red); }

.hero__sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--grey-400);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2.4rem;
  animation: heroFadeIn 1s 0.2s var(--ease-out) both;
}

.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  animation: heroFadeIn 1s 0.25s var(--ease-out) both;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  animation: heroFadeIn 1s 0.3s var(--ease-out) both;
}
.stat { text-align: center; }
.stat__num {
  display: block;
  font-family: var(--font-head);
  font-size: 2.4rem;
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 1;
  text-shadow: 0 0 20px rgba(232,53,53,0.35);
}
.stat__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-top: 2px;
}
.stat__divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--grey-500);
  transition: color 0.2s;
  animation: scrollBounce 2s 1.5s infinite;
  z-index: 1;
}
.hero__scroll:hover { color: var(--red); }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ===================================================
   WHY CHOOSE US
   =================================================== */
.about {
  background: var(--charcoal);
  background-image: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(232,53,53,0.06) 0%, transparent 60%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--border);
}

.feature-card {
  background: var(--surface);
  padding: 2.6rem;
  transition: background 0.3s, box-shadow 0.3s;
  position: relative;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.feature-card:hover { background: var(--surface-2); }
.feature-card:hover::before { transform: scaleX(1); }

.feature-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.2rem;
  color: var(--red);
}
.feature-card__icon svg { width: 100%; height: 100%; }

.feature-card h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
  color: var(--white);
  overflow-wrap: break-word;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--grey-400);
  line-height: 1.65;
  overflow-wrap: break-word;
}

/* ===================================================
   PROGRAMS
   =================================================== */
.programs { background: var(--black); }

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.program-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s;
  position: relative;
}
.program-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(214,40,40,0.3);
}

.program-card--featured {
  border-color: var(--red);
  background: linear-gradient(150deg, #200c0c 0%, #1a0a0a 30%, var(--surface) 70%);
  box-shadow: 0 0 0 1px var(--red), 0 0 60px rgba(232,53,53,0.22), 0 16px 48px rgba(0,0,0,0.5);
}
.program-card--featured:hover { transform: translateY(-4px); }

.program-card__badge {
  position: absolute;
  top: -1px;
  right: 20px;
  background: var(--red);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 0 0 6px 6px;
}

.program-card__icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--red-glow);
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.program-card__icon { width: 28px; height: 28px; color: var(--red); }

.program-card h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  overflow-wrap: break-word;
}
.program-card__desc {
  font-size: 0.9rem;
  color: var(--grey-400);
  line-height: 1.65;
  flex: 1;
  overflow-wrap: break-word;
}
.program-card__details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.program-card__details li {
  font-size: 0.82rem;
  color: var(--grey-400);
  display: flex;
  align-items: center;
  gap: 8px;
}
.program-card__details li::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===================================================
   COACHES
   =================================================== */
.coaches {
  background: var(--charcoal);
  background-image: radial-gradient(ellipse 60% 40% at 50% 100%, rgba(232,53,53,0.05) 0%, transparent 70%);
}

.coaches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.coach-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.coach-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }

.coach-card__img-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
}
.coach-card__img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s var(--ease-out);
}
.coach-card:hover .coach-card__img { transform: scale(1.03); }

/* Gradient placeholder images using CSS */
.coach-card__img--1 {
  background:
    linear-gradient(180deg, transparent 30%, rgba(10,10,10,0.8) 100%),
    linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 70%, #533483 100%);
}
.coach-card__img--2 {
  background:
    linear-gradient(180deg, transparent 30%, rgba(10,10,10,0.8) 100%),
    linear-gradient(135deg, #0f2027 0%, #203a43 40%, #2c5364 100%);
}
.coach-card__img--3 {
  background:
    linear-gradient(180deg, transparent 30%, rgba(10,10,10,0.8) 100%),
    linear-gradient(135deg, #1a0a0a 0%, #3d0000 40%, #6b0000 100%);
}

/* Decorative silhouette placeholder */
.coach-card__img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 200px;
  background: rgba(214,40,40,0.12);
  clip-path: polygon(30% 0%, 70% 0%, 90% 20%, 100% 100%, 0% 100%, 10% 20%);
}

.coach-card__img-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
}

.coach-card__info {
  padding: 1.6rem 1.8rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.coach-card__role {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}
.coach-card__name {
  font-family: var(--font-head);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  overflow-wrap: break-word;
}
.coach-card__bio {
  font-size: 0.88rem;
  color: var(--grey-400);
  line-height: 1.65;
  flex: 1;
  overflow-wrap: break-word;
}
.coach-card__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.coach-card__tags span {
  background: var(--red-glow);
  border: 1px solid rgba(214,40,40,0.3);
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 4px;
}

/* ===================================================
   SCHEDULE
   =================================================== */
.schedule {
  background: var(--black);
}
.schedule-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  margin-bottom: 3rem;
}
.schedule-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
}
.schedule-table thead {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.schedule-table th {
  padding: 14px 20px;
  text-align: left;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-400);
}
.schedule-table td {
  padding: 14px 20px;
  font-size: 0.88rem;
  color: var(--grey-400);
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.schedule-table tbody tr:last-child td { border-bottom: none; }
.schedule-table tbody tr:hover td { background: var(--surface); }
.schedule-table td.day {
  font-weight: 600;
  color: var(--white);
  font-size: 0.85rem;
}

.level {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.level--all {
  background: rgba(255,255,255,0.08);
  color: var(--grey-100);
}
.level--youth {
  background: rgba(50, 150, 255, 0.12);
  color: #4da6ff;
}
.level--advanced {
  background: var(--red-glow);
  color: var(--red);
}

.schedule-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.schedule-cta p {
  font-size: 0.95rem;
  color: var(--grey-400);
}

/* ===================================================
   TESTIMONIALS
   =================================================== */
.testimonials {
  background: var(--charcoal);
  background-image: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(232,53,53,0.05) 0%, transparent 65%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
.testimonial-card--large {
  grid-column: 1;
  grid-row: 1 / 3;
}
@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-card--large { grid-row: auto; }
}

.testimonial-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.25s, transform 0.25s;
}
.testimonial-card:hover {
  border-color: rgba(214,40,40,0.3);
  transform: translateY(-2px);
}

.testimonial-card__quote { width: 32px; height: auto; color: var(--red); opacity: 0.6; }
.testimonial-card--large .testimonial-card__quote { width: 40px; }

.testimonial-card__text {
  font-size: 0.95rem;
  color: var(--grey-100);
  line-height: 1.75;
  flex: 1;
  overflow-wrap: break-word;
}
.testimonial-card--large .testimonial-card__text {
  font-size: 1.05rem;
  line-height: 1.8;
}

.testimonial-card__stars {
  color: var(--red);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: auto;
  min-width: 0;
}
.testimonial-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.testimonial-card__author strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  overflow-wrap: break-word;
}
.testimonial-card__author span {
  display: block;
  font-size: 0.78rem;
  color: var(--grey-400);
  margin-top: 2px;
  overflow-wrap: break-word;
}

/* ===================================================
   PRICING
   =================================================== */
.pricing {
  background: var(--black);
  background-image: radial-gradient(ellipse 80% 55% at 50% 0%, rgba(232,53,53,0.07) 0%, transparent 55%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 2.5rem;
}

.pricing-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }

.pricing-card--featured {
  border-color: var(--red);
  background: linear-gradient(160deg, #200c0c 0%, #1a0a0a 35%, var(--surface) 70%);
  box-shadow: 0 0 0 1px var(--red), 0 0 60px rgba(232,53,53,0.22), 0 16px 48px rgba(0,0,0,0.5);
}
.pricing-card__badge {
  position: absolute;
  top: -1px;
  right: 20px;
  background: var(--red);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 0 0 6px 6px;
}

.pricing-card__header { display: flex; flex-direction: column; gap: 8px; }
.pricing-card__header h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  overflow-wrap: break-word;
}
.pricing-card__price { display: flex; align-items: baseline; gap: 4px; }
.price-amount {
  font-family: var(--font-head);
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--white);
}
.price-currency {
  font-size: 0.8rem;
  color: var(--grey-400);
  letter-spacing: 0.04em;
}

.pricing-card__desc {
  font-size: 0.88rem;
  color: var(--grey-400);
  line-height: 1.6;
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.pricing-card__features li {
  font-size: 0.86rem;
  color: var(--grey-400);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-card__features li::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

.pricing-note {
  text-align: center;
  font-size: 0.88rem;
  color: var(--grey-400);
  line-height: 1.6;
}
.pricing-note strong { color: var(--white); }
.pricing-note a { color: var(--red); }
.pricing-note a:hover { text-decoration: underline; }

/* ===================================================
   FAQ
   =================================================== */
.faq {
  background: var(--charcoal);
  background-image: radial-gradient(ellipse 50% 60% at 0% 50%, rgba(232,53,53,0.05) 0%, transparent 60%);
}

.faq__inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .faq__inner { grid-template-columns: 1fr; gap: 40px; }
}

.faq__left { position: sticky; top: 120px; }
.faq__left .btn { margin-top: 8px; }

.faq-list { display: flex; flex-direction: column; gap: 2px; }

.faq-item {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: rgba(214,40,40,0.3); }

.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 1.2rem 1.4rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--white);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color 0.2s;
  overflow-wrap: break-word;
  min-width: 0;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q:hover { color: var(--red); }

.faq-item__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--grey-400);
  transition: transform 0.3s var(--ease-out);
}
.faq-item[open] .faq-item__icon { transform: rotate(180deg); color: var(--red); }

.faq-item__a {
  padding: 0 1.4rem 1.2rem;
  font-size: 0.88rem;
  color: var(--grey-400);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  overflow-wrap: break-word;
}

/* ===================================================
   CONTACT
   =================================================== */
.contact {
  background: var(--black);
  background-image: radial-gradient(ellipse 70% 60% at 100% 50%, rgba(232,53,53,0.07) 0%, transparent 55%);
  border-top: 1px solid var(--border);
}
.contact__inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}
.contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--grey-400);
  line-height: 1.5;
  overflow-wrap: break-word;
  min-width: 0;
}
.contact__info-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--red);
  margin-top: 1px;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: linear-gradient(160deg, var(--surface-2) 0%, var(--surface) 100%);
  border: 1.5px solid rgba(255,255,255,0.13);
  border-radius: var(--radius);
  box-shadow: 0 16px 60px rgba(0,0,0,0.5);
  padding: 2.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 500px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--grey-400);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--surface-2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 0.9rem;
  color: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='1.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
  cursor: pointer;
}
.form-group select option { background: var(--surface-2); color: var(--white); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(232,53,53,0.18), 0 2px 12px rgba(232,53,53,0.12);
  outline: none;
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--grey-500); }

.form-note {
  font-size: 0.78rem;
  color: var(--grey-500);
  text-align: center;
  line-height: 1.5;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(30, 200, 100, 0.08);
  border: 1.5px solid rgba(30, 200, 100, 0.25);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: #4ade80;
  font-size: 0.88rem;
}
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background: var(--charcoal);
  background-image: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(232,53,53,0.05) 0%, transparent 60%);
  border-top: 1px solid var(--border);
}
.footer__inner {
  display: grid;
  grid-template-columns: 240px 1fr 1fr 1fr;
  gap: 48px;
  padding-block: 64px;
}
@media (max-width: 900px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-block: 48px;
  }
}

.footer__brand { display: flex; flex-direction: column; gap: 16px; }
.footer__logo { display: flex; align-items: center; gap: 10px; }
.footer__tagline {
  font-size: 0.83rem;
  color: var(--grey-500);
  line-height: 1.5;
  font-style: italic;
  overflow-wrap: break-word;
}
.footer__social { display: flex; gap: 12px; }
.social-link {
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--grey-400);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.social-link svg { width: 18px; height: 18px; }
.social-link:hover { border-color: var(--red); color: var(--red); background: var(--red-glow); }

.footer__nav-group { display: flex; flex-direction: column; gap: 10px; }
.footer__nav-group h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}
.footer__nav-group a, .footer__nav-group span {
  font-size: 0.85rem;
  color: var(--grey-400);
  transition: color 0.2s;
  overflow-wrap: break-word;
}
.footer__nav-group a:hover { color: var(--red); }
.footer__cta { margin-top: 8px; }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-block: 20px;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom p {
  font-size: 0.8rem;
  color: var(--grey-500);
}
.footer__bottom-links { display: flex; gap: 20px; }
.footer__bottom-links a {
  font-size: 0.8rem;
  color: var(--grey-500);
  transition: color 0.2s;
}
.footer__bottom-links a:hover { color: var(--white); }

/* ===================================================
   SCROLL ANIMATIONS
   =================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 900px) {
  .header__nav { display: none; }
  .burger { display: flex; }
  .mobile-nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
  }
  .header__logo-img { height: 78px; }
  .header.scrolled .header__logo-img { height: 62px; }

  .hero__heading { font-size: clamp(3.2rem, 13vw, 5.5rem); }

  .features-grid { gap: 1px; }
  .programs-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
}

@media (max-width: 640px) {
  :root { --section-pad: clamp(60px, 12vw, 100px); }
  .hero__stats { gap: 16px; }
  .stat__num { font-size: 1.8rem; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .contact-form { padding: 1.5rem; }
  .features-grid { grid-template-columns: 1fr; }
  .coaches-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
  .hero__eyebrow { letter-spacing: 0.1em; }
  .section-label { letter-spacing: 0.12em; }
  .section-heading { letter-spacing: 0.01em; }
  .contact__info-item { word-break: break-all; }
  .header__actions .btn { display: none; }
}

/* ===================================================
   DEV NOTICE POPUP
   =================================================== */
.dev-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 1;
  transition: opacity 0.35s ease;
}
.dev-popup.hidden {
  opacity: 0;
  pointer-events: none;
}
.dev-popup__box {
  background: #161618;
  border: 1.5px solid rgba(232, 53, 53, 0.35);
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255,255,255,0.04);
  padding: clamp(28px, 5vw, 52px);
  max-width: 480px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  animation: popupIn 0.4s var(--ease-out) both;
}
@keyframes popupIn {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.dev-popup__icon {
  width: 60px;
  height: 60px;
  background: rgba(232, 53, 53, 0.12);
  border: 1.5px solid rgba(232, 53, 53, 0.3);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--red);
  flex-shrink: 0;
}
.dev-popup__title {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
}
.dev-popup__text {
  font-size: 0.92rem;
  color: var(--grey-400);
  line-height: 1.7;
  max-width: 380px;
}
.dev-popup__btn {
  margin-top: 4px;
  white-space: normal;
}

/* ===================================================
   UTILITIES
   =================================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--surface-2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--grey-500); }

/* Selection */
::selection { background: var(--red); color: var(--white); }
