/* ════════════════════════════════════════════════════════
   STYLE-DARK.CSS — DARK COMBAT EDITION v4.0 ФИНАЛ
   ════════════════════════════════════════════════════════ */

/* ═══ ШРИФТЫ ═══ */
@font-face { font-family:"Inter"; font-style:normal; font-weight:400; font-display:swap; src:url("fonts/inter/inter-v20-cyrillic-regular.woff2") format("woff2"); }
@font-face { font-family:"Inter"; font-style:normal; font-weight:600; font-display:swap; src:url("fonts/inter/inter-v20-cyrillic-600.woff2") format("woff2"); }
@font-face { font-family:"Inter"; font-style:normal; font-weight:700; font-display:swap; src:url("fonts/inter/inter-v20-cyrillic-700.woff2") format("woff2"); }

/* ═══ ПЕРЕМЕННЫЕ ═══ */
:root {
  --primary-color: #c00000;
  --accent-color:  #8b0000;
  --gold-color:    #ffd700;
  --bg-dark:       #000000;
  --bg-gray:       #0f0f0f;
  --bg-card:       rgba(0,0,0,0.82);
  --text-color:    #e0e0e0;
  --text-muted:    #b0b0b0;
  --text-light:    #ffffff;
  --shadow-red:    rgba(192,0,0,0.35);
  --shadow-gold:   rgba(255,215,0,0.35);
  --success-color: #4CAF50;
}

/* ═══ RESET ═══ */
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family:'Inter', system-ui, sans-serif;
  font-size:16px; line-height:1.6;
  color:var(--text-color);
  background-color:var(--bg-dark);
  overflow-x:hidden;
}

