/*HEADER*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter Tight', sans-serif;
    background: transparent;
}
.header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 30px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    z-index: 200; /* увеличил, чтобы header был над overlay */
}
.logo {
    color: white;
    font-size: 24px;
    font-weight: 400;
}
.logo img {
    height: 80px;
    width: auto;
}
.nav-wrapper {
    display: flex;
    align-items: center;
    gap: clamp(8px, 1.5vw, 70px); /* более агрессивное сжатие */
    flex-shrink: 1;
    min-width: 0;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: clamp(3px, 0.8vw, 30px); /* еще меньше минимум */
    flex-shrink: 1;
}
.nav-item {
    padding: 5px;
}
.nav-link {
    color: white;
    font-size: 16px;
    font-weight: 300;
    text-decoration: underline;
    line-height: 20px;
    cursor: pointer;
    transition: opacity 0.3s;
    white-space: nowrap;
}
.page-template-test-lesson .nav-link,
.page-template-basic-course .nav-link,
.page-template-advanced-course .nav-link {
    color: black;
}
.nav-link:hover {
    opacity: 0.8;
}
.contact-btn {
    background: white;
    border: 1px solid #CFCFCF;
    border-radius: 15px;
    padding: clamp(4px, 1.5vw, 6.5px) clamp(10px, 2vw, 17px);
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.contact-icon {
    width: 24px;
    height: 24px;
}
.contact-text {
    color: black;
    font-size: clamp(14px, 2vw, 24px);
    font-weight: 300;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 201; /* выше overlay */
    padding: 10px;
    position: relative;
    background: transparent;
    border-radius: 8px;
    transition: background 0.3s ease;
}
.burger-menu.active {
    background: rgba(255, 255, 255, 0.9);
}
.burger-line {
    width: 30px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}
.burger-menu.active .burger-line {
    background: #333;
}
.burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}
.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}
.burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu */
.mobile-menu-wrapper {
    display: none;
}
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 100px 40px 40px;
    transition: right 0.4s ease;
    z-index: 202; /* выше overlay и header */
    overflow-y: auto;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}
.mobile-menu.active {
    right: 0;
}
.mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 60px;
    background: none;
    border: none;
    cursor: pointer;
	color: #FF58E7;
    z-index: 203; /* выше всего */
}
.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.mobile-nav-item {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.mobile-nav-link {
    color: #333;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s;
}
.mobile-nav-link:hover {
    color: #667eea;
}

/* Overlay */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 200; /* ниже мобильного меню */
    opacity: 0;
    transition: opacity 0.4s ease;
}
.overlay.active {
    opacity: 1;
}

/* Media queries */
@media (max-width: 1200px) {
    .nav-wrapper {
        gap: 50px;
    }
    .nav-menu {
        gap: 20px;
    }
    .nav-link {
        font-size: 14px;
    }
}
@media (max-width: 1300px) {
    .header {
        padding: 20px 30px;
    }
    .nav-wrapper {
        display: none;
    }
    .burger-menu {
        display: flex;
    }
    .mobile-menu-wrapper {
        display: block;
    }
    .contact-text {
        font-size: 20px;
    }
    .contact-btn {
        padding: 5px 12px;
    }
}
@media (max-width: 576px) {
    .header {
        padding: 15px 20px;
    }
    .logo img {
        height: 60px;
    }
    .contact-text {
        font-size: 16px;
    }
    .contact-icon {
        width: 20px;
        height: 20px;
    }
    .mobile-menu {
        width: 85%;
        padding: 80px 30px 30px;
    }
}

