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

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    background-color: #000000;
    padding: 20px 0;
    text-align: center;
}

.logo {
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    background-color: #000000;
    padding: 60px 0;
    text-align: center;
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #cccccc;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: block;
    width: fit-content;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    padding: 18px 40px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    text-decoration: none;
}

/* Stats Section */
.stats {
    background-color: #111111;
    padding: 60px 0;
    text-align: center;
}

.stats-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #ffffff;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.feature {
    text-align: center;
    padding: 30px 20px;
}

.feature .material-icons {
    font-size: 48px;
    color: #ff6b35;
    margin-bottom: 20px;
    display: block;
}

.feature h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
}

/* About Section */
.about {
    background-color: #000000;
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #ffffff;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: #cccccc;
}

.about-content p {
    margin-bottom: 20px;
}

.about-content ul {
    list-style: none;
    margin: 30px 0;
}

.about-content li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.about-content li:before {
    content: "•";
    color: #ff6b35;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Success Section */
.success {
    background-color: #111111;
    padding: 80px 0;
    text-align: center;
}

.success-title {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 40px;
    color: #ff6b35;
    text-transform: uppercase;
}

.success-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: #cccccc;
    text-align: left;
}

.success-content p {
    margin-bottom: 20px;
}

.success-content ul {
    list-style: none;
    margin: 30px 0;
}

.success-content ul li {
    margin-bottom: 15px;
    font-size: 16px;
    color: #ffffff;
}

/* Proof Section */
.proof {
    background-color: #000000;
    padding: 60px 0;
    text-align: center;
}

/* Course Content Section */
.course-content {
    background-color: #111111;
    padding: 80px 0;
}

.content-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin: 50px 0;
}

.content-block {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #ff6b35;
}

.content-block h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.content-block ul {
    list-style: none;
}

.content-block li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    color: #cccccc;
    font-size: 14px;
}

.content-block li:before {
    content: "•";
    color: #ff6b35;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Why Different Section */
.why-different {
    background-color: #000000;
    padding: 80px 0;
}

.comparison-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin: 50px 0;
}

.comparison-block {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #ff6b35;
}

.comparison-block h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.comparison-block ul {
    list-style: none;
}

.comparison-block li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    color: #cccccc;
    font-size: 14px;
}

.comparison-block li:before {
    content: "•";
    color: #ff6b35;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.quote {
    font-size: 18px;
    font-style: italic;
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background-color: #1a1a1a;
    border-radius: 12px;
    color: #ffffff;
}

/* Testimonials Section */
.testimonials {
    background-color: #111111;
    padding: 80px 0;
}

.testimonial-list {
    max-width: 800px;
    margin: 0 auto;
}

.whatsapp-screenshots {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 50px auto;
}

.whatsapp-screenshots img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.testimonial {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #1a1a1a;
    border-radius: 12px;
}

.trophy {
    font-size: 24px;
    margin-right: 15px;
    flex-shrink: 0;
}

.testimonial p {
    color: #cccccc;
    font-size: 16px;
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    background-color: #000000;
    padding: 80px 0;
    text-align: center;
}

.pricing-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #ffffff;
}

.price-box {
    max-width: 500px;
    margin: 0 auto;
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 16px;
    border: 2px solid #ff6b35;
}

.price-header {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.price-values {
    display: flex;
    align-items: baseline;
}

.discount-badge {
    background-color: #ff6b35;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 700;
    display: inline-block;
}


.current-price {
    font-size: 48px;
    font-weight: 900;
    color: #ff6b35;
    margin-right: 20px;
}

.old-price {
    font-size: 32px;
    font-weight: 600;
    color: #666666;
    text-decoration: line-through;
}

.payment-type {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 30px;
}

.features-list {
    text-align: left;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.check {
    color: #00ff00;
    font-weight: bold;
    margin-right: 10px;
    flex-shrink: 0;
}

.feature-item span:last-child {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.5;
}

.purchase-button {
    display: block;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    padding: 18px 40px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    text-transform: uppercase;
    text-decoration: none;
}

/* Final CTA Section */
.final-cta {
    background-color: #111111;
    padding: 80px 0;
    text-align: center;
}

.cta-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 40px;
    color: #ffffff;
    line-height: 1.3;
    max-width: 700px;
}

.investment-info {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.investment-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ff6b35;
}

.investment-info h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 30px 0 15px 0;
    color: #ffffff;
}

