/* Non-Critical CSS - Loaded Asynchronously */
/* Below-the-fold sections and interactive components */

/* Curriculum Section */
.curriculum-section {
    background: white;
    padding: 80px 20px;
}

.curriculum-section h2 {
    text-align: center;
    font-size: 2.5em;
    color: #1a1a1a;
    margin-bottom: 50px;
}

.curriculum-section h2 span {
    color: #D4AF37;
}

.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.module {
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #D4AF37;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.module:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.2);
}

.module h3 {
    color: #D4AF37;
    font-size: 1.5em;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.module-number {
    background: #D4AF37;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 0.8em;
    font-weight: bold;
}

.module ul {
    list-style: none;
    padding-left: 0;
}

.module li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.module li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #D4AF37;
    font-weight: bold;
}

/* Benefits Section */
.benefits-section {
    background: linear-gradient(135deg, #2d2416 0%, #1a1a1a 100%);
    padding: 80px 20px;
    color: white;
}

.benefits-section h2 {
    text-align: center;
    font-size: 2.5em;
    color: #D4AF37;
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.benefit-card h3 {
    color: #D4AF37;
    font-size: 1.3em;
    margin-bottom: 15px;
}

/* Details Section */
.details-section {
    background: white;
    padding: 80px 20px;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.detail-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2416 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #D4AF37;
}

.detail-box h3 {
    color: #D4AF37;
    font-size: 1.5em;
    margin-bottom: 15px;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    padding: 80px 20px;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5em;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.final-cta .cta-button {
    background: #1a1a1a;
    color: #D4AF37;
    border: 2px solid #1a1a1a;
}

.final-cta .cta-button:hover {
    background: #2a2a2a;
    color: #F4D03F;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    padding: 15px 20px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.sticky-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    gap: 20px;
}

.sticky-cta-text {
    flex: 1;
}

.sticky-cta-text h3 {
    color: #1a1a1a;
    font-size: 1.3em;
    font-weight: bold;
    margin: 0;
}

.sticky-cta-text p {
    color: #2a2a2a;
    font-size: 0.9em;
    margin: 5px 0 0 0;
}

.sticky-cta-button {
    background: #1a1a1a;
    color: #D4AF37;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    white-space: nowrap;
    transition: all 0.3s ease;
    border: 2px solid #1a1a1a;
}

.sticky-cta-button:hover {
    background: #2a2a2a;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.sticky-cta.hidden {
    transform: translateY(100%);
}

/* Countdown Timer */
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.countdown-box {
    background: rgba(26, 26, 26, 0.5);
    padding: 15px 20px;
    border-radius: 10px;
    border: 2px solid #D4AF37;
    min-width: 80px;
}

.countdown-box .number {
    font-size: 2em;
    color: #D4AF37;
    font-weight: bold;
    display: block;
}

.countdown-box .label {
    font-size: 0.8em;
    color: #E8D4B8;
    text-transform: uppercase;
}

/* Testimonials Section */
.testimonials-section {
    background: white;
    padding: 80px 20px;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5em;
    color: #1a1a1a;
    margin-bottom: 50px;
}

.testimonials-section h2 span {
    color: #D4AF37;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #D4AF37;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 4em;
    color: #D4AF37;
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 1em;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.testimonial-role {
    font-size: 0.9em;
    color: #D4AF37;
    font-style: italic;
}

.stars {
    color: #D4AF37;
    margin-bottom: 15px;
    font-size: 1.2em;
}

/* Who Section */
.who-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2416 100%);
    padding: 80px 20px;
    color: white;
}

.who-section h2 {
    text-align: center;
    font-size: 2.5em;
    color: #D4AF37;
    margin-bottom: 50px;
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.who-card {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.who-card:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-5px);
    border-color: #D4AF37;
}

.who-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.who-card h3 {
    color: #D4AF37;
    font-size: 1.3em;
    margin-bottom: 10px;
}

.who-card p {
    color: #E8D4B8;
    font-size: 0.95em;
}

/* Modal Popup Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from { 
        opacity: 0;
        transform: translateY(-50px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-container {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2416 100%);
    border: 3px solid #D4AF37;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.4);
    animation: slideDown 0.4s ease;
}

.modal-header {
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    padding: 30px;
    border-radius: 17px 17px 0 0;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid #1a1a1a;
    color: #D4AF37;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-weight: bold;
}

.modal-close:hover {
    background: #1a1a1a;
    transform: rotate(90deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.modal-header h2 {
    color: #1a1a1a;
    font-size: 2em;
    font-weight: 700;
    margin: 0;
    text-align: center;
}

.modal-body {
    padding: 40px 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #D4AF37;
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 10px;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    color: #E8D4B8;
    font-size: 1em;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #D4AF37;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.form-group input::placeholder {
    color: rgba(232, 212, 184, 0.5);
}

.modal-submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    color: #1a1a1a;
    border: 2px solid #D4AF37;
    border-radius: 50px;
    font-size: 1.3em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
    margin-top: 10px;
}

.modal-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, #F4D03F 0%, #D4AF37 100%);
}

.trust-text {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.trust-text p {
    color: #E8D4B8;
    font-size: 0.9em;
    margin: 8px 0;
    line-height: 1.6;
}

.trust-text .urgency {
    color: #D4AF37;
    font-weight: 600;
}

/* Checkout Section Styles */
.checkout-section {
    display: none;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2416 100%);
    padding: 80px 20px;
    min-height: 100vh;
}

.checkout-section.active {
    display: block;
}

.checkout-header {
    text-align: center;
    margin-bottom: 50px;
}

.checkout-header h1 {
    color: #D4AF37;
    font-size: 2.5em;
    margin-bottom: 15px;
    font-weight: 700;
}

.checkout-header .reassurance {
    color: #E8D4B8;
    font-size: 1.2em;
    margin-bottom: 25px;
}

.price-badge {
    display: inline-block;
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    color: #1a1a1a;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.5em;
    font-weight: bold;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.price-badge .offer-text {
    font-size: 0.6em;
    display: block;
    margin-top: 5px;
}

.checkout-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.checkout-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid #D4AF37;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
}

.checkout-card h3 {
    color: #D4AF37;
    font-size: 1.8em;
    margin-bottom: 25px;
    font-weight: 700;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 15px;
}

.order-summary ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.order-summary li {
    color: #E8D4B8;
    font-size: 1.1em;
    padding: 15px 0;
    padding-left: 35px;
    position: relative;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.order-summary li:last-child {
    border-bottom: none;
}

.order-summary li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #D4AF37;
    font-weight: bold;
    font-size: 1.3em;
}

.trust-badge {
    background: rgba(212, 175, 55, 0.1);
    border-left: 4px solid #D4AF37;
    padding: 20px;
    border-radius: 10px;
    margin-top: 25px;
}

.trust-badge p {
    color: #E8D4B8;
    font-size: 0.95em;
    line-height: 1.6;
    margin: 0;
}

.form-field {
    margin-bottom: 20px;
}

.form-field label {
    display: block;
    color: #D4AF37;
    font-size: 1em;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-field input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    color: #E8D4B8;
    font-size: 1em;
    cursor: not-allowed;
}

.payment-btn {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    color: #1a1a1a;
    border: none;
    border-radius: 50px;
    font-size: 1.4em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
    margin-top: 30px;
}

.payment-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, #F4D03F 0%, #D4AF37 100%);
}

