:root {

    --primary-yellow: #FFD700;

    --primary-black: #0A0A0A;

    --dark-gray: #1A1A1A;

    --light-gray: #F8F9FA;

    --text-dark: #1A1A1A;

    --text-light: #FFFFFF;

    --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.08);

    --shadow-medium: 0 6px 24px rgba(0, 0, 0, 0.12);

    --shadow-heavy: 0 12px 40px rgba(0, 0, 0, 0.15);

    --transition: all 0.3s ease;

    --border-radius: 10px;

    --border-radius-lg: 14px;

}

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}

html {

    scroll-behavior: smooth;

}

body {

    color: var(--text-dark);

    line-height: 1.6;

    overflow-x: hidden;

    font-family: 'Manrope', sans-serif;

    font-weight: 300;

    background-color: #fff;

}

.container {

    width: 90%;

    max-width: 1100px;

    margin: 0 auto;

    padding: 0 15px;

}

section {

    padding: 80px 0;

}

h1, h2, h3, h4, h5, h6 {

    font-family: 'Manrope', sans-serif;

    font-weight: 600;

    color: var(--primary-black);

    margin-bottom: 20px;

    line-height: 1.3;

}

h1 {

    font-size: 2.8rem;

    font-weight: 700;

}

h2 {

    font-size: 2.2rem;

    text-align: center;

    margin-bottom: 50px;

    position: relative;

    font-weight: 600;

}

h2::after {

    content: '';

    display: block;

    width: 60px;

    height: 3px;

    background: var(--primary-yellow);

    margin: 20px auto 0;

    border-radius: 2px;

}

h3 {

    font-size: 1.4rem;

    font-weight: 600;

}

p {

    font-family: 'Manrope', sans-serif;

    font-weight: 300;

    font-size: 1rem;

    line-height: 1.6;

    margin-bottom: 15px;

}

.btn, .btn-zayavka, .btn-submit, .btn-about-details, .btn-course-application, .btn-cta, .form-submit-btn, .footer-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 14px 32px;

    background: transparent;

    color: white;

    text-decoration: none;

    font-weight: 500;

    border: 2px solid var(--primary-yellow);

    border-radius: var(--border-radius);

    cursor: pointer;

    transition: var(--transition);

    text-align: center;

    font-size: 0.95rem;

    letter-spacing: 0.5px;

    position: relative;

    overflow: hidden;

    gap: 8px;

    font-family: 'Manrope', sans-serif;

}

.btn-zayavka, .btn-submit, .btn-about-details, .footer-btn {

    color: white;

    position: relative;

    overflow: hidden;

}



.btn-zayavka::before, .btn-submit::before, .btn-about-details::before, .footer-btn::before {

    content: '';

    position: absolute;

    top: 50%;

    left: 50%;

    width: 0;

    height: 0;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.2);

    transform: translate(-50%, -50%);

    transition: width 0.6s, height 0.6s;

}



.btn-zayavka:hover::before, .btn-submit:hover::before, .btn-about-details:hover::before, .footer-btn:hover::before {

    width: 300px;

    height: 300px;

}

.btn-zayavka:hover, .btn:hover, .btn-submit:hover, .btn-about-details:hover, .btn-course-application:hover, .btn-cta:hover, .form-submit-btn:hover, .footer-btn:hover {

    background: var(--primary-yellow);

    transform: translateY(-2px);

    box-shadow: var(--shadow-medium);

    color: black;

}

.btn-submit {

    width: 100%;

}

.btn-cta {

    background: var(--primary-yellow);

    color: var(--primary-black);

}

.btn-cta:hover {

    background: transparent;

    color: var(--primary-yellow);

}

.call-button:hover {

    transform: scale(1.1);

}

.call-button::before {

    display: none;

}

header {

    background-color: var(--primary-black);

    color: var(--text-light);

    position: fixed;

    top: 0;

    width: 100%;

    z-index: 1000;

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);

    transition: var(--transition);

    padding: 10px 0;

}

header.scrolled {

    padding: 8px 0;

    background-color: rgba(10, 10, 10, 0.98);

    backdrop-filter: blur(10px);

}

.header-container {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 0;

}

.logo-container {

    flex: 0 0 auto;

}

.logo-img {

    width: 110px;

    height: auto;

    transition: var(--transition);

}

.scrolled .logo-img {

    width: 80px;

}

.main-nav {

    flex: 1;

    display: flex;

    justify-content: center;

}

.main-nav ul {

    display: flex;

    list-style: none;

    align-items: center;

    gap: 15px;

    margin: 0;

    padding: 0;

}

.main-nav ul li a {

    color: var(--text-light);

    text-decoration: none;

    font-weight: 400;

    font-size: 0.9rem;

    transition: var(--transition);

    position: relative;

    white-space: nowrap;

    font-family: 'Manrope', sans-serif;

    padding: 6px 3px;

}

.main-nav ul li a::after {

    content: '';

    position: absolute;

    width: 0;

    height: 2px;

    bottom: 0;

    left: 0;

    background-color: var(--primary-yellow);

    transition: var(--transition);

}

.main-nav ul li a:hover {

    color: var(--primary-yellow);

}

.main-nav ul li a:hover::after {

    width: 100%;

}

.email-container {

    flex: 0 0 auto;

}

.email-link {

    display: flex;

    align-items: center;

    gap: 6px;

    padding: 6px 10px;

    border-radius: 6px;

    background: rgba(255, 215, 0, 0.1);

    transition: var(--transition);

    font-size: 0.75rem;

    white-space: nowrap;

    text-decoration: none;

    color: var(--text-light);

    font-family: 'Manrope', sans-serif;

    font-weight: 400;

}

.email-link:hover {

    background: rgba(255, 215, 0, 0.2);

}

.email-link i {

    color: var(--primary-yellow);

    font-size: 0.8rem;

}

.mobile-menu-toggle {

    display: none;

    flex-direction: column;

    justify-content: space-between;

    width: 24px;

    height: 18px;

    background: transparent;

    border: none;

    cursor: pointer;

    padding: 0;

    position: relative;

    z-index: 1001;

}

.mobile-menu-toggle span {

    display: block;

    height: 2px;

    width: 100%;

    background-color: var(--primary-yellow);

    border-radius: 2px;

    transition: var(--transition);

    transform-origin: center;

}

.mobile-menu-toggle.active span:nth-child(1) {

    transform: rotate(45deg) translate(5px, 5px);

}

