:root {
    --bg-dark: #0D0D0D;
    --bg-card: #1A1A1A;
    --text-light: #E5E5E5;
    --text-muted: #9CA3AF;
    --accent: #FACC15;
    --gradient: linear-gradient(90deg, #FFD700, #FACC15);
    --transition: 0.6s ease;
  }
  body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
}
  
  /* ===== ДИСКЛЕЙМЕР ===== */
  .disclaimer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13, 13, 13, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity var(--transition);
  }
  
  .disclaimer-overlay.hidden {
    opacity: 0;
    pointer-events: none;
  }
  
  .disclaimer-box {
    background: var(--bg-card);
    border: 1px solid rgba(250, 204, 21, 0.3);
    border-radius: 16px;
    padding: 40px 32px;
    max-width: 640px;
    text-align: center;
    box-shadow: 0 0 40px rgba(250, 204, 21, 0.15);
    animation: fadeInUp 0.6s ease forwards;
  }
  
  .disclaimer-box h2 {
    font-size: 24px;
    margin-bottom: 18px;
    color: var(--accent);
  }
  
  .disclaimer-box p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 28px;
  }
  
  .agree-btn {
    background: var(--gradient);
    border: none;
    border-radius: 8px;
    padding: 12px 36px;
    color: #000;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
  }
  
  .agree-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(250, 204, 21, 0.5);
  }
  
  /* ===== КОНТЕНТ ===== */
  .site-content {
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s ease;
  }
  
  .site-content.visible {
    opacity: 1;
    pointer-events: all;
  }
  
  header {
    text-align: center;
    padding: 120px 20px 60px;
  }
  
  header h1 {
    font-size: 48px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  header p {
    color: var(--text-muted);
    font-size: 18px;
    margin-top: 12px;
  }
  
  main {
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-muted);
  }
  
  /* ===== Анімації ===== */
  @keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
  }
/* ---------- HEADER ---------- */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(13, 13, 13, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(250, 204, 21, 0.15);
    z-index: 1000;
    transition: background 0.3s ease;
  }
  
  .header__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .logo {
    font-size: 28px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
  }
  
  .nav__list {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
  }
  
  .nav__list a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .nav__list a:hover {
    color: var(--accent);
  }
  
  .btn--cta {
    background: var(--gradient);
    color: #000;
    font-weight: 700;
    padding: 10px 26px;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
  }
  
  .btn--cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(250, 204, 21, 0.5);
  }
  
  /* ---------- BURGER ---------- */
  .burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
  }
  
  .burger span {
    width: 100%;
    height: 3px;
    background: var(--accent);
    border-radius: 3px;
    transition: all 0.3s ease;
  }
  
  /* ---------- HERO ---------- */
  .hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: #0D0D0D;
    color: var(--text-light);
    padding: 0 20px;
  }
  
  .hero__bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(250,204,21,0.1), transparent 70%),
                radial-gradient(circle at 30% 70%, rgba(255,255,255,0.05), transparent 70%);
    overflow: hidden;
    z-index: -1;
    animation: heroPulse 8s ease-in-out infinite alternate;
  }
  
  @keyframes heroPulse {
    0% { transform: scale(1); opacity: 0.9; }
    100% { transform: scale(1.05); opacity: 1; }
  }
  
  .hero__content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeIn 1s ease forwards;
  }
  
  .hero__title {
    font-size: clamp(34px, 5vw, 60px);
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 24px;
    color: #fff;
  }
  
  .hero__subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
  }
  
  .btn--gold {
    background: var(--gradient);
    color: #000;
    padding: 14px 36px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .btn--gold:hover {
    box-shadow: 0 0 25px rgba(250, 204, 21, 0.5);
    transform: translateY(-3px);
  }
  
  /* ---------- Анімації ---------- */
  .animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards;
  }
  
  .animate-up:nth-child(1) { animation-delay: 0.2s; }
  .animate-up:nth-child(2) { animation-delay: 0.4s; }
  .animate-up:nth-child(3) { animation-delay: 0.6s; }
  
  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  /* ---------- Адаптив ---------- */
  @media (max-width: 900px) {
    .nav__list {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 70px;
      right: 20px;
      background: rgba(26,26,26,0.95);
      border: 1px solid rgba(250,204,21,0.3);
      border-radius: 12px;
      padding: 20px;
    }
  
    .nav__list.active {
      display: flex;
    }
  
    .burger {
      display: flex;
    }
  }
