:root {
  --primary: #a3e635;
  --primary-dark: #84cc16;
  --accent: #ec4899;
  --bg: #0a0a0d;
  --bg-soft: #11111a;
  --card: rgba(255, 255, 255, 0.04);
  --card-strong: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.08);
  --text: #f8fafc;
  --muted: rgba(248, 250, 252, 0.6);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", sans-serif; background: var(--bg); color: var(--text); -webkit-font-smoothing: antialiased; line-height: 1.55; }
a { color: inherit; text-decoration: none; }
.container { width: min(1200px, 100% - 32px); margin: 0 auto; }
h1, h2, h3 { font-weight: 900; letter-spacing: -0.02em; }
.accent { background: linear-gradient(135deg, var(--primary), var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; }

.topbar { position: sticky; top: 0; z-index: 30; backdrop-filter: blur(18px); background: rgba(10, 10, 13, 0.85); border-bottom: 1px solid var(--border); }
.topbar-row { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 16px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; font-size: 18px; letter-spacing: -0.01em; }
.brand-mark { font-size: 24px; color: var(--primary); }
.topnav { display: none; gap: 28px; color: var(--muted); font-size: 14px; font-weight: 600; }
.topnav a:hover { color: var(--primary); }
@media (min-width: 980px) { .topnav { display: inline-flex; } }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 22px; border-radius: 999px; font-weight: 800; font-size: 14px; cursor: pointer; border: 0; transition: transform .15s ease, box-shadow .2s ease; text-transform: uppercase; letter-spacing: 0.04em; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--primary); color: #0a0a0d; box-shadow: 0 12px 32px -10px rgba(163, 230, 53, 0.6); }
.btn-ghost { background: var(--card); color: var(--text); border: 1px solid var(--border); box-shadow: none; }
.btn-lg { padding: 16px 28px; font-size: 15px; }