.mobile-menu-toggle.active span:nth-child(2) {

    opacity: 0;

}

.mobile-menu-toggle.active span:nth-child(3) {

    transform: rotate(-45deg) translate(5px, -5px);

}

.hero {

    background-color: var(--primary-black);

    color: var(--text-light);

    text-align: center;

    padding: 160px 0 80px;

    position: relative;

    overflow: hidden;

    min-height: 100vh;

    display: flex;

    align-items: center;

}

.hero-background {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 120%;

    background: 

        linear-gradient(135deg, rgba(10,10,10,0.9) 0%, rgba(30,30,30,0.8) 100%),

        url('../img/hero-background.webp') center/cover no-repeat;

    z-index: 0;

}

.hero .container {

    position: relative;

    z-index: 1;

}

.hero h1 {

    font-weight: 700;

    margin-bottom: 25px;

    text-shadow: 0 2px 4px rgba(0,0,0,0.3);

    color: white;

    animation: fadeInUp 0.8s ease;

    font-family: 'Manrope', sans-serif;

    position: relative;

}



.hero h1::after {

    content: '';

    position: absolute;

    bottom: -10px;

    left: 50%;

    transform: translateX(-50%);

    width: 100px;

    height: 3px;

    background: linear-gradient(90deg, transparent, var(--primary-yellow), transparent);

    animation: expandWidth 1s ease 0.8s both;

}



.hero p {

    font-size: 1.1rem;

    max-width: 600px;

    margin: 0 auto 30px;

    opacity: 0.9;

    animation: fadeInUp 0.8s ease 0.2s both;

    color: #ddd;

    font-family: 'Manrope', sans-serif;

    font-weight: 300;

}

.btn-zayavka {

    animation: fadeInUp 0.8s ease 0.4s both;

    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

}



.btn-zayavka:hover {

    transform: translateY(-3px) scale(1.05);

    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);

}

.about {

    background-color: var(--primary-black);

    color: white;

    padding: 80px 0;

}

.about-h2 {

    color: white;

    text-align: center;

    position: relative;

    margin-bottom: 50px;

}

.about-h2::after {

    content: '';

    display: block;

    width: 60px;

    height: 3px;

    background: var(--primary-yellow);

    margin: 20px auto 0;

    border-radius: 2px;

}

.about-cards-container {

    display: flex;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 40px;

}

.about-card {

    flex: 1;

    display: flex;

    flex-direction: column;

    background: var(--dark-gray);

    border-radius: var(--border-radius-lg);

    overflow: hidden;

    box-shadow: var(--shadow-medium);

    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    position: relative;

    border: 2px solid transparent;

    opacity: 0;

    transform: translateY(30px);

    animation: fadeInUp 0.8s ease forwards;

}



.about-card:nth-child(1) {

    animation-delay: 0.1s;

}



.about-card:nth-child(2) {

    animation-delay: 0.3s;

}



.about-card:hover {

    transform: translateY(-8px) scale(1.02);

    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2), var(--shadow-heavy);

    border-color: rgba(255, 215, 0, 0.3);

}

.about-card.blue {

    border-color: #007bff;

}

.courses-cta {

    align-items: center;

    text-align: center;

}

.about-card.yellow {

    border-color: var(--primary-yellow);

}

.about-card-image-wrapper {

    height: 250px;

    overflow: hidden;

    position: relative;

}

.about-card-image-wrapper img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    filter: brightness(0.9);

}

.about-card:hover .about-card-image-wrapper img {

    transform: scale(1.1);

    filter: brightness(1);

}

.about-card-content {

    padding: 25px;

    flex-grow: 1;

    display: flex;

    flex-direction: column;

    gap: 15px;

}

.about-card-content h3 {

    font-size: 1.1rem;

    margin-bottom: 15px;

    color: white;

    font-family: 'Manrope', sans-serif;

    font-weight: 600;

    line-height: 1.3;

}

.about-card-content p {

    color: #ddd;

    font-size: 1rem;

    line-height: 1.6;

    font-family: 'Manrope', sans-serif;

    font-weight: 300;

    margin-bottom: 0;

    flex-grow: 1;

}

.preparatory-courses {

    background: var(--primary-black);

    padding: 60px 0;

}

.preparatory-courses h2 {

    color: var(--primary-yellow);

    text-align: center;

    margin-bottom: 15px;

    font-size: 1.8rem;

}

.courses-subtitle {

    text-align: center;

    font-size: 0.95rem;

    color: #ddd;

    margin-bottom: 30px;

    max-width: 700px;

    margin-left: auto;

    margin-right: auto;

    line-height: 1.4;

}

.preparatory-cards {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));

    gap: 20px;

    margin-bottom: 40px;

    align-items: stretch;

}

.preparatory-card {

    background: var(--dark-gray);

    border-radius: 10px;

    padding: 0;

    box-shadow: var(--shadow-medium);

    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    border: 1px solid rgba(255, 215, 0, 0.2);

    overflow: hidden;

    display: flex;

    flex-direction: column;

    height: 100%;

    min-height: 520px;

    opacity: 0;

    transform: translateY(30px);

    animation: fadeInUp 0.8s ease forwards;

}



.preparatory-card:nth-child(1) {

    animation-delay: 0.2s;

}



.preparatory-card:nth-child(2) {

    animation-delay: 0.4s;

}



.preparatory-card:hover {

    transform: translateY(-5px);

    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.15), var(--shadow-heavy);

    border-color: rgba(255, 215, 0, 0.4);

}

.course-content {

    padding: 0 20px 20px;

    flex: 1;

    display: flex;

    flex-direction: column;

    gap: 15px;

}

.course-header {

    display: flex;

    align-items: flex-start;

    gap: 12px;

    padding: 20px 20px 12px;

}

.course-icon {

    flex-shrink: 0;

    width: 35px;

    height: 35px;

    background: linear-gradient(135deg, var(--primary-yellow), #ffed4e);

    border-radius: 8px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--primary-black);

    font-size: 0.9rem;

}

.course-title {

    flex: 1;

}

.course-header h3 {

    font-size: 1rem;

    margin-bottom: 4px;

    color: white;

    line-height: 1.2;

    font-weight: 600;

}

.course-guarantee {

    color: var(--primary-yellow);

    font-size: 0.7rem;

    font-weight: 500;

    display: block;

    line-height: 1.2;

}

.course-description {

    margin: 0;

}

.course-description p {

    color: #ddd;

    font-size: 0.8rem;

    line-height: 1.4;

    margin-bottom: 0;

}

