/* ---------- Базовые настройки ---------- */
:root {
    --primary: #1E3A8A;
    --accent: #06B6D4;
    --text-dark: #1F2937;
    --bg-light: #F9FAFB;
  }
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
  }
  
  /* ---------- ДИСКЛЕЙМЕР ---------- */
  .disclaimer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: opacity 0.6s ease;
  }
  
  .disclaimer-content {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(30, 58, 138, 0.15);
    border-radius: 16px;
    padding: 40px;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(30, 58, 138, 0.15);
    animation: fadeIn 1s ease forwards;
  }
  
  .disclaimer-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
  }
  
  .disclaimer-content p {
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
  }
  
  .btn-agree {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: #fff;
    font-weight: 600;
    padding: 14px 36px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.3);
  }
  
  .btn-agree:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(6, 182, 212, 0.45);
  }
  
  /* ---------- САЙТ (скрыт до клика) ---------- */
  .site-hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s ease;
  }
  
  .site-visible {
    opacity: 1;
    pointer-events: all;
  }
  
  /* ---------- Анимации ---------- */
  @keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
  }
/* ---------- HEADER ---------- */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(30, 58, 138, 0.1);
    transition: all 0.3s ease;
  }
  
  .header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  }
  
  .header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .logo {
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(90deg, #1E3A8A, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .nav__list {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
  }
  
  .nav__list a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
  }
  
  .nav__list a:hover {
    color: var(--accent);
  }
  
  /* ---------- CTA BUTTON ---------- */
  .btn-cta {
    background: linear-gradient(90deg, #1E3A8A, #06B6D4);
    color: #fff;
    padding: 12px 26px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.4);
    transition: all 0.3s ease;
  }
  
  .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(6, 182, 212, 0.6);
  }
  
  /* ---------- BURGER ---------- */
  .burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
  }
  
  .burger span {
    width: 24px;
    height: 2px;
    background: var(--primary);
    transition: 0.3s;
  }
  
  /* ---------- HERO ---------- */
  .hero {
    background: var(--bg-light);
    padding: 160px 20px 100px;
    position: relative;
    overflow: hidden;
  }
  
  .hero__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .hero__content {
    flex: 1 1 50%;
    max-width: 520px;
  }
  
  .hero__title {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.2;
  }
  
  .hero__subtitle {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.6;
  }
  
  .hero__image {
    flex: 1 1 45%;
    text-align: center;
  }
  
  .hero__image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 25px rgba(30, 58, 138, 0.25));
    animation: float 6s ease-in-out infinite alternate;
  }
  
  /* ---------- Анимация изображения ---------- */
  @keyframes float {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-20px); }
  }
  
  /* ---------- Адаптив ---------- */
  @media (max-width: 900px) {
    .nav {
      display: none;
    }
  
    .burger {
      display: flex;
    }
  
    .hero__container {
      flex-direction: column-reverse;
      text-align: center;
    }
  
    .hero__content {
      max-width: 100%;
    }
  
    .hero__image {
      margin-bottom: 40px;
    }
  }
/* ---------- ABOUT ---------- */
.about {
    background: #F9FAFB;
    padding: 140px 20px;
    position: relative;
    overflow: hidden;
  }
  
  .about__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
  }
  
  .section-title {
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 700;
    background: linear-gradient(90deg, #1E3A8A, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
  }
  
  .about__text p {
    color: #1F2937;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
  }
  
  .about__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
  
  .about-card {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    border: 1px solid rgba(30, 58, 138, 0.1);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.08);
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: all 0.4s ease;
  }
  
  .about-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(6, 182, 212, 0.15);
    border-color: rgba(6, 182, 212, 0.3);
  }
  
  .about-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(30,58,138,0.08), rgba(6,182,212,0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
  }
  
  .about-icon img {
    width: 42px;
    height: 42px;
  }
  
  .about-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1E3A8A;
    margin-bottom: 12px;
  }
  
  .about-card p {
    color: #374151;
    font-size: 15px;
    line-height: 1.7;
  }
  
  /* ---------- Анимация появления ---------- */
  .about-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
  }
  
  .about-card:nth-child(1) { animation-delay: 0.2s; }
  .about-card:nth-child(2) { animation-delay: 0.4s; }
  .about-card:nth-child(3) { animation-delay: 0.6s; }
  
  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }
  
  /* ---------- Адаптив ---------- */
  @media (max-width: 768px) {
    .about__text {
      text-align: center;
    }
  }