/* ═══ СКРОЛЛБАР ═══ */
::-webkit-scrollbar { width:10px; }
::-webkit-scrollbar-track { background:rgba(0,0,0,0.8); }
::-webkit-scrollbar-thumb { background:linear-gradient(135deg,var(--primary-color),#ff3333); border-radius:6px; border:2px solid rgba(0,0,0,0.8); box-shadow:0 0 8px var(--shadow-red); }
::-webkit-scrollbar-thumb:hover { background:linear-gradient(135deg,#ff3333,var(--primary-color)); }
* { scrollbar-width:thin; scrollbar-color:var(--primary-color) rgba(0,0,0,0.8); }

/* ═══ ТИПОГРАФИКА ═══ */
h1,h2,h3,h4,h5 { font-family:'Inter',system-ui,sans-serif; font-weight:700; line-height:1.2; margin-bottom:1rem; text-transform:uppercase; letter-spacing:1.5px; color:var(--text-light); }
h1 { font-size:2.5rem; }
h2 { font-size:2rem; }
h3 { font-size:1.5rem; }
p  { margin-bottom:1rem; color:var(--text-color); }
a  { text-decoration:none; color:var(--text-light); transition:color 0.3s ease; }
a:hover { color:var(--primary-color); }

/* ═══ LAYOUT ═══ */
.container { max-width:1200px; margin:0 auto; padding:0 20px; }
.section { padding:80px 0; position:relative; background-color:var(--bg-dark); }
.section::after { display:none; }
.section-alt { background-color:var(--bg-gray); }

/* ═══ ПЕРЕКРЫТИЕ ИНЛАЙН-СТИЛЕЙ ═══ */
[style*="background: white"],[style*="background:white"],
[style*="background-color: white"],[style*="background-color:#fff"],
[style*="background: #fff"] {
  background:var(--bg-card) !important;
  border:1px solid rgba(192,0,0,0.25) !important;
  box-shadow:0 5px 20px rgba(0,0,0,0.5) !important;
  color:var(--text-color) !important;
}
[style*="background: #f9fafb"],[style*="background:#f9fafb"],
[style*="background-color: #f9fafb"],[style*="background: #F9FAFB"] { background:var(--bg-gray) !important; }
[style*="color: #111827"],[style*="color:#111827"],
[style*="color: #1f2937"],[style*="color:#1f2937"],
[style*="color: #374151"],[style*="color:#374151"] { color:var(--text-light) !important; }
[style*="color: #6B7280"],[style*="color:#6B7280"],
[style*="color: #6b7280"] { color:var(--text-muted) !important; }

/* ═══════════════════════════════════════
   HEADER
   ═══════════════════════════════════════ */
.header {
  background-color:rgba(0,0,0,0.96);
  border-bottom:2px solid var(--primary-color);
  position:sticky; top:0; z-index:1000;
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  box-shadow:0 4px 20px var(--shadow-red);
}
.nav {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 20px;
  max-width:1200px;
  margin:0 auto;
  gap:10px;
  flex-wrap:nowrap;
}
.logo {
  font-size:1.1rem; font-weight:700;
  color:var(--text-light);
  display:flex; flex-direction:column; gap:2px;
  text-transform:uppercase; letter-spacing:2px;
  text-shadow:0 0 10px var(--shadow-red);
  flex-shrink:0;
  text-decoration:none;
}
.logo:hover { color:var(--primary-color); text-shadow:0 0 20px rgba(192,0,0,0.7); }
.logo-schedule { font-size:0.6rem; color:var(--text-muted); font-weight:400; letter-spacing:0.5px; text-transform:none; text-shadow:none; }

.nav-links {
  display:flex; list-style:none;
  gap:12px; align-items:center;
}
.nav-links a {
  color:var(--text-light); font-weight:700;
  font-size:0.78rem; letter-spacing:0.5px;
  text-transform:uppercase; padding:6px 0;
  position:relative; white-space:nowrap;
  transition:color 0.3s ease;
  text-decoration:none;
}
.nav-links a::after {
  content:''; position:absolute; bottom:0; left:0;
  width:0; height:2px;
  background-color:var(--primary-color);
  transition:width 0.3s ease;
}
.nav-links a:hover { color:var(--primary-color); text-shadow:0 0 8px var(--shadow-red); }
.nav-links a:hover::after { width:100%; }

/* DROPDOWN */
.dropdown { position:relative; }
.dropdown-content {
  display:none; position:absolute;
  background-color:rgba(0,0,0,0.97);
  min-width:260px;
  box-shadow:0 10px 30px rgba(192,0,0,0.3);
  z-index:9999; padding:10px 0;
  top:100%; left:0;
  border:1px solid var(--primary-color);
  border-top:2px solid var(--primary-color);
  backdrop-filter:blur(10px);
}
.dropdown-content a { padding:12px 20px; display:block; font-size:0.9rem; color:var(--text-color); font-weight:400; text-transform:none; letter-spacing:0; }
.dropdown-content a::after { display:none; }
.dropdown-content a:hover { background-color:rgba(192,0,0,0.15); color:var(--text-light); padding-left:28px; }
.dropdown-content strong { padding:12px 20px; display:block; color:var(--primary-color); font-size:0.8rem; font-weight:700; pointer-events:none; letter-spacing:1.5px; text-transform:uppercase; background-color:rgba(192,0,0,0.08); }
.dropdown:hover .dropdown-content { display:block; animation:fadeIn 0.2s ease-in-out; }
.dropdown-divider { height:1px; background:rgba(192,0,0,0.3); margin:6px 16px; }

/* NAV CTA */
.nav-cta { display:flex; gap:10px; align-items:center; flex-shrink:0; }
.header-contacts { display:flex; flex-direction:column; align-items:flex-end; gap:4px; flex-shrink:0; min-width:fit-content; }
.phone { font-weight:700; color:var(--primary-color); font-size:0.9rem; white-space:nowrap; letter-spacing:1px; text-shadow:0 0 8px var(--shadow-red); text-decoration:none; }
.phone:hover { text-shadow:0 0 18px rgba(192,0,0,0.8); }
.header-address { font-size:0.65rem; color:var(--text-muted); text-align:right; line-height:1.2; }

/* ГАМБУРГЕР */
.nav-toggle {
  display:none;
  background:none;
  border:none;
  cursor:pointer;
  padding:10px;
  z-index:1002;
  flex-direction:column;
  gap:6px;
}

.nav-toggle.active {
  position:fixed !important;
  top:15px !important;
  right:15px !important;
  z-index:10001 !important;
}

.nav-toggle.active span:nth-child(1) { transform:rotate(45deg) translate(6px,6px); background:var(--primary-color); }
.nav-toggle.active span:nth-child(2) { opacity:0; }
.nav-toggle.active span:nth-child(3) { transform:rotate(-45deg) translate(6px,-6px); background:var(--primary-color); }

/* Крестик фиксируется поверх меню */
.nav-toggle.active {
  position:fixed !important;
  top:15px !important;
  right:15px !important;
  z-index:10001 !important;
  background:rgba(0,0,0,0.8) !important;
  border:1px solid var(--primary-color) !important;
  border-radius:0 !important;
  padding:10px !important;
  box-shadow:0 0 15px var(--shadow-red) !important;
}

/* ═══════════════════════════════════════
   КНОПКИ
   ═══════════════════════════════════════ */
.btn {
  display:inline-block; padding:15px 35px;
  font-family:'Inter',sans-serif; font-size:1rem; font-weight:700;
  text-decoration:none; border:none; cursor:pointer;
  text-align:center; text-transform:uppercase; letter-spacing:2px;
  position:relative; overflow:hidden; z-index:1;
  transition:all 0.4s ease;
}
.btn::after { content:''; position:absolute; top:0; left:-100%; width:100%; height:100%; background:linear-gradient(90deg,transparent,rgba(255,255,255,0.2),transparent); transition:left 0.6s ease; z-index:-1; }
.btn:hover::after { left:100%; }
.btn-primary { background-color:var(--primary-color); color:var(--text-light) !important; box-shadow:0 5px 15px var(--shadow-red); }
.btn-primary:hover { background-color:var(--accent-color); transform:translateY(-4px) scale(1.03); box-shadow:0 10px 25px rgba(192,0,0,0.6); color:var(--text-light) !important; }
.btn-outline { background-color:transparent; border:2px solid var(--primary-color); color:var(--text-light) !important; box-shadow:0 0 10px var(--shadow-red); }
.btn-outline:hover { background-color:var(--primary-color); color:var(--text-light) !important; transform:translateY(-4px); box-shadow:0 10px 25px rgba(192,0,0,0.6); }
.btn-telegram { background-color:#0088cc; color:var(--text-light) !important; display:inline-flex; align-items:center; gap:8px; box-shadow:0 5px 15px rgba(0,136,204,0.3); }
.btn-telegram:hover { background-color:#0077b5; transform:translateY(-4px); box-shadow:0 10px 25px rgba(0,136,204,0.5); color:var(--text-light) !important; }

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
  position:relative; color:var(--text-light);
  padding:100px 0 120px; overflow:hidden;
  display:flex; align-items:center; min-height:100dvh;
}
.hero-bg-img { position:absolute; top:0; left:0; width:100%; height:100%; object-fit:cover; z-index:1; filter:brightness(0.8) contrast(1.1); }
.hero-overlay { position:absolute; top:0; left:0; width:100%; height:100%; background:linear-gradient(to bottom, rgba(0,0,0,0.60) 0%, rgba(0,0,0,0.82) 60%, rgba(80,0,0,0.45) 100%); z-index:2; }
.hero .container { position:relative; z-index:3; }
.hero-content { max-width:900px; }
.hero h1 {
  color:var(--text-light); font-size:2.4rem; font-weight:700;
  text-transform:uppercase; letter-spacing:2px;
  margin-bottom:1.2rem; line-height:1.15;
  max-width:800px; word-break:keep-all; hyphens:none;
  text-shadow:3px 3px 6px rgba(0,0,0,0.8), 0 0 20px rgba(192,0,0,0.4);
  animation:textGlow 3s infinite alternate;
}
@keyframes textGlow {
  0%   { text-shadow:3px 3px 6px rgba(0,0,0,0.8), 0 0 10px rgba(192,0,0,0.3); }
  100% { text-shadow:3px 3px 6px rgba(0,0,0,0.8), 0 0 28px rgba(192,0,0,0.7); }
}
.hero-subtitle { font-size:1.2rem; margin-bottom:2rem; color:#E5E7EB; font-weight:400; }
.hero-features {
  display:flex; flex-direction:column; gap:16px; margin-bottom:2.5rem;
  background:rgba(0,0,0,0.62); padding:28px;
  border-left:4px solid var(--primary-color);
  border-top:1px solid rgba(192,0,0,0.3);
  border-right:1px solid rgba(192,0,0,0.15);
  border-bottom:1px solid rgba(192,0,0,0.15);
  backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px);
  box-shadow:0 10px 30px rgba(0,0,0,0.5);
}
.hero-feature { display:flex; align-items:flex-start; gap:15px; }
.hero-feature-icon { min-width:28px; height:28px; background:linear-gradient(135deg,var(--primary-color),var(--accent-color)); display:flex; align-items:center; justify-content:center; font-weight:700; font-size:1rem; margin-top:2px; box-shadow:0 0 10px var(--shadow-red); color:var(--text-light); }
.hero-feature-text { font-size:1.05rem; line-height:1.5; color:var(--text-color); }
.hero-cta { display:flex; flex-wrap:wrap; gap:15px; }
.hero-trust { margin-top:20px; padding-top:20px; border-top:1px solid rgba(192,0,0,0.3); font-size:0.95rem; color:#9CA3AF; }
.hero-offer-badge {
  margin-top:16px; display:inline-flex; align-items:center; justify-content:center;
  padding:10px 18px; background:rgba(192,0,0,0.18); border:1px solid rgba(192,0,0,0.45);
  color:#FEF3C7; font-weight:700; font-size:1rem; letter-spacing:1px; text-transform:uppercase;
  animation:badgePulse 2s infinite;
}
@keyframes badgePulse {
  0%,100% { box-shadow:0 0 8px var(--shadow-red); }
  50%     { box-shadow:0 0 20px rgba(192,0,0,0.65); }
}
.hero-offer-badge::before { content:"★"; margin-right:10px; width:26px; height:26px; display:inline-flex; align-items:center; justify-content:center; background:rgba(192,0,0,0.40); border:1px solid rgba(192,0,0,0.50); color:var(--gold-color); font-size:14px; flex:0 0 auto; }

/* ═══════════════════════════════════════
   ТРЕНЕР
   ═══════════════════════════════════════ */
.trainer-highlight {
  background:linear-gradient(rgba(0,0,0,0.90),rgba(0,0,0,0.90)), url('../images/bg-trainer.jpg') center/cover no-repeat;
  color:var(--text-light); padding:80px 0; position:relative;
}
.trainer-highlight-content { display:grid; grid-template-columns:1fr 2fr; gap:40px; align-items:center; }
.trainer-highlight-photo { width:100%; max-width:350px; height:380px; overflow:hidden; border:4px solid var(--primary-color); box-shadow:0 15px 40px rgba(0,0,0,0.6), 0 0 30px var(--shadow-red); transition:transform 0.5s ease, box-shadow 0.5s ease; }
.trainer-highlight-photo:hover { transform:scale(1.03); }
.trainer-highlight-photo img { width:100%; height:100%; object-fit:cover; filter:grayscale(20%); transition:filter 0.4s ease; }
.trainer-highlight-photo:hover img { filter:grayscale(0); }
.trainer-highlight-info h2 { color:var(--text-light); font-size:2.2rem; margin-bottom:15px; }
.trainer-highlight-title { font-size:1.1rem; margin-bottom:20px; color:var(--primary-color); font-weight:700; letter-spacing:2px; text-transform:uppercase; text-shadow:0 0 10px var(--shadow-red); }
.trainer-highlight-description { font-size:1.05rem; line-height:1.7; margin-bottom:25px; color:var(--text-color); }
.trainer-highlight-features { display:grid; grid-template-columns:repeat(2,1fr); gap:15px; }
.trainer-highlight-feature { display:flex; align-items:center; gap:10px; background:rgba(0,0,0,0.70); padding:12px 15px; border-left:3px solid var(--primary-color); backdrop-filter:blur(5px); transition:all 0.3s ease; }
.trainer-highlight-feature:hover { background:rgba(192,0,0,0.15); transform:translateX(5px); }
.trainer-highlight-feature-icon { font-size:1.5rem; }

/* ═══════════════════════════════════════
   DIAGNOSTIC BANNER — КРИЗИС
   ═══════════════════════════════════════ */
.diagnostic-banner {
  background:linear-gradient(135deg,#1a0000 0%,#2d0000 50%,#1a0000 100%) !important;
  border-top:3px solid var(--primary-color) !important;
  border-bottom:3px solid var(--primary-color) !important;
  box-shadow:0 0 30px var(--shadow-red);
  /* Вырываем из контейнера на полную ширину */
  width:100vw !important;
  margin-left:calc(-50vw + 50%) !important;
  margin-right:calc(-50vw + 50%) !important;
  position:relative !important;
  box-sizing:border-box !important;
  padding:35px 0 !important;
}
.diagnostic-banner.hidden { opacity:0; max-height:0; padding:0; overflow:hidden; border:none; }
.diagnostic-banner-content {
  max-width:1200px; margin:0 auto;
  padding:0 20px; box-sizing:border-box;
  display:flex; align-items:center;
  justify-content:space-between; gap:30px; flex-wrap:wrap;
}
.diagnostic-banner-left { display:flex; align-items:center; gap:25px; flex:1; min-width:280px; }
.diagnostic-banner-icon { font-size:4.5rem; animation:pulseBanner 2s infinite; }
@keyframes pulseBanner { 0%,100% { transform:scale(1); } 50% { transform:scale(1.1); } }
.diagnostic-banner-text h3 { font-size:1.4rem; color:var(--text-light) !important; margin-bottom:10px; }
.diagnostic-banner-text p  { font-size:1rem; color:var(--text-color) !important; margin:0; }
.diagnostic-banner-right { display:flex; flex-direction:column; align-items:flex-end; gap:15px; }
.diagnostic-banner-btn {
  background:linear-gradient(135deg,var(--primary-color),var(--accent-color)) !important;
  color:var(--text-light) !important;
  padding:18px 40px; font-weight:700; font-size:1.1rem;
  text-transform:uppercase; letter-spacing:2px;
  box-shadow:0 8px 25px var(--shadow-red);
  white-space:nowrap; transition:all 0.3s ease;
  display:inline-block; text-decoration:none;
}
.diagnostic-banner-btn:hover { transform:translateY(-4px) scale(1.03); color:var(--text-light) !important; }
.price-badge { font-size:0.95rem; font-weight:700; color:#1a1a1a !important; background:rgba(255,255,255,0.95) !important; border:1px solid rgba(255,215,0,0.35) !important; padding:8px 20px; border-radius:25px; text-transform:uppercase; letter-spacing:1px; }

/* ═══════════════════════════════════════
   SCHEDULE
   ═══════════════════════════════════════ */
#schedule {
  background:linear-gradient(rgba(0,0,0,0.88),rgba(0,0,0,0.88)), url('images/bg-kids.jpg') center/cover no-repeat !important;
  color:var(--text-light) !important;
}
#schedule h2 { color:var(--text-light) !important; }
#schedule .container > div > div { background:rgba(192,0,0,0.10) !important; border:1px solid rgba(192,0,0,0.35) !important; border-left:4px solid var(--primary-color) !important; border-radius:0 !important; }

/* ═══════════════════════════════════════
   DIRECTIONS
   ═══════════════════════════════════════ */
#directions { background:var(--bg-gray) !important; }
#directions h2,#directions h3,#directions h4 { color:var(--text-light) !important; }
#directions h3[style*="color: var(--primary-color)"] { color:var(--primary-color) !important; text-shadow:0 0 10px var(--shadow-red); }

/* ═══════════════════════════════════════
   ГАЛЕРЕЯ
   ═══════════════════════════════════════ */
#gallery { background:var(--bg-dark) !important; }
#gallery h2 { color:var(--text-light) !important; }
#gallery p  { color:var(--text-muted) !important; }
.photo-gallery-grid div { border-radius:0 !important; border:1px solid rgba(192,0,0,0.25) !important; border-left:3px solid var(--primary-color) !important; box-shadow:0 4px 15px rgba(0,0,0,0.5) !important; }

/* ═══════════════════════════════════════
   ВИДЕО
   ═══════════════════════════════════════ */
.gallery-video-section { background:var(--bg-gray) !important; }
.gallery-video-section h2 { color:var(--text-light) !important; }
.gallery-video-section p  { color:var(--text-muted) !important; }
.video-grid {
  display:flex; flex-wrap:wrap; gap:24px;
  justify-content:flex-start;
  width:100%; max-width:1200px;
  margin:0 auto; padding:0 20px; box-sizing:border-box;
}
.video-card {
  flex:0 1 calc(33.333% - 16px); min-width:280px;
  background:var(--bg-card) !important;
  border-radius:0 !important;
  border:1px solid rgba(192,0,0,0.25) !important;
  border-left:3px solid var(--primary-color) !important;
  transition:transform 0.3s, box-shadow 0.3s;
}
.video-card:hover { transform:translateY(-6px); box-shadow:0 12px 30px var(--shadow-red) !important; }
.video-wrapper { position:relative; padding-bottom:56.25%; height:0; background:#000; }
.video-wrapper iframe { position:absolute; top:0; left:0; width:100%; height:100%; border:none; display:block; }
.video-caption { padding:18px; text-align:center; }
.video-caption h3 { color:var(--text-light) !important; }
.video-caption p  { color:var(--text-muted) !important; }

/* ==============================
   PRICING (новый)
   ============================== */
#pricing { background: var(--bg-dark) !important; }
#pricing h2, #pricing h3 { color: var(--text-light) !important; }
#pricing p { color: var(--text-color) !important; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 20px;
}
.pricing-card {
  background: var(--bg-card) !important;
  border: 1px solid rgba(192,0,0,0.30);
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px var(--shadow-red);
}
.pricing-card--featured {
  border: 2px solid var(--primary-color);
  border-bottom: 3px solid var(--primary-color);
  transform: scale(1.03);
}
.pricing-card--featured:hover {
  transform: scale(1.03) translateY(-8px);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: #fff;
  padding: 5px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.pricing-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-light) !important;
  margin: 10px 0 8px;
}
.pricing-price {
  font-size: 2.8rem;
  color: var(--primary-color) !important;
  font-weight: 800;
  line-height: 1;
  margin: 10px 0 4px;
  text-shadow: 0 0 15px var(--shadow-red);
}
.pricing-price-cash {
  color: #4ade80 !important;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 20px;
  min-height: 24px;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  text-align: left;
  flex: 1;
}
.pricing-features li {
  padding: 8px 0 8px 28px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.95rem;
  color: var(--text-color);
}
.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}
.pricing-refund {
  text-align: center;
  margin: 10px auto 40px;
  padding: 16px 20px;
  background: rgba(192,0,0,0.12);
  border-left: 4px solid #c00000;
  border-radius: 8px;
  max-width: 680px;
  font-weight: 600;
  color: #ffffff;
}

/* --- АКЦИОННЫЙ БАННЕР --- */
.promo-banner {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  background: linear-gradient(135deg, #7c1a1a 0%, #b91c1c 50%, #7c1a1a 100%);
  color: white;
  padding: 36px 20px;
  box-sizing: border-box;
}
.promo-banner-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.promo-banner-emoji { font-size: 2.5rem; }
.promo-banner-text { flex: 1; min-width: 220px; }
.promo-banner-text h3 { font-size: 1.5rem; margin: 0 0 6px; color: #fff !important; }
.promo-banner-text p  { margin: 0; opacity: 0.9; font-size: 1rem; color: #fff !important; }
.promo-banner-price {
  text-align: center;
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 14px 24px;
  min-width: 160px;
}
.promo-banner-price .old { text-decoration: line-through; opacity: 0.7; font-size: 1rem; }
.promo-banner-price .new { font-size: 2rem; font-weight: 800; }
.promo-banner-price .saving { font-size: 0.85rem; opacity: 0.85; }
.promo-banner-cta {
  background: white;
  color: #b91c1c !important;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1rem;
  white-space: nowrap;
  transition: transform 0.2s;
  display: inline-block;
}
.promo-banner-cta:hover { transform: scale(1.04); }
.promo-countdown {
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.8;
  margin-top: 12px;
  color: #fff !important;
}
@media (max-width: 600px) {
  .pricing-card--featured { transform: none; }
  .promo-banner-inner { flex-direction: column; text-align: center; }
}

/* ═══════════════════════════════════════
   WHY US
   ═══════════════════════════════════════ */
#why-us { background:#0a0a0a !important; }
#why-us .whyus-header { text-align:center; margin-bottom:2.2rem; }
#why-us .whyus-subtitle { margin:0 auto; max-width:820px; color:var(--text-muted); line-height:1.6; }
#why-us .whyus-title { color:var(--text-light) !important; }
#why-us .whyus-grid { display:grid; grid-template-columns:repeat(3,minmax(260px,1fr)); gap:18px; }
#why-us .whyus-card { background:var(--bg-card); border-left:4px solid var(--primary-color); border:1px solid rgba(192,0,0,0.2); border-left:4px solid var(--primary-color); box-shadow:0 5px 20px rgba(0,0,0,0.4); padding:22px 20px 24px; transition:transform 0.3s ease, box-shadow 0.3s ease; backdrop-filter:blur(5px); }
#why-us .whyus-card:hover { transform:translateY(-6px); box-shadow:0 15px 35px var(--shadow-red); }
#why-us .whyus-icon { width:46px; height:46px; display:grid; place-items:center; font-size:1.4rem; margin-bottom:14px; background:rgba(192,0,0,0.15); border:1px solid rgba(192,0,0,0.40); transition:background 0.3s; }
#why-us .whyus-card:hover .whyus-icon { background:rgba(192,0,0,0.25); box-shadow:0 0 15px var(--shadow-red); }
#why-us .whyus-card-title { margin:0 0 10px; font-size:1.1rem; font-weight:700; color:var(--text-light); text-transform:uppercase; }
#why-us .whyus-card-text  { margin:0; color:var(--text-muted); line-height:1.6; font-size:0.95rem; }

/* ═══════════════════════════════════════
   ПОЧЕМУ ДЕТИ НЕ УХОДЯТ
   ═══════════════════════════════════════ */
section[style*="shkola-boksa-kikboksinga-deti-lyubertsy"] {
  background:linear-gradient(rgba(0,0,0,0.88),rgba(0,0,0,0.88)), url('../images/shkola-boksa-kikboksinga-deti-lyubertsy.webp') center/cover no-repeat !important;
}
section[style*="shkola-boksa-kikboksinga-deti-lyubertsy"] h2 { color:var(--text-light) !important; }
section[style*="shkola-boksa-kikboksinga-deti-lyubertsy"] [style*="rgba(255,255,255,0.15"],
section[style*="shkola-boksa-kikboksinga-deti-lyubertsy"] [style*="background: rgba(255"] {
  background:rgba(0,0,0,0.82) !important;
  border:1px solid rgba(192,0,0,0.25) !important;
  border-left:4px solid var(--primary-color) !important;
  border-radius:0 !important;
  box-shadow:0 8px 25px rgba(0,0,0,0.6) !important;
  backdrop-filter:blur(12px) !important;
  padding:28px 24px !important;
  transition:transform 0.3s ease !important;
}
section[style*="shkola-boksa-kikboksinga-deti-lyubertsy"] [style*="background: rgba(255"]:hover { transform:translateY(-8px) !important; }
section[style*="shkola-boksa-kikboksinga-deti-lyubertsy"] [style*="font-size: 3rem"] { background:linear-gradient(135deg,var(--primary-color),var(--accent-color)) !important; color:var(--text-light) !important; width:70px !important; height:70px !important; display:flex !important; align-items:center !important; justify-content:center !important; margin:0 auto 20px !important; }
section[style*="shkola-boksa-kikboksinga-deti-lyubertsy"] h3 { color:var(--text-light) !important; text-transform:uppercase !important; text-align:center !important; }
section[style*="shkola-boksa-kikboksinga-deti-lyubertsy"] p  { color:var(--text-color) !important; line-height:1.65 !important; text-align:center !important; }

/* ═══════════════════════════════════════
   PRICE-WHY ACCORDION
   ═══════════════════════════════════════ */
.price-why { max-width:700px; margin:14px auto 0; border:1px solid rgba(192,0,0,0.3); border-left:4px solid var(--primary-color); background:var(--bg-card); box-shadow:0 4px 20px rgba(0,0,0,0.5); overflow:hidden; backdrop-filter:blur(5px); }
.price-why summary { cursor:pointer; padding:16px 18px; font-weight:700; font-size:0.95rem; letter-spacing:1px; text-transform:uppercase; color:var(--text-light); background:rgba(192,0,0,0.10); user-select:none; outline:none; list-style:none; }
.price-why summary::-webkit-details-marker { display:none; }
.price-why summary:hover { background:rgba(192,0,0,0.20); }
.price-why summary::after { content:'▾'; float:right; transition:transform 0.2s ease; color:var(--primary-color); }
.price-why[open] summary::after { transform:rotate(180deg); }
.price-why :not(summary) { padding:0 18px 18px; color:var(--text-color); line-height:1.6; }
.price-why :not(summary) li { margin:8px 0; color:var(--text-muted); }

/* ═══════════════════════════════════════
   ФОРМА
   ═══════════════════════════════════════ */
#form { background:linear-gradient(rgba(0,0,0,0.93),rgba(0,0,0,0.95)), url('https://images.unsplash.com/photo-1571902943202-507ec2618e8f?q=80&w=2000') center/cover no-repeat !important; }
#form h2 { color:var(--text-light) !important; }
#form p  { color:#D1D5DB !important; }
#trialForm { background:rgba(0,0,0,0.70) !important; border:1px solid rgba(192,0,0,0.35) !important; border-left:4px solid var(--primary-color) !important; border-radius:0 !important; backdrop-filter:blur(10px); }

/* ═══════════════════════════════════════
   ФУТЕР
   ═══════════════════════════════════════ */
.footer { background:linear-gradient(rgba(0,0,0,0.96),rgba(0,0,0,0.96)), url('../images/bg-footer.jpg') center/cover no-repeat !important; color:var(--text-light); padding:60px 0 30px; border-top:3px solid var(--primary-color); position:relative; overflow:hidden; }
.footer::before { content:''; position:absolute; bottom:0; right:0; width:300px; height:300px; background:radial-gradient(circle, var(--primary-color) 0%, transparent 70%); opacity:0.04; border-radius:50%; filter:blur(20px); pointer-events:none; }
.footer h3,.footer h4 { color:var(--text-light) !important; }
.footer a { color:var(--text-muted) !important; transition:color 0.3s; }
.footer a:hover { color:var(--primary-color) !important; text-shadow:0 0 8px var(--shadow-red); }

/* ═══════════════════════════════════════
   НАША ГОРДОСТЬ
   ═══════════════════════════════════════ */
.pride-header { text-align:center; margin-bottom:3rem; }
.pride-title  { margin:0 0 1rem; color:var(--text-light); }
.pride-subtitle { margin:0 auto; max-width:820px; color:var(--text-muted); line-height:1.6; }
.pride-grid { display:grid; grid-template-columns:repeat(3,minmax(260px,1fr)); gap:24px; width:100%; }
.pride-card { background:var(--bg-card); overflow:hidden; border:1px solid rgba(192,0,0,0.25); border-bottom:3px solid var(--primary-color); display:flex; flex-direction:column; transition:transform 0.4s ease, box-shadow 0.4s ease; backdrop-filter:blur(5px); box-shadow:0 5px 15px rgba(0,0,0,0.4); }
.pride-card:hover { transform:translateY(-10px); box-shadow:0 20px 40px var(--shadow-red); }
.pride-photo { position:relative; overflow:hidden; cursor:pointer; }
.pride-photo img { width:100%; height:240px; object-fit:cover; transition:transform 0.5s ease, filter 0.4s ease; filter:grayscale(30%); }
.pride-card:hover .pride-photo img { transform:scale(1.06); filter:grayscale(0); }
.pride-body { padding:18px 18px 20px; display:flex; flex-direction:column; gap:10px; text-align:center; background:var(--bg-card); }
.pride-name { margin:0; font-size:1.1rem; font-weight:700; letter-spacing:1px; text-transform:uppercase; color:var(--text-light); }
.pride-note { margin:0; color:var(--text-muted); line-height:1.55; font-size:0.95rem; }
.pride-stats { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:10px; }
.pride-stat { background:rgba(255,255,255,0.04); border:1px solid rgba(192,0,0,0.25); padding:10px; font-size:0.9rem; color:var(--text-muted); display:flex; flex-direction:column; gap:4px; text-align:center; transition:background 0.3s; }
.pride-stat:hover { background:rgba(192,0,0,0.12); border-color:var(--primary-color); }
.pride-stat strong { color:var(--text-light); font-weight:800; }
.pride-badge { position:absolute; top:12px; left:12px; z-index:3; padding:7px 12px; font-size:0.85rem; font-weight:700; color:#fff; background:rgba(0,0,0,0.80); border:1px solid rgba(255,255,255,0.2); backdrop-filter:blur(6px); letter-spacing:0.5px; text-transform:uppercase; user-select:none; pointer-events:none; }
.pride-badge--right { left:auto; right:12px; }
.pride-badge--red   { background:linear-gradient(135deg,#DC2626,#B91C1C); box-shadow:0 0 10px var(--shadow-red); }
.pride-badge--green { background:linear-gradient(135deg,#059669,#047857); }
.pride-card--placeholder { background:linear-gradient(135deg,rgba(26,0,0,0.8),rgba(50,10,10,0.8)); border:1px solid rgba(192,0,0,0.35); }
.pride-photo--placeholder { height:240px; display:grid; place-items:center; background:rgba(192,0,0,0.08); cursor:default; }
.pride-placeholder-icon { width:70px; height:70px; display:grid; place-items:center; font-weight:900; font-size:2rem; color:#fff; background:linear-gradient(135deg,var(--primary-color),var(--accent-color)); box-shadow:0 10px 25px var(--shadow-red); }
.pride-cta { margin-top:8px; width:100%; }

/* ═══════════════════════════════════════
   GALLERY OVERLAY & MODALS
   ═══════════════════════════════════════ */
.gallery-overlay { position:fixed; top:0; left:0; width:100%; height:100%; background-color:rgba(0,0,0,0.97); z-index:2000; display:none; overflow-y:auto; padding:20px 0; opacity:0; transition:opacity 0.3s ease; border-top:3px solid var(--primary-color); }
.gallery-overlay.active { display:block; opacity:1; }
.gallery-close-btn { position:absolute; top:20px; right:30px; font-size:3rem; color:var(--text-light); cursor:pointer; z-index:2001; transition:color 0.3s; }
.gallery-close-btn:hover { color:var(--primary-color); text-shadow:0 0 15px var(--shadow-red); }
.gallery-overlay .container { margin-top:40px; color:var(--text-light); }
.tabs-section { display:flex; justify-content:center; margin-bottom:30px; }
.tabs { background:rgba(255,255,255,0.04); border:1px solid rgba(192,0,0,0.3); padding:5px; display:inline-flex; }
.tab { padding:12px 35px; font-size:0.95rem; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; color:var(--text-muted); background:transparent; border:none; cursor:pointer; transition:all 0.3s; }
.tab.active { background:var(--primary-color); color:var(--text-light); box-shadow:0 4px 15px var(--shadow-red); }
.tab-content { display:none; animation:fadeIn 0.4s ease; }
.tab-content.active { display:block; }
.photo-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(300px,1fr)); gap:20px; padding-bottom:50px; }
.photo-card { background:var(--bg-card); overflow:hidden; cursor:pointer; transition:transform 0.4s ease, box-shadow 0.4s ease; position:relative; border:1px solid rgba(192,0,0,0.25); border-left:3px solid var(--primary-color); }
.photo-card:hover { transform:translateY(-8px); box-shadow:0 15px 35px var(--shadow-red); }
.photo-card-image { height:250px; overflow:hidden; position:relative; }
.photo-card-image img { width:100%; height:100%; object-fit:cover; filter:grayscale(20%); transition:transform 0.5s ease, filter 0.4s ease; }
.photo-card:hover .photo-card-image img { transform:scale(1.1); filter:grayscale(0); }
.photo-card-overlay { position:absolute; top:0; left:0; width:100%; height:100%; background:rgba(192,0,0,0.25); display:flex; align-items:center; justify-content:center; opacity:0; transition:opacity 0.3s; font-size:2rem; }
.photo-card:hover .photo-card-overlay { opacity:1; }
.photo-card-caption { padding:18px; background:var(--bg-card); }
.photo-card-title { color:var(--text-light); font-size:1rem; font-weight:700; text-transform:uppercase; margin-bottom:5px; }
.photo-card-description { color:var(--text-muted); font-size:0.9rem; margin:0; }
.inner-modal { display:none; position:fixed; z-index:3000; left:0; top:0; width:100%; height:100%; overflow:hidden; background-color:rgba(0,0,0,0.97); align-items:center; justify-content:center; border-top:2px solid var(--primary-color); }
.inner-modal.active { display:flex; }
.inner-modal-content { max-width:90%; max-height:90%; }
.inner-modal-image { width:auto; height:auto; max-width:100%; max-height:90vh; border:2px solid var(--primary-color); box-shadow:0 0 50px var(--shadow-red); }
.inner-modal-close { position:absolute; top:20px; right:30px; color:var(--text-light); font-size:40px; font-weight:bold; cursor:pointer; z-index:3001; transition:color 0.3s; }
.inner-modal-close:hover { color:var(--primary-color); text-shadow:0 0 15px var(--shadow-red); }
.map-button-container { margin-top:20px; text-align:center; }

@keyframes fadeIn {
  from { opacity:0; transform:translateY(-10px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ═══════════════════════════════════════
   АДАПТИВ — ПЛАНШЕТ ≤1100px
   ═══════════════════════════════════════ */
@media (max-width:1100px) {
  .header-address { display:none !important; }
  .nav-links a { font-size:0.72rem !important; letter-spacing:0 !important; }
  .nav-links { gap:8px !important; }
}
@media (max-width:1024px) {
  .pride-grid { grid-template-columns:repeat(2,minmax(260px,1fr)); }
  #why-us .whyus-grid { grid-template-columns:repeat(2,minmax(260px,1fr)); }
  .pride-photo img,.pride-photo--placeholder { height:220px; }
  .video-card { flex:0 1 calc(50% - 12px); }
}
@media (max-width:968px) {
  .diagnostic-banner-content { flex-direction:column; text-align:center; }
  .diagnostic-banner-left { flex-direction:column; min-width:auto; }
  .diagnostic-banner-right { align-items:center; }
  .trainer-highlight-content { grid-template-columns:1fr; text-align:center; }
  .trainer-highlight-photo { margin:0 auto; }
  .trainer-highlight-features { grid-template-columns:1fr; }
}
@media (max-width:900px) {
  .phone { font-size:0.8rem !important; }
}

/* ═══════════════════════════════════════
   АДАПТИВ — МОБИЛКА ≤768px
   ═══════════════════════════════════════ */
@media (max-width:768px) {
  /* ГАМБУРГЕР */
.nav-toggle { display:none; }

@media (max-width: 768px) {
  .nav-toggle {
    display: flex !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    padding: 10px !important;
    flex-direction: column !important;
    gap: 6px !important;
    z-index: 1002 !important;
  }
  .nav-toggle span {
    display: block !important;
    width: 25px !important;
    height: 3px !important;
    background: #ffffff !important;
    border-radius: 2px !important;
    transition: all 0.3s ease !important;
  }
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px) !important;
    background: #c00000 !important;
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0 !important;
  }
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px) !important;
    background: #c00000 !important;
  }
}

.nav-toggle span { background:#ffffff !important; }
.nav-toggle.active { position:fixed !important; top:15px !important; right:15px !important; z-index:10001 !important; }
  
  /* МЕНЮ — СКРЫТО / ОТКРЫТО */
  .nav-links {
    display:none !important;
  }
  .nav-links.active {
    display:flex !important;
    position:fixed !important;
    top:0 !important; right:0 !important; left:auto !important;
    width:280px !important; height:100vh !important;
    flex-direction:column !important;
    background:#000000 !important;
    border-left:2px solid #c00000 !important;
    padding:80px 0 30px !important;
    z-index:9999 !important;
    overflow-y:auto !important;
    box-shadow:-5px 0 30px rgba(192,0,0,0.35) !important;
    gap:0 !important;
    align-items:stretch !important;
  }
  .nav-links li { width:100% !important; margin:0 !important; }
  .nav-links li a { display:block !important; padding:16px 20px !important; color:#ffffff !important; font-size:1rem !important; font-weight:700 !important; letter-spacing:1px !important; text-transform:uppercase !important; border-bottom:1px solid rgba(192,0,0,0.2) !important; width:100% !important; }
  .nav-links li a::after { display:none !important; }
  .nav-links li a:hover { background:rgba(192,0,0,0.15) !important; color:#c00000 !important; }
  .dropdown:hover .dropdown-content { display:none !important; }
  .dropdown .dropdown-content { position:static !important; display:none !important; background:rgba(192,0,0,0.08) !important; box-shadow:none !important; border:none !important; border-left:3px solid #c00000 !important; padding:8px 0 !important; margin:0 !important; max-height:0 !important; overflow:hidden !important; transition:max-height 0.3s ease !important; }
  .dropdown .dropdown-content.show { max-height:500px !important; display:block !important; }
  .dropdown .dropdown-content a { padding:12px 16px 12px 40px !important; font-size:0.9rem !important; color:var(--text-muted) !important; text-transform:none !important; letter-spacing:0 !important; }

  /* ШАПКА */
  .header-contacts { display:none !important; }
  .logo { font-size:1rem; }

  /* ТИПОГРАФИКА */
  h2 { font-size:1.5rem; }
  .hero h1 { font-size:1.6rem !important; max-width:100% !important; }
  .hero-subtitle { font-size:1rem; }
  .section { padding:50px 0; }
  .hero { padding:60px 0 70px; }
  .hero,.trainer-highlight { background-attachment:scroll !important; }

  /* CTA */
  .hero-cta { flex-direction:column; align-items:center; width:100%; }
  .hero-cta .btn { width:100%; max-width:350px; display:flex; justify-content:center; }
  .hero-trust { text-align:center; }
  .hero-offer-badge { max-width:360px; width:100%; text-align:center; font-size:0.95rem; }
  .btn-outline { width:100%; max-width:280px; display:block; margin:20px auto 0 !important; text-align:center; }

  /* ГРИДЫ */
  .pride-grid { grid-template-columns:1fr !important; margin-bottom:30px; }
  #why-us .whyus-grid { grid-template-columns:1fr; }
  .pride-photo img,.pride-photo--placeholder { height:210px; }

  /* ВИДЕО — полная ширина */
  .gallery-video-section .container { padding-left:0 !important; padding-right:0 !important; max-width:100% !important; }
  .video-grid { padding:0 !important; max-width:100% !important; gap:12px !important; }
  .video-card { flex:0 1 100% !important; width:100% !important; min-width:unset !important; margin:0 !important; border-radius:0 !important; }

  /* КРИЗИС */
  .diagnostic-banner { padding:25px 0 !important; }
  .diagnostic-banner-content { flex-direction:column !important; align-items:center !important; padding:0 15px !important; gap:20px !important; box-sizing:border-box !important; }
  .diagnostic-banner-left { flex-direction:column !important; text-align:center !important; min-width:auto !important; }
  .diagnostic-banner-right { align-items:center !important; width:100% !important; }
  .diagnostic-banner-btn {
    width:100% !important;
    max-width:100% !important;
    box-sizing:border-box !important;
    padding:16px 15px !important;
    font-size:0.9rem !important;
    letter-spacing:1px !important;
    white-space:normal !important;
    text-align:center !important;
    word-break:break-word !important;
  }
}

/* ═══════════════════════════════════════
   МАЛЫЕ ЭКРАНЫ ≤480px
   ═══════════════════════════════════════ */
@media (max-width:480px) {
  h1 { font-size:1.5rem !important; }
  h2 { font-size:1.3rem !important; }
  .hero h1 { font-size:1.35rem !important; }
  .btn { padding:12px 20px; font-size:0.9rem; }
  .logo { font-size:0.85rem; }
  .price-why { margin-left:12px; margin-right:12px; }
}

/* ═══════════════════════════════════════
   TOUCH-УСТРОЙСТВА
   ═══════════════════════════════════════ */
@media (hover:none) and (pointer:coarse) {
  .hero-features { -webkit-backdrop-filter:none !important; backdrop-filter:none !important; background:rgba(0,0,0,0.82) !important; }
  .hero-overlay { background:linear-gradient(to bottom, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.90) 100%) !important; }
}