/*FOOTER*/
 footer {
            background: linear-gradient(135deg, rgba(255, 141.45, 238.78, 0.50) 0%, rgba(220, 20, 60, 0.40) 100%);
            padding: 40px 50px;
            position: relative;
        }

        .footer-container {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 60px;
            max-width: 1800px;
            margin: 0 auto;
        }

        .footer-logo {
            color: white;
            font-size: 24px;
            font-weight: 400;
            flex-shrink: 0;
        }

        .footer-logo img {
            height: 80px;
            width: auto;
        }

        .footer-wrapper {
            display: flex;
            gap: 120px;
            flex: 1;
        }

        .footer-column {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .footer-column a {
            color: white;
            font-size: 16px;
            font-weight: 300;
            text-decoration: underline;
            line-height: 20px;
            transition: opacity 0.2s;
        }

        .footer-column a:hover {
            opacity: 0.8;
        }

        .footer-social-media {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 8px;
            flex-shrink: 0;
        }

        .footer-social-title {
            color: white;
            font-size: 16px;
            font-family: 'Inter Tight', sans-serif;
            font-weight: 300;
            line-height: 20px;
            margin: 0;
            text-align: right;
        }

        .footer-social-subtitle {
            color: white;
            font-size: 14px;
            font-family: 'Inter Tight', sans-serif;
            font-weight: 300;
            line-height: 18px;
            margin: 0;
            text-align: right;
        }

        .footer-social-icons {
            display: flex;
            gap: 15px;
            margin-top: 8px;
        }

        .footer-social-icon {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            transition: transform 0.2s;
            display: block;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
        }

        .footer-social-icon:hover {
            transform: scale(1.1);
        }

        .footer-social-icon.instagram {
            background-image: url('https://soullash.mkweb.agency/wp-content/uploads/2025/10/Instagram.png');
        }

        .footer-social-icon.whatsapp {
            background-image: url('https://soullash.mkweb.agency/wp-content/uploads/2025/10/Whatsapp.png');
        }

        .footer-social-icon.telegram {
            background-image: url('https://soullash.mkweb.agency/wp-content/uploads/2025/10/Telegram.png');
        }

        .footer-bottom-text {
            position: absolute;
            bottom: 12px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 12px;
            text-align: center;
            opacity: 0.8;
        }

        .footer-bottom-text a {
            color: white;
            text-decoration: underline;
        }
  @media (max-width: 768px) {
            footer {
                padding: 30px 20px 50px;
            }

            .footer-container {
                flex-direction: column;
                gap: 30px;
                align-items: flex-start;
            }

            .footer-wrapper {
                gap: 60px;
                width: 100%;
            }

            .footer-social-media {
                align-items: flex-start;
                width: 100%;
            }

            .footer-social-title,
            .footer-social-subtitle {
                text-align: left;
            }

            .footer-logo img {
                height: 60px;
            }

            .footer-column a {
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            footer {
                padding: 20px 15px 45px;
            }

            .footer-container {
                gap: 20px;
            }

            .footer-wrapper {
                gap: 40px;
                flex-direction: column;
            }

            .footer-logo img {
                height: 50px;
            }

            .footer-column a {
                font-size: 13px;
            }

            .footer-social-title {
                font-size: 14px;
            }

            .footer-social-subtitle {
                font-size: 12px;
            }

            .footer-social-icons {
                gap: 12px;
            }

            .footer-social-icon {
                width: 35px;
                height: 35px;
            }
        }
/*HEROOOOOOOOOOOO*/
.hero-section {
  width: 100%;
  height: 900px;
  position: relative;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.59), rgba(0, 0, 0, 0.59)),
              url('https://soullash.mkweb.agency/wp-content/uploads/2025/10/Banner-min.png') center/cover no-repeat;
  padding: 0 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

/* === SLIDER FIX === */
.slider-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}


.hero-content {
  max-width: 1448px;
  display: flex;
  flex-direction: column;
  gap: 29px;
  z-index:2;
}

.hero-title {
  color: white;
  font-size: 96px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 300;
  line-height: 1.1;
  margin: 0;
}

.hero-description {
  color: white;
  font-size: 24px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 300;
  line-height: 30px;
  margin: 0;
}

.brand-highlight {
  color: #FF58E7;
  font-size: 40px;
  letter-spacing: 1.2px;
}

.hero-cta-text {
  max-width: 587px;
  color: white;
  font-size: 24px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 300;
  line-height: 30px;
  margin: 0;
}

.hero-buttons {
  display: flex;
  gap: 50px;
  margin-top: 20px;
}

