/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #050505;
    color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* =========================================
   Top Bar (Offer and Timer)
   ========================================= */
.top-bar {
    background-color: #c91819;
    padding: 18px 0 25px 0;
    border-bottom: 2px solid #ed1c24;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.3);
}

.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.offer-alert {
    color: #ffffff;
    font-weight: 900;
    font-size: 1.14rem;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    white-space: nowrap;
}

.offer-alert i {
    color: #f6c044;
    font-size: 1.25rem;
    font-weight: 400;
}

.timer-box {
    background-color: #921313;
    /* Darker red matching the box */
    padding: 10px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: inset 0px 2px 5px rgba(0, 0, 0, 0.4);
}

.time-part {
    color: #f6c044;
    /* Golden yellow */
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: 2px;
}

.colon {
    color: #f6c044;
    font-weight: 800;
    font-size: 1.3rem;
    margin: 0 2px;
}


/* =========================================
   Hero Section
   ========================================= */
.hero-section {
    position: relative;
    padding: 50px 20px 80px;
    background: radial-gradient(circle at 50% 10%, #361f10 0%, #110905 50%, #030100 100%);
    min-height: calc(100vh - 120px);
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.hero-container {
    max-width: 800px;
    text-align: center;
    margin-top: 20px;
}

.main-headline {
    color: #f9ce74;
    /* Soft gold/orange */
    font-size: 3.4rem;
    /* Scaled to perfectly match visual size vs subtitle */
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.sub-headline {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.2px;
}

.hero-image-wrapper {
    margin: 60px 0;
    display: flex;
    justify-content: center;
}

.hero-book-img {
    max-width: 100%;
    width: 320px;
}

.cta-button {
    display: inline-block;
    background-color: #fbd672;
    color: #000000;
    font-size: 1.6rem;
    font-weight: 900;
    padding: 20px 50px;
    border-radius: 40px;
    text-decoration: none;
    box-shadow: 0 0 40px rgba(251, 214, 114, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(251, 214, 114, 0.4);
}

/* =========================================
   Testimonials Section
   ========================================= */
.testimonials-section {
    padding: 60px 20px;
    background-color: #1a1a1a;
    /* Dark charcoal grey to match the screenshot */
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonials-container {
    max-width: 800px;
    text-align: center;
}

.testimonials-title {
    color: #f6c044;
    /* Golden yellow matching previous text */
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    /* Slight shadow for depth */
}

.testimonials-grid {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial-card {
    background-color: #202020;
    border: 1px solid #5a4b33;
    border-radius: 12px;
    padding: 35px 30px;
    max-width: 480px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.testimonial-avatar {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f6c044;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    color: #f6c044;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.testimonial-location {
    color: #8b9cae;
    font-size: 1rem;
    font-weight: 500;
}

.testimonial-text {
    color: #ffffff;
    font-size: 1.14rem;
    font-style: italic;
    line-height: 1.5;
}

/* =========================================
   Features Section
   ========================================= */
.features-section {
    padding: 80px 20px;
    background-color: #202020;
    /* Same as testimonial card background for section */
    display: flex;
    justify-content: center;
    align-items: center;
}

.features-container {
    max-width: 1000px;
    text-align: center;
    width: 100%;
}

.features-title {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 60px;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.feature-card {
    background-color: #2a2a2a;
    /* Slightly lighter inner box */
    border: 1px solid #f6c044;
    /* Gold border */
    border-radius: 12px;
    padding: 35px 30px;
    max-width: 320px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
}

.feature-icon {
    font-size: 3rem;
    color: #ceaa6b;
    /* Muted gold/tan color for icon */
    margin-bottom: 25px;
}

.feature-card-title {
    color: #ffffff;
    font-size: 1.26rem;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 12px;
}

.feature-card-text {
    color: #cccccc;
    /* Light gray for subtext */
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
}

/* =========================================
   Transformation Section
   ========================================= */
.transformation-section {
    padding: 80px 20px;
    background: radial-gradient(circle at 50% 50%, #15110d 0%, #080808 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Subtle background overlay to mimic the dark chocolate/blur look */
.transformation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000;
    opacity: 0.85;
    /* Keeps the text very readable while allowing a hint of gradient */
    z-index: 1;
}

.transformation-container {
    max-width: 800px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.transformation-title {
    color: #f9ce74;
    /* Soft gold matching hero headline */
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Responsive Adjustments */
.transformation-text {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    margin-bottom: 50px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* Spacing between rows */
    align-items: center;
    /* Center the list in the container */
}

.benefit-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    background-color: rgba(20, 15, 10, 0.7);
    /* Translucent dark background */
    border: 1px solid #4a3b22;
    /* Subtle dark gold border */
    padding: 20px 30px;
    width: 100%;
    max-width: 600px;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.benefit-icon {
    color: #f6c044;
    /* Bright golden yellow checkmark */
    font-size: 1.4rem;
    flex-shrink: 0;
}

.benefit-item span {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.3rem;
    line-height: 1.4;
    text-align: left;
}

/* =========================================
   Checkout Section
   ========================================= */
.checkout-section {
    padding: 80px 20px;
    background: radial-gradient(circle at 50% 50%, #1e1b18 0%, #111111 60%, #050505 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.checkout-container {
    max-width: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.checkout-alert {
    background-color: #d12229;
    color: #ffffff;
    font-size: 1.26rem;
    font-weight: 800;
    padding: 12px 35px;
    border-radius: 40px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(209, 34, 41, 0.4);
    animation: pulse-checkout 1.5s infinite ease-in-out;
}

@keyframes pulse-checkout {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(201, 24, 25, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(201, 24, 25, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(201, 24, 25, 0);
    }
}


.checkout-alert i {
    font-weight: 400;
    /* Regular clock */
    font-size: 1.4rem;
}

.checkout-headline {
    color: #f9ce74;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.checkout-timer {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.timer-block {
    background-color: #1a1a1a;
    border: 1px solid #f6c044;
    border-radius: 4px;
    width: 90px;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.timer-num {
    color: #f9ce74;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 5px;
}

.timer-label {
    color: #a0a0a0;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: capitalize;
}

.pricing-card {
    background-color: #262626;
    border: 1px solid #f9ce74;
    border-radius: 12px;
    width: 100%;
    padding: 60px 30px 40px;
    position: relative;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 50px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
}

.discount-badge {
    position: absolute;
    top: -25px;
    right: -15px;
    background-color: #d12229;
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 800;
    padding: 12px 30px;
    border-radius: 40px;
    transform: rotate(10deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
}

.price-from {
    color: #a0a0a0;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.price-old {
    color: #d12229;
    font-size: 2.2rem;
    font-weight: 800;
    text-decoration: line-through;
    margin-bottom: 30px;
}

.price-to {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.price-new {
    color: #4cd98f;
    /* Mint green */
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 30px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

.pricing-desc {
    color: #ffffff;
    font-size: 1.26rem;
    line-height: 1.5;
    font-weight: 500;
    margin-bottom: 40px;
}

.checkout-btn {
    width: 100%;
    text-align: center;
    padding: 22px 20px;
    font-size: 1.4rem;
    margin-bottom: 0;
    /* Reset margin from base CTA */
}

.secure-payment {
    color: #a0a0a0;
    font-size: 1.2rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: left;
    line-height: 1.4;
}

.secure-payment i {
    color: #f6c044;
    font-size: 1.5rem;
}

/* =========================================
   Students Results Section
   ========================================= */
.students-section {
    padding: 80px 20px;
    background-color: #1a1a1a;
    /* Dark charcoal matching the screenshot */
    display: flex;
    justify-content: center;
    align-items: center;
}

.students-container {
    max-width: 800px;
    text-align: center;
}

.students-title {
    color: #f9ce74;
    /* Soft gold matching other main headlines */
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.25;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    /* Extra legibility boost */
    margin-bottom: 50px;
}

.students-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.social-proof-card {
    background-color: #242424;
    /* Dark gray for the card */
    border: 1px solid #333;
    border-radius: 12px;
    padding: 30px;
    max-width: 480px;
    width: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.social-proof-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.stars-container {
    color: #f9ce74;
    /* Gold stars */
    font-size: 1.4rem;
    display: flex;
    gap: 5px;
}

.quote-icon {
    font-size: 3rem;
    color: #383838;
    /* Very subtle dark gray quote marks */
    line-height: 1;
}

.proof-image-wrapper {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.proof-image {
    width: 100%;
    height: auto;
    display: block;
}

.proof-divider {
    border: 0;
    height: 1px;
    background-color: #4a3b22;
    /* Dark gold divider */
    margin-bottom: 20px;
}

.proof-author {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.author-name {
    color: #f9ce74;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.author-location {
    color: #8b9cae;
    font-size: 1.1rem;
    font-weight: 500;
}

/* =========================================
   FAQ Section
   ========================================= */
.faq-section {
    padding: 80px 20px;
    background-color: #202020;
    /* Darker charcoal matching previous sections */
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-container {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.faq-title {
    color: #f9ce74;
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.15;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 50px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.faq-item {
    background-color: #242424;
    /* Dark gray */
    border-radius: 8px;
    border: 1px solid #333;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: border-color 0.3s ease;
}

.faq-item.active {
    border-color: #f9ce74;
    /* Yellow explicit border for active state */
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.26rem;
    font-weight: 700;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #2a2a2a;
}

.faq-question i {
    color: #ffffff;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

/* Class added by JS when active */
.faq-question.active i {
    transform: rotate(180deg);
    color: #f9ce74;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease;
    background-color: #242424;
    /* Same as the item bg */
}

/* When the answer is expanded */
.faq-answer.show {
    max-height: 500px;
    /* Arbitrary large number to allow expansion */
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    color: #cccccc;
    font-size: 1.06rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* =========================================
   Guarantee Section
   ========================================= */
.guarantee-section {
    padding: 80px 20px;
    background-color: #202020;
    /* Dark gray */
    display: flex;
    justify-content: center;
    align-items: center;
}

.guarantee-container {
    max-width: 600px;
    width: 100%;
}

.guarantee-card {
    background-color: #242424;
    /* Slightly lighter gray for card */
    border: 1px solid #f9ce74;
    /* Gold border */
    border-radius: 12px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    /* For the watermark */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.shield-top {
    color: #f9ce74;
    font-size: 4rem;
    margin-bottom: 25px;
}

.guarantee-title {
    color: #f9ce74;
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.guarantee-text {
    color: #ffffff;
    font-size: 1.26rem;
    line-height: 1.5;
    font-weight: 500;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.guarantee-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
    width: 100%;
    align-items: center;
    position: relative;
    z-index: 2;
}

.g-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.g-feature-item i {
    color: #f9ce74;
    font-size: 2.5rem;
}

.g-feature-item span {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 800;
}

.guarantee-btn {
    width: 100%;
    max-width: 450px;
    padding: 18px 20px;
    font-size: 1.26rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    z-index: 2;
    margin-bottom: 0;
}

.guarantee-btn i {
    color: #d12229;
    /* Deep red lock icon */
    font-size: 1.4rem;
}

.shield-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25rem;
    color: rgba(255, 255, 255, 0.03);
    /* Very faint white/gray for watermark */
    z-index: 1;
    /* Below all text */
    pointer-events: none;
}

/* =========================================
   Footer Section
   ========================================= */
.site-footer {
    padding: 60px 20px 40px;
    background-color: #1a1a1a;
    /* Dark charcoal */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.footer-container {
    max-width: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    color: #f9ce74;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-desc {
    color: #ffffff;
    font-size: 1.26rem;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 40px;
}

.footer-contact-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-contact-info {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
}

.footer-contact-info i {
    color: #f9ce74;
}

.footer-divider {
    border: 0;
    height: 1px;
    background-color: #332d20;
    /* Very subtle dark gold/brown line */
    width: 100%;
    margin-bottom: 30px;
}

.footer-copyright {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .main-headline {
        font-size: 2rem;
    }

    .main-headline br {
        display: none;
        /* Let text wrap naturally on smaller screens */
    }

    .sub-headline {
        font-size: 1.1rem;
    }

    .sub-headline br {
        display: none;
    }

    .cta-button {
        font-size: 1.3rem;
        padding: 16px 36px;
    }

    .testimonials-title {
        font-size: 2rem;
    }

    .testimonials-title br {
        display: none;
    }

    .testimonial-card {
        padding: 25px 20px;
    }

    .testimonial-avatar {
        width: 60px;
        height: 60px;
    }

    .testimonial-name {
        font-size: 1.26rem;
    }

    .features-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }

    .features-title br {
        display: none;
    }

    .feature-card {
        padding: 25px 20px;
    }

    .transformation-title {
        font-size: 2rem;
    }

    .transformation-title br {
        display: none;
    }

    .transformation-text {
        font-size: 1.14rem;
    }

    .transformation-text br {
        display: none;
    }

    .benefit-item {
        padding: 15px 20px;
        gap: 15px;
    }

    .benefit-item span {
        font-size: 1.1rem;
    }

    .students-title {
        font-size: 2rem;
    }

    .students-title br {
        display: none;
    }

    .checkout-headline {
        font-size: 2rem;
    }

    .checkout-headline br {
        display: none;
    }

    .timer-block {
        width: 75px;
        height: 85px;
    }

    .timer-num {
        font-size: 2rem;
    }

    .discount-badge {
        font-size: 1.1rem;
        padding: 8px 15px;
        top: -15px;
        right: -5px;
    }

    .price-new {
        font-size: 4rem;
    }

    .faq-title {
        font-size: 2.2rem;
    }

    .faq-title br {
        display: none;
    }

    .guarantee-card {
        padding: 40px 20px;
    }

    .shield-top {
        font-size: 3rem;
    }

    .guarantee-title {
        font-size: 2rem;
    }

    .guarantee-title br {
        display: none;
    }

    .guarantee-text {
        font-size: 1.14rem;
    }

    .guarantee-text br {
        display: none;
    }

    .g-feature-item span {
        font-size: 1.1rem;
    }

    .guarantee-btn {
        font-size: 1.1rem;
        padding: 16px 15px;
    }

    .shield-watermark {
        font-size: 18rem;
    }

    .footer-desc {
        font-size: 1.1rem;
    }

    .footer-desc br {
        display: none;
    }

    .footer-copyright {
        font-size: 1rem;
    }

    .footer-copyright br {
        display: none;
    }
}