.investment-info p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #cccccc;
}

.investment-info ul {
    list-style: none;
    margin: 20px 0;
}

.investment-info li {
    margin-bottom: 10px;
    color: #cccccc;
    font-size: 16px;
}

/* FAQ Section */
.faq {
    background-color: #000000;
    padding: 80px 0;
}

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

.faq-item {
    margin-bottom: 20px;
    background-color: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 20px;
    cursor: pointer;
}

.faq-question .material-icons:first-child {
    color: #ff6b35;
    margin-right: 15px;
}

.faq-question span:nth-child(2) {
    flex: 1;
    color: #ffffff;
    font-weight: 500;
}

.faq-question .material-icons:last-child {
    color: #cccccc;
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease-in-out;
}

.faq-answer > div {
    overflow: hidden;
}

.faq-answer p {
    padding: 0 20px 20px 55px;
    margin: 0;
    color: #ccc;
    line-height: 1.6;
    white-space: pre-line;
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}
.faq-item .faq-question {
    cursor: pointer;
}
.faq-item .faq-question .arrow {
    transition: transform 0.3s ease;
}
.faq-item.active .faq-question .arrow {
    transform: rotate(180deg);
}

/* Contact Section */
.contact {
    background-color: #111111;
    padding: 80px 0;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 1px solid #333333;
    border-radius: 8px;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 16px;
    font-family: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #666666;
}

.contact-form button {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    z-index: 1000;
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .container {
        padding: 0 15px;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .content-blocks,
    .comparison-blocks {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .current-price {
        font-size: 36px;
    }

    .old-price {
        font-size: 24px;
    }

    .cta-title {
        font-size: 24px;
    }

    .section-title {
        font-size: 28px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float img {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .cta-button,
    .purchase-button {
        font-size: 16px;
        padding: 15px 30px;
    }

    .price-box {
        padding: 30px 20px;
    }

    .content-block,
    .comparison-block {
        padding: 20px;
    }
}

/* Video Section */
.video-section {
    background-color: #111111;
    padding: 80px 0;
    text-align: center;
}

.video-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.video-container {
    max-width: 1140px;
    margin: 0 auto 40px;
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: block;
}

.video-container svg {
    display: block;
    width: 100%;
}

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

/* Course Modules */
.course-modules {
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 20px;
    grid-auto-rows: max-content;
}

.module-item {
    background: linear-gradient(135deg, #2d3748, #4a5568);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    align-self: start;
}

.module-item.active .module-header {
    background: linear-gradient(135deg, #3b4a6b, #5a6b8d);
}

.module-header {
    display: flex;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background: linear-gradient(135deg, #2d3748, #4a5568);
    position: relative;
}

.module-icon {
    margin-right: 15px;
    color: #ff6b35;
    font-size: 24px;
}

.module-title {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
}

.module-arrow {
    color: #ffffff;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.module-item.active .module-arrow {
    transform: rotate(180deg);
}

.module-content {
    padding: 0;
    background: #1a202c;
    border-top: none;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.module-item.active .module-content {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-height: 500px;
    transition: all 0.3s ease-in;
}

.lesson-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding: 10px 0;
}

.lesson-item:last-child {
    margin-bottom: 0;
}

.lesson-number {
    font-weight: 600;
    color: #ff6b35;
    margin-right: 10px;
    font-size: 14px;
    min-width: 20px;
}

.lesson-title {
    color: #e2e8f0;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.footer {
    background-color: #111111;
    padding: 40px 0 20px 0;
    color: #cccccc;
    font-size: 15px;
    border-top: 1px solid #222;
    margin-top: 40px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.footer-content p {
    margin-bottom: 0;
    color: #cccccc;
    font-size: 15px;
    text-align: center;
}

/* Responsive Design for Modules */
@media (max-width: 768px) {
    .course-modules {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .module-header {
        padding: 15px;
    }

    .module-title {
        font-size: 14px;
    }

    .module-content {
        padding: 15px;
    }

    .lesson-title {
        font-size: 13px;
    }
}

/* Responsive Design for Video */
@media (max-width: 768px) {
    .video-section {
        padding: 60px 0;
    }

    .video-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .video-container {
        max-width: 100%;
    }
}


@media (max-width: 600px) {
    .footer-content {
        gap: 10px;
    }
    .footer-links {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .price-header {
        flex-direction: column;
        gap: 10px;
    }
}