.features-section {

    min-height: 180px;

    display: flex;

    flex-direction: column;

}

.course-features {

    margin: 0;

    flex: 1;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    gap: 8px;

}

.professional-retraining {

    padding: 12px;

    margin: 0;

    background: var(--dark-gray);

    flex: 1;

    display: flex;

    flex-direction: column;

}

.professional-retraining h4 {

    color: var(--primary-yellow);

    font-size: 0.9rem;

    margin-bottom: 4px;

    font-weight: 600;

}

.professional-retraining > p {

    color: #ccc;

    font-size: 0.75rem;

    margin-bottom: 8px;

    font-weight: 300;

    line-height: 1.3;

}

.retraining-features {

    flex: 1;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    gap: 8px;

}

.benefits-section {

    display: flex;

    align-items: center;

    min-height: 70px;

}

.course-benefits {

    margin: 0;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 6px 15px;

    width: 100%;

    align-items: start;

    grid-auto-rows: 1fr;

}

.benefit {

    display: flex;

    align-items: center;

    gap: 6px;

    padding: 4px 0;

    min-height: 24px;

    height: 100%;

}

.benefit i {

    color: var(--primary-yellow);

    font-size: 0.65rem;

    flex-shrink: 0;

    width: 12px;

}

.benefit span {

    color: #ddd;

    font-size: 0.75rem;

    font-family: 'Manrope', sans-serif;

    font-weight: 300;

    line-height: 1.1;

}

.feature {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 8px;

    background: rgba(255, 255, 255, 0.03);

    border-radius: 5px;

    border-left: 2px solid var(--primary-yellow);

    min-height: 45px;

}

.feature i {

    color: var(--primary-yellow);

    font-size: 0.8rem;

    flex-shrink: 0;

    width: 16px;

    text-align: center;

}

.feature-text {

    display: flex;

    flex-direction: column;

    gap: 1px;

    flex: 1;

}

.feature-text strong {

    color: white;

    font-size: 0.75rem;

    font-weight: 600;

    line-height: 1.1;

}

.feature-text span {

    color: #bbb;

    font-size: 0.7rem;

    font-weight: 300;

    line-height: 1.2;

}

.course-footer {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-top: auto;

    padding-top: 15px;

    border-top: 1px solid rgba(255, 255, 255, 0.1);

    min-height: 50px;

}

.course-meta {

    display: flex;

    align-items: center;

    gap: 12px;

}

.age-limit {

    display: flex;

    align-items: center;

    gap: 4px;

    color: #aaa;

    font-size: 0.7rem;

}

.age-limit i {

    color: var(--primary-yellow);

    font-size: 0.65rem;

}

.btn-course-application {

    display: inline-flex;

    align-items: center;

    text-align: center;

    justify-content: center;

    padding: 8px 16px;

    background: transparent;

    color: white;

    text-decoration: none;

    font-weight: 500;

    border: 1px solid var(--primary-yellow);

    border-radius: 6px;

    cursor: pointer;

    transition: var(--transition);

    font-size: 0.75rem;

    gap: 4px;

}

.btn-course-application:hover {

    background: var(--primary-yellow);

    color: black;

    transform: translateY(-1px);

}

.preparatory-card:first-child .benefits-section {

    margin-top: 20px;

}

@media (max-width: 1024px) {

    .preparatory-cards {

        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));

    }

}

@media (max-width: 768px) {

    .preparatory-cards {

        grid-template-columns: 1fr;

        gap: 15px;

    }

    .preparatory-card {

        min-height: auto;

    }

    .features-section {

        min-height: auto;

    }

    .benefits-section {

        min-height: auto;

    }

    .course-benefits {

        grid-template-columns: 1fr;

        gap: 6px;

    }

    .course-footer {

        flex-direction: column;

        gap: 8px;

        min-height: auto;

    }

    .course-header {

        flex-direction: column;

        text-align: center;

        gap: 8px;

    }

}

@media (max-width: 480px) {

    .preparatory-cards {

        grid-template-columns: 1fr;

    }

    .course-header,

    .course-content {

        padding: 12px;

    }

    .professional-retraining {

        padding: 8px;

    }

    .feature {

        padding: 6px;

        min-height: 40px;

    }

    .benefit {

        min-height: 22px;

    }

    .course-header h3 {

        font-size: 0.95rem;

    }

}

.payment-options {

    background-color: var(--primary-black);

    padding: 80px 0;

}

.payment-options h2 {

    color: var(--primary-yellow);

    text-align: center;

    margin-bottom: 50px;

    position: relative;

}

.payment-options h2::after {

    content: '';

    display: block;

    width: 60px;

    height: 3px;

    background: var(--primary-yellow);

    margin: 20px auto 0;

    border-radius: 2px;

}

.payment-cards {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

    gap: 25px;

}

.payment-card {

    background: var(--dark-gray);

    border-radius: var(--border-radius-lg);

    padding: 35px 25px;

    text-align: center;

    box-shadow: var(--shadow-medium);

    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    border: 2px solid rgba(255, 215, 0, 0.2);

    position: relative;

    overflow: hidden;

    color: white;

    opacity: 0;

    transform: translateY(30px);

    animation: fadeInUp 0.8s ease forwards;

}



.payment-card:nth-child(1) { animation-delay: 0.1s; }

.payment-card:nth-child(2) { animation-delay: 0.2s; }

.payment-card:nth-child(3) { animation-delay: 0.3s; }



.payment-card:hover {

    transform: translateY(-8px) scale(1.03);

    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2), var(--shadow-heavy);

    border-color: var(--primary-yellow);

}



.payment-card::before {

    content: '';

    position: absolute;

    top: -50%;

    left: -50%;

    width: 200%;

    height: 200%;

    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);

    opacity: 0;

    transition: opacity 0.4s;

}



.payment-card:hover::before {

    opacity: 1;

}

.payment-icon {

    font-size: 2.5rem;

    font-weight: 700;

    color: var(--primary-yellow);

    margin-bottom: 15px;

    position: relative;

    display: inline-block;

    font-family: 'Manrope', sans-serif;

}

.payment-card h3 {

    font-size: 1.2rem;

    margin-bottom: 12px;

    color: white;

    text-transform: uppercase;

    letter-spacing: 0.5px;

    font-family: 'Manrope', sans-serif;

    font-weight: 600;

}

