<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* home.css â€” ÑÑ‚Ð¸Ð»Ð¸ Ð¢ÐžÐ›Ð¬ÐšÐž Ð´Ð»Ñ Ð³Ð»Ð°Ð²Ð½Ð¾Ð¹ ÑÑ‚Ñ€Ð°Ð½Ð¸Ñ†Ñ‹ */

/* ÐŸÐ¾Ð´ÐºÐ»ÑŽÑ‡Ð°ÐµÐ¼ ÑˆÑ€Ð¸Ñ„Ñ‚ (Ð¿Ñ€Ð¸Ð¼ÐµÑ€) */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&amp;display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background: #ffffff;
  color: #333;
  overflow-x: hidden;
}

/* ---------- ÐžÐ±Ñ‰Ð¸Ðµ ÐºÐ»Ð°ÑÑÑ‹ Ð¸ ÑƒÑ‚Ð¸Ð»Ð¸Ñ‚Ñ‹ ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s, transform 0.3s;
  color: #fff;
  background-color: #ff6b6b;
  cursor: pointer;
}
.btn:hover {
  background-color: #ff4f4f;
  transform: translateY(-3px);
}
.btn-secondary {
  background-color: #1379c1;
}
.btn-secondary:hover {
  background-color: #38bcd9;
}
.btn-highlight {
  background-color: #06d6a0;
}
.btn-highlight:hover {
  background-color: #04bd8a;
}

/* ---------- Ð—Ð°Ð³Ð¾Ð»Ð¾Ð²ÐºÐ¸ ÑÐµÐºÑ†Ð¸Ð¹ ---------- */
.section-heading {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 15px;
  font-weight: 700;
  position: relative;
}
.section-description {
  text-align: center;
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 40px auto;
  color: #666;
}


/* ---------- Hero (Parallax) ---------- */
.hero-section {
  position: relative;
  height: 90vh;

  /* ÐŸÑ€ÐµÐ´Ð·Ð°Ð³Ñ€ÑƒÐ·ÐºÑƒ Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ð¼Ñ‹ Ð½Ð°ÑÑ‚Ñ€Ð°Ð¸Ð²Ð°ÐµÐ¼ Ð² &lt;head&gt; (rel="preload").
     Ð—Ð´ÐµÑÑŒ Ð¿Ñ€Ð¾ÑÑ‚Ð¾ ÑƒÐºÐ°Ð·Ñ‹Ð²Ð°ÐµÐ¼ Ñ†Ð²ÐµÑ‚-Ð·Ð°Ð³Ð»ÑƒÑˆÐºÑƒ Ð¸ ÑÐ°Ð¼ Ñ„Ð¾Ð½. */
  background-color: #1d1f2e;
  background-image: url('../images/IMG_1700.PNG');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;

  /* ÐšÐ»ÑŽÑ‡ÐµÐ²Ð¾Ðµ ÑÐ²Ð¾Ð¹ÑÑ‚Ð²Ð¾ Ð´Ð»Ñ ÑÑ„Ñ„ÐµÐºÑ‚Ð° Â«Ð¿Ð°Ñ€Ð°Ð»Ð»Ð°ÐºÑÂ»: */
  background-attachment: fixed;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

/* Ð”Ð¾Ð±Ð°Ð²Ð»ÑÐµÐ¼ Ð¿Ð¾Ð»ÑƒÐ¿Ñ€Ð¾Ð·Ñ€Ð°Ñ‡Ð½Ñ‹Ð¹ ÑÐ»Ð¾Ð¹ */
.hero-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.2); /* Ð§ÐµÐ¼ Ð±Ð¾Ð»ÑŒÑˆÐµ Ñ‡Ð¸ÑÐ»Ð¾, Ñ‚ÐµÐ¼ Ñ‚ÐµÐ¼Ð½ÐµÐµ */
  z-index: 0; /* Ñ‡Ñ‚Ð¾Ð±Ñ‹ ÑÐ»Ð¾Ð¹ Ð±Ñ‹Ð» Â«Ð¿Ð¾Ð´Â» ÐºÐ¾Ð½Ñ‚ÐµÐ½Ñ‚Ð¾Ð¼ */
}

