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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #1a0b2e;
    background-color: #faf8fc;
}

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

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2d1b69 0%, #1a0b2e 50%, #0f0520 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(138, 43, 226, 0.2) 0%, transparent 70%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 10;
    padding: 80px 0;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

@media (min-width: 1024px) {
    .hero-content {
        text-align: left;
    }
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.highlight {
    color: #ffd700;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #e5e5e5;
    margin-bottom: 32px;
    font-weight: 300;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #ffd700;
    color: #1a0b2e;
    font-weight: 700;
    font-size: 1.125rem;
    padding: 20px 32px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse-glow 2s ease-in-out infinite;
}

.cta-button:hover {
    background-color: #ffed4e;
    transform: translateY(-2px);
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
    }
}

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

@media (min-width: 1024px) {
    .hero-image {
        justify-content: flex-end;
    }
}

.image-wrapper {
    position: relative;
}

.image-wrapper::before {
    content: '';
    position: absolute;
    inset: -16px;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    border-radius: 12px;
    filter: blur(40px);
    opacity: 0.5;
    z-index: -1;
}

.image-wrapper img {
    width: 256px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

@media (min-width: 768px) {
    .image-wrapper img {
        width: 320px;
    }
}

@media (min-width: 1024px) {
    .image-wrapper img {
        width: 384px;
    }
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background-color: #faf8fc;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    color: #1a0b2e;
    font-family: 'Poppins', sans-serif;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.benefit-card {
    background: #ffffff;
    padding: 32px 24px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e8e1f0;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
    display: inline-flex;
    padding: 16px;
    border-radius: 50%;
    background-color: rgba(124, 58, 237, 0.1);
    margin-bottom: 16px;
}

.icon-wrapper svg {
    color: #7c3aed;
}

.benefit-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a0b2e;
}

.benefit-card p {
    font-size: 0.875rem;
    color: #6b5a7c;
}

/* Product Section */
.product-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #faf8fc 0%, #f5f1f9 100%);
}

.product-intro {
    max-width: 800px;
    margin: 0 auto 48px;
    text-align: center;
}

.product-intro p {
    font-size: 1.125rem;
    color: #6b5a7c;
}

.methods-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .methods-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.method-card {
    background: #ffffff;
    padding: 24px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s ease;
    border: 1px solid #e8e1f0;
}

.method-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.method-number {
    background-color: #ffd700;
    color: #1a0b2e;
    font-weight: 700;
    font-size: 1.125rem;
    padding: 8px 16px;
    border-radius: 6px;
    flex-shrink: 0;
}

.method-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #1a0b2e;
}

.method-content p {
    font-size: 0.875rem;
    color: #6b5a7c;
}

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

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: #ffffff;
    padding: 32px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #e8e1f0;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stars {
    color: #ffd700;
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.testimonial-text {
    font-style: italic;
    color: #1a0b2e;
    margin-bottom: 16px;
}

.testimonial-author {
    font-weight: 600;
    color: #1a0b2e;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f5f1f9 0%, #faf8fc 100%);
}

.pricing-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-header p {
    font-size: 1.125rem;
    color: #6b5a7c;
}

.pricing-card {
    background: #ffffff;
    padding: 48px 32px;
    border-radius: 8px;
    position: relative;
    border: 1px solid #e8e1f0;
}

.badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #7c3aed;
    color: #ffffff;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 0 8px 0 8px;
    font-size: 0.875rem;
}

.price-wrapper {
    text-align: center;
    margin-bottom: 32px;
}

.old-price {
    color: #6b5a7c;
    text-decoration: line-through;
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.current-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.price-label {
    font-size: 0.875rem;
    color: #6b5a7c;
}

.price {
    font-size: 3rem;
    font-weight: 900;
    color: #7c3aed;
    font-family: 'Poppins', sans-serif;
}

.features-list {
    list-style: none;
    margin-bottom: 32px;
}

.features-list li {
    padding: 12px 0;
    color: #1a0b2e;
    display: flex;
    align-items: center;
    gap: 12px;
}

.buy-button {
    width: 100%;
    background-color: #ffd700;
    color: #1a0b2e;
    font-weight: 700;
    font-size: 1.25rem;
    padding: 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse-glow 2s ease-in-out infinite;
}

.buy-button:hover {
    background-color: #ffed4e;
    transform: translateY(-2px);
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    font-size: 0.875rem;
    color: #6b5a7c;
}

.guarantee svg {
    color: #7c3aed;
}

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

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

.faq-item {
    background: #ffffff;
    border: 1px solid #e8e1f0;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a0b2e;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #faf8fc;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #7c3aed;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: #6b5a7c;
}

/* Footer */
.footer {
    padding: 40px 0;
    background-color: #1a0b2e;
    text-align: center;
}

.footer p {
    color: #e5e5e5;
}

/* Scroll behavior */
html {
    scroll-behavior: smooth;
}