.payment-card p {

    color: #ddd;

    font-size: 0.9rem;

    line-height: 1.5;

    margin: 0;

    font-family: 'Manrope', sans-serif;

    font-weight: 300;

}

.advantages {

    background-color: var(--light-gray);

    padding: 80px 0;

}

.advantages h2 {

    color: var(--primary-black);

}

.advantages-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

    gap: 35px;

}

.advantage-card {

    background: white;

    padding: 35px 25px;

    border-radius: var(--border-radius-lg);

    text-align: center;

    box-shadow: var(--shadow-medium);

    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    border: 2px solid rgba(255, 215, 0, 0.2);

    opacity: 0;

    transform: translateY(30px);

    animation: fadeInUp 0.8s ease forwards;

}



.advantage-card:nth-child(1) { animation-delay: 0.1s; }

.advantage-card:nth-child(2) { animation-delay: 0.2s; }

.advantage-card:nth-child(3) { animation-delay: 0.3s; }

.advantage-card:nth-child(4) { animation-delay: 0.4s; }

.advantage-card:nth-child(5) { animation-delay: 0.5s; }

.advantage-card:nth-child(6) { animation-delay: 0.6s; }



.advantage-card:hover {

    transform: translateY(-8px) scale(1.02);

    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.15), var(--shadow-heavy);

    border-color: var(--primary-yellow);

}



.advantage-icon {

    transition: transform 0.4s ease;

}



.advantage-card:hover .advantage-icon {

    transform: scale(1.1) rotate(5deg);

}

.advantage-icon {

    font-size: 2.5rem;

    color: var(--primary-yellow);

    margin-bottom: 15px;

    display: flex;

    align-items: center;

    justify-content: center;

    height: 70px;

}

.advantage-card h3 {

    font-size: 1.2rem;

    margin-bottom: 12px;

    font-family: 'Manrope', sans-serif;

    font-weight: 600;

}

.advantage-card p {

    color: #666;

    font-size: 0.9rem;

    font-family: 'Manrope', sans-serif;

    font-weight: 300;

}

.courses-section {

    background-color: var(--primary-black);

    padding: 80px 0;

}

.courses-section h2 {

    color: var(--primary-yellow);

}

.courses-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

    gap: 30px;

    margin-top: 40px;

}

.course-card {

    background: var(--dark-gray);

    border-radius: var(--border-radius-lg);

    overflow: hidden;

    box-shadow: var(--shadow-medium);

    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    border: 2px solid transparent;

    display: flex;

    flex-direction: column;

    height: 100%;

    opacity: 0;

    transform: translateY(30px);

    animation: fadeInUp 0.8s ease forwards;

}



.course-card:nth-child(1) { animation-delay: 0.1s; }

.course-card:nth-child(2) { animation-delay: 0.2s; }

.course-card:nth-child(3) { animation-delay: 0.3s; }

.course-card:nth-child(4) { animation-delay: 0.4s; }

.course-card:nth-child(5) { animation-delay: 0.5s; }

.course-card:nth-child(6) { animation-delay: 0.6s; }

.course-card:nth-child(7) { animation-delay: 0.7s; }

.course-card:nth-child(8) { animation-delay: 0.8s; }

.course-card:nth-child(9) { animation-delay: 0.9s; }

.course-card:nth-child(10) { animation-delay: 1s; }



.course-card:hover {

    transform: translateY(-8px) scale(1.02);

    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2), var(--shadow-heavy);

    border-color: var(--primary-yellow);

}

.course-image-wrapper {

    height: 150px;

    overflow: hidden;

    position: relative;

}

.course-image-wrapper::after {

    content: '';

    position: absolute;

    bottom: 0;

    left: 0;

    width: 100%;

    height: 40%;

    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);

    pointer-events: none;

}

.course-image-wrapper img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    filter: brightness(0.9);

}

.course-card:hover .course-image-wrapper img {

    transform: scale(1.12);

    filter: brightness(1);

}

.course-content {

    padding: 25px;

    flex-grow: 1;

    display: flex;

    flex-direction: column;

}

.course-subtitle {

    font-size: 0.9rem;

    color: rgba(255, 255, 255, 0.6);

    font-weight: 500;

    margin-bottom: 10px;

    display: block;

    font-family: 'Manrope', sans-serif;

    text-transform: uppercase;

    letter-spacing: 0.5px;

}

.course-content h3 {

    font-size: 1.1rem;

    margin-bottom: 15px;

    color: white;

    font-family: 'Manrope', sans-serif;

    font-weight: 600;

}

.course-content p {

    color: #ddd;

    font-size: 1rem;

    line-height: 1.6;

    font-family: 'Manrope', sans-serif;

    font-weight: 300;

    margin-bottom: 20px;

    flex-grow: 1;

}

.specialties {

    background-color: var(--primary-black);

    padding: 80px 0;

}

.specialties h2 {

    color: var(--primary-yellow);

}

.specialties-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

    gap: 25px;

}

.specialty-card {

    background: var(--dark-gray);

    border-radius: var(--border-radius-lg);

    overflow: hidden;

    box-shadow: var(--shadow-medium);

    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    height: 100%;

    display: flex;

    flex-direction: column;

    border: 2px solid transparent;

    opacity: 0;

    transform: translateY(30px);

    animation: fadeInUp 0.8s ease forwards;

}



.specialty-card:nth-child(1) { animation-delay: 0.1s; }

.specialty-card:nth-child(2) { animation-delay: 0.2s; }

.specialty-card:nth-child(3) { animation-delay: 0.3s; }

.specialty-card:nth-child(4) { animation-delay: 0.4s; }

.specialty-card:nth-child(5) { animation-delay: 0.5s; }

.specialty-card:nth-child(6) { animation-delay: 0.6s; }

.specialty-card:nth-child(7) { animation-delay: 0.7s; }

.specialty-card:nth-child(8) { animation-delay: 0.8s; }



.specialty-card:hover {

    transform: translateY(-8px) scale(1.02);

    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2), var(--shadow-heavy);

    border-color: var(--primary-yellow);

}

.by-pulse {

    color: var(--primary-yellow);

    font-size: 0.85rem;

    font-weight: normal;

}

.specialty-image {

    height: 200px;

    overflow: hidden;

    position: relative;

}

.specialty-image::after {

    content: '';

    position: absolute;

    bottom: 0;

    left: 0;

    width: 100%;

    height: 40%;

    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);

    pointer-events: none;

}

.specialty-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    filter: brightness(0.9);

}