/* ---------- PROGRAM ---------- */
.program {
    background: #F3F4F6;
    padding: 140px 20px;
    position: relative;
    overflow: hidden;
  }
  
  .program .container {
    max-width: 1300px;
    margin: 0 auto;
  }
  
  .section-title.center {
    text-align: center;
  }
  
  .section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 20px auto 60px;
    color: #4B5563;
    line-height: 1.7;
  }
  
  .program__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }
  
  .program-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(30, 58, 138, 0.1);
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(6, 182, 212, 0.08);
    padding: 30px 25px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
  }
  
  .program-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(6, 182, 212, 0.15);
    border-color: rgba(6, 182, 212, 0.25);
  }
  
  .program-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1E3A8A;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .program-card ul {
    list-style: disc;
    padding-left: 20px;
    color: #1F2937;
    line-height: 1.6;
    font-size: 15px;
  }
  
  .program-card li {
    margin-bottom: 6px;
  }
  
  /* ---------- Анимация появления ---------- */
  .program-card {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards;
  }
  
  .program-card:nth-child(1) { animation-delay: 0.1s; }
  .program-card:nth-child(2) { animation-delay: 0.3s; }
  .program-card:nth-child(3) { animation-delay: 0.5s; }
  .program-card:nth-child(4) { animation-delay: 0.7s; }
  
  /* ---------- Адаптив ---------- */
  @media (max-width: 768px) {
    .program-card {
      padding: 25px 20px;
    }
    .program-card h3 {
      font-size: 18px;
    }
  }
/* ---------- REVIEWS ---------- */
.reviews {
    background: #F9FAFB;
    padding: 140px 20px;
    position: relative;
  }
  
  .reviews .container {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
  }
  
  .section-subtitle {
    color: #4B5563;
    margin-bottom: 60px;
    line-height: 1.6;
  }
  
  .reviews__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
  }
  
  .review-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(30, 58, 138, 0.1);
    border-radius: 18px;
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.08);
    padding: 30px 25px;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(6px);
    animation: fadeUp 1s ease forwards;
  }
  
  .review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(6, 182, 212, 0.15);
    border-color: rgba(6, 182, 212, 0.25);
  }
  
  .review-avatar {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #06B6D4;
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.3);
  }
  
  .review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .review-card h4 {
    color: #1E3A8A;
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .review-card p {
    color: #1F2937;
    font-size: 15px;
    line-height: 1.6;
  }
  
  /* ---------- Анимация ---------- */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  /* ---------- Адаптив ---------- */
  @media (max-width: 768px) {
    .reviews__grid {
      grid-template-columns: 1fr;
    }
  }
/* ---------- CONTACT ---------- */
.contact {
    background: #F3F4F6;
    padding: 140px 20px;
    text-align: center;
    position: relative;
  }
  
  .contact .container {
    max-width: 700px;
    margin: 0 auto;
  }
  
  .contact-form {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(30, 58, 138, 0.1);
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(6, 182, 212, 0.08);
    backdrop-filter: blur(8px);
    padding: 50px 40px;
    margin-top: 50px;
    transition: all 0.3s ease;
  }
  
  .contact-form:hover {
    box-shadow: 0 12px 30px rgba(6, 182, 212, 0.12);
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .contact-form input {
    width: 100%;
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid rgba(30, 58, 138, 0.15);
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
  }
  
  .contact-form input:focus {
    border-color: #06B6D4;
    box-shadow: 0 0 6px rgba(6, 182, 212, 0.3);
  }
  
  .form-btn {
    margin-top: 10px;
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(90deg, #1E3A8A, #06B6D4);
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.4);
    transition: all 0.3s ease;
  }
  
  .form-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(6, 182, 212, 0.6);
  }
  
  /* ---------- FOOTER ---------- */
  .footer {
    background: #ffffff;
    border-top: 1px solid rgba(30, 58, 138, 0.1);
    padding: 60px 20px;
    text-align: center;
    position: relative;
  }
  
  .footer__container {
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .footer__logo {
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(90deg, #1E3A8A, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
  }
  
  .footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    list-style: none;
    margin-bottom: 20px;
  }
  
  .footer__links a {
    text-decoration: none;
    color: #1E3A8A;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .footer__links a:hover {
    color: #06B6D4;
  }
  
  .footer__contact a {
    color: #1F2937;
    text-decoration: none;
    font-weight: 500;
  }
  
  .footer__contact p {
    color: #6B7280;
    font-size: 14px;
    margin-top: 8px;
  }
  
  /* ---------- Адаптив ---------- */
  @media (max-width: 768px) {
    .contact-form {
      padding: 40px 25px;
    }
  
    .footer__links {
      flex-direction: column;
      gap: 10px;
    }
  }
            