.reassurance-points {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.reassurance-points p {
    color: #E8D4B8;
    font-size: 0.95em;
    margin: 12px 0;
    padding-left: 30px;
    position: relative;
}

.reassurance-points p::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #D4AF37;
    font-weight: bold;
    font-size: 1.2em;
}

.faq-section {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 40px;
}

.faq-section h3 {
    color: #D4AF37;
    font-size: 1.8em;
    margin-bottom: 30px;
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    padding: 25px;
    border-radius: 10px;
    border-left: 3px solid #D4AF37;
}

.faq-item h4 {
    color: #D4AF37;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.faq-item p {
    color: #E8D4B8;
    font-size: 0.95em;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Media Queries for Non-Critical Sections */
@media (max-width: 768px) {
    .curriculum-grid,
    .benefits-grid,
    .details-grid {
        grid-template-columns: 1fr;
    }

    .sticky-cta {
        padding: 12px 15px;
    }

    .sticky-cta-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .sticky-cta-text h3 {
        font-size: 1.1em;
    }

    .sticky-cta-text p {
        font-size: 0.85em;
    }

    .sticky-cta-button {
        width: 100%;
        padding: 12px 30px;
    }

    .countdown-timer {
        flex-wrap: wrap;
        gap: 10px;
    }

    .countdown-box {
        min-width: 60px;
        padding: 10px 15px;
    }

    .countdown-box .number {
        font-size: 1.5em;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .who-grid {
        grid-template-columns: 1fr;
    }

    .modal-container {
        width: 95%;
        margin: 20px;
    }

    .modal-header {
        padding: 25px 20px;
    }

    .modal-header h2 {
        font-size: 1.5em;
    }

    .modal-body {
        padding: 30px 20px;
    }

    .modal-submit-btn {
        font-size: 1.1em;
        padding: 15px;
    }

    .checkout-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .checkout-card {
        padding: 30px 20px;
    }

    .checkout-header h1 {
        font-size: 1.8em;
    }

    .price-badge {
        font-size: 1.2em;
        padding: 12px 30px;
    }

    .payment-btn {
        font-size: 1.2em;
        padding: 18px;
    }

    .faq-section {
        padding: 30px 20px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}