.hero-content {
  position: relative; /* Ñ‡Ñ‚Ð¾Ð±Ñ‹ Ð±Ñ‹Ñ‚ÑŒ Ð²Ñ‹ÑˆÐµ Ð¿ÑÐµÐ²Ð´Ð¾ÑÐ»ÐµÐ¼ÐµÐ½Ñ‚Ð° */
  z-index: 1;
  max-width: 800px;
  padding: 0 15px;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 15px;
}
.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 30px;
  color: #ddd;
}
.hero-btn {
  font-size: 1.1rem;
  font-weight: 700;
}

/* ---------- Ð¡ÐµÐºÑ†Ð¸Ñ Â«ÐšÑƒÑ€ÑÑ‹Â» ---------- */
.courses-section {
  padding: 60px 0;
  background: #fff;
}

.price-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.old-price {
  text-decoration: line-through;
  color: #888;
  font-size: 1rem;
}

.discount-percent {
  background-color: #ff6b6b;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.9rem;
}

.current-price {
  font-weight: bold;
  font-size: 1.2rem;
  color: #333;
}

/* Ð“Ð¾Ñ€Ð¸Ð·Ð¾Ð½Ñ‚Ð°Ð»ÑŒÐ½Ð°Ñ ÐºÐ°Ñ€Ñ‚Ð¾Ñ‡ÐºÐ° ÐºÑƒÑ€ÑÐ° */
.course-card {
  display: flex;             /* Ð³Ð¾Ñ€Ð¸Ð·Ð¾Ð½Ñ‚Ð°Ð»ÑŒÐ½Ð°Ñ Ñ€Ð°ÑÐºÐ»Ð°Ð´ÐºÐ° */
  /*align-items: center;       !* Ð²Ñ‹Ñ€Ð°Ð²Ð½Ð¸Ð²Ð°Ð½Ð¸Ðµ Ð¿Ð¾ Ð²ÐµÑ€Ñ‚Ð¸ÐºÐ°Ð»Ð¸ *!*/
  gap: 30px;                 /* Ñ€Ð°ÑÑÑ‚Ð¾ÑÐ½Ð¸Ðµ Ð¼ÐµÐ¶Ð´Ñƒ Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸ÐµÐ¼ Ð¸ Ð±Ð»Ð¾ÐºÐ¾Ð¼ Ð¸Ð½Ñ„Ð¾ */
  background: #fff;
  margin-bottom: 40px;       /* Ð¾Ñ‚ÑÑ‚ÑƒÐ¿ Ð¼ÐµÐ¶Ð´Ñƒ ÐºÐ°Ñ€Ñ‚Ð¾Ñ‡ÐºÐ°Ð¼Ð¸ */
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  overflow: hidden;
  padding: 20px;             /* Ð²Ð½ÑƒÑ‚Ñ€ÐµÐ½Ð½Ð¸Ðµ Ð¾Ñ‚ÑÑ‚ÑƒÐ¿Ñ‹, Ñ‡Ñ‚Ð¾Ð±Ñ‹ Ð±Ñ‹Ð»Ð¾ Ð¿Ñ€Ð¾ÑÑ‚Ð¾Ñ€Ð½Ð¾ */
  width: 100%;
}