.specialty-card:hover .specialty-image img {

    transform: scale(1.12);

    filter: brightness(1);

}

.specialty-content {

    padding: 20px;

    flex-grow: 1;

    display: flex;

    flex-direction: column;

}

.specialty-code {

    font-size: 0.8rem;

    color: var(--primary-yellow);

    font-weight: 500;

    margin-bottom: 8px;

    display: block;

    font-family: 'Manrope', sans-serif;

}

.specialty-content h3 {

    font-size: 1.2rem;

    margin-bottom: 12px;

    color: white;

    font-family: 'Manrope', sans-serif;

    font-weight: 600;

}

.specialty-content p {

    color: #ddd;

    font-size: 0.9rem;

    line-height: 1.5;

    font-family: 'Manrope', sans-serif;

    font-weight: 300;

}

.partners {

    background: var(--dark-gray);

    color: var(--text-light);

    padding: 80px 0;

}

.partners h2 {

    color: var(--primary-yellow);

}

.partners-carousel-wrapper {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 20px;

    max-width: 1000px;

    margin: 0 auto;

    padding: 0 60px;

    box-sizing: border-box;

}

.partners-carousel {

    flex: 1;

    overflow: hidden;

    max-width: calc(100% - 100px);

}

.carousel-btn {

    position: static;

    background: var(--primary-yellow);

    border: none;

    width: 40px;

    height: 40px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    transition: var(--transition);

    color: var(--primary-black);

    font-size: 1rem;

    box-shadow: var(--shadow-medium);

    flex-shrink: 0;

}

.carousel-btn:hover {

    background: #e6c200;

    transform: scale(1.1);

    box-shadow: var(--shadow-heavy);

}

.partners-track {

    display: flex;

    transition: transform 0.5s ease;

    gap: 25px;

    padding: 15px 0;

}

.partner-logo {

    flex: 0 0 auto;

    width: 220px;

    height: 100px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: white;

    border-radius: 10px;

    padding: 15px;

    transition: var(--transition);

}

.partner-logo:hover {

    transform: scale(1.05);

}

.partner-logo img {

    max-width: 100%;

    max-height: 100%;

    object-fit: contain;

}

.contact {

    background: 

        linear-gradient(135deg, rgba(10,10,10,0.9) 0%, rgba(30,30,30,0.8) 100%),

        url('../img/courses-background.avif') center/cover no-repeat;

    color: var(--text-light);

    padding: 80px 0;

}

.contact h2 {

    color: var(--primary-yellow);

}

.contact-subtitle {

    text-align: center;

    margin-bottom: 50px;

    opacity: 0.9;

    font-size: 1.1rem;

    color: #ddd;

    font-family: 'Manrope', sans-serif;

    font-weight: 300;

    max-width: 600px;

    margin-left: auto;

    margin-right: auto;

}

.contact-form-container {

    max-width: 700px;

    margin: 0 auto;

    padding: 40px;

    box-shadow: var(--shadow-heavy);

}

.contact-form-new {

    background: transparent;

    padding: 0;

}

.form-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 25px;

    margin-bottom: 50px;

}

.form-group-new {

    position: relative;

    margin-bottom: 0;

}

.form-group-new input,

.form-group-new select {

    width: 100%;

    padding: 30px 0 8px 0;

    border: none;

    background: transparent;

    color: var(--text-light);

    font-size: 0.95rem;

    font-family: 'Manrope', sans-serif;

    border-bottom: 2px solid rgba(255, 255, 255, 0.3);

    transition: var(--transition);

    outline: none;

    font-weight: 300;

}

.form-group-new select {

    padding-top: 30px;

    cursor: pointer;

    appearance: none;

    background: transparent;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23FFD700' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");

    background-repeat: no-repeat;

    background-position: right 6px center;

    background-size: 10px;

}

.form-group-new select option {

    background: var(--dark-gray);

    color: white;

    font-family: 'Manrope', sans-serif;

    font-weight: 300;

    padding: 8px;

}

.form-group-new label {

    position: absolute;

    top: 16px;

    left: 0;

    color: rgba(255, 255, 255, 0.6);

    font-size: 0.95rem;

    pointer-events: none;

    transition: var(--transition);

    transform-origin: left top;

    font-family: 'Manrope', sans-serif;

    font-weight: 300;

    display: flex;

    align-items: center;

    gap: 6px;

}

.form-group-new label i {

    color: var(--primary-yellow);

    font-size: 0.85rem;

    width: 14px;

    text-align: center;

    transition: var(--transition);

}

.form-group-new input:focus + label,

.form-group-new input:not(:placeholder-shown) + label,

.form-group-new select:focus + label,

.form-group-new select:valid + label {

    top: 0;

    font-size: 0.8rem;

    color: var(--primary-yellow);

    font-weight: 400;

}

.form-group-new input:focus + label i,

.form-group-new input:not(:placeholder-shown) + label i,

.form-group-new select:focus + label i,

.form-group-new select:valid + label i {

    color: var(--primary-yellow);

    transform: scale(1.1);

}

.form-group-new input:focus,

.form-group-new select:focus {

    border-bottom-color: var(--primary-yellow);

}

.form-group-new input:focus + label,

.form-group-new select:focus + label {

    color: var(--primary-yellow);

}

.form-line {

    position: absolute;

    bottom: 0;

    left: 0;

    width: 0;

    height: 2px;

    background: var(--primary-yellow);

    transition: var(--transition);

}

.form-group-new input:focus ~ .form-line,

.form-group-new select:focus ~ .form-line {

    width: 100%;

}

.map-section {

    background: var(--primary-black);

    padding: 80px 0;

}

.map-section h2 {

    color: var(--primary-yellow);

    margin-bottom: 50px;

}

.map-container-full {

    border-radius: var(--border-radius-lg);

    overflow: hidden;

    box-shadow: var(--shadow-heavy);

    height: 400px;

    border: 2px solid rgba(255, 215, 0, 0.3);

}

.map-container-full iframe {

    width: 100%;

    height: 100%;

    border: none;

    display: block;

}

.map-address {

    text-align: center;

    margin-top: 20px;

    padding: 15px;

}

.map-address p {

    margin: 0;

    color: white;

    font-weight: 500;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

}

.map-address i {

    color: var(--primary-yellow);

    font-size: 1rem;

}

footer {

    background-color: var(--primary-black);

    color: var(--text-light);

    padding: 50px 0 25px;

    border-top: 2px solid rgba(255, 215, 0, 0.3);

}

