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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Typography */
h1,
h2,
h3 {
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(226, 127, 136, 0.9), rgba(233, 152, 161, 0.9)), url('chocolate-filling-bg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    margin-bottom: 2rem;
}

.highlight {
    color: #ffe3ea;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-promise {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
}

.hero-promise strong {
    font-size: 1.3rem;
    color: #ffe3ea;
}

/* Video Section */
.video-container {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.video-placeholder {
    background: #000;
    border-radius: 15px;
    padding: 4rem 2rem;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.play-button {
    font-size: 4rem;
    color: #27ae60;
    margin-bottom: 1rem;
}

.video-placeholder p {
    color: white;
    font-size: 1.2rem;
    margin: 0;
}

/* CTA Buttons */
.cta-button {
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(39, 174, 96, 0.4);
}

.cta-button.secondary {
    background: linear-gradient(45deg, #16a085, #1abc9c);
    box-shadow: 0 8px 25px rgba(22, 160, 133, 0.3);
}

.cta-button.secondary:hover {
    box-shadow: 0 12px 35px rgba(22, 160, 133, 0.4);
}

.cta-button.large {
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
}

.guarantee-text {
    margin-top: 1rem;
    font-size: 1rem;
    color: #ffe3ea;
    font-weight: 600;
}

/* Problem Section */
.problem-section {
    padding: 4rem 0;
    background: #ffe3ea;
}

.problem-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.pain-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pain-point {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.pain-point .icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

/* Solution Section */
.solution-section {
    padding: 4rem 0;
    background: white;
}

.solution-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit {
    text-align: center;
    padding: 2rem;
}

.benefit-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.benefit h3 {
    color: #e27f88;
    margin-bottom: 0.5rem;
}

/* Method Section */
.method-section {
    padding: 4rem 0;
    background: #ffe3ea;
}

.method-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

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

.feature {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.feature h3 {
    color: #e27f88;
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 0;
    background: white;
}

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

.testimonial {
    background: #ffe3ea;
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #e27f88;
}

.testimonial-content {
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
}

.testimonial-author strong {
    color: #e27f88;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

/* Author Section */
.author-section {
    padding: 4rem 0;
    background: #ffe3ea;
}

.author-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Modules Section */
.modules-section {
    padding: 4rem 0;
    background: white;
}

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

.module {
    background: #ffe3ea;
    padding: 2rem;
    border-radius: 15px;
    border-top: 5px solid #e27f88;
}

.module h3 {
    color: #e27f88;
    margin-bottom: 1rem;
}

.module ul {
    list-style: none;
}

.module li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f8cad2;
}

.module li:before {
    content: "✓ ";
    color: #e27f88;
    font-weight: bold;
}

/* Deliverables Section */
.deliverables-section {
    padding: 4rem 0;
    background: #ffe3ea;
}

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

.deliverable {
    display: flex;
    align-items: center;
    background: white;
    padding: 2rem;
    margin-bottom: 1rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.deliverable-icon {
    font-size: 3rem;
    margin-right: 2rem;
    color: #e27f88;
}

.deliverable-content h3 {
    color: #e27f88;
    margin-bottom: 0.5rem;
}

/* Bonus Section */
.bonus-section {
    padding: 4rem 0;
    background: white;
}

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

.bonus {
    background: linear-gradient(135deg, #f8cad2, #f1b1b9);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    color: #333;
}

.bonus h3 {
    margin-bottom: 1rem;
}

/* Pricing Section */
.pricing-section {
    padding: 4rem 0;
    background: #ffe3ea;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-option {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.pricing-option.featured {
    border: 3px solid #e27f88;
    transform: scale(1.05);
}

.popular-badge {
    background: #e27f88;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 700;
    font-size: 0.9rem;
}

.price {
    margin: 2rem 0;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.2rem;
    display: block;
}

.new-price {
    font-size: 3rem;
    font-weight: 700;
    color: #e27f88;
}

.pricing-option ul {
    list-style: none;
    margin: 2rem 0;
}

.pricing-option li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f8cad2;
}

.pricing-option li:before {
    content: "✓ ";
    color: #e27f88;
    font-weight: bold;
}

/* Guarantee Section */
.guarantee-section {
    padding: 4rem 0;
    background: white;
}

.guarantee-content {
    max-width: 600px;
    margin: 0 auto;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    background: #f1b1b9;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #e27f88;
}

.guarantee-icon {
    font-size: 4rem;
    margin-right: 2rem;
    color: #e27f88;
}

.guarantee-text h3 {
    color: #e27f88;
    margin-bottom: 0.5rem;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: #ffe3ea;
}

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

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
    background: #e27f88;
    color: white;
    padding: 1.5rem;
    margin: 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #e998a1;
}

.faq-answer {
    padding: 1.5rem;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Final CTA Section */
.final-cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #e27f88, #e998a1);
    color: white;
    text-align: center;
}

.final-cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.final-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.final-cta-section .guarantee-text {
    color: #ffe3ea;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer p {
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero {
        padding: 2rem 0;
        background-attachment: scroll;
    }

    .hero-promise {
        font-size: 1rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .pain-points,
    .benefits-grid,
    .method-features,
    .testimonials-grid,
    .modules-grid,
    .bonus-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-option.featured {
        transform: none;
    }

    .deliverable {
        flex-direction: column;
        text-align: center;
    }

    .deliverable-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .guarantee-badge {
        flex-direction: column;
        text-align: center;
    }

    .guarantee-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.cta-button:focus,
.faq-question:focus {
    outline: 3px solid #ffe3ea;
    outline-offset: 2px;
}