.btn {
  padding: 11px 17px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 300;
  transition: transform 0.2s, box-shadow 0.2s, background 0.3s, color 0.3s;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
}

/* === PRIMARY BUTTON === */
.btn-primary {
  background: #FF58E7;
  color: white;
}

.btn-primary:hover {
  background: #FF58E7;
  box-shadow:
    0 0 10px #FF8DEF,
    0 0 20px #FF8DEF,
    0 0 30px #FF8DEF;
  color: white;
}

/* === SECONDARY BUTTON === */
.btn-secondary {
  background: white;
  color: black;
  border: 1px solid #FF58E7;
}

.btn-secondary:hover {
  background: #FF8DEF;
  color: white;
  border-color: #FF8DEF;
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3); /* без неона */
}

.btn svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.social-media {
  position: absolute;
  right: 50px;
  bottom: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index:2;
}

.social-title {
  color: white;
  font-size: 20px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 300;
  line-height: 30px;
  margin: 0;
  text-align: center;
}

.social-subtitle {
  color: white;
  font-size: 16px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 300;
  line-height: 20px;
  margin: 0;
  text-align: center;
}

.social-icons {
  display: flex;
  gap: 20px;
  margin-top: 7px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  transition: transform 0.2s;
  display: block;
}

.social-icon:hover {
  transform: scale(1.1);
}

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 11px;
}

.dot {
  width: 90px;
  height: 7px;
  background: #7C7C7C;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: white;
}

.dot:hover {
  background: #B0B0B0;
}