.footer-content {

    display: flex;

    text-align: center;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 30px;

    flex-wrap: wrap;

}

.footer-column {

    flex: 1;

    min-width: 220px;

}

.footer-column h3 {

    color: var(--primary-yellow);

    margin-bottom: 15px;

    font-size: 1.2rem;

    font-family: 'Manrope', sans-serif;

    font-weight: 600;

}

.footer-column p,

.footer-column a {

    color: #ddd;

    margin-bottom: 10px;

    display: block;

    text-decoration: none;

    transition: var(--transition);

    font-family: 'Manrope', sans-serif;

    font-weight: 300;

    font-size: 0.9rem;

}

.footer-column a:hover {

    color: var(--primary-yellow);

    transform: translateX(3px);

}

.footer-documents {

    margin: 15px 0;

    padding: 15px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.1);

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);

}

.footer-document-item {

    display: flex;

    align-items: flex-start;

    gap: 10px;

    margin-bottom: 10px;

    font-size: 0.85rem;

    line-height: 1.5;

    color: #bbb;

}

.footer-document-item:last-child {

    margin-bottom: 0;

}

.footer-document-item i {

    color: var(--primary-yellow);

    font-size: 0.9rem;

    margin-top: 2px;

    flex-shrink: 0;

    width: 16px;

}

.footer-document-item span {

    flex: 1;

}

.footer-social {

    display: inline-flex;

    gap: 12px;

    margin-top: 15px;

}

.footer-social a {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 40px;

    height: 40px;

    background: rgba(255, 215, 0, 0.1);

    border-radius: 50%;

    transition: var(--transition);

    color: #ddd;

    text-decoration: none;

}

.footer-social a:hover {

    background: var(--primary-yellow);

    color: var(--primary-black);

    transform: translateY(-2px);

}

.footer-social i {

    font-size: 1.1rem;

}

.copyright {

    padding-top: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    font-size: 0.85rem;

    color: #888;

    text-align: center;

    font-family: 'Manrope', sans-serif;

    font-weight: 300;

}

.call-button-container {

    position: fixed;

    bottom: 25px;

    right: 25px;

    z-index: 1000;

    display: flex;

    flex-direction: column;

    align-items: center;

}

.call-button {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 55px;

    height: 55px;

    background: var(--primary-black);

    border-radius: 100%;

    transition: var(--transition);

    text-decoration: none;

    position: relative;

    overflow: hidden;

    border: none;

    cursor: pointer;

}

.call-button:hover {

    transform: scale(1.1) rotate(5deg);

}

.call-button::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background: var(--primary-black);

    transition: transform 0.6s ease;

}

.call-button:hover::before {

    transform: translateX(100%);

}

.call-button i {

    color: white;

    font-size: 2.1rem;

    position: relative;

    z-index: 1;

}

.contact-menu {

    position: absolute;

    bottom: 70px;

    right: 0;

    background: var(--dark-gray);

    border-radius: var(--border-radius-lg);

    box-shadow: var(--shadow-heavy);

    padding: 10px;

    min-width: 150px;

    display: flex;

    flex-direction: column;

    gap: 5px;

    animation: fadeInUp 0.3s ease-out;

    z-index: 1001;

}

