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

.link {
    color: #FFFFF0;
    font-family: 'Black Mango', sans-serif;
    text-decoration: underline;
    transition: color 0.3s ease, text-decoration-color 0.3s ease;
}

.link:hover {
    color: #373F4E;
    text-decoration-color: #373F4E;
}

body {
    font-family: 'Black Mango', sans-serif;
    background-color: #0A0E15;
    color: #FFFFF0;
}

.no-detect {
    -webkit-user-select: text;
    -webkit-touch-callout: default;
    -webkit-text-size-adjust: auto;
    -webkit-user-modify: read-write;
    text-decoration: none;
}

.subtitle {
    max-width: 700px;
    margin: 0 auto 20px auto;
    font-family: 'Black Mango', sans-serif;
    color: #FFFFF0;
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
}

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    text-align: center;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: #FFFFF0;
    margin-bottom: 20px;
}

.hero p {
    max-width: 600px;
    font-size: 1.2rem;
    color: #FFFFF0;
    margin-bottom: 40px;
}

.start-btn {
    background-color: #373F4E;
    color: #FFFFF0;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    border-radius: 8px;
    animation: pulse 2s infinite;
    text-decoration: none;
}

.start-btn:hover {
    background-color: #454545;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 240, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 10px 10px rgba(255, 255, 240, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 240, 0);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

.static-gradient-body {
    margin: 0;
    background: linear-gradient(to bottom, #979891 0%, #61635c 25%, #3c3f39 50%, #232624 75%, #141717 100%);
    background-attachment: fixed;
    background-size: cover;
    color: #FFFFF0;
    font-family: 'Montserrat', sans-serif;
}

.why-course {
    color: #FFFFF0;
    padding: 60px 20px;
    text-align: center;
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    margin-bottom: 20px;
    color: #fffff0;
    text-align: center;
}

.why-desc {
    max-width: 700px;
    margin: 0 auto 50px auto;
    font-size: 1.1rem;
    font-family: 'Black Mango', sans-serif;
}

.carousel-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
}

.features {
    display: flex;
    gap: 60px;
    scroll-snap-type: x mandatory;
    justify-content: center;
}

.feature {
    background-color: #454545;
    border-radius: 12px;
    padding: 40px 20px 30px;
    width: 300px;
    flex-shrink: 0;
    scroll-snap-align: start;
    position: relative;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.circle {
    width: 50px;
    height: 50px;
    background-color: #ebe6e6;
    color: #252525;
    border-radius: 50%;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.feature h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.feature p {
    font-family: 'Black Mango', sans-serif;
    font-size: 1rem;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .features {
        gap: 20px;
        padding-left: 0;
        justify-content: start;
    }

    .feature {
        width: 85%;
    }
}

.course-program {
    color: #252525;
    padding: 60px 20px;
    text-align: center;
}

.program-subtitle {
    font-family: 'Black Mango', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 50px;
    color: #FFFFF0;
}

.program-columns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 80px; /* увеличено расстояние между колонками */
    padding: 15px 0 0 0;
}

.program-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex: 1;
    max-width: 380px; /* шире колонки */
}

.program-card {
    position: relative;
    background-color: #454545;
    border-radius: 12px;
    padding: 30px 20px 20px 20px;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.8s ease both;
    min-height: 180px;
}

.program-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    margin-bottom: 10px;
    color: #FFFFF0;
}

.program-card ul {
    padding-left: 20px;
    list-style-type: disc;
}

.program-card li {
    font-family: 'Black Mango', sans-serif;
    font-size: 1rem;
    color: #FFFFF0;
    margin-bottom: 8px;
}

.number {
    position: absolute;
    top: -12px;
    left: -12px;
    width: 32px;
    height: 32px;
    background-color: #91805b;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .program-columns {
        flex-direction: row;
        overflow-x: auto;
        gap: 20px;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .program-column {
        flex: 0 0 auto;
        scroll-snap-align: start;
        display: flex;
        flex-direction: column;
        gap: 20px;
        min-width: 90%;
        max-width: 90%;
    }

    .program-card {
        width: 100%;
        max-width: 100%;
    }

    .program-columns::-webkit-scrollbar {
        display: none;
    }

    .program-columns {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
}

.custom-pricing-section {
    max-width: 1100px;
    margin: 40px auto;
    font-family: 'Black Mango', cursive, sans-serif;
    color: #fffff0;
}

.custom-pricing-section .section-title {
    margin-bottom: 40px;
}

.custom-pricing-section .pricing {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.custom-pricing-section .pricing-card {
    background-color: #454545;
    border-radius: 12px;
    padding: 30px 25px;
    width: 300px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fffff0;
    text-align: center;
}

.custom-pricing-section .pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.custom-pricing-section .pricing-card.popular {
    background-color: #454545;
    border: 2px solid #ebd8cb;
    position: relative;
    z-index: 1;
}

.custom-pricing-section .pricing-card.popular::before {
    content: "Популярно";
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #454545;
    color: #fffff0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 4px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.custom-pricing-section .pricing-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #fffff0;
}

.custom-pricing-section .price {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fffff0;
}

.custom-pricing-section .price span {
    font-size: 1.1rem;
    font-weight: 400;
    color: #ebe6e6;
}

.custom-pricing-section .pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    color: #ebe6e6;
    font-size: 1.1rem;
    line-height: 1.5;
    text-align: left;
}

.custom-pricing-section .pricing-features li {
    margin-bottom: 12px;
    font-family: 'Black Mango', sans-serif;
    font-size: 1rem;
    color: #FFFFF0;
}

.custom-pricing-section .btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    user-select: none;
    border: none;
    display: inline-block;
    text-align: center;
    color: #ebe6e6;
    background-color: #91805b;
}

.custom-pricing-section .btn:hover {
    background-color: #ebe6e6;
    color: #91805b;
}

.custom-pricing-section .btn.btn-accent {
    background-color: #91805b;
    color: #fffff0;
    border: 2px solid #ebe6e6;
}

.custom-pricing-section .btn.btn-accent:hover {
    background-color: #ebe6e6;
    color: #91805b;
}

@media (max-width: 980px) {
    .custom-pricing-section .pricing {
        flex-direction: column;
        align-items: center;
    }

    .custom-pricing-section .pricing-card {
        width: 90%;
        max-width: 400px;
        margin-bottom: 30px;
    }
}

.change-life-title {
    margin-bottom: 40px;
}

.signup-choice {
    background-color: #454545;
    padding: 30px;
    border-radius: 20px;
    border: 2px solid #e1d8cb;
    margin: 0 auto 20px auto;
    width: 600px;
}

@media (max-width: 980px) {
    .signup-choice {
        width: auto;
    }
}