* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: linear-gradient(to bottom right, #0f172a, #581c87, #0f172a);
    color: #ffffff;
    line-height: 1.6;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(88, 28, 135, 0.3) 0%, rgba(236, 72, 153, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.6);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height:500px ;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Problems Section */
.problems {
    padding: 80px 20px;
    background: rgba(30, 27, 75, 0.5);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.problem-card {
    background: rgba(51, 65, 85, 0.9);
    border: 1px solid rgba(168, 85, 247, 0.6);
    padding: 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.problem-card:hover {
    border-color: rgba(168, 85, 247, 1);
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.3);
}

.problem-card p {
    font-size: 1.1rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Benefits Section */
.benefits {
    padding: 80px 20px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: rgba(51, 65, 85, 0.9);
    border: 1px solid rgba(168, 85, 247, 0.6);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: rgba(168, 85, 247, 1);
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.3);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Bonuses Section */
.bonuses {
    padding: 80px 20px;
    background: rgba(30, 27, 75, 0.5);
}

.bonuses-intro {
    text-align: center;
    margin-bottom: 50px;
}

.bonuses-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.bonuses-intro p {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-weight: 700;
}

.bonuses-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #c084fc;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.bonus-card {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.5) 0%, rgba(236, 72, 153, 0.5) 100%);
    border: 1px solid rgba(168, 85, 247, 0.7);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.bonus-card:hover {
    border-color: rgba(168, 85, 247, 1);
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.4);
}

.bonus-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    background: rgba(51, 65, 85, 0.5);
}

.bonus-content {
    padding: 16px;
}

.bonus-number {
    font-size: 0.75rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    margin-bottom: 5px;
}

.bonus-card h4 {
    font-size: 0.95rem;
    margin-bottom: 8px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.bonus-card p {
    font-size: 0.8rem;
    color: #ffffff;
    margin-bottom: 8px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    font-weight: 500;
}

.bonus-value {
    font-size: 1rem;
    font-weight: 700;
    color: #c084fc;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 20px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-items: center;
}

.testimonial-card {
    width: 100%;
    max-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.4);
}

.testimonial-card img {
    width: 100%;
    height: auto;
    display: block;
}

.stars {
    display: none;
}

.testimonial-text {
    display: none;
}

.testimonial-author {
    display: none;
}

/* Guarantee Section */
.guarantee {
    padding: 80px 20px;
    background: rgba(30, 27, 75, 0.5);
}

.guarantee-box {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.4) 0%, rgba(236, 72, 153, 0.4) 100%);
    border: 1px solid rgba(168, 85, 247, 0.7);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
}

.guarantee-box h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.guarantee-box p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Urgency Section */
.urgency {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(127, 29, 29, 0.3) 0%, rgba(236, 72, 153, 0.1) 100%);
}

.urgency-content {
    text-align: center;
}

.urgency-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.countdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.countdown-item {
    background: rgba(51, 65, 85, 0.9);
    border: 1px solid rgba(168, 85, 247, 0.6);
    padding: 20px;
    border-radius: 8px;
}

.countdown-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f87171;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.countdown-label {
    font-size: 0.9rem;
    color: #c084fc;
    margin-top: 10px;
}

/* FAQ Section */
.faq {
    padding: 80px 20px;
}

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

.faq-item {
    background: rgba(51, 65, 85, 0.9);
    border: 1px solid rgba(168, 85, 247, 0.6);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(51, 65, 85, 1);
}

.faq-answer {
    padding: 20px;
    border-top: 1px solid rgba(168, 85, 247, 0.3);
    display: none;
    color: #ffffff;
}

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

.faq-toggle {
    transition: transform 0.3s ease;
}

.faq-toggle.active {
    transform: rotate(180deg);
}

/* Final CTA Section */
.final-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.final-cta p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.final-cta .cta-button {
    background: #ffffff;
    color: #a855f7;
    font-weight: 700;
}

.final-cta .cta-button:hover {
    background: #f3f4f6;
}

/* Footer */
footer {
    background: rgba(15, 23, 42, 0.9);
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid rgba(168, 85, 247, 0.3);
    font-size: 0.9rem;
    color: #9ca3af;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .countdown {
        grid-template-columns: repeat(3, 1fr);
    }
}