/* ---------- ABOUT ---------- */
.about {
    background: #0D0D0D;
    padding: 140px 20px;
    position: relative;
    overflow: hidden;
  }
  
  .about::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(250,204,21,0.15) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
  }
  
  .about .container {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
  }
  
  .about__text {
    flex: 1 1 45%;
    color: var(--text-light);
  }
  
  .section-title {
    font-size: 36px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
  }
  
  .about__text p {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
  }
  
  .about__stats {
    flex: 1 1 45%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
  
  .stat {
    text-align: center;
    background: var(--bg-card);
    border: 1px solid rgba(250, 204, 21, 0.2);
    border-radius: 12px;
    padding: 30px 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 20px rgba(250, 204, 21, 0.1);
  }
  
  .stat__number {
    display: block;
    font-size: 40px;
    font-weight: 700;
    color: var(--accent);
    text-shadow: 0 0 10px rgba(250, 204, 21, 0.4);
  }
  
  .stat__label {
    font-size: 16px;
    color: var(--text-muted);
    margin-top: 8px;
  }
  
  /* ---------- Анимации ---------- */
  .animate-left {
    opacity: 0;
    transform: translateX(-40px);
    animation: fadeLeft 1s ease forwards;
  }
  
  .animate-right {
    opacity: 0;
    transform: translateX(40px);
    animation: fadeRight 1s ease forwards;
  }
  
  @keyframes fadeLeft {
    to { opacity: 1; transform: translateX(0); }
  }
  
  @keyframes fadeRight {
    to { opacity: 1; transform: translateX(0); }
  }
  
  /* ---------- Адаптив ---------- */
  @media (max-width: 900px) {
    .about__content {
      flex-direction: column;
      text-align: center;
    }
  
    .about__stats {
      grid-template-columns: 1fr 1fr;
      margin-top: 40px;
    }
  }
  
  @media (max-width: 600px) {
    .about__stats {
      grid-template-columns: 1fr;
    }
  
    .stat {
      padding: 25px;
    }
  }
/* ---------- ADVANTAGES ---------- */
.advantages {
    background: #0D0D0D;
    padding: 140px 20px;
    position: relative;
    overflow: hidden;
  }
  
  .advantages::before {
    content: "";
    position: absolute;
    top: -80px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(250,204,21,0.1) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
  }
  
  .advantages .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
  .section-title.center {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .section-subtitle {
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.6;
  }
  
  .advantages__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
  }
  
  .adv-card {
    background: var(--bg-card);
    border: 1px solid rgba(250,204,21,0.2);
    border-radius: 16px;
    padding: 40px 24px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
  }
  
  .adv-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(250,204,21,0.05), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  
  .adv-card:hover::before {
    opacity: 1;
  }
  
  .adv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 25px rgba(250,204,21,0.1);
  }
  
  .adv-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(250,204,21,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .adv-icon img {
    width: 36px;
    height: 36px;
    filter: drop-shadow(0 0 4px rgba(250,204,21,0.6));
  }
  
  .adv-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 10px;
  }
  
  .adv-card p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.6;
  }
  
  /* ---------- Анимация появления ---------- */
  .animate-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards;
  }
  
  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* ---------- Адаптив ---------- */
  @media (max-width: 768px) {
    .advantages__grid {
      gap: 30px;
    }
    .adv-card {
      padding: 30px 20px;
    }
  }