@media (max-width: 1400px) {
  .hero-title {
    font-size: 72px;
  }
  
  .brand-highlight {
    font-size: 32px;
  }
  
  .hero-description,
  .hero-cta-text {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: auto;
    min-height: 100vh;
    padding: 20px;
  }
  
  .hero-content {
    margin-top: 80px;
  }
  
  .hero-title {
    font-size: 48px;
  }
  
  .brand-highlight {
    font-size: 24px;
  }
  
  .hero-description,
  .hero-cta-text {
    font-size: 18px;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 20px;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .social-media {
    position: static;
    margin-top: 50px;
    margin-bottom: 30px;
  }
}
	/*COURSES*/
		   .courses-container {
            max-width: 1920px;
            margin: 0 auto;
            padding: 0 50px;
        }

        .courses-header {
            max-width: 1193px;
            margin-bottom: 40px;
			margin-top: 60px;
        }

        .courses-header h2 {
            color: #000;
            font-size: 48px;
            font-weight: 500;
            margin-bottom: 16px;
        }

        .courses-header p {
            color: #000;
            font-size: 24px;
            font-weight: 300;
            line-height: 1.4;
        }

        .courses-header .highlight {
            color: #FF58E7;
        }

        .courses-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 60px;
            max-width: 1870px;
        }

        .course-card {
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .course-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .course-image {
            width: 100%;
            height: 679px;
            border-radius: 15px;
            object-fit: cover;
        }

        .course-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .course-title {
            color: #363636;
            font-size: 24px;
            font-weight: 400;
        }

        .course-duration {
            color: #FF0000;
            font-size: 16px;
            font-weight: 400;
        }

        .course-description {
            color: #2F2F2F;
            font-size: 16px;
            font-weight: 400;
            line-height: 1.5;
        }

      	.course-button {
    		width: 242px;
    		padding: 12px 53px;
    		margin-top: 24px;
    		background: #FF58E7; 
    		border-radius: 10px;
    		box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    		border: 2px solid #FF58E7; 
    		cursor: pointer;
    		transition: all 0.3s ease;
    		color: #fff; 
		}

		.course-button span {
    		color: inherit; 
    		font-size: 24px;
    		font-weight: 300;
  		    transition: color 0.3s ease;
		}

		.course-button:hover {
    		background: #fff;
    		color: #000; 
    		border-color: #FF58E7;
    		transform: translateY(-2px);
    		box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
		}

        @media (max-width: 1600px) {
            .courses-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 1200px) {
            .courses-container {
                padding: 0 30px;
            }

            .courses-header h1 {
                font-size: 36px;
            }

            .courses-header p {
                font-size: 20px;
            }

            .courses-grid {
                gap: 40px;
            }
        }

        @media (max-width: 900px) {
            .courses-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .course-image {
                height: 500px;
            }
        }

        @media (max-width: 600px) {
            .courses-header h1 {
                font-size: 28px;
            }

            .courses-header p {
                font-size: 16px;
            }

            .course-title {
                font-size: 20px;
            }

            .course-image {
                height: 400px;
            }
        }

			/*CONSULTANCY*/
		.consultation-section {
            width: 100%;
            height: 570px;
            position: relative;
            background-image: url('https://soullash.mkweb.agency/wp-content/uploads/2025/10/consultation-min.png');
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            overflow: hidden;
			margin-top: 84px;
        }
		.consultation-section-small {
  			width: 100%;
            height: 500px;
            position: relative;
            background-image: url('https://soullash.mkweb.agency/wp-content/uploads/2025/10/consultation-small-1.png');
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            overflow: hidden;
			margin-top: 84px;
		}

        .consultation-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(0deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.50) 100%);
        }

        .consultation-content {
            position: relative;
            z-index: 1;
            text-align: center;
            padding: 0 20px;
        }

        .consultation-title {
            color: white;
            font-size: 48px;
            font-weight: 500;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .consultation-subtitle {
            color: white;
            font-size: 48px;
            font-weight: 500;
            margin-bottom: 50px;
        }

        .consultation-button {
            padding: 11px 17px;
            background: #FAFAFA;
            box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
            border-radius: 10px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .consultation-button:hover {
            background: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.3);
        }

        .consultation-button span {
            color: black;
            font-size: 24px;
            font-weight: 300;
        }

        @media (max-width: 1200px) {
            .consultation-section,.consultation-section-small {
                height: 500px;
            }

            .consultation-title {
                font-size: 36px;
            }

            .consultation-subtitle {
                font-size: 36px;
                margin-bottom: 40px;
            }

            .consultation-button span {
                font-size: 20px;
            }
        }

        @media (max-width: 768px) {
            .consultation-section,.consultation-section-small {
                height: 400px;
            }

            .consultation-title {
                font-size: 28px;
            }

            .consultation-subtitle {
                font-size: 28px;
                margin-bottom: 30px;
            }

            .consultation-button {
                padding: 10px 15px;
            }

            .consultation-button span {
                font-size: 18px;
            }
        }

        @media (max-width: 480px) {
            .consultation-section,.consultation-section-small {
                height: 350px;
            }

            .consultation-title {
                font-size: 22px;
                margin-bottom: 10px;
            }

            .consultation-subtitle {
                font-size: 22px;
                margin-bottom: 25px;
            }

            .consultation-button span {
                font-size: 16px;
            }
        }
/*HISTORY SECTION*/
.sla-history-section {
            padding: clamp(2rem, 4vw, 4rem) clamp(1.5rem, 4vw, 3.125rem);
            max-width: 1920px;
            margin: 0 auto;
        }

        .sla-history-content-wrapper {
            display: flex;
            flex-direction: column;
            gap: clamp(1rem, 2vw, 1.5rem);
            margin-bottom: clamp(2rem, 4vw, 3.5rem);
        }

        .sla-history-title {
            color: black;
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 500;
            line-height: 1.2;
        }

        .sla-history-description {
            color: black;
            font-size: clamp(1rem, 2vw, 1.5rem);
            font-weight: 300;
            line-height: 1.6;
        }

        .sla-history-highlight {
            color: #FF58E7;
        }

        .sla-history-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
            gap: clamp(1.5rem, 4vw, 3.75rem);
        }

        .sla-history-gallery-item {
            width: 100%;
            aspect-ratio: 567 / 641;
            border-radius: 15px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .sla-history-gallery-item:hover {
            transform: translateY(-5px);
        }

        @media (min-width: 768px) {
            .sla-history-gallery {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1200px) {
            .sla-history-gallery {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 767px) {
            .sla-history-description br {
                display: none;
            }
        }
/*CONTACT SECTION*/
		.sla-contact-section {
            padding: clamp(2rem, 4vw, 4rem) clamp(1.5rem, 4vw, 3.125rem);
            max-width: 1920px;
            margin: 0 auto;
        }

        .sla-contact-header {
            margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
        }

        .sla-contact-main-title {
            color: black;
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 500;
            line-height: 1.2;
            margin-bottom: clamp(0.5rem, 1vw, 1rem);
        }

        .sla-contact-subtitle {
            color: black;
            font-size: clamp(1.25rem, 2.5vw, 1.5rem);
            font-weight: 300;
            line-height: 1.5;
        }

        .sla-contact-content-wrapper {
            display: flex;
            flex-direction: column;
            gap: clamp(1.5rem, 3vw, 2.5rem);
        }

        .sla-contact-form-container {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: clamp(1rem, 2vw, 1.75rem);
        }

        .sla-contact-input,
        .sla-contact-textarea {
            width: 100%;
            padding: clamp(0.75rem, 1.5vw, 1rem) clamp(0.875rem, 2vw, 1.125rem);
            font-size: clamp(1rem, 1.5vw, 1.25rem);
            font-family: 'Inter Tight', sans-serif;
            font-weight: 300;
            color: black;
            background: white;
            border: 1px solid #B3B3B3;
            border-radius: 5px;
            outline: none;
            transition: border-color 0.3s ease;
        }

        .sla-contact-input:focus,
        .sla-contact-textarea:focus {
            border-color: #FF58E7;
        }

        .sla-contact-input::placeholder,
        .sla-contact-textarea::placeholder {
            color: #999;
        }

        .sla-contact-textarea {
            min-height: clamp(120px, 15vw, 173px);
            resize: vertical;
        }

        .sla-contact-submit-btn {
            width: fit-content;
            padding: clamp(0.75rem, 1.2vw, 0.875rem) clamp(2rem, 4vw, 3.3125rem);
            background: #FF58E7;
            color: white;
            font-size: clamp(1.125rem, 2vw, 1.5rem);
            font-family: 'Inter Tight', sans-serif;
            font-weight: 300;
            border: none;
            border-radius: 10px;
            box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
            cursor: pointer;
            transition: all 0.3s ease;
            align-self: flex-start;
        }

        .sla-contact-submit-btn:hover {
            background: #E645D1;
            transform: translateY(-2px);
            box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.3);
        }

        .sla-contact-submit-btn:active {
            transform: translateY(0);
        }

        .sla-contact-map-container {
            width: 100%;
            height: clamp(300px, 40vw, 515px);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        }

        .sla-contact-map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        @media (min-width: 1024px) {
            .sla-contact-content-wrapper {
                flex-direction: row;
                align-items: flex-start;
            }

            .sla-contact-form-container {
                max-width: 655px;
            }

            .sla-contact-map-container {
                flex: 1;
                max-width: 1143px;
            }
        }

        @media (max-width: 1023px) {
            .sla-contact-map-container {
                order: -1;
            }
        }
/*FAQ SECTION*/
.faq-container {
            max-width: 1920px;
			padding: clamp(2rem, 4vw, 4rem) clamp(1.5rem, 4vw, 3.125rem);
            margin: 0 auto;
        }

        .faq-intro {
            max-width: 1212px;
            margin-bottom: 60px;
        }

        .faq-main-title {
            font-size: 48px;
            font-weight: 500;
            color: black;
            margin-bottom: 16px;
        }

        .faq-header-text {
            font-size: 24px;
            font-weight: 300;
            line-height: 1.5;
            color: black;
        }

        .faq-accent {
            color: #FF58E7;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 50px 60px;
			margin: 47px 0 0;
        }

        .faq-column {
            display: flex;
            flex-direction: column;
            gap: 44px;
        }

        .faq-item {
            background: white;
            border: 1px solid #E0E0E0;
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-question {
            width: 100%;
            padding: 20px 24px;
            background: none;
            border: none;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            text-align: left;
            transition: background 0.2s ease;
        }

        .faq-question:hover {
            background: #FAFAFA;
        }

        .faq-question-content {
            display: flex;
            align-items: center;
            gap: 10px;
            flex: 1;
        }

        .faq-icon {
            width: 24px;
            height: 24px;
            flex-shrink: 0;
        }

        .faq-question-text {
            font-size: 20px;
            font-weight: 400;
            color: black;
        }

        .faq-arrow {
            width: 24px;
            height: 24px;
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

        .faq-arrow svg {
            width: 100%;
            height: 100%;
        }

        .faq-item.active .faq-arrow {
            transform: rotate(180deg);
        }

        .faq-answer {
			height: 0; /* вместо max-height */
			overflow: hidden;
			transition: height 0.3s ease;
			padding: 0 24px; /* фиксируем горизонтальный padding */
		}

		.faq-answer-content {
			padding-bottom: 20px; /* отступ снизу, не участвует в height */
		}

        .faq-answer-text {
            font-size: 18px;
            font-weight: 300;
            color: #666;
            line-height: 1.6;
        }

        @media (max-width: 1200px) {
            .faq-grid {
                grid-template-columns: 1fr;
                gap: 44px;
            }

            .faq-main-title {
                font-size: 36px;
            }

            .faq-description {
                font-size: 20px;
            }
        }

        @media (max-width: 768px) {
            .faq-section {
                padding: 30px 15px;
            }

            .faq-main-title {
                font-size: 28px;
            }

            .faq-description {
                font-size: 18px;
            }

            .faq-question-text {
                font-size: 20px;
            }

            .faq-answer-text {
                font-size: 18px;
            }
        }
/*REVIEWS SECTION*/
 .reviews-container {
            max-width: 1920px;
	 		padding: clamp(2rem, 4vw, 4rem) clamp(1.5rem, 4vw, 3.125rem);
            margin: 0 auto;
        }

        .reviews-intro {
            max-width: 1243px;
            margin-bottom: 60px;
        }

        .reviews-main-title {
            font-size: 48px;
            font-weight: 500;
            color: black;
            margin-bottom: 16px;
        }

        .reviews-description {
            font-size: 24px;
            font-weight: 300;
            line-height: 1.5;
            color: black;
        }

        .reviews-accent {
            color: #FF58E7;
        }

        .reviews-slider-wrapper {
            position: relative;
            width: 100%;
            overflow: hidden;
        }

        .reviews-slider {
            display: flex;
            gap: 60px;
            transition: transform 0.5s ease;
        }

        .reviews-card {
            min-width: 450px;
            max-width: 450px;
            min-height: 280px;
            background: white;
            border: 1px solid #E0E0E0;
            border-radius: 20px;
            padding: 24px;
            position: relative;
            flex-shrink: 0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .reviews-card-header {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 20px;
        }

        .reviews-card-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: #E0E0E0;
            flex-shrink: 0;
        }

        .reviews-card-info {
            flex: 1;
        }

        .reviews-card-name-row {
            display: flex;
            align-items: baseline;
            gap: 8px;
            margin-bottom: 4px;
        }

        .reviews-card-name {
            font-size: 18px;
            font-weight: 400;
            color: black;
        }

        .reviews-card-role {
            font-size: 13px;
            font-weight: 300;
            color: #999;
        }

        .reviews-card-date {
            font-size: 13px;
            font-weight: 300;
            color: #AAAAAA;
        }

        .reviews-card-text {
            font-size: 15px;
            font-weight: 300;
            color: #333;
            line-height: 1.6;
            margin-bottom: 24px;
        }

        .reviews-card-footer {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .reviews-card-stars {
            display: flex;
            gap: 3px;
        }

        .reviews-card-star {
            width: 16px;
            height: 16px;
            background: #FFD700;
            border-radius: 2px;
        }

        .reviews-card-source {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .reviews-card-source-icon {
            width: 14px;
            height: 14px;
            background: #4285F4;
            border-radius: 50%;
        }

        .reviews-card-source-text {
            font-size: 12px;
            font-family: 'Inter', sans-serif;
            font-weight: 500;
            color: #888;
        }

        .reviews-dots {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 50px;
        }

        .reviews-dot {
            width: 80px;
            height: 5px;
            background: #D9D9D9;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .reviews-dot.active {
            background: #FF58E7;
        }

        @media (max-width: 1200px) {
            .reviews-main-title {
                font-size: 36px;
            }

            .reviews-description {
                font-size: 20px;
            }

            .reviews-card {
                min-width: 400px;
                max-width: 400px;
            }
        }

        @media (max-width: 768px) {
            .reviews-section {
                padding: 30px 15px;
            }

            .reviews-main-title {
                font-size: 28px;
            }

            .reviews-description {
                font-size: 18px;
            }

            .reviews-card {
                min-width: 100%;
                max-width: 100%;
            }
        }
/*TEST LESSON*/

.course-hero {
            padding: 40px 0 0;
            max-width: 1920px;
            margin: 0 auto;
        }

        .course-hero__content {
            max-width: 1193px;
            padding: 70px 50px;
        }

        .course-hero__title {
            font-size: 48px;
            font-weight: 500;
            color: black;
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .course-hero__subtitle {
            font-size: 24px;
            font-weight: 300;
            color: black;
            line-height: 1.4;
        }

        .course-hero__image {
            width: 100%;
            height: 600px;
            object-fit: cover;
            display: block;
        }

        .course-materials {
            padding: 30px 0;
            text-align: center;
        }

        .course-materials__title {
            font-size: 40px;
            font-weight: 300;
            color: black;
            max-width: 1653px;
            margin: 0 auto 30px;
        }

        .course-materials__grid {
            display: flex;
            justify-content: center;
            gap: 50px;
            flex-wrap: wrap;
            padding: 0 50px;
        }

        .course-materials__card {
            width: 321px;
            height: 140px;
            border: 1px solid #B2B2B2;
            border-radius: 15px;
            box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px;
            gap: 10px;
        }

        .course-materials__number {
            font-family: 'Inria Serif', serif;
            font-size: 64px;
            font-weight: 700;
            color: #FF58E7;
            line-height: 70px;
            letter-spacing: 1.92px;
        }

        .course-materials__text {
            font-size: 16px;
            font-weight: 300;
            color: black;
            text-align: center;
        }

        .course-program {
            background: #FCFCFC;
            padding: 50px 50px;
        }

        .course-program__header {
            max-width: 1193px;
            margin-bottom: 50px;
        }

        .course-program__title {
            font-size: 48px;
            font-weight: 500;
            color: black;
            margin-bottom: 16px;
        }

        .course-program__description {
            font-size: 24px;
            font-weight: 300;
            color: black;
        }

        .course-program__content {
            max-width: 906px;
        }

        .course-program__day {
            margin-bottom: 40px;
        }

        .course-program__day-title {
            font-size: 36px;
            font-weight: 500;
            color: #FF58E7;
            margin-bottom: 27px;
        }

        .course-program__day-content {
            border-left: 1px solid black;
            padding-left: 20px;
            font-size: 32px;
            font-weight: 400;
            color: black;
            letter-spacing: 1.60px;
            line-height: 1.4;
        }

        .course-certificate {
            padding: 50px 50px;
        }

        .course-certificate__title {
            font-size: 48px;
            font-weight: 500;
            color: black;
            margin-bottom: 33px;
            max-width: 1695px;
        }

        .course-certificate__title-accent {
            color: #FF58E7;
        }

        .course-certificate__subtitle {
            font-size: 32px;
            font-weight: 300;
            color: black;
            line-height: 35px;
            margin-bottom: 33px;
        }

        .course-certificate__flag {
            display: flex;
            align-items: center;
            gap: 23px;
            margin-bottom: 20px;
        }

        .course-certificate__flag-icon {
            width: 40px;
            height: 40px;
            border-radius: 2px;
            overflow: hidden;
        }

        .course-certificate__flag-icon--ua {
            background: linear-gradient(180deg, #156DD1 0%, #156DD1 53.33%, #FFD948 53.33%, #FFD948 100%);
        }

        .course-certificate__flag-icon--eu {
            background: #043CAE;
        }

        .course-certificate__flag-text {
            font-size: 32px;
            font-weight: 500;
            color: black;
        }

        .course-certificate__description {
            font-size: 24px;
            font-weight: 300;
            color: black;
            line-height: 35px;
            margin-bottom: 40px;
            max-width: 1695px;
        }

        .course-certificate__button {
            background: #FF58E7;
            border-radius: 10px;
            padding: 15px 70px;
            border: 2px solid #FF58E7;
            cursor: pointer;
            font-size: 32px;
            font-weight: 300;
            color: white;
            font-family: 'Inter Tight', sans-serif;
            display: inline-block;
        }
		.course-certificate__button:hover {
    		background: #fff;
    		color: #000; 
    		border-color: #FF58E7;
    		transform: translateY(-2px);
    		box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
		}

        .course-trial {
            background: #FCFCFC;
            padding: 80px 50px;
            position: relative;
        }

        .course-trial__content {
            display: flex;
            gap: 100px;
            align-items: center;
        }

        .course-trial__text {
            flex: 1;
            max-width: 1014px;
        }

        .course-trial__title {
            font-size: 48px;
            font-weight: 500;
            color: black;
            margin-bottom: 30px;
            line-height: 1.2;
        }

        .course-trial__title-accent {
            color: #FF58E7;
        }

        .course-trial__subtitle {
            font-size: 24px;
            font-weight: 500;
            color: #717171;
            margin-bottom: 40px;
        }

        .course-trial__socials {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .course-trial__social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .course-trial__social-icon--instagram {
            background: linear-gradient(45deg, #FAAD4F 0%, #DD2A7B 35%, #9537B0 62%, #515BD4 100%);
			transition: transform 0.2s;
        }

        .course-trial__social-icon--whatsapp {
            background: #00E510;
			transition: transform 0.2s;
        }

        .course-trial__social-icon--telegram {
            background: #00B0F2;
			transition: transform 0.2s;
        }
		.course-trial__social-icon:hover {
 			transform: scale(1.1);
		}	

        .course-trial__card-wrapper {
            width: 567px;
            flex-shrink: 0;
        }

        .course-trial__card {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .course-trial__card-image {
            width: 100%;
            height: 679px;
            object-fit: cover;
            border-radius: 15px;
            box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
        }

        .course-trial__card-title {
            font-size: 24px;
            font-weight: 400;
            color: #363636;
        }

        .course-trial__card-duration {
            font-size: 16px;
            font-weight: 400;
            color: #FF0000;
        }

        .course-trial__card-description {
            font-size: 16px;
            font-weight: 400;
            color: #2F2F2F;
            line-height: 1.5;
        }

        .course-trial__card-button {
            background: #FF58E7;
            border-radius: 10px;
            padding: 12px 53px;
            border: 2px solid #FF58E7;
            cursor: pointer;
            font-size: 24px;
            font-weight: 300;
            color: white;
            font-family: 'Inter Tight', sans-serif;
            box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
            width: fit-content;
        }
		.course-trial__card-button:hover {
    		background: #fff;
    		color: #000; 
    		border-color: #FF58E7;
    		transform: translateY(-2px);
    		box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
		}

        @media (max-width: 1400px) {
            .course-trial__content {
                flex-direction: column-reverse;
            }

            .course-trial__card-wrapper {
                width: 100%;
                max-width: 567px;
            }
        }

        @media (max-width: 768px) {
            .course-hero__title {
                font-size: 32px;
            }

            .course-hero__subtitle {
                font-size: 18px;
            }

            .course-materials__title {
                font-size: 28px;
            }

            .course-materials__grid {
                gap: 20px;
            }

            .course-program__title {
                font-size: 32px;
            }

            .course-program__day-title {
                font-size: 28px;
            }

            .course-program__day-content {
                font-size: 20px;
            }

            .course-certificate__title {
                font-size: 32px;
            }

            .course-trial__title {
                font-size: 32px;
            }
        }