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

:root {
    --primary-color: #8B5CF6;
    --secondary-color: #FCD34D;
    --background-cream: #FEF3E7;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --white: #FFFFFF;
    --success: #10B981;
    --danger: #EF4444;
    --shadow: rgba(0, 0, 0, 0.1);
    --font-family: 'Inter', sans-serif;
}

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Launch Banner */
.launch-banner {
    background: linear-gradient(90deg, var(--primary-color), #A78BFA);
    color: var(--white);
    text-align: center;
    padding: 12px 0;
    font-weight: 600;
    font-size: 16px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    animation: slideDown 0.5s ease-out;
    margin-bottom: 0 !important;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Header */
.header {
    position: fixed;
    top: 48px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
    padding: 20px 0;
    margin-top: 0 !important;
}

.header.scrolled {
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    padding: 15px 0;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-image {
    width: 48px;
    height: 48px;
    transition: transform 0.3s ease;
}

.school-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.school-name {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #8B5CF6, #FCD34D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.school-tagline {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
}

.header-logo:hover .logo-image {
    transform: scale(1.05) rotate(5deg);
}

.mini-cta {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
}

.header.scrolled .mini-cta {
    opacity: 1;
}

/* Hero Section */
.hero {
    background: #FEF3E7;
    padding: 150px 0 80px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-headline {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
    animation: fadeInUp 0.8s ease-out;
}

.highlight {
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), #A78BFA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subheadline {
    font-size: clamp(18px, 2.5vw, 24px);
    color: var(--text-light);
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

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

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, var(--primary-color), #7C3AED);
    color: var(--white);
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.5s;
    opacity: 0;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.cta-button:hover::before {
    animation: shimmer 0.5s ease-in-out;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
        opacity: 0;
    }
}

.cta-button.glow {
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
    }
    50% {
        box-shadow: 0 4px 30px rgba(139, 92, 246, 0.6);
    }
}

.cta-sparkle {
    display: inline-block;
    animation: sparkleRotate 3s linear infinite;
}

@keyframes sparkleRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.cta-button.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(139, 92, 246, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(139, 92, 246, 0);
    }
}

.cta-button.massive {
    font-size: 22px;
    padding: 25px 50px;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-light);
    flex-wrap: wrap;
}

/* Hero Video Preview */
.hero-video-wrapper {
    position: relative;
    max-width: 400px;
    margin: 60px auto 40px;
}

.video-preview-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.video-preview-img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 9/16;
    object-fit: cover;
}

.play-button-large {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease;
}

.play-button-large:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button-large svg {
    filter: drop-shadow(0 4px 20px rgba(139, 92, 246, 0.5));
    transition: all 0.3s ease;
}

.play-button-large:hover svg {
    filter: drop-shadow(0 8px 30px rgba(139, 92, 246, 0.7));
}

.play-text {
    color: white;
    font-size: 20px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 30px;
}

/* Hero Video Modal */
.hero-video-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}

.hero-video-modal.show {
    display: block;
}

.hero-video-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 800px;
    aspect-ratio: 16/9;
}

.close-hero-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 35px;
    cursor: pointer;
    background: none;
    border: none;
    transition: opacity 0.3s ease;
}

.close-hero-modal:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.1);
}

.hero-video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: #000;
    border-radius: 8px;
}

.hero-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Instructor Section */
.instructor {
    padding-top: 80px;
    padding-bottom: 80px;
    background: white;
    position: relative;
    z-index: 20;
}

.instructor h2 {
    font-size: clamp(28px, 4vw, 36px);
    text-align: center;
    margin-bottom: 60px;
}

.instructor-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: start;
}

.instructor-photo img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px var(--shadow);
}

.instructor-bio {
    font-size: 16px;
    line-height: 1.8;
}

.instructor-bio strong {
    color: var(--primary-color);
}

.showreel-btn {
    margin-top: 30px;
    background: linear-gradient(135deg, #FCD34D, #F59E0B);
    color: #1F2937;
    border: none;
    padding: 16px 32px;
    font-weight: 700;
    font-size: 18px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.showreel-btn::before {
    content: "▶";
    margin-right: 8px;
    font-size: 16px;
}

.showreel-btn::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.5s;
    opacity: 0;
}

.showreel-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.6);
}

