/* RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0A0F1A;
    color: #E5E9F0;
    line-height: 1.5;
    scroll-behavior: smooth;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* TYPOGRAPHY & GRADIENTS */
.gradient-text {
    background: linear-gradient(135deg, #00FFAA 0%, #00CC88 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #00FFAA 0%, #00CC88 100%);
    color: #0A0F1A;
    box-shadow: 0 4px 15px rgba(0, 255, 170, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 170, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 170, 0.3);
    color: #00FFAA;
}

.btn-secondary:hover {
    background: rgba(0, 255, 170, 0.1);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-bundle {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #0A0F1A;
    font-weight: 800;
    padding: 16px 40px;
}

.btn-bundle:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* HERO SECTION */
.hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #0A0F1A 0%, #0F1420 100%);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.badge {
    display: inline-block;
    background: rgba(0, 255, 170, 0.15);
    color: #00FFAA;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.125rem;
    color: #A0A8C0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.offer-banner {
    background: linear-gradient(135deg, rgba(0, 255, 170, 0.1) 0%, rgba(0, 204, 136, 0.05) 100%);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.price-block {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
}

.old-price {
    font-size: 1.25rem;
    text-decoration: line-through;
    color: #8A8FA8;
}

.current-price {
    font-size: 2rem;
    font-weight: 800;
    color: #00FFAA;
}

.savings {
    background: #00FFAA;
    color: #0A0F1A;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
}

/* TIMER */
.timer-container {
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(0, 255, 170, 0.2);
}

.timer-container h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.countdown-wrapper {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 20px 0;
}

.timer-block {
    text-align: center;
    background: #0F1420;
    padding: 16px 24px;
    border-radius: 16px;
    min-width: 100px;
}

.timer-block span:first-child {
    font-size: 3rem;
    font-weight: 800;
    font-family: monospace;
    color: #00FFAA;
    display: block;
    line-height: 1;
}

.timer-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8A8FA8;
    margin-top: 8px;
    display: block;
}

.timer-note {
    font-size: 0.875rem;
    color: #FFD966;
    margin-top: 12px;
}

.hero-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* SOCIAL PROOF */
.social-proof {
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.trust-text {
    color: #8A8FA8;
    margin-bottom: 24px;
}

.logos {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.logos span {
    font-size: 1.25rem;
    font-weight: 600;
    color: #A0A8C0;
    letter-spacing: -0.5px;
}

/* COURSES SECTION */
.courses {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header p {
    color: #A0A8C0;
    font-size: 1.125rem;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.course-card {
    background: #0F1420;
    border-radius: 24px;
    padding: 32px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.course-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 170, 0.3);
}

.course-card.featured {
    border: 2px solid rgba(0, 255, 170, 0.5);
    background: linear-gradient(135deg, #0F1420 0%, #111725 100%);
}

.course-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: #00FFAA;
    color: #0A0F1A;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

.course-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.course-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.course-description {
    color: #A0A8C0;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.course-features {
    list-style: none;
    margin-bottom: 2rem;
}

.course-features li {
    margin-bottom: 12px;
    color: #C0C8E0;
}

.course-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
}

.price-current {
    font-size: 2rem;
    font-weight: 800;
    color: #00FFAA;
}

.price-old {
    font-size: 1rem;
    text-decoration: line-through;
    color: #8A8FA8;
}

/* BUNDLE OFFER */
.bundle-offer {
    margin-top: 48px;
    background: linear-gradient(135deg, rgba(0, 255, 170, 0.1) 0%, rgba(0, 204, 136, 0.05) 100%);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(0, 255, 170, 0.3);
}

.bundle-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.bundle-price {
    margin: 24px 0;
}

.bundle-price span:first-child {
    font-size: 1rem;
    color: #A0A8C0;
}

.bundle-price strong {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFD700;
    margin: 0 12px;
}

.bundle-old {
    text-decoration: line-through;
    color: #8A8FA8;
}

/* TESTIMONIALS */
.testimonials {
    padding: 80px 0;
    background: #0F1420;
}

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

.testimonial-card {
    background: #0A0F1A;
    padding: 32px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stars {
    color: #FFD700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: #C0C8E0;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.author strong {
    display: block;
    color: #00FFAA;
    margin-bottom: 4px;
}

.author span {
    font-size: 0.875rem;
    color: #8A8FA8;
}

/* FINAL CTA */
.final-cta {
    padding: 80px 0;
}

.cta-box {
    text-align: center;
    background: linear-gradient(135deg, #0F1420 0%, #0A0F1A 100%);
    padding: 60px 40px;
    border-radius: 32px;
    border: 1px solid rgba(0, 255, 170, 0.2);
}

.cta-box h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-box p {
    color: #A0A8C0;
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.secure-note {
    font-size: 0.875rem !important;
    margin-top: 1.5rem !important;
    margin-bottom: 0 !important;
}

/* FOOTER */
footer {
    padding: 32px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.875rem;
    color: #8A8FA8;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .hero-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    .offer-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .countdown-wrapper {
        gap: 12px;
    }
    
    .timer-block {
        min-width: 80px;
        padding: 12px 16px;
    }
    
    .timer-block span:first-child {
        font-size: 2rem;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-box {
        padding: 40px 24px;
    }
    
    .cta-box h2 {
        font-size: 1.8rem;
    }
    
    .logos {
        gap: 24px;
    }
    
    .logos span {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .timer-block {
        min-width: 70px;
        padding: 8px 12px;
    }
    
    .timer-block span:first-child {
        font-size: 1.5rem;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }
}
/* Additional styles for thank you pages compatibility */
.btn-download, .btn-secondary-download {
    transition: all 0.3s ease;
}

.order-details, .bonus-section, .access-instructions, .email-notice {
    animation: fadeInUp 0.5s ease;
}

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

.success-card > * {
    animation: fadeInUp 0.4s ease backwards;
}

.success-card > *:nth-child(1) { animation-delay: 0s; }
.success-card > *:nth-child(2) { animation-delay: 0.1s; }
.success-card > *:nth-child(3) { animation-delay: 0.2s; }
.success-card > *:nth-child(4) { animation-delay: 0.3s; }
.success-card > *:nth-child(5) { animation-delay: 0.4s; }
.success-card > *:nth-child(6) { animation-delay: 0.5s; }
.success-card > *:nth-child(7) { animation-delay: 0.6s; }

/* Additional styles for checkout page compatibility */
.btn-payment {
    font-family: 'Inter', sans-serif;
}

.modal input {
    font-family: 'Inter', sans-serif;
}

.modal input:focus {
    outline: none;
    border-color: #00FFAA;
}