:root {
    --accent1: #16A34A;
    --accent2: #22C55E;
    --bg: #F8FFF9;
    --text: #1F2937;
    --text-light: #6B7280;
    --gradient: linear-gradient(90deg, var(--accent1), var(--accent2));
  }
  
  body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow: hidden;
    transition: opacity 0.6s ease;
  }
  
  /* ===== ДИСКЛЕЙМЕР ===== */
  .disclaimer-overlay {
    position: fixed;
    inset: 0;
    background: url(../img/bg.png) center/cover no-repeat;
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.6s ease;
  }
  
  .disclaimer-overlay.hidden {
    opacity: 0;
    pointer-events: none;
  }
  
  .disclaimer-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 32px;
    max-width: 620px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    animation: fadeInUp 0.6s ease forwards;
  }
  
  .disclaimer-box h2 {
    font-size: 24px;
    margin-bottom: 16px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .disclaimer-box p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 28px;
  }
  
  .agree-btn {
    background: var(--gradient);
    border: none;
    border-radius: 8px;
    padding: 12px 32px;
    color: white;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
  }
  
  .agree-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(34,197,94,0.4);
  }
  
  /* ===== ОСНОВНОЙ КОНТЕНТ ===== */
  .site-content {
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s ease;
  }
  
  .site-content.visible {
    opacity: 1;
    pointer-events: all;
  }
  
  header {
    text-align: center;
    padding: 100px 20px;
    background: var(--gradient);
    color: #fff;
  }
  
  main {
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
  }
  
  /* ===== АНИМАЦИЯ ===== */
  @keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  
  :root {
    --accent1: #16A34A;
    --accent2: #22C55E;
    --bg: #F8FFF9;
    --text: #1F2937;
    --text-light: #6B7280;
    --gradient: linear-gradient(90deg, var(--accent1), var(--accent2));
  }
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
  }
  
  /* ---------- CONTAINER ---------- */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* ---------- HEADER ---------- */
  .header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    z-index: 100;
  }
  
  .header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
  }
  
  .logo {
    font-size: 26px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .nav__list {
    display: flex;
    gap: 28px;
    list-style: none;
  }
  
  .nav__list a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.2s ease;
  }
  
  .nav__list a:hover {
    color: var(--accent1);
  }
  
  /* CTA BUTTON */
  .btn {
    display: inline-block;
    border-radius: 8px;
    padding: 12px 28px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
  }
  
  .btn--cta {
    background: var(--gradient);
    color: #fff;
  }
  
  .btn--cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
  }
  
  /* ---------- BURGER ---------- */
  .burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }
  
  .burger span {
    width: 26px;
    height: 3px;
    background: var(--accent1);
    transition: all 0.3s ease;
  }
  
  .burger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  /* ---------- HERO ---------- */
  .hero {
    padding-top: 120px;
    position: relative;
    overflow: hidden;
  }
  
  .hero__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    min-height: calc(100vh - 80px);
  }
  
  .hero__text {
    flex: 1;
    animation: fadeInUp 1s ease forwards;
  }
  
  .hero__text h1 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
  }
  
  .hero__text p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 32px;
  }
  
  .btn--primary {
    background: var(--gradient);
    color: #fff;
  }
  
  .btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
  }
  
  .hero__image {
    flex: 1;
    text-align: right;
  }
  
  .hero__image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 20px rgba(22,163,74,0.3));
    animation: float 4s ease-in-out infinite;
  }
  
  /* ---------- HERO BACKGROUND ---------- */
  .hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(circle at 80% 20%, rgba(34,197,94,0.1), transparent 60%),
                radial-gradient(circle at 20% 80%, rgba(22,163,74,0.15), transparent 60%);
    animation: bgPulse 6s ease-in-out infinite alternate;
  }
  
  /* ---------- ANIMATIONS ---------- */
  @keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }
  
  @keyframes bgPulse {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
  }
  
  /* ---------- ADAPTIVE ---------- */
  @media (max-width: 992px) {
    .hero__container {
      flex-direction: column;
      text-align: center;
      gap: 40px;
    }
  
    .hero__image {
      text-align: center;
    }
  
    .nav__list {
      position: absolute;
      top: 80px;
      right: 0;
      background: #fff;
      flex-direction: column;
      gap: 20px;
      padding: 20px;
      width: 100%;
      display: none;
      border-top: 1px solid #eee;
    }
  
    .nav.active .nav__list {
      display: flex;
    }
  
    .burger {
      display: flex;
    }
  
    .btn--cta {
      display: none;
    }
  }
  /* ---------- ABOUT ---------- */