/* ---------- PROGRAM ---------- */
.program {
    background: #0D0D0D;
    padding: 140px 20px;
    position: relative;
    overflow: hidden;
  }
  
  .program::before {
    content: "";
    position: absolute;
    bottom: -100px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(250,204,21,0.15) 0%, transparent 70%);
    filter: blur(100px);
    z-index: 0;
  }
  
  .program .container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }
  
  .program__accordion {
    margin-top: 60px;
    text-align: left;
  }
  
  /* ---------- ACCORDION ---------- */
  .accordion__item {
    border: 1px solid rgba(250,204,21,0.2);
    border-radius: 12px;
    background: var(--bg-card);
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
  }
  
  .accordion__header {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    text-align: left;
    padding: 20px 24px;
    font-size: 18px;
    font-weight: 600;
    color: var(--accent);
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease, background 0.3s ease;
  }
  
  .accordion__header::after {
    content: "+";
    position: absolute;
    right: 24px;
    font-size: 22px;
    color: var(--accent);
    transition: transform 0.3s ease;
  }
  
  .accordion__item.active .accordion__header::after {
    content: "–";
    transform: rotate(180deg);
  }
  
  .accordion__header:hover {
    background: rgba(250,204,21,0.05);
  }
  
  .accordion__content {
    max-height: 0;
    overflow: hidden;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.6;
    padding: 0 24px;
    transition: max-height 0.5s ease, padding 0.4s ease;
  }
  
  .accordion__item.active .accordion__content {
    max-height: 300px;
    padding: 16px 24px 24px;
  }
  
  /* ---------- Анимации ---------- */
  .accordion__item {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards;
  }
  
  .accordion__item:nth-child(1) { animation-delay: 0.1s; }
  .accordion__item:nth-child(2) { animation-delay: 0.2s; }
  .accordion__item:nth-child(3) { animation-delay: 0.3s; }
  .accordion__item:nth-child(4) { animation-delay: 0.4s; }
  .accordion__item:nth-child(5) { animation-delay: 0.5s; }
  
  /* ---------- Адаптив ---------- */
  @media (max-width: 768px) {
    .accordion__header {
      font-size: 16px;
      padding: 18px;
    }
    .accordion__content {
      font-size: 15px;
    }
  }
/* ---------- REVIEWS ---------- */
.reviews {
    background: #0D0D0D;
    padding: 140px 20px;
    position: relative;
    overflow: hidden;
  }
  
  .reviews::before {
    content: "";
    position: absolute;
    top: -80px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(250,204,21,0.12) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
  }
  
  .reviews .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
  .reviews__grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
  }
  
  .review-card {
    background: #1A1A1A;
    border: 1px solid rgba(250,204,21,0.2);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    color: var(--text-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
  }
  
  .review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(250,204,21,0.1);
  }
  
  .review-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent);
    box-shadow: 0 0 10px rgba(250,204,21,0.4);
  }
  
  .review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .review-text {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
  }
  
  .review-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent);
  }
  
  .review-role {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
  }
  
  /* ---------- Анимация появления ---------- */
  .animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
  }
  
  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* ---------- MOBILE SLIDER ---------- */
  @media (max-width: 768px) {
    .reviews__grid {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      padding-bottom: 10px;
    }
  
    .review-card {
      flex: 0 0 85%;
      scroll-snap-align: start;
      margin-right: 20px;
    }
  }
/* ---------- CONTACT ---------- */
.contact {
    background: #0D0D0D;
    padding: 140px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .contact::before {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(250,204,21,0.1) 0%, transparent 70%);
    filter: blur(90px);
    z-index: 0;
  }
  
  .contact .container {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .contact-form {
    width: 100%;
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 8px 30px rgba(250,204,21,0.15);
    margin-top: 40px;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group input {
    max-width: 100%;
    padding: 14px 18px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  .form-group input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(250,204,21,0.15);
  }
  
  .btn--gold {
    background: var(--gradient);
    border: none;
    color: #000;
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
  }
  
  .btn--gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(250,204,21,0.4);
  }
  
  .social-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
  }
  
  .social-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(250,204,21,0.1);
    border: 1px solid rgba(250,204,21,0.3);
    color: var(--accent);
    font-size: 20px;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  
  .social-icon:hover {
    background: var(--accent);
    color: #000;
    transform: translateY(-3px);
  }
  
  /* ---------- FOOTER ---------- */
  .footer {
    background: #111111;
    color: #d1d5db;
    padding: 60px 20px 30px;
  }
  
  .footer__container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .footer__logo {
    font-size: 22px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
  }
  
  .footer__links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  
  .footer__links a:hover {
    color: var(--accent);
  }
  
  .footer__contacts a {
    color: var(--accent);
    text-decoration: none;
  }
  
  .footer__contacts a:hover {
    text-decoration: underline;
  }
  
  .footer__contacts p {
    margin: 6px 0;
    font-size: 14px;
  }
  
  /* ---------- Адаптив ---------- */
  @media (max-width: 768px) {
    .footer__container {
      flex-direction: column;
      text-align: center;
    }
  
    .footer__links {
      flex-direction: row;
      justify-content: center;
      flex-wrap: wrap;
    }
  
    .footer__contacts {
      text-align: center;
    }
  }
              