.showreel-btn:hover::after {
    animation: shine 0.5s ease-in-out;
}

.play-icon {
    display: none;
}

.featured-badge {
    margin-top: 30px;
    display: inline-block;
}

.badge-text {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: var(--text-dark);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2001;
}

.video-modal.show {
    display: flex;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 40px;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.close-modal:hover {
    opacity: 0.7;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.social-proof-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: var(--background-cream);
    border-radius: 8px;
}

.stat-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 10px;
}

.stat-number {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
}



.trust-content {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.trust-label {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.platform-logos {
    display: flex;
    align-items: center;
    gap: 20px;
}

.trust-logo {
    height: 30px;
    min-width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.trust-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.trust-logo.placeholder {
    background-color: #E5E7EB;
    border: 1px solid #9CA3AF;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #6B7280;
}

.trust-stat {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

.trust-divider {
    width: 1px;
    height: 50px;
    background: rgba(0,0,0,0.1);
}

.trust-avatars {
    display: flex;
    align-items: center;
}

.trust-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid var(--white);
    margin-left: -10px;
    object-fit: cover;
}

.trust-avatar:first-child {
    margin-left: 0;
}

.trust-avatar-more {
    margin-left: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
}

/* Target Audience */
.target-audience {
    padding: 80px 0;
    background: var(--background-cream);
}

.target-audience h2 {
    text-align: center;
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 60px;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.audience-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.target-icon {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(139, 92, 246, 0.2));
    transition: transform 0.3s ease;
}

.audience-card:hover .target-icon {
    transform: scale(1.1) rotate(5deg);
}

.audience-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

/* Opportunity Section */
.opportunity {
    padding: 80px 0;
    background: linear-gradient(-45deg, #8B5CF6, #A78BFA, #7C3AED, #9333EA);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.opportunity::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.opportunity h2 {
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 60px;
}

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

.big-stat {
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
}

.gradient-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.gradient-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.gradient-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s;
    opacity: 0;
}

.gradient-card:hover::before {
    animation: shine 0.5s ease-in-out;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
        opacity: 0;
    }
}

.stat-visual {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.platform-logo {
    width: 60px;
    height: 40px;
    margin: 0 5px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.platform-logo.placeholder {
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
}

.money-stack {
    font-size: 60px;
    color: var(--secondary-color);
    font-weight: 900;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.dollar-sign {
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.stat-value {
    display: block;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    margin-bottom: 5px;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.stat-unit {
    display: block;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.stat-desc {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.4;
}

.opportunity-text {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 30px;
}

.emotional-question {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
}

/* Curriculum */
.curriculum {
    padding: 80px 0;
    background: var(--white);
}

.curriculum h2 {
    text-align: center;
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 60px;
}

.modules {
    display: grid;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.module {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px;
    background: var(--background-cream);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.module::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.module:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.1);
}

.module:hover::before {
    transform: scaleY(1);
}

.module-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

.module:hover .module-icon {
    transform: scale(1.1) rotate(-5deg);
}

.module-icon-img {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

.module-icon-img.placeholder {
    background: linear-gradient(135deg, #E0E7FF, #EDE9FE);
    border-radius: 12px;
    font-size: 40px;
    border: 2px solid var(--primary-color);
}

.module:hover .module-icon-img {
    transform: scale(1.1) rotate(-5deg);
}

.module-content {
    flex: 1;
}

.module-number {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    background: var(--white);
    padding: 5px 10px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 10px;
}

.module h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.module p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.5;
}

/* Package Section */
.package {
    padding: 80px 0;
    background: var(--background-cream);
}

.package h2 {
    text-align: center;
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 60px;
}

.package-content {
    max-width: 1000px;
    margin: 0 auto;
}

/* Toolkit Header with Cat */
.toolkit-header {
    text-align: center;
    margin-bottom: 60px;
}

.gift-cat {
    width: 200px;
    margin-bottom: 30px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { 
        transform: translateY(0); 
    }
    25% {
        transform: translateY(-20px);
    }
    50% { 
        transform: translateY(-10px); 
    }
    75% {
        transform: translateY(-15px);
    }
}

/* Toolkit Grid */
.toolkit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.toolkit-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.toolkit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.toolkit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.15);
}

.toolkit-item:hover::before {
    opacity: 0.05;
}

.toolkit-icon {
    font-size: 40px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background-cream);
    border-radius: 12px;
    flex-shrink: 0;
}

.toolkit-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.toolkit-text p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.toolkit-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
}

/* Animated Value Box */
.value-box {
    background: linear-gradient(135deg, var(--white), #F9FAFB);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.value-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0.05;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.pulse-price {
    display: inline-block;
    animation: pulseBig 1.5s ease-in-out infinite;
}

@keyframes pulseBig {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.savings {
    font-size: 20px;
    font-weight: 700;
    color: var(--success);
    margin-top: 10px;
}

.total-value {
    font-size: 20px;
    margin-bottom: 10px;
}

.crossed {
    text-decoration: line-through;
    color: var(--text-light);
}

.special-price {
    font-size: 28px;
    font-weight: 800;
}

.price {
    color: var(--primary-color);
    font-size: 48px;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: var(--white);
}

.testimonials h2 {
    text-align: center;
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.testimonial-card {
    background: var(--background-cream);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.testimonial-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
}

.testimonial-card h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.8;
}

/* Student Works Gallery */
.student-works-gallery {
    margin-top: 60px;
}

.student-works-gallery h3 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 40px;
}

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

/* Placeholder Styles */
.placeholder {
    background-color: #E5E7EB;
    border: 2px dashed #9CA3AF;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B7280;
    font-weight: 500;
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.placeholder:hover {
    background-color: #D1D5DB;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.work-item {
    width: 100%;
    max-width: 250px;
    position: relative;
}

.placeholder-video {
    aspect-ratio: 9/16;
    min-height: 350px;
    width: 100%;
}

.placeholder-image {
    aspect-ratio: 1/1;
    min-height: 150px;
}

/* Success Stories */
.success-stories {
    padding: 80px 0;
    background: linear-gradient(135deg, #F3E7FF, #E7F3FF);
}

.success-stories h2 {
    text-align: center;
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 60px;
}

.success-carousel {
    max-width: 1000px;
    margin: 0 auto;
}

.before-after {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.ba-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    min-width: 280px;
}

.ba-card.before {
    border: 2px solid #E5E7EB;
}

.ba-card.after {
    border: 2px solid var(--success);
    position: relative;
    overflow: hidden;
}

.ba-card.after::before {
    content: '🎉';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 60px;
    opacity: 0.1;
    transform: rotate(15deg);
}

.ba-card h3 {
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.ba-stats {
    display: grid;
    gap: 15px;
}

.ba-stat {
    text-align: center;
}

.ba-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
}

.ba-number.success-color {
    color: var(--success);
}

.ba-label {
    display: block;
    font-size: 14px;
    color: var(--text-light);
}

.ba-arrow {
    font-size: 40px;
    color: var(--primary-color);
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(10px);
    }
}

.success-quote {
    text-align: center;
    font-size: 20px;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.success-author {
    text-align: center;
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
}

.world-map-section {
    margin-top: 60px;
    text-align: center;
}

.world-map-section h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.world-map {
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
}

.map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.world-map-img {
    width: 100%;
    height: auto;
    display: block;
}

.map-points {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.map-point {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
}

.map-point::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: rgba(139, 92, 246, 0.3);
    border-radius: 50%;
    animation: pulse-ring 2s ease-out infinite;
}

.map-point.pulse-new::before {
    animation: pulse-ring 1s ease-out infinite;
    background: rgba(252, 211, 77, 0.5);
}

.map-point.pulse-new {
    background: var(--secondary-color);
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

/* SVG World Map Styles */
.world-map-container {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.world-map {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    display: block;
}

.continents path {
    fill: #e5e7eb;
    stroke: #d1d5db;
    stroke-width: 1;
}

.pulse-dot {
    cursor: pointer;
    filter: drop-shadow(0 0 6px rgba(139, 92, 246, 0.6));
}

.pulse-dot:hover {
    fill: #FCD34D;
}

.map-point:hover {
    transform: scale(1.5);
}

.map-point:hover::after {
    content: attr(data-location);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-dark);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    margin-bottom: 5px;
}

/* Map Stats */
.map-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    padding: 40px;
    background: rgba(255,255,255,0.8);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.map-stat {
    text-align: center;
}

.map-stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.map-stat-label {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 600;
}

/* Global Impact Section */
.global-impact-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #F3E7FF 0%, #E7F3FF 100%);
}

.global-impact-section h2 {
    text-align: center;
    font-size: 48px;
    color: var(--text-dark);
    margin-bottom: 50px;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
}

.impact-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.impact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.impact-card h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin: 20px 0 10px;
}

.impact-card p {
    color: var(--text-light);
    font-size: 16px;
}

.chart-container {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platforms-chart {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.platform-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #F3F4F6;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.platform-stat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: calc(var(--percentage) * 1%);
    background: linear-gradient(90deg, #8B5CF6, #FCD34D);
    opacity: 0.3;
    transition: width 2s ease;
    animation: fillBar 2s ease-out;
}

@keyframes fillBar {
    from {
        width: 0;
    }
    to {
        width: calc(var(--percentage) * 1%);
    }
}

.platform-name {
    font-weight: 600;
    color: var(--text-dark);
    z-index: 1;
}

.platform-percent {
    font-weight: 700;
    color: var(--primary-color);
    z-index: 1;
}

.live-counter {
    margin: 30px 0;
}

.counter-number {
    font-size: 48px;
    font-weight: 700;
    color: #8B5CF6;
    display: block;
}

.counter-label {
    font-size: 16px;
    color: var(--text-light);
    margin-top: 10px;
    display: block;
}

.pulse-indicator {
    width: 12px;
    height: 12px;
    background: #10B981;
    border-radius: 50%;
    margin: 20px auto;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
}

.achievements-ticker {
    margin-top: 60px;
    overflow: hidden;
    background: rgba(139, 92, 246, 0.1);
    padding: 20px 0;
    border-radius: 10px;
}

.ticker-content {
    display: flex;
    gap: 60px;
    animation: scroll 30s linear infinite;
    white-space: nowrap;
}

.ticker-content span {
    font-size: 18px;
    font-weight: 600;
    color: #8B5CF6;
}

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

@media (max-width: 768px) {
    .map-stats {
        flex-direction: column;
        gap: 30px;
        padding: 30px 20px;
    }
    
    .map-stat-number {
        font-size: 36px;
    }
}

.viral-counter {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    margin-top: 80px;
}

.viral-counter h3 {
    font-size: 24px;
    margin-bottom: 30px;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.impact-stat {
    text-align: center;
}

.impact-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 15px;
}

.impact-number {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary-color);
}

.impact-unit {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.impact-label {
    display: block;
    font-size: 14px;
    color: var(--text-light);
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), #9333EA);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 2px, transparent 2px);
    background-size: 50px 50px;
    animation: backgroundMove 20s linear infinite;
}

@keyframes backgroundMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.pricing h2 {
    text-align: center;
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 25px;
}

.countdown-container {
    text-align: center;
    margin: 40px auto;
    max-width: 600px;
}

.countdown-label {
    font-size: 24px;
    color: #FCD34D;
    margin-bottom: 10px;
    font-weight: 600;
}

.countdown-timer {
    font-size: 48px;
    font-weight: 700;
    color: #FCD34D;
    font-family: 'Courier New', monospace;
    /* Убираем темный фон */
    background: none;
    /* Добавляем легкую обводку для читаемости */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    padding: 10px 30px;
    display: inline-block;
    border: 3px solid #FCD34D;
    border-radius: 10px;
    margin: 0 auto;
    /* Добавить анимацию мигания для привлечения внимания */
    animation: glow 2s ease-in-out infinite;
}

.price-warning {
    font-size: 18px;
    color: #FCD34D;
    margin-top: 15px;
    font-weight: 500;
}

@keyframes breathe {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(252, 211, 77, 0.5);
    }
    50% {
        box-shadow: 0 0 30px rgba(252, 211, 77, 0.8);
    }
}

/* Медиа-запросы для countdown */
@media (max-width: 768px) {
    .countdown-timer {
        font-size: 36px;
        padding: 8px 20px;
    }
    
    .countdown-label {
        font-size: 20px;
    }
    
    .price-warning {
        font-size: 16px;
    }
}

/* Urgency Indicators */
.urgency-indicators {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.urgency-item {
    background: rgba(255,255,255,0.1);
    padding: 20px 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.progress-container {
    min-width: 250px;
}

.progress-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

.spots-left {
    color: #F59E0B; /* Более темный оранжевый для лучшей видимости */
    font-size: 24px;
    font-weight: 800;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.25),
        0 1px 2px rgba(0, 0, 0, 0.15);
}

.progress-bar-bg {
    width: 100%;
    height: 10px;
    background: rgba(255,255,255,0.3);
    border-radius: 5px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--danger), var(--secondary-color));
    border-radius: 5px;
    transition: width 0.5s ease;
    box-shadow: 0 0 10px rgba(252, 211, 77, 0.5);
}

.live-indicator {
    animation: blink 1.5s ease-in-out infinite;
    margin-right: 10px;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

.live-text, .enrollment-text {
    font-weight: 600;
}

.viewers-count {
    color: #F59E0B; /* Более темный оранжевый для лучшей видимости */
    font-size: 20px;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.last-enrollment {
    color: #F59E0B; /* Более темный оранжевый для лучшей видимости */
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.pricing-card {
    background: var(--white);
    color: var(--text-dark);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

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

.pricing-card.featured {
    border: 3px solid var(--secondary-color);
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
}

.popularity {
    color: var(--danger);
    font-weight: 600;
    margin-bottom: 20px;
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.pricing-card .price {
    margin-bottom: 10px;
}

.price-note {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 24px;
    margin-right: 10px;
}

.current-price {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
}

.pricing-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 2;
}

.payment-info {
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.scarcity-message {
    background: var(--danger);
    color: var(--white);
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px;
}

.social-counter {
    text-align: center;
    font-size: 18px;
    color: var(--white);
}

.enrolled-count {
    font-size: 24px;
    font-weight: 800;
    color: var(--secondary-color);
}

/* Guarantee Section */
.guarantee {
    padding: 80px 0;
    background: var(--background-cream);
    text-align: center;
}

.guarantee h2 {
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 40px;
}

.guarantee-badge-wrapper {
    display: flex;
    justify-content: center;
    margin: 50px 0;
}

.guarantee-badge {
    position: relative;
    width: 220px;
    height: 220px;
    animation: floatBadge 4s ease-in-out infinite;
}

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

.badge-outer {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    padding: 5px;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.4);
}

.badge-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--white), #FFFEF0);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.badge-inner::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%);
    animation: rotate 10s linear infinite;
}

.badge-icon {
    font-size: 40px;
    margin-bottom: 10px;
    z-index: 1;
}

.badge-inner h3 {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary-color);
    margin: 0;
    z-index: 1;
}

.badge-inner p {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    z-index: 1;
}

.guarantee-text {
    font-size: 20px !important;
    color: var(--primary-color) !important;
}

.badge-shine {
    position: absolute;
    top: 20%;
    left: -20%;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
    transform: skewX(-20deg);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% {
        left: -40%;
    }
    100% {
        left: 120%;
    }
}

.guarantee-description {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--white);
}

.faq h2 {
    text-align: center;
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 60px;
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    background: var(--background-cream);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    font-size: 24px;
    font-weight: 400;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 30px 25px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

/* Sticky Video Preview */
.sticky-video-preview {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 180px;
    height: 320px;
    background: var(--text-dark);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transform: translateY(400px);
    transition: all 0.5s ease;
    z-index: 997;
    cursor: pointer;
}

.sticky-video-preview:hover {
    transform: translateY(0) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.sticky-video-preview.show {
    transform: translateY(0);
}

.sticky-video-preview.show:hover {
    transform: translateY(0) scale(1.05);
}

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

.sticky-video-content iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sticky-video-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: rgba(0,0,0,0.7);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .sticky-video-preview {
        width: 140px;
        height: 250px;
        bottom: 70px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    .sticky-video-preview {
        width: 120px;
        height: 214px;
        bottom: 60px;
        right: 10px;
    }
    
    .sticky-video-close {
        width: 25px;
        height: 25px;
        font-size: 16px;
        top: 5px;
        right: 5px;
    }
}

.sticky-video-close:hover {
    background: rgba(0,0,0,0.9);
    transform: scale(1.1);
}

.sticky-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    cursor: pointer;
}

.sticky-video-hint {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    font-size: 12px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    background: rgba(0,0,0,0.6);
    padding: 5px;
    pointer-events: none;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), #A78BFA);
    color: var(--white);
    text-align: center;
}

.final-cta h2 {
    font-size: clamp(36px, 5vw, 48px);
    margin-bottom: 40px;
}

.testimonial-highlight {
    background: rgba(255, 255, 255, 0.2);
    padding: 20px 40px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 40px;
}

.emotional-text {
    font-size: 20px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 20px;
}

.final-bullets {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
    font-size: 16px;
}

.urgency {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 30px;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

/* Exit Intent Popup */
.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.exit-popup.show {
    display: flex;
}

.exit-popup-content {
    background: var(--white);
    padding: 60px 40px;
    border-radius: 12px;
    max-width: 500px;
    text-align: center;
    position: relative;
}

.close-popup {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
}

.exit-popup h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

/* Social Proof Notifications */
.social-proof-notification {
    position: fixed;
    bottom: 30px;
    left: 20px;
    background: #FFFFFF;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transform: translateX(-500px);
    transition: all 0.5s ease;
    z-index: 900;
    opacity: 0;
    border: 3px solid #8B5CF6;
}

.social-proof-notification.show {
    transform: translateX(0);
    opacity: 1;
}

@media (max-width: 768px) {
    .social-proof-notification {
        display: none;
    }
}

/* Notification adjustments for small screens */
@media (max-height: 700px) {
    .live-notification {
        top: auto;
        bottom: 100px;
    }
    
    .social-proof-notification {
        bottom: 20px;
    }
}

.notification-text::before {
    content: "🔥 ";
}

/* Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--primary-color);
    transition: width 0.3s ease;
    z-index: 1002;
}

/* Sticky Buy Button */
.sticky-buy-button {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 15px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    transition: bottom 0.3s ease;
    z-index: 998;
    display: none;
}

.sticky-buy-button.show {
    bottom: 0;
}

.sticky-buy-button .cta-button {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: block;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .launch-banner {
        font-size: 14px;
        padding: 10px;
    }
    
    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }
    
    .logo-img {
        height: 30px;
    }
    
    .hero-video-container {
        max-width: 300px;
    }
    
    .trust-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .trust-divider {
        display: none;
    }
    
    .instructor-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .instructor-photo {
        max-width: 250px;
        margin: 0 auto;
    }
    
    .social-proof-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .audience-grid,
    .opportunity-stats,
    .testimonials-grid,
    .impact-stats {
        grid-template-columns: 1fr;
    }
    
    .works-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .before-after {
        flex-direction: column;
        gap: 20px;
    }
    
    .ba-arrow {
        transform: rotate(90deg);
    }
    
    .module {
        padding: 20px;
        gap: 15px;
    }
    
    .module-icon-img {
        width: 40px;
        height: 40px;
    }
    
    .toolkit-grid {
        grid-template-columns: 1fr;
    }
    
    .urgency-indicators {
        flex-direction: column;
        gap: 20px;
    }
    
    .urgency-item {
        width: 100%;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .final-bullets {
        flex-direction: column;
        gap: 10px;
    }
    
    .trust-indicators,
    .payment-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .sticky-buy-button {
        display: block;
    }
    
    .sticky-video-preview {
        width: 140px;
        height: 250px;
        bottom: 80px;
        right: 10px;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        font-size: 16px;
        padding: 18px 30px;
    }
    
    .map-container {
        max-height: 300px;
    }
    
    .world-map-img {
        height: 100%;
        object-fit: cover;
    }
    
    .world-map-section h3 {
        font-size: 20px;
    }
    
    .school-name {
        font-size: 16px;
    }
    
    .school-tagline {
        font-size: 10px;
    }
    
    .logo-image {
        width: 36px;
        height: 36px;
    }
    
    .target-icon {
        width: 120px;
        height: 120px;
    }
    
    .gift-cat {
        width: 150px;
    }
    
    .module-icon {
        width: 60px;
        height: 60px;
    }
    
    .live-notification {
        font-size: 14px;
        padding: 15px 20px;
        max-width: 280px;
    }
    
    .floating-emoji {
        font-size: 30px;
        opacity: 0.05;
    }
}

@media (max-width: 640px) {
    .nav {
        padding: 0 15px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .hero-headline {
        font-size: 32px;
    }
    
    .hero-subheadline {
        font-size: 18px;
    }
    
    .modules {
        gap: 20px;
    }
    
    .module {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

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

.slide-in {
    transform: translateX(-50px);
    opacity: 0;
    animation: slideIn 0.8s ease-out forwards;
}

@keyframes slideIn {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Floating Elements */
.floating-emoji {
    position: absolute;
    font-size: 40px;
    opacity: 0.05;
    animation: floatAround 20s infinite linear;
    pointer-events: none;
    z-index: 1;
}

@keyframes floatAround {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(100px, -100px) rotate(90deg);
    }
    50% {
        transform: translate(-50px, -200px) rotate(180deg);
    }
    75% {
        transform: translate(-150px, -100px) rotate(270deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

/* Live Notifications */
.live-notification {
    position: fixed;
    top: 130px;
    right: -400px;
    background: #7C3AED;
    color: white;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    font-weight: 600;
    font-size: 16px;
    transition: right 0.5s ease;
    z-index: 999;
    max-width: 350px;
    border: 3px solid #FCD34D;
}

.live-notification.show {
    right: 20px;
}

@media (max-width: 768px) {
    .live-notification {
        display: none;
    }
}

.live-notification::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmerNotification 2s infinite;
}

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

/* Enhanced CTA Button Effects */
.cta-button {
    position: relative;
    overflow: hidden;
}

.cta-button::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.3s;
}

.cta-button:hover::after {
    animation: shine 0.5s ease-in-out;
    opacity: 1;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* 3D Card Effects */
.pricing-card {
    transform-style: preserve-3d;
    transition: transform 0.6s;
    transform-origin: center;
}

.pricing-card:hover {
    transform: rotateY(5deg) scale(1.05);
}

/* View Counter */
.view-counter {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.counter-label {
    font-size: 18px;
    color: var(--text-light);
    display: block;
    margin-bottom: 10px;
}

.counter-number {
    font-size: 48px;
    font-weight: 900;
    color: #F59E0B; /* Более темный оранжевый вместо желтого для лучшей видимости */
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.3),
        0 1px 2px rgba(0, 0, 0, 0.2),
        0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Альтернативные стили для желтых чисел если нужно сохранить оригинальный цвет */
.counter-number.enhanced-visibility {
    color: var(--secondary-color);
    text-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.4),
        0 1px 3px rgba(0, 0, 0, 0.3);
    -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.1);
}

/* Универсальный класс для улучшения видимости желтых элементов на светлом фоне */
.enhanced-yellow {
    color: #F59E0B !important; /* Более темный оранжевый */
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.3),
        0 1px 2px rgba(0, 0, 0, 0.2) !important;
    font-weight: 700 !important;
}

/* Для сохранения оригинального желтого с улучшенной видимостью */
.yellow-with-shadow {
    color: var(--secondary-color) !important;
    text-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.4),
        0 1px 3px rgba(0, 0, 0, 0.3) !important;
    -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.1);
    font-weight: 800 !important;
}

/* Стили для модального окна оплаты */
.payment-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow-y: auto;
}

.payment-modal-content {
    background: white;
    margin: 20px auto;
    padding: 0;
    width: 90%;
    max-width: 600px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease-out;
    position: relative;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-payment-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 30px;
    cursor: pointer;
    color: #6B7280;
    z-index: 1;
    transition: color 0.3s;
}

.close-payment-modal:hover {
    color: #374151;
}

.modal-header {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    color: white;
    padding: 40px;
    text-align: center;
    border-radius: 20px 20px 0 0;
}

.modal-header h2 {
    margin: 0 0 10px 0;
    font-size: 28px;
}

.urgency-text {
    font-size: 18px;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
}

.countdown-timer {
    font-weight: 700;
    color: #FCD34D;
    font-size: 20px;
    font-family: 'Courier New', monospace;
    background: rgba(0, 0, 0, 0.2);
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
}

.payment-form {
    padding: 40px;
}

.package-selection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

@media (max-width: 480px) {
    .package-selection {
        grid-template-columns: 1fr;
    }
}

.package-option {
    cursor: pointer;
    position: relative;
}

.package-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.package-card {
    border: 3px solid #E5E7EB;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
}

.package-option input[type="radio"]:checked + .package-card {
    border-color: #8B5CF6;
    background: #F3E7FF;
    transform: scale(1.05);
}

.package-option.best-value .badge {
    position: absolute;
    top: -12px;
    right: 10px;
    background: #F59E0B;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.package-card .price {
    font-size: 32px;
    font-weight: 700;
    color: #8B5CF6;
    margin: 10px 0;
}

.package-card .savings {
    color: #10B981;
    font-weight: 600;
}

.form-section h3 {
    margin-bottom: 20px;
    color: #1F2937;
}

.payment-form .form-group {
    margin-bottom: 20px;
}

.payment-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
}

.payment-form .form-group input,
.payment-form .form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.payment-form .form-group input:focus,
.payment-form .form-group select:focus {
    outline: none;
    border-color: #8B5CF6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.payment-form .form-group small {
    display: block;
    margin-top: 5px;
    color: #6B7280;
    font-size: 14px;
}

.payment-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 480px) {
    .payment-form .form-row {
        grid-template-columns: 1fr;
    }
}

.payment-form .trust-section {
    background: #F9FAFB;
    padding: 20px;
    border-radius: 12px;
    margin: 30px 0;
}

.guarantee-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.guarantee-badge {
    font-size: 48px;
    flex-shrink: 0;
}

.guarantee-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.guarantee-text p {
    margin: 0;
    text-align: left;
}

.guarantee-text p:first-child {
    font-size: 18px;
    color: #1F2937;
    margin-bottom: 5px;
}

.guarantee-text p:last-child {
    color: #6B7280;
    font-size: 16px;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.security-badges span {
    background: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.submit-payment-btn {
    width: 100%;
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    color: white;
    padding: 20px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.submit-payment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.submit-payment-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.submit-payment-btn::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.btn-text {
    display: block;
    font-size: 20px;
    margin-bottom: 5px;
}

.btn-price {
    display: block;
    font-size: 16px;
    opacity: 0.9;
}

.payment-form .terms-text {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: #6B7280;
}

.payment-form .terms-text a {
    color: #8B5CF6;
    text-decoration: underline;
}

.payment-modal .modal-footer {
    background: #FEF3E7;
    padding: 20px 40px;
    text-align: center;
    border-radius: 0 0 20px 20px;
}

.payment-modal .social-proof {
    color: #8B5CF6;
    margin-bottom: 10px;
}

.stock-warning {
    color: #DC2626;
    font-weight: 600;
}

/* Сообщения об успехе/ошибке */
.success-message {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    border-radius: 20px;
}

.success-content {
    text-align: center;
    padding: 40px;
}

.success-icon {
    font-size: 80px;
    margin-bottom: 20px;
    animation: checkmark 0.5s ease-out;
}

@keyframes checkmark {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.success-content h3 {
    color: #10B981;
    font-size: 28px;
    margin-bottom: 10px;
}

.success-note {
    background: #F0FDF4;
    color: #166534;
    padding: 10px 20px;
    border-radius: 8px;
    display: inline-block;
    margin-top: 20px;
}

.error-message {
    background: #FEE2E2;
    color: #DC2626;
    padding: 12px 20px;
    border-radius: 8px;
    margin-top: 10px;
    text-align: center;
    animation: shake 0.5s;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.loading {
    display: inline-block;
    animation: pulse 1.5s infinite;
} 