@keyframes fadeInUp {

    from {

        opacity: 0;

        transform: translateY(10px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

.contact-item {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 10px 15px;

    color: white;

    text-decoration: none;

    border-radius: var(--border-radius);

    transition: var(--transition);

    font-family: 'Manrope', sans-serif;

    font-weight: 300;

    font-size: 0.9rem;

}

.contact-item:hover {

    background: rgba(255, 215, 0, 0.1);

    transform: translateX(5px);

    color: var(--primary-yellow);

}

.contact-item i {

    font-size: 1.1rem;

    color: var(--primary-yellow);

}

.popup-overlay-new {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background: rgba(10, 10, 10, 0.95);

    backdrop-filter: blur(8px);

    display: none;

    justify-content: center;

    align-items: center;

    z-index: 9999;

    opacity: 0;

    transition: opacity 0.3s ease;

}

.popup-overlay-new.active {

    display: flex;

    opacity: 1;

}

.popup-content-new {

    text-align: center;

    background: var(--dark-gray);

    border-radius: var(--border-radius-lg);

    padding: 24px;

    box-shadow: var(--shadow-heavy);

    border: 2px solid var(--primary-yellow);

    position: relative;

    width: 95vw;

    max-width: 500px;

    max-height: 90vh;

    overflow-y: auto;

    transform: scale(0.9);

    transition: transform 0.3s ease;

    color: white;

    box-sizing: border-box;

    scrollbar-width: thin;

    scrollbar-color: var(--primary-yellow) var(--dark-gray);

}

.popup-overlay-new.active .popup-content-new {

    transform: scale(1);

}

.popup-content-new::-webkit-scrollbar {

    width: 6px;

}

.popup-content-new::-webkit-scrollbar-track {

    background: transparent;

}

.popup-content-new::-webkit-scrollbar-thumb {

    background: var(--primary-yellow);

    border-radius: 3px;

}

.popup-content-new::-webkit-scrollbar-thumb:hover {

    background: #e6c200;

}

.popup-close-new {

    position: absolute;

    top: 15px;

    right: 15px;

    background: none;

    border: none;

    color: var(--primary-yellow);

    font-size: 1.3rem;

    cursor: pointer;

    width: 35px;

    height: 35px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: var(--transition);

    z-index: 10;

}

.popup-close-new:hover {

    background: rgba(255, 215, 0, 0.1);

    transform: rotate(90deg);

}

.popup-header-new {

    text-align: center;

    margin-bottom: 30px;

}

.popup-icon-new {

    width: 70px;

    height: 70px;

    background: linear-gradient(135deg, var(--primary-yellow), #ffed4e);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 15px;

    font-size: 1.8rem;

    color: var(--primary-black);

}

.popup-header-new h2 {

    color: var(--primary-yellow);

    font-size: 1.6rem;

    margin-bottom: 8px;

    font-weight: 600;

}

.popup-header-new h2::after {

    display: none;

}

.popup-header-new p {

    color: #ddd;

    font-size: 0.95rem;

    font-family: 'Manrope', sans-serif;

    font-weight: 300;

}

.popup-form-new {

    background: transparent;

    padding: 0;

}

.popup-form-new .form-group-new {

    margin-bottom: 20px;

}

.popup-footer-new {

    text-align: center;

    margin-top: 20px;

    padding-top: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.1);

}

.popup-footer-new p {

    color: rgba(255, 255, 255, 0.6);

    font-size: 0.85rem;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 6px;

}

.popup-footer-new i {

    color: var(--primary-yellow);

}

@keyframes fadeInUp {

    from {

        opacity: 0;

        transform: translateY(20px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

@keyframes fadeIn {

    from {

        opacity: 0;

    }

    to {

        opacity: 1;

    }

}

::-webkit-scrollbar {

    width: 6px;

}

::-webkit-scrollbar-track {

    background: var(--primary-black);

}

::-webkit-scrollbar-thumb {

    background: var(--primary-yellow);

    border-radius: 3px;

}

::-webkit-scrollbar-thumb:hover {

    background: #e6c200;

}

.text-center {

    text-align: center;

}

.mb-3 {

    margin-bottom: 1rem;

}

.mt-3 {

    margin-top: 1rem;

}

.courses-intro h2 {

    animation: none !important;

}

.preparatory-courses {

    background: var(--primary-black);

    padding: 70px 0;

}

.preparatory-courses h2 {

    color: var(--primary-yellow);

    text-align: center;

    margin-bottom: 20px;

    font-size: 2rem;

}

.courses-subtitle {

    text-align: center;

    font-size: 1rem;

    color: #ddd;

    margin-bottom: 40px;

    max-width: 800px;

    margin-left: auto;

    margin-right: auto;

    line-height: 1.5;

}

.preparatory-cards {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(460px, 1fr));

    gap: 30px;

    margin-bottom: 50px;

    align-items: stretch;

}

.preparatory-card {

    background: var(--dark-gray);

    border-radius: 12px;

    padding: 0;

    box-shadow: var(--shadow-medium);

    transition: var(--transition);

    border: 2px solid rgba(255, 215, 0, 0.2);

    overflow: hidden;

    display: flex;

    flex-direction: column;

    height: 100%;

    min-height: 620px;

}

.course-content {

    padding: 0 30px 30px;

    flex: 1;

    display: flex;

    flex-direction: column;

    gap: 25px;

}

.course-header {

    display: flex;

    align-items: flex-start;

    gap: 20px;

    padding: 30px 30px 20px;

    min-height: 110px;

}

.course-icon {

    flex-shrink: 0;

    width: 50px;

    height: 50px;

    background: linear-gradient(135deg, var(--primary-yellow), #ffed4e);

    border-radius: 10px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--primary-black);

    font-size: 1.2rem;

}

.course-title {

    flex: 1;

    display: flex;

    flex-direction: column;

    justify-content: center;

    min-height: 60px;

}

.course-header h3 {

    font-size: 1.3rem;

    margin-bottom: 8px;

    color: white;

    line-height: 1.3;

    font-weight: 600;

    min-height: 2.6em;

}

.course-guarantee {

    color: var(--primary-yellow);

    font-size: 0.85rem;

    font-weight: 500;

    line-height: 1.2;

}

.course-description {

    margin: 0;

    min-height: 70px;

    display: flex;

    align-items: center;

}

.course-description p {

    color: #ddd;

    font-size: 0.95rem;

    line-height: 1.5;

    margin-bottom: 0;

    width: 100%;

}

.features-section {

    min-height: 240px;

    display: flex;

    flex-direction: column;

}

.course-features {

    margin: 0;

    flex: 1;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    gap: 15px;

}

.professional-retraining {

    padding: 20px;

    margin: 0;

    background: var(--dark-gray);

    border-radius: 8px;

    flex: 1;

    display: flex;

    flex-direction: column;

}

.professional-retraining h4 {

    color: var(--primary-yellow);

    font-size: 1.1rem;

    margin-bottom: 8px;

    font-weight: 600;

    min-height: 1.2em;

}

.professional-retraining > p {

    color: #ccc;

    font-size: 0.9rem;

    margin-bottom: 15px;

    font-weight: 300;

    line-height: 1.4;

    min-height: 2.8em;

}

.retraining-features {

    flex: 1;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    gap: 15px;

}

.benefits-section {

    display: flex;

    align-items: center;

    min-height: 90px;

}

.course-benefits {

    margin: 0;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 10px 25px;

    width: 100%;

    align-items: start;

    grid-auto-rows: 1fr;

}

.benefit {

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 6px 0;

    min-height: 30px;

    height: 100%;

}

.benefit i {

    color: var(--primary-yellow);

    font-size: 0.8rem;

    flex-shrink: 0;

    width: 14px;

}

.benefit span {

    color: #ddd;

    font-size: 0.9rem;

    font-family: 'Manrope', sans-serif;

    font-weight: 300;

    line-height: 1.2;

}

.feature {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 12px;

    background: rgba(255, 255, 255, 0.03);

    border-radius: 8px;

    border-left: 3px solid var(--primary-yellow);

    min-height: 55px;

}

.feature i {

    color: var(--primary-yellow);

    font-size: 1rem;

    flex-shrink: 0;

    width: 18px;

    text-align: center;

}

.feature-text {

    display: flex;

    flex-direction: column;

    gap: 2px;

    flex: 1;

}

.feature-text strong {

    color: white;

    font-size: 0.9rem;

    font-weight: 600;

    line-height: 1.2;

    min-height: 1.2em;

}

.feature-text span {

    color: #bbb;

    font-size: 0.85rem;

    font-weight: 300;

    line-height: 1.3;

    min-height: 1.3em;

}

.course-footer {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-top: auto;

    padding-top: 25px;

    border-top: 1px solid rgba(255, 255, 255, 0.1);

    min-height: 65px;

}

.course-meta {

    display: flex;

    align-items: center;

    gap: 20px;

}

.age-limit {

    display: flex;

    align-items: center;

    gap: 6px;

    color: #aaa;

    font-size: 0.85rem;

}

.age-limit i {

    color: var(--primary-yellow);

    font-size: 0.8rem;

}

.btn-course-application {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 12px 24px;

    background: transparent;

    color: white;

    text-decoration: none;

    font-weight: 500;

    border: 2px solid var(--primary-yellow);

    border-radius: 8px;

    cursor: pointer;

    transition: var(--transition);

    font-size: 0.9rem;

    gap: 8px;

    white-space: nowrap;

}

.btn-course-application:hover {

    background: var(--primary-yellow);

    color: black;

    transform: translateY(-2px);

}

.courses-cta {

    text-align: center;

    padding: 40px 0 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.1);

    margin-top: 30px;

}

.courses-cta p {

    font-size: 1.1rem;

    color: #ddd;

    margin-bottom: 25px;

    font-family: 'Manrope', sans-serif;

    font-weight: 300;

}

.btn-cta {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 14px 32px;

    background: var(--primary-yellow);

    color: var(--primary-black);

    text-decoration: none;

    font-weight: 500;

    border: 2px solid var(--primary-yellow);

    border-radius: var(--border-radius);

    cursor: pointer;

    transition: var(--transition);

    font-size: 0.95rem;

    gap: 8px;

    margin: 0 auto;

}

.btn-cta:hover {

    background: transparent;

    color: var(--primary-yellow);

    transform: translateY(-2px);

}

.preparatory-card:first-child .benefits-section {

    margin-top: 15px;

}

@media (max-width: 1024px) {

    .preparatory-cards {

        grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));

    }

}

@media (min-width: 769px) and (max-width: 1024px) {

    .partners-carousel-wrapper {

        padding: 0 40px;

    }

    .partners-track {

        gap: 20px;

    }

    .partner-logo {

        width: 180px;

        height: 90px;

    }

}

@media (max-width: 768px) {

    .partners-carousel-wrapper {

        padding: 0 20px;

        flex-direction: column;

        gap: 15px;

    }

    .carousel-btn {

        display: none !important;

    }

    .partners-carousel {

        max-width: 100%;

        overflow: hidden;

    }

    

    .partners-track {

        display: flex;

        gap: 15px;

        padding: 10px 5px 20px;

        overflow-x: auto;

        scroll-behavior: smooth;

        -webkit-overflow-scrolling: touch;

        width: 100%;

        scroll-snap-type: x mandatory;

        scrollbar-width: thin;

        scrollbar-color: var(--primary-yellow) rgba(255, 255, 255, 0.1);

    }

    

    /* Стилизация полосы прокрутки для WebKit браузеров */

    .partners-track::-webkit-scrollbar {

        height: 6px;

    }

    .partner-logo {

        flex: 0 0 auto;

        width: 100%;

        max-width: 240px;

        height: 100px;

        scroll-snap-align: start;

    }

    .partner-logo img {

        max-height: 70px;

    }

    .preparatory-cards {

        grid-template-columns: 1fr;

        gap: 25px;

    }

    .preparatory-card {

        min-height: auto;

    }

    .course-header,

    .course-description,

    .features-section,

    .benefits-section {

        min-height: auto;

    }

    .course-benefits {

        grid-template-columns: 1fr;

        gap: 8px;

    }

    .course-footer {

        flex-direction: column;

        gap: 15px;

        min-height: auto;

        text-align: center;

    }

    .course-header {

        flex-direction: column;

        text-align: center;

        gap: 15px;

    }

     /* Индикатор, что есть скролл */

    .partners-carousel::after {

        content: '';

        position: absolute;

        right: 0;

        top: 0;

        width: 30px;

        height: 100%;

        background: linear-gradient(90deg, transparent, var(--dark-gray) 70%);

        pointer-events: none;

    }

}

@media (max-width: 480px) {

    .preparatory-cards {

        grid-template-columns: 1fr;

    }

    .course-header,

    .course-content {

        padding: 20px;

    }

    .professional-retraining {

        padding: 15px;

    }

}



/* Уведомления на сайте */

.site-notification {

    position: fixed;

    top: 20px;

    right: 20px;

    min-width: 320px;

    max-width: 450px;

    padding: 20px 24px;

    border-radius: 16px;

    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 16px;

    z-index: 10000;

    transform: translateX(500px);

    opacity: 0;

    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    backdrop-filter: blur(10px);

}



.site-notification.show {

    transform: translateX(0);

    opacity: 1;

}



.site-notification-content {

    display: flex;

    align-items: center;

    gap: 14px;

    flex: 1;

}



.site-notification-content i {

    font-size: 1.5rem;

    flex-shrink: 0;

}



.site-notification-content span {

    font-weight: 500;

    font-size: 1rem;

    line-height: 1.5;

}



.site-notification-success {

    background: linear-gradient(135deg, rgba(40, 167, 69, 0.95) 0%, rgba(34, 139, 58, 0.95) 100%);

    color: white;

    border-left: 5px solid #28a745;

    box-shadow: 0 8px 24px rgba(40, 167, 69, 0.3);

}



.site-notification-success .site-notification-content i {

    color: #fff;

    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);

}



.site-notification-error {

    background: linear-gradient(135deg, rgba(220, 53, 69, 0.95) 0%, rgba(200, 35, 51, 0.95) 100%);

    color: white;

    border-left: 5px solid #dc3545;

    box-shadow: 0 8px 24px rgba(220, 53, 69, 0.3);

}



.site-notification-error .site-notification-content i {

    color: #fff;

    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);

}