.hero { padding: 80px 0 60px; position: relative; overflow: hidden; background: radial-gradient(800px 500px at 90% 0%, rgba(163, 230, 53, 0.18), transparent 60%), radial-gradient(700px 480px at 0% 100%, rgba(236, 72, 153, 0.18), transparent 60%); }
.hero-grid { display: grid; gap: 40px; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 980px) { .hero-grid { grid-template-columns: 1.1fr 0.9fr; } }
.badge { display: inline-flex; gap: 8px; padding: 8px 16px; background: var(--primary); color: #0a0a0d; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 22px; border-radius: 999px; box-shadow: 0 0 30px rgba(163, 230, 53, 0.5); }
.hero h1 { font-size: clamp(40px, 6.5vw, 80px); line-height: 0.98; margin: 0 0 18px; text-transform: uppercase; }
.hero p { color: var(--muted); font-size: 17px; margin: 0 0 28px; max-width: 540px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.hs { padding: 14px 16px; background: var(--card); border-radius: 14px; border: 1px solid var(--border); }
.hs-num { font-size: 22px; font-weight: 900; background: linear-gradient(135deg, var(--primary), var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hs-label { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; }

.vibe { position: relative; min-height: 420px; display: flex; align-items: center; justify-content: center; }
.vibe-glow { position: absolute; inset: 30px; background: radial-gradient(closest-side, rgba(163, 230, 53, 0.25), transparent); filter: blur(40px); }
.vibe-emoji { position: relative; font-size: 240px; line-height: 1; filter: drop-shadow(0 30px 80px rgba(163, 230, 53, 0.5)); }
.vibe-pill { position: absolute; padding: 10px 18px; background: var(--card-strong); border: 1px solid var(--primary); border-radius: 999px; font-weight: 800; font-size: 14px; box-shadow: 0 0 20px rgba(163, 230, 53, 0.4); }
.v1 { top: 30px; left: 0; }
.v2 { bottom: 50px; right: 0; border-color: var(--accent); box-shadow: 0 0 20px rgba(236, 72, 153, 0.4); }
.v3 { top: 50%; right: 10%; }

.section { padding: 96px 0; }
.section-soft { background: var(--bg-soft); }
.section-head { text-align: center; margin-bottom: 50px; }
.kicker { display: inline-block; padding: 4px 14px; border-radius: 999px; background: rgba(163, 230, 53, 0.15); color: var(--primary); font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; }
.section-head h2 { font-size: clamp(32px, 4.5vw, 56px); margin: 0 0 8px; text-transform: uppercase; }
.section-head p { color: var(--muted); margin: 0; font-size: 16px; text-transform: none; font-weight: 400; }

.programs-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.program { background: var(--card); border: 1px solid var(--border); padding: 28px; border-radius: 18px; transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.program:hover { transform: translateY(-4px); border-color: var(--primary); background: var(--card-strong); }
.program-icon { font-size: 38px; margin-bottom: 12px; }
.program-name { font-weight: 800; font-size: 20px; margin-bottom: 8px; text-transform: uppercase; }
.program-text { color: var(--muted); margin-bottom: 14px; font-size: 14px; }
.program-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.ptag { padding: 4px 10px; border-radius: 999px; background: rgba(163, 230, 53, 0.1); color: var(--primary); font-size: 12px; font-weight: 700; }

.schedule { display: grid; gap: 12px; grid-template-columns: 1fr; }
.sch-row { display: grid; grid-template-columns: 90px 1fr 1fr auto; gap: 16px; align-items: center; padding: 16px 20px; background: var(--card); border: 1px solid var(--border); border-radius: 14px; }
.sch-time { font-weight: 800; color: var(--primary); font-size: 16px; }
.sch-class { font-weight: 700; }
.sch-trainer { color: var(--muted); font-size: 14px; }
.sch-cta { padding: 8px 14px; font-size: 12px; border-radius: 999px; background: var(--primary); color: #0a0a0d; font-weight: 800; text-transform: uppercase; }
@media (max-width: 720px) { .sch-row { grid-template-columns: 1fr; } }

.trainers-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.trainer { background: var(--card); border: 1px solid var(--border); border-radius: 24px; padding: 24px; text-align: center; }
.trainer-photo { width: 100px; height: 100px; border-radius: 999px; background: linear-gradient(135deg, var(--primary), var(--accent)); display: inline-flex; align-items: center; justify-content: center; font-size: 50px; margin-bottom: 14px; }
.trainer-name { font-weight: 800; font-size: 18px; text-transform: uppercase; }
.trainer-role { color: var(--muted); font-size: 14px; margin-bottom: 12px; }
.trainer-tag { display: inline-block; padding: 4px 12px; border-radius: 999px; background: rgba(163, 230, 53, 0.15); color: var(--primary); font-size: 12px; font-weight: 700; }

.prices-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.pcard { background: var(--card); border: 1px solid var(--border); border-radius: 24px; padding: 32px; text-align: center; transition: transform .2s ease; }
.pcard.featured { border-color: var(--primary); background: linear-gradient(180deg, rgba(163, 230, 53, 0.10), transparent); position: relative; }
.pcard.featured::before { content: 'ХИТ'; position: absolute; top: -10px; right: 22px; background: var(--accent); color: #fff; padding: 4px 12px; border-radius: 999px; font-size: 11px; font-weight: 800; letter-spacing: 0.1em; }
.pcard:hover { transform: translateY(-3px); }
.pcard-name { font-weight: 800; font-size: 18px; text-transform: uppercase; margin-bottom: 10px; }
.pcard-price { font-size: 38px; font-weight: 900; background: linear-gradient(135deg, var(--primary), var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; margin: 8px 0; }
.pcard-period { color: var(--muted); font-size: 14px; margin-bottom: 18px; }
.pcard-feats { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 8px; text-align: left; color: var(--text); font-size: 14px; }
.pcard-feats li { padding-left: 22px; position: relative; }
.pcard-feats li::before { content: '✓'; position: absolute; left: 0; color: var(--primary); font-weight: 800; }
.pcard .btn { width: 100%; }

.reviews-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.review { background: var(--card); border: 1px solid var(--border); border-radius: 24px; padding: 24px; }
.review-result { display: inline-block; padding: 4px 12px; border-radius: 999px; background: var(--primary); color: #0a0a0d; font-size: 12px; font-weight: 800; margin-bottom: 10px; text-transform: uppercase; }
.review-stars { color: var(--primary); margin-bottom: 8px; letter-spacing: 2px; }
.review-text { margin-bottom: 14px; }
.review-foot { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 44px; height: 44px; border-radius: 999px; background: linear-gradient(135deg, var(--primary), var(--accent)); display: inline-flex; align-items: center; justify-content: center; font-weight: 900; color: #0a0a0d; }
.review-name { font-weight: 700; }
.review-role { color: var(--muted); font-size: 13px; }

.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq { display: grid; gap: 8px; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: 18px; }
.faq-q { width: 100%; text-align: left; background: transparent; border: 0; color: var(--text); padding: 18px 22px; font-size: 16px; font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; text-transform: uppercase; letter-spacing: 0.02em; }
.faq-q::after { content: '+'; font-size: 22px; color: var(--primary); }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a { padding: 0 22px 18px; color: var(--muted); display: none; }
.faq-item.open .faq-a { display: block; }

.cta { padding: 100px 0; }
.cta-card { text-align: center; max-width: 720px; margin: 0 auto; padding: 56px 44px; background: radial-gradient(600px 400px at 50% 0%, rgba(163, 230, 53, 0.20), transparent), rgba(17, 17, 26, 0.7); border: 1px solid var(--border); border-radius: 32px; }
.cta-card h2 { font-size: clamp(30px, 5vw, 50px); margin: 0 0 12px; text-transform: uppercase; }
.cta-card p { color: var(--muted); margin: 0 0 28px; }
.cta-form { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; max-width: 560px; margin: 0 auto; }
.cta-form input { flex: 1; min-width: 220px; padding: 16px 18px; border-radius: 999px; background: rgba(10, 10, 13, 0.5); border: 1px solid var(--border); color: var(--text); font-size: 15px; outline: none; }
.cta-form input:focus { border-color: var(--primary); }
.cta-form .btn { width: 100%; }

.footer { padding: 64px 0 32px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; gap: 28px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.brand-foot { margin-bottom: 12px; }
.foot-title { font-weight: 800; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.04em; font-size: 14px; }
.footer a, .footer span { display: block; color: var(--muted); margin-bottom: 6px; font-size: 14px; }
.social { display: flex; gap: 10px; flex-wrap: wrap; }
.social a { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 999px; background: var(--card); border: 1px solid var(--border); color: var(--text); margin: 0; font-size: 16px; }
.footer-copy { margin-top: 36px; padding-top: 18px; border-top: 1px solid var(--border); color: var(--muted); font-size: 13px; }


/* AICORES modern conversion pack */
:root {
  --focus-ring: color-mix(in oklab, var(--primary) 60%, white 40%);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .45s ease, transform .45s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.btn, button, a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
.btn:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
}

.floating-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  z-index: 60;
  display: none;
  border-radius: 14px;
  padding: 14px 16px;
  text-align: center;
  font-weight: 800;
  letter-spacing: .01em;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 16px 34px -16px rgba(0,0,0,.6);
  border: 1px solid rgba(255,255,255,.16);
}
body.has-floating-cta { padding-bottom: 88px; }

@media (min-width: 901px) {
  .floating-cta { display: none !important; }
  body.has-floating-cta { padding-bottom: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}


/* AICORES premium visual pack v2 */
.hero {
  position: relative;
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(3, 8, 20, 0.62) 0%, rgba(3, 8, 20, 0.78) 100%),
    linear-gradient(90deg, rgba(3, 8, 20, 0.55) 0%, rgba(3, 8, 20, 0.25) 52%, rgba(3, 8, 20, 0.55) 100%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(900px 520px at 14% 26%, rgba(255, 255, 255, 0.16), transparent 62%);
  mix-blend-mode: soft-light;
}
.hero-grid,
.hero > .container,
.hero-copy,
.hero-visual { position: relative; z-index: 1; }

.hero-copy {
  background: linear-gradient(180deg, rgba(7, 13, 28, 0.58), rgba(7, 13, 28, 0.38));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  padding: clamp(16px, 2.8vw, 28px);
  backdrop-filter: blur(8px);
  box-shadow: 0 26px 50px -36px rgba(3, 8, 20, 0.95);
}
.hero h1 {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55), 0 1px 2px rgba(0, 0, 0, 0.32);
}
.hero p,
.hero .badge,
.hero .hero-trust { text-shadow: 0 1px 10px rgba(0, 0, 0, 0.42); }

.badge {
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.14);
  border: 1px solid rgba(56, 189, 248, 0.34);
  color: #dbeafe;
  letter-spacing: .01em;
}

.btn {
  border-radius: 12px;
  letter-spacing: .01em;
}
.btn-primary {
  box-shadow: 0 18px 35px -18px color-mix(in oklab, var(--primary) 72%, #000 28%);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.2);
}

.benefit,
.menu-card,
.step,
.review,
.faq-item,
.cta-card {
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 30px -24px rgba(3, 8, 20, 0.75);
}

.benefit-icon,
.menu-emoji,
.dish-emoji {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.16);
  color: #dbeafe;
  border: 1px solid rgba(148, 163, 184, 0.28);
  font-size: 0;
}
.benefit-icon svg,
.menu-emoji svg,
.dish-emoji svg,
.social a svg {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social a {
  color: #e2e8f0;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.07);
}
.social a:hover {
  background: rgba(56, 189, 248, 0.18);
  border-color: rgba(56, 189, 248, 0.4);
  color: #e0f2fe;
}

@media (max-width: 900px) {
  .hero-copy {
    border-radius: 16px;
    padding: 14px;
    background: linear-gradient(180deg, rgba(7, 13, 28, 0.72), rgba(7, 13, 28, 0.46));
  }
}