/* Ð‘Ð»Ð¾Ðº Ð´Ð»Ñ Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ */
.course-image {
  flex: 0 0 300px;    /* Ñ„Ð¸ÐºÑÐ¸Ñ€Ð¾Ð²Ð°Ð½Ð½Ð°Ñ ÑˆÐ¸Ñ€Ð¸Ð½Ð° Ð¿Ð¾Ð´ ÐºÐ°Ñ€Ñ‚Ð¸Ð½ÐºÑƒ Ð½Ð° Ð´ÐµÑÐºÑ‚Ð¾Ð¿Ðµ */
  height: 200px;      /* Ñ„Ð¸ÐºÑÐ¸Ñ€Ð¾Ð²Ð°Ð½Ð½Ð°Ñ Ð²Ñ‹ÑÐ¾Ñ‚Ð°, Ð¼Ð¾Ð¶Ð½Ð¾ ÑÐºÐ¾Ñ€Ñ€ÐµÐºÑ‚Ð¸Ñ€Ð¾Ð²Ð°Ñ‚ÑŒ */
  border-radius: 4px; /* ÑÐºÑ€ÑƒÐ³Ð»ÐµÐ½Ð¸Ðµ, Ð¿Ñ€Ð¸ Ð¶ÐµÐ»Ð°Ð½Ð¸Ð¸ */
  overflow: hidden;
}
.course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Ð‘Ð»Ð¾Ðº Ñ Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸ÐµÐ¹ (Ð·Ð°Ð³Ð¾Ð»Ð¾Ð²Ð¾Ðº, Ð¾Ð¿Ð¸ÑÐ°Ð½Ð¸Ðµ, ÐºÐ½Ð¾Ð¿ÐºÐ¸) */
.course-info {
  flex: 1;            /* Ð·Ð°Ð½Ð¸Ð¼Ð°ÐµÑ‚ Ð¾ÑÑ‚Ð°Ð²ÑˆÑƒÑŽÑÑ ÑˆÐ¸Ñ€Ð¸Ð½Ñƒ */
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.course-info h3 {
  font-size: 1.4rem;
  margin-bottom: 5px;
}
.course-desc {
  color: #666;
  font-size: 1rem;
  line-height: 1.4;
  flex: 1; /* Ñ€Ð°ÑÑ‚ÑÐ³Ð¸Ð²Ð°ÐµÐ¼ Ð¾Ð¿Ð¸ÑÐ°Ð½Ð¸Ðµ */
}

/* Ð‘ÐµÐ¹Ð´Ð¶Ð¸ Ð¸ Ñ‚.Ð´. */
.badge {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-right: 10px;
  color: #fff;
}
.badge.soon {
  background: #adb5bd;
}
.badge.price {
  background: #79975c;
}




/* ---------- Ð¡ÐµÐºÑ†Ð¸Ñ Â«ÐŸÑ€ÐµÐ¸Ð¼ÑƒÑ‰ÐµÑÑ‚Ð²Ð°Â» ---------- */
.features-section {
  padding: 60px 0;
  background: #f8f9fa;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 30px;
  margin-top: 40px;
}
.feature-item {
  background: #fff;
  text-align: center;
  padding: 30px;
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}
.feature-item:hover {
  transform: translateY(-5px);
}
.feature-item img {
  width: 110px;
  margin-bottom: 20px;
}
.feature-item h3 {
  margin-bottom: 10px;
  font-weight: 700;
}

/* ---------- Ð¡ÐµÐºÑ†Ð¸Ñ Â«ÐžÑ‚Ð·Ñ‹Ð²Ñ‹Â» ---------- */
.testimonials-section {
  position: relative;
  padding: 70px 0;
  background: url('../images/testimonial-bg.jpg') no-repeat center/cover;
  color: #fff;
  text-align: center;
}
.testimonial-overlay {
  position: absolute;
  top: 0;
  left:0;
  right:0;
  bottom:0;
  background: rgba(0,0,0,0.4);
}
.testimonial-cards {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}
.testimonial-card {
  background: rgba(255,255,255,0.1);
  padding: 20px;
  border-radius: 6px;
  max-width: 320px;
  flex: 1;
  min-width: 280px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  backdrop-filter: blur(4px);
}
.testimonial-text {
  margin-bottom: 15px;
  font-size: 0.95rem;
  line-height: 1.4;
}
.testimonial-author {
  font-weight: 700;
  font-size: 0.9rem;
}

/* ====== About Me Section Styles ====== */
.about-me-section {
  padding: 80px 20px;
  background-color: #2c2c2c;
  color: #fff;
}

.about-me-section .container {
  max-width: 900px;
  margin: 0 auto;
}

.about-me-section .section-heading {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
}

/* ÐšÐ¾Ð½Ñ‚ÐµÐ¹Ð½ÐµÑ€ Ð´Ð»Ñ Ð±Ð»Ð¾ÐºÐ¾Ð² (Ð½Ð° Ð´ÐµÑÐºÑ‚Ð¾Ð¿Ðµ â€“ Ð¾Ð±Ñ‹Ñ‡Ð½Ð¾Ðµ Ð¾Ñ‚Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ðµ) */
.about-me-items-wrapper {
  display: block;
}

/* ÐžÐ±Ñ‰Ð¸Ð¹ ÑÑ‚Ð¸Ð»ÑŒ Ð´Ð»Ñ ÐºÐ°Ð¶Ð´Ð¾Ð³Ð¾ Ð±Ð»Ð¾ÐºÐ° "about-me-item" */
.about-me-item {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
  padding: 20px;
  background: #3a3a3a;
  border-radius: 8px;
}

/* ÐŸÑ€Ð¸ Ð½Ð°Ð»Ð¸Ñ‡Ð¸Ð¸ ÐºÐ»Ð°ÑÑÐ° reverse â€” Ð¼ÐµÐ½ÑÐµÐ¼ Ð¿Ð¾Ñ€ÑÐ´Ð¾Ðº Ð±Ð»Ð¾ÐºÐ¾Ð² */
.about-me-item.reverse {
  flex-direction: row-reverse;
}

.about-me-image {
  flex: 1;
}

.about-me-image img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.about-me-text {
  flex: 1;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Ð¡Ñ‚Ð¸Ð»ÑŒ Ð´Ð»Ñ Ð±Ð»Ð¾ÐºÐ° Ñ ÐºÐ½Ð¾Ð¿ÐºÐ¾Ð¹-Ð¿Ñ€Ð¸Ð·Ñ‹Ð²Ð¾Ð¼ */
.about-me-cta {
  text-align: center;
  margin-top: 30px;
}

/* ====== Video Section ====== */
.video-section {
  position: relative;
  width: 100%;
  height: 70vh;            /* Ð½Ð°ÑÑ‚Ñ€Ð¾Ð¹Ñ‚Ðµ Ð²Ñ‹ÑÐ¾Ñ‚Ñƒ Ð¿Ð¾ Ð²ÐºÑƒÑÑƒ */
  overflow: hidden;
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;       /* Ð²Ð¸Ð´ÐµÐ¾ Ð·Ð°Ð¿Ð¾Ð»Ð½ÑÐµÑ‚ Ð²ÐµÑÑŒ Ð±Ð»Ð¾Ðº, Ð½Ðµ Ð¸ÑÐºÐ°Ð¶Ð°ÑÑÑŒ */
}

/* ÐšÐ½Ð¾Ð¿ÐºÐ° ÑƒÐ¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð¸Ñ Ð·Ð²ÑƒÐºÐ¾Ð¼ */
.sound-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 22px;
  width: 48px;
  height: 48px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.sound-btn:hover { background: rgba(0,0,0,0.8); }

/* --- Ð°Ð½Ð¸Ð¼Ð°Ñ†Ð¸Ñ Ð²Ð½Ð¸Ð¼Ð°Ð½Ð¸Ñ --- */
@keyframes soundBounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

.sound-btn.attention {
  animation: soundBounce 1.4s ease-in-out infinite;
}

/* ---------- ÐÐ´Ð°Ð¿Ñ‚Ð¸Ð² Ð´Ð»Ñ Ð¼Ð¾Ð±Ð¸Ð»ÑŒÐ½Ñ‹Ñ… ---------- */
@media (max-width: 768px) {

  .hero-section {
    background-attachment: scroll;
  }

  .video-section { height: 50vh; }
  .sound-btn { bottom: 12px; right: 12px; width: 40px; height: 40px; font-size: 18px; }

  .nav-menu ul {
    position: fixed;
    top: 70px;
    right: 0;
    background: #fff;
    width: 200px;
    display: none;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    z-index: 999;
  }
  .nav-menu ul.active {
    display: flex;
  }
  .burger {
    display: flex;
    flex-direction: column;
  }
  /* ÐœÐ¾Ð±Ð¸Ð»ÑŒÐ½Ð°Ñ Ð²ÐµÑ€ÑÐ¸Ñ â€“ about me*/
  .about-me-items-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 0 15px;
  }
  .about-me-item {
    flex: 0 0 80%;
    scroll-snap-align: center;
    flex-direction: column;
    margin-bottom: 0;
  }
  .about-me-item.reverse {
    flex-direction: column;
  }
  .about-me-text {
    margin-top: 15px;
    text-align: center;
  }

  /* ÐšÐ°Ñ€Ñ‚Ð¾Ñ‡ÐºÐ° ÐºÑƒÑ€ÑÐ°: Ð½Ð° Ð¼Ð¾Ð±Ð¸Ð»ÑŒÐ½Ñ‹Ñ… Ð´ÐµÐ»Ð°ÐµÐ¼ Ð²ÐµÑ€Ñ‚Ð¸ÐºÐ°Ð»ÑŒÐ½ÑƒÑŽ Ñ€Ð°ÑÐºÐ»Ð°Ð´ÐºÑƒ */
  .course-card {
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    margin-bottom: 38px;
  }

  /* ÐÐ° Ð¼Ð¾Ð±Ð¸Ð»ÑŒÐ½Ñ‹Ñ… ÐºÐ°Ñ€Ñ‚Ð¸Ð½ÐºÐ° ÑÑ‚Ð°Ð½Ð¾Ð²Ð¸Ñ‚ÑÑ Ð½Ð° Ð²ÑÑŽ ÑˆÐ¸Ñ€Ð¸Ð½Ñƒ, Ð° Ð²Ñ‹ÑÐ¾Ñ‚Ñƒ Ð¼Ð¾Ð¶Ð½Ð¾ ÑƒÐ±Ñ€Ð°Ñ‚ÑŒ */
  .course-image {
    flex: 0 0 180px;
    width: 100%;
    height: auto;
  }
  .course-image img {
    width: 100%;
    height: auto;
  }

  .about-me-item {
    flex-direction: column;
  }
}

/* ---------- Ð¡ÐºÑ€Ð¾Ð»Ð»-Ð°Ð½Ð¸Ð¼Ð°Ñ†Ð¸Ð¸ ---------- */
.scroll-anim {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.scroll-anim.is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-anim="fade-up"] {
  transform: translateY(30px);
}
[data-anim="fade-up"].is-visible {
  transform: translateY(0);
  opacity: 1;
}
[data-anim="fade-in"] {
  opacity: 0;
}
[data-anim="fade-in"].is-visible {
  opacity: 1;
}
[data-anim="slide-left"] {
  transform: translateX(50px);
}
[data-anim="slide-left"].is-visible {
  transform: translateX(0);
  opacity: 1;
}
[data-anim="slide-right"] {
  transform: translateX(-50px);
}
[data-anim="slide-right"].is-visible {
  transform: translateX(0);
  opacity: 1;
}
[data-anim="zoom-in"] {
  transform: scale(0.8);
}
[data-anim="zoom-in"].is-visible {
  transform: scale(1);
  opacity: 1;
}
.scroll-anim[data-delay] {
  transition-delay: var(--delay, 0s);
}
</pre></body></html>