.site-notification-warning {

    background: linear-gradient(135deg, rgba(255, 193, 7, 0.95) 0%, rgba(230, 174, 6, 0.95) 100%);

    color: #0A0A0A;

    border-left: 5px solid #ffc107;

    box-shadow: 0 8px 24px rgba(255, 193, 7, 0.3);

}



.site-notification-info {

    background: linear-gradient(135deg, rgba(23, 162, 184, 0.95) 0%, rgba(19, 138, 156, 0.95) 100%);

    color: white;

    border-left: 5px solid #17a2b8;

    box-shadow: 0 8px 24px rgba(23, 162, 184, 0.3);

}



.site-notification-close {

    background: rgba(255, 255, 255, 0.2);

    border: none;

    color: inherit;

    cursor: pointer;

    padding: 6px;

    border-radius: 50%;

    width: 28px;

    height: 28px;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: all 0.2s;

    opacity: 0.8;

    flex-shrink: 0;

}



.site-notification-close:hover {

    opacity: 1;

    background: rgba(255, 255, 255, 0.3);

    transform: scale(1.1) rotate(90deg);

}



.site-notification-close i {

    font-size: 0.9rem;

}



/* Адаптивность уведомлений */

@media (max-width: 768px) {

    .site-notification {

        top: 10px;

        right: 10px;

        left: 10px;

        min-width: auto;

        max-width: none;

        padding: 16px 20px;

    }

    

    .site-notification-content {

        gap: 12px;

    }

    

    .site-notification-content i {

        font-size: 1.3rem;

    }

    

    .site-notification-content span {

        font-size: 0.9rem;

    }

}