.about {
    padding: 100px 0;
    background: #f9fff9;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .section-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 30px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .about__intro {
    max-width: 700px;
    margin: 0 auto 60px;
    color: var(--text-light);
    font-size: 18px;
    line-height: 1.6;
  }
  
  .about__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
  }
  
  .about__card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 28px;
    box-shadow: 0 6px 20px rgba(22,163,74,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.8s ease forwards;
  }
  
  .about__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(22,163,74,0.2);
  }
  
  .about__icon {
    font-size: 42px;
    margin-bottom: 18px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .about__card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text);
  }
  
  .about__card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
  }
  
  /* Лёгкий декоративный фон */
  .about::before, .about::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    z-index: -1;
  }
  
  .about::before {
    width: 300px;
    height: 300px;
    background: rgba(34,197,94,0.25);
    top: -80px;
    left: -100px;
    animation: orbMove 12s ease-in-out infinite alternate;
  }
  
  .about::after {
    width: 400px;
    height: 400px;
    background: rgba(22,163,74,0.25);
    bottom: -120px;
    right: -80px;
    animation: orbMove 14s ease-in-out infinite alternate-reverse;
  }
  
  @keyframes orbMove {
    0% { transform: translate(0, 0); opacity: 0.3; }
    50% { transform: translate(40px, -30px); opacity: 0.5; }
    100% { transform: translate(-20px, 20px); opacity: 0.3; }
  }
  
  /* ---------- ADAPTIVE ---------- */
  @media (max-width: 768px) {
    .about {
      padding: 80px 20px;
    }
    .about__intro {
      font-size: 16px;
    }
  }
/* ---------- PROGRAM ---------- */
.program {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
  }
  
  .program .section-title {
    text-align: center;
    margin-bottom: 60px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  /* Секции-модули */
  .program__modules {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }
  
  .program__module {
    background: #f9fff9;
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: 0 6px 24px rgba(22,163,74,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.8s ease forwards;
  }
  
  .program__module:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(34,197,94,0.15);
  }
  
  .program__module h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .program__module ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 14px 30px;
  }
  
  .program__module li {
    position: relative;
    padding-left: 26px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
  }
  
  .program__module li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent1);
    font-weight: 700;
  }
  
  /* Лёгкие "световые" пятна на фоне */
  .program::before,
  .program::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.3;
    animation: orbMove 10s ease-in-out infinite alternate;
  }
  
  .program::before {
    width: 300px;
    height: 300px;
    background: rgba(34,197,94,0.25);
    top: -100px;
    left: -100px;
  }
  
  .program::after {
    width: 400px;
    height: 400px;
    background: rgba(22,163,74,0.25);
    bottom: -150px;
    right: -100px;
  }
  
  @keyframes orbMove {
    0% { transform: translate(0, 0); opacity: 0.3; }
    50% { transform: translate(40px, -30px); opacity: 0.5; }
    100% { transform: translate(-20px, 20px); opacity: 0.3; }
  }
  
  /* ---------- ADAPTIVE ---------- */
  @media (max-width: 768px) {
    .program {
      padding: 80px 20px;
    }
  
    .program__module ul {
      grid-template-columns: 1fr;
    }
  
    .program__module h3 {
      font-size: 20px;
    }
  }
/* ---------- FAQ ---------- */
.faq {
    padding: 120px 0;
    background: #f9fff9;
  }
  
  .faq .section-title {
    text-align: center;
    margin-bottom: 50px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .faq__list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .faq__item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(22,163,74,0.08);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
  }
  
  .faq__item.active {
    box-shadow: 0 8px 24px rgba(22,163,74,0.15);
  }
  
  .faq__question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    padding: 20px 24px;
    cursor: pointer;
    position: relative;
    color: var(--text);
    transition: color 0.3s ease;
  }
  
  .faq__question::after {
    content: "+";
    position: absolute;
    right: 24px;
    top: 20px;
    font-size: 22px;
    color: var(--accent1);
    transition: transform 0.3s ease;
  }
  
  .faq__item.active .faq__question::after {
    content: "–";
    transform: rotate(180deg);
  }
  
  .faq__answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    transition: max-height 0.4s ease;
  }
  
  .faq__answer p {
    padding: 10px 0 20px;
    color: var(--text-light);
    line-height: 1.6;
    font-size: 16px;
  }
  
  /* ---------- CONTACT FORM ---------- */
  .contact {
    background: var(--gradient);
    padding: 120px 20px;
    text-align: center;
    color: #fff;
  }
  
  .contact .section-title {
    background: none;
    color: #fff;
    margin-bottom: 40px;
  }
  
  .contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group input {
    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(--accent1);
    box-shadow: 0 0 0 3px rgba(34,197,94,0.15);
  }
  
  /* Белая кнопка */
  .btn--white {
    background: #fff;
    color: var(--accent1);
    font-weight: 700;
    border: none;
    border-radius: 8px;
    padding: 14px 32px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
  }
  
  .btn--white:hover {
    background: var(--accent1);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  }
  
  /* ---------- FOOTER ---------- */
  .footer {
    background: #111827;
    color: #fff;
    padding: 60px 0 30px;
  }
  
  .footer__container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .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;
  }
  
  .footer__links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  
  .footer__links a:hover {
    color: #fff;
  }
  
  .footer__contacts a {
    color: #22c55e;
    text-decoration: none;
  }
  
  .footer__contacts p {
    margin: 6px 0;
    font-size: 14px;
    color: #d1d5db;
  }
  
  .footer__contacts a:hover {
    text-decoration: underline;
  }
  
  /* ---------- ADAPTIVE ---------- */
  @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;
    }
  
    .faq {
      padding: 80px 20px;
    }
  
    .contact {
      padding: 100px 20px;
    }
  }
      