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

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2rem;
    font-weight: 800;
}

h2 {
    font-size: 1.75rem;
    font-weight: 700;
}

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

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

.highlight {
    color: #ffd700;
    font-weight: 700;
}

/* Hero Top Section */
.hero-top {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px 0 30px 0;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-container {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    
}

.logo-container img {
    max-width: 110px;
    height: auto;
}

.main-logo {
    max-width: 200px;
    height: auto;
   
}


.product-image-container {
    margin: 10px 0;
}

.product-main-img {
    max-width: 350px;
    margin: 0 auto;
    height: auto;
}

.hero-text-top {
    margin-top: 40px;
}

.hero-title-top {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle-top {
    font-size: 1.0rem;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-container-top {
    margin-top: 20px;
}

.cta-container-buton {
    margin-top: 30px;
    /* Center the CTA button */
    display: flex;
    justify-content: center;
}

.cta-subtitle-top {
    margin-top: 15px;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: white;
    padding: 18px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    margin: 10px 0;
    width: 100%;
    max-width: 400px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 107, 107, 0.4);
}

.cta-button.large {
    padding: 20px 35px;
    font-size: 1.2rem;
}

.cta-button i {
    margin-right: 10px;
}

/* Image Placeholders */
.image-placeholder {
    border: 1px dashed #ccc;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    color: #666;
    min-height: 150px;
}

.image-placeholder.small {
    min-height: 80px;
    padding: 15px;
}

.image-placeholder i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #999;
}

.image-placeholder p {
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
}

/* Sections */
section {
    padding: 40px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
    font-size: 2rem;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Problem Section */
.problem-section {
    background-color: #f8f9fa;
    padding: 50px 0;
}

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

.problem-text {
    flex: 1;
}

.problem-list {
    margin: 20px 0;
}

.problem-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.problem-item i {
    color: #ff6b6b;
    margin-right: 15px;
    font-size: 1.2rem;
}

.problem-highlight {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: white;
    padding: 20px;
    border-radius: 15px;
    margin-top: 20px;
    text-align: center;
}

.problem-image {
    flex: 1;
    max-width: 400px;
}

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

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

.solution-text {
    flex: 1;
}

.solution-intro {
    font-size: 1.2rem;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.solution-image {
    flex: 1;
    max-width: 300px;
}

.method-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.feature-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
}

.feature-card i {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 10px;
}

.feature-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #333;
}

.feature-card p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Benefits Section */
.benefits-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 50px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.benefit-card {
    background: white;
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.benefit-icon i {
    color: white;
    font-size: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.benefit-card p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

/* How It Works Section */
.how-it-works {
    padding: 50px 0;
    background: white;
}

.steps-container {
    margin-top: 40px;
}

.step {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 5px solid #667eea;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    align-self: center;
}

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #333;
    text-align: center;
}

.step-content p {
    color: #666;
    margin-bottom: 20px;
    text-align: center;
}

.step-image {
    margin-top: 15px;
}

/* Target Audience Section */
.target-audience {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 50px 0;
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
}

.audience-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.audience-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.audience-icon i {
    color: white;
    font-size: 1.5rem;
}

.audience-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.audience-card p {
    color: #666;
    margin-bottom: 20px;
}

.audience-image {
    margin-top: 15px;
}

/* Testimonials Section */
.testimonials {
    padding: 50px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.testimonial-content {
    margin-bottom: 20px;
}

.stars {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.stars i {
    color: #ffd700;
    font-size: 1.2rem;
    margin: 0 2px;
}

.testimonial-content p {
    font-style: italic;
    color: #555;
    text-align: center;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    flex-shrink: 0;
}

.author-info h4 {
    margin: 0;
    color: #333;
    font-size: 1.1rem;
}

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

/* Bonus Section */
.bonus-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 50px 0;
}

.bonus-section .section-title,
.bonus-section .section-subtitle {
    color: white;
}

.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
}

.bonus-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.bonus-image {
    margin-bottom: 15px;
}

.bonus-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.bonus-card p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.bonus-value {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.bonus-total {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
}

.bonus-total h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.bonus-total .highlight {
    color: #ffd700;
}

/* Guarantee Section */
.guarantee-section {
    background: #f8f9fa;
    padding: 50px 0;
}

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

.guarantee-badge {
    flex-shrink: 0;
}

.guarantee-text {
    flex: 1;
    text-align: center;
}

.guarantee-text h2 {
    color: #333;
    margin-bottom: 20px;
}

.guarantee-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 25px;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.guarantee-item i {
    color: #28a745;
    font-size: 1.1rem;
}

/* Offer Section */
.offer-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 50px 0;
    text-align: center;
}

.offer-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: white;
}

.price-comparison {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
}

.old-price {
    text-decoration: line-through;
    opacity: 0.7;
}

.new-price {
    font-size: 2rem;
    font-weight: 800;
}

.price-label {
    display: block;
    font-size: 1rem;
    margin-bottom: 5px;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffd700;
}

.discount-badge {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.2rem;
}

.offer-includes {
    margin: 40px 0;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.offer-includes h3 {
    text-align: center;
    margin-bottom: 20px;
    color: white;
}

.includes-list {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 15px;
}

.include-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.include-item i {
    color: #28a745;
    font-size: 1.1rem;
}

.payment-options {
    margin: 30px 0;
}

.payment-options h3 {
    margin-bottom: 20px;
    color: white;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.payment-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 10px;
    min-width: 80px;
}

.payment-method i {
    font-size: 1.5rem;
    color: #ffd700;
}

.payment-method span {
    font-size: 0.8rem;
    text-align: center;
}

.cta-final {
    margin-top: 30px;
}

.cta-security,
.cta-urgency {
    margin-top: 15px;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* FAQ Section */
.faq-section {
    background: white;
    padding: 50px 0;
}

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

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

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border-bottom: 1px solid #e0e0e0;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
}

.faq-question i {
    color: #667eea;
    font-size: 1rem;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    background: #f8f9fa;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer p {
    margin: 0;
    color: #666;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 40px 0 20px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 15px;
    color: #ffd700;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    color: #999;
}

/* Responsive Design - Tablet */
@media (min-width: 768px) {
    .container {
        max-width: 750px;
        padding: 0 20px;
    }
    
    .hero-title-top {
        font-size: 2.8rem;
    }
    
    .hero-subtitle-top {
        font-size: 1.0rem;
    }
    
    .main-logo {
        max-width: 250px;
    }
    
    .product-main-img {
        max-width: 400px;
        height: 200px;
    }
    
    .method-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .problem-content,
    .solution-content,
    .guarantee-content {
        flex-direction: row;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .price-comparison {
        flex-direction: row;
        justify-content: center;
    }
    
    .payment-methods {
        gap: 30px;
    }
}

/* Responsive Design - Desktop */
@media (min-width: 1024px) {
    .container {
        max-width: 1000px;
    }
    
    .hero-title-top {
        font-size: 3.2rem;
    }
    
    .hero-subtitle-top {
        font-size: 1.3rem;
    }
    
    .main-logo {
        max-width: 300px;
    }
    
    .product-main-img {
        max-width: 500px;
        height: 300px;
    }
    
    .method-features {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .bonus-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cta-button {
        width: auto;
        min-width: 300px;
    }
}

/* Performance Optimizations */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Remove all animations and transitions for mobile performance */
@media (max-width: 767px) {
    * {
        transition: none !important;
        animation: none !important;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .cta-button,
    .footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
}

