/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2d1b69;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 60px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    z-index: -2;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.hero-header {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    margin-bottom: 0;
}

.logo-placeholder {
    display: inline-block;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.logo {
    height: 60px;
    width: auto;
    max-width: 150px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 25px;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.title-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 20px 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.title-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.title-box h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #22c55e;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}


.subtitle-box {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.subtitle-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    animation: slide 2s infinite;
}

@keyframes slide {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.subtitle-box p {
    font-size: 1.3rem;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.start-date {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid #fbbf24;
    border-radius: 50px;
    padding: 15px 30px;
    text-align: center;
    align-self: flex-start;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.start-date:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.start-date span {
    font-weight: 600;
    color: white;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    margin-top: 0;
}

.hero-photo {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.hero-photo:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.cta-button {
    text-align: left;
    margin-top: 20px;
    position: relative;
    z-index: 5;
}

.problem-solution .cta-button {
    margin-left: 70px;
}

.problem-solution .cta-button .start-date {
    margin-bottom: 25px;
}

.hero .cta-button {
    margin-top: -80px;
}

.start-date-notice {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
    border: 2px solid #fbbf24;
    animation: pulse 2s infinite;
}

/* Animated Buttons */
.animated-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px 50px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 15px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    border: none;
    width: 100%;
    max-width: 500px;
    text-align: center;
}

.animated-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.animated-btn:hover::before {
    left: 100%;
}

.animated-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.animated-btn:active {
    transform: translateY(-2px) scale(1.02);
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-icon {
    position: relative;
    z-index: 2;
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.animated-btn:hover .btn-icon {
    transform: translateX(8px) scale(1.2);
}

/* Button Variants */
.primary-btn {
    background: #E57373;
    color: white;
    box-shadow: 0 8px 25px rgba(229, 115, 115, 0.4);
}

.primary-btn:hover {
    background: #f97316;
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.6);
}

.secondary-btn {
    background: #E57373;
    color: white;
    box-shadow: 0 8px 25px rgba(229, 115, 115, 0.4);
}

.secondary-btn:hover {
    background: #f97316;
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.6);
}

.bonus-btn {
    background: #E57373;
    color: white;
    border: 2px solid #E57373;
    box-shadow: 0 8px 25px rgba(229, 115, 115, 0.4);
}

.bonus-btn:hover {
    background: #f97316;
    border-color: #f97316;
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.6);
}

.urgent-btn {
    background: #E57373;
    color: white;
    animation: pulse 2s infinite;
    box-shadow: 0 8px 25px rgba(229, 115, 115, 0.4);
}

.urgent-btn:hover {
    background: #f97316;
    animation: none;
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.6);
}

.final-btn {
    background: #E57373;
    color: white;
    box-shadow: 0 8px 25px rgba(229, 115, 115, 0.4);
}

.final-btn:hover {
    background: #f97316;
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 25px rgba(229, 115, 115, 0.4);
    }
    50% {
        box-shadow: 0 8px 35px rgba(229, 115, 115, 0.8);
    }
    100% {
        box-shadow: 0 8px 25px rgba(229, 115, 115, 0.4);
    }
}

/* Problem & Solution Section */
.problem-solution {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.problem-question-top {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 25px 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
    text-align: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.problem-question-top p {
    font-size: 1.2rem;
    font-weight: 500;
    color: white;
    margin-bottom: 15px;
    line-height: 1.5;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    font-style: italic;
}

.problem-question-top p:last-child {
    margin-bottom: 0;
}

.arrow {
    color: #f59e0b;
    font-weight: 900;
    font-size: 1.3rem;
    margin-right: 8px;
}

.problem-solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.problem-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.problem-photo {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    border: 3px solid rgba(139, 92, 246, 0.2);
}

.problem-photo:hover {
    transform: scale(1.03) rotate(-1deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.solution-text {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.cause-box,
.massage-box,
.hint-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 20px 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.cause-box:hover,
.massage-box:hover,
.hint-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.cause-box p,
.massage-box p,
.hint-box p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: white;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.cause-box strong {
    color: #fbbf24;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.course-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 15px 40px;
    margin-top: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.course-cta .animated-btn {
    margin-bottom: 15px;
    white-space: nowrap;
}

.solution-text {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.cause-box,
.massage-box,
.hint-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 20px 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.cause-box:hover,
.massage-box:hover,
.hint-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.cause-box p,
.massage-box p,
.hint-box p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.cause-box strong {
    color: #fbbf24;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.course-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 20px 25px;
    margin-top: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.course-cta .animated-btn {
    margin-bottom: 20px;
}

.start-date-small {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    display: inline-block;
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    border: 2px solid #fbbf24;
}

/* Bonus Section */
.bonus {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.bonus-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.bonus-label {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.3);
    font-size: 1.1rem;
}

.bonus-description {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 30px 35px;
    margin-bottom: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.bonus-description p {
    font-size: 1.1rem;
    color: #2d1b69;
    line-height: 1.7;
    font-weight: 500;
}

.results {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 20px 25px;
    margin-bottom: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.results h3 {
    color: #2d1b69;
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 700;
}

.results ul {
    list-style: none;
    padding-left: 0;
}

.results li {
    padding: 12px 0;
    color: #2d1b69;
    font-size: 1.2rem;
    position: relative;
    padding-left: 35px;
    font-weight: 500;
}

.results li::before {
    content: "✓";
    color: #8b5cf6;
    font-weight: bold;
    font-size: 1.3rem;
    position: absolute;
    left: 0;
    top: 12px;
}

.bonus-cta .animated-btn {
    font-size: 1.1rem;
    padding: 18px 35px;
    border-radius: 30px;
}

.bonus-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bonus-photo {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    border: 3px solid rgba(139, 92, 246, 0.2);
}

.bonus-photo:hover {
    transform: scale(1.03) rotate(1deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

/* Additional Exercises Section */
.additional {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.additional-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.additional-text {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.additional-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b, #d97706);
}

.additional-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.additional-text p {
    font-size: 1.3rem;
    line-height: 1.7;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.additional-cta .animated-btn {
    background: #E57373;
    color: white;
    border: none;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.additional-cta .animated-btn:hover {
    background: #f97316;
}

/* Program Section */
.program {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.program-content {
    text-align: center;
}

.program-title {
    background: rgba(251, 191, 36, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 25px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

/* Убрана фиолетовая полоска над блоком программы */

.program-title h2 {
    font-size: 2.2rem;
    color: #2d1b69;
    font-weight: 700;
}

.requirements {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    color: white;
    padding: 20px 25px;
    border-radius: 20px;
    margin-bottom: 50px;
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.3);
    display: inline-block;
}

.requirements p {
    font-size: 1.4rem;
    color: white;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.lessons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ПК версия - уроки горизонтально */
@media (min-width: 769px) {
    .lessons {
        display: flex;
        flex-direction: row;
        gap: 30px;
        align-items: flex-start;
    }
    
    .lesson {
        flex: 1;
        min-height: 300px;
        display: flex;
        flex-direction: column;
    }
}

.lesson {
    background: rgba(251, 191, 36, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 20px;
    padding: 20px 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    text-align: center;
}

.lesson::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #fbbf24;
}

.lesson:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.lesson h3 {
    color: #8b5cf6;
    font-size: 1.6rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.lesson-content {
    font-weight: 600;
    color: #2d1b69;
    margin-bottom: 15px;
    font-size: 1.2rem;
    line-height: 1.5;
}

.lesson-subtitle {
    color: #6b7280;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.5;
}

/* Results Section */
.results-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.results-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 50px;
}

.result-box,
.bonus-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 20px 25px;
    margin-bottom: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.result-box:hover,
.bonus-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.result-box h3,
.bonus-box h3 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.4rem;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.bonus-box h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.result-box ul {
    list-style: none;
    padding-left: 0;
}

.result-box li {
    padding: 12px 0;
    color: white;
    font-size: 1.2rem;
    position: relative;
    padding-left: 35px;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.result-box li::before {
    content: "✓";
    color: #fbbf24;
    font-weight: bold;
    font-size: 1.3rem;
    position: absolute;
    left: 0;
    top: 12px;
}

.bonus-box p {
    color: white;
    font-size: 1.2rem;
    line-height: 1.7;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.results-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.results-photo {
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.results-photo:hover {
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.button-with-badge {
    position: relative;
    display: inline-block;
}

.start-date-badge {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
    border-radius: 12px;
    padding: 6px 12px;
    text-align: center;
    position: absolute;
    top: -15px;
    right: -15px;
    z-index: 15;
    font-weight: 700;
    font-size: 0.75rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
    border: 2px solid #fbbf24;
    transform: rotate(12deg);
    white-space: nowrap;
    min-width: 80px;
}

.final-cta {
    text-align: center;
    position: relative;
    margin-top: -30px;
}

.final-cta .animated-btn {
    width: 100%;
    max-width: 400px;
    position: relative;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    color: white;
    padding: 80px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8b5cf6, #a855f7, #c084fc);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3 {
    color: #c084fc;
    margin-bottom: 25px;
    font-size: 1.4rem;
    font-weight: 600;
}

.footer-section p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #e2e8f0;
}

.footer-section a {
    color: #c084fc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #fbbf24;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(139, 92, 246, 0.3);
    color: #94a3b8;
}

/* Responsive Design */
/* Планшеты - уроки в две колонки */
@media (max-width: 1024px) and (min-width: 769px) {
    .lessons {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* ПК версия - отодвинуть плашку "Начинаем 1 октября!" вправо во втором слайде */
@media (min-width: 769px) {
    .problem-solution .cta-button {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 300px;
    }
    
    .problem-solution .start-date-notice {
        margin-top: 0;
        align-self: flex-start;
    }
}

@media (max-width: 768px) {
    .hero-content,
    .problem-solution-content,
    .bonus-content,
    .results-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-button {
        text-align: center;
    }
    
    .problem-solution .cta-button {
        margin-left: 0;
        text-align: center;
    }
    
    .hero .cta-button {
        margin-top: 20px;
    }
    
    .cta-button .start-date {
        margin-top: 20px;
    }
    
    .bonus-label {
        display: block;
        text-align: center;
        margin: 0 auto 25px auto;
    }
    
    .additional-text h2 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .additional-text p {
        font-size: 1.1rem;
        line-height: 1.6;
        text-align: center;
    }
    
    .program-title h2 {
        font-size: 1.6rem;
        line-height: 1.3;
        text-align: center;
    }
    
    .program-title {
        padding: 30px 20px;
    }
    
    .problem-question-top {
        padding: 20px 15px;
        margin-bottom: 30px;
    }
    
    .problem-question-top p {
        font-size: 1.2rem;
        line-height: 1.4;
        text-align: center;
        margin-bottom: 12px;
    }
    
    .hero-header {
        top: 15px;
        left: 15px;
        right: 15px;
        display: flex;
        justify-content: center;
    }
    
    .logo-placeholder {
        padding: 12px 20px;
        border-radius: 15px;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }
    
    .logo {
        height: 35px;
        max-width: 80px;
        width: auto;
    }
}
    
    .title-box h1 {
        font-size: 2.2rem;
    }
    
    .subtitle-box p {
        font-size: 1.1rem;
    }
    
    .lessons {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero,
    .problem-solution,
    .bonus,
    .additional,
    .program,
    .results-section {
        padding: 60px 0;
    }
    
    .hero-photo,
    .problem-photo,
    .bonus-photo,
    .results-photo {
        height: 400px;
    }

/* ?? */
    .title-box h1 {
        font-size: 1.8rem;
    }
    
    .subtitle-box p {
        font-size: 1rem;
    }
    
    .cta-button .animated-btn,
    .final-cta .animated-btn {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .hero-photo,
    .problem-photo,
    .bonus-photo,
    .results-photo {
        height: 450px;
    }
    
    .logo {
        height: 60px;
    }



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

.hero,
.problem-solution,
.bonus,
.additional,
.program,
.results-section {
    animation: fadeInUp 0.8s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Photo Styles */
.problem-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.problem-photo {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.problem-photo:hover {
    transform: scale(1.02);
}

.bonus-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bonus-photo {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.bonus-photo:hover {
    transform: scale(1.02);
}

.results-image {
    display: flex;
    justify-content: center;
    align-items: center;
}


.results-photo:hover {
    transform: scale(1.02);
}

/* Responsive photos */
@media (max-width: 768px) {
    .hero-photo,
    .problem-photo,
    .bonus-photo,
    .results-photo {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .hero-photo,
    .problem-photo,
    .bonus-photo,
    .results-photo {
        height: 300px;
    }
    
    .hero-header {
        top: 10px;
        left: 10px;
        right: 10px;
    }
    
    .logo-placeholder {
        padding: 10px 15px;
        border-radius: 12px;
    }
    
    .logo {
        height: 30px;
        max-width: 70px;
    }
}