:root {
    --primary-color: #00ff88; /* Neon Green */
    --secondary-color: #00ccff; /* Neon Blue */
    --bg-dark: #0a0a0a;
    --bg-card: #161616;
    --text-light: #ffffff;
    --text-gray: #b3b3b3;
    --accent-red: #ff4d4d;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Roboto', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.text-red {
    color: var(--accent-red);
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary-color), #00cc88);
    color: #000;
    font-weight: 800;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.1rem;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.6);
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(0, 255, 136, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0); }
}

/* Hero Section */
.hero {
    position: relative;
    padding: 80px 0 100px;
    text-align: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero .subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-bg-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, rgba(0,0,0,0) 70%);
    z-index: 1;
    pointer-events: none;
}

/* Pain Section */
.pain-section {
    padding: 80px 0;
    background-color: #0f0f0f;
    text-align: center;
}

.pain-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.pain-item {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

.pain-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-red);
}

.pain-item i {
    font-size: 2.5rem;
    color: var(--accent-red);
    margin-bottom: 20px;
}

.pain-item p {
    font-size: 1.1rem;
    color: var(--text-gray);
}

.pain-conclusion {
    font-size: 1.3rem;
    margin-top: 30px;
}

/* Method Section */
.method-section {
    padding: 80px 0;
    text-align: center;
}

.method-section h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--secondary-color);
}

.method-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}

.step {
    flex: 1;
    min-width: 250px;
    position: relative;
}

.step .icon-box {
    width: 80px;
    height: 80px;
    background: rgba(0, 204, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 1px solid var(--secondary-color);
}

.step .icon-box i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.step h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.step p {
    color: var(--text-gray);
}

/* Deliverables Section */
.deliverables-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #111 100%);
}

.deliverables-box {
    background: var(--bg-card);
    border: 1px solid #333;
    border-radius: 20px;
    padding: 50px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.deliverables-box h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2rem;
}

.deliverables-list {
    list-style: none;
    margin-bottom: 40px;
}

.deliverables-list li {
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.deliverables-list li i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.2rem;
}

.micro-bullets {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    border-top: 1px solid #333;
    padding-top: 30px;
}

.micro-bullets span {
    font-size: 0.9rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    text-align: center;
}

.testimonials-section h2 {
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 15px;
    text-align: left;
    border-left: 4px solid var(--primary-color);
}

.testimonial .quote {
    font-style: italic;
    margin-bottom: 20px;
    color: #ddd;
}

.testimonial .author strong {
    display: block;
    color: var(--primary-color);
}

.testimonial .author span {
    font-size: 0.85rem;
    color: #777;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background-color: #0f0f0f;
}

.benefits-section h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.benefit-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.benefit-card p {
    color: var(--text-gray);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #333;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px;
    text-align: left;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.faq-answer p {
    padding-bottom: 20px;
    color: var(--text-gray);
}

.faq-answer.active {
    max-height: 200px; /* Adjust as needed */
}

/* Guarantee Section */
.guarantee-section {
    padding: 60px 0;
    background: #111;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.guarantee-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.guarantee-icon i {
    font-size: 4rem;
    color: var(--primary-color);
}

.guarantee-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.guarantee-content p {
    color: var(--text-gray);
}

/* Offer Section */
.offer-section {
    padding: 100px 0;
    text-align: center;
}

.offer-card {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    padding: 60px 40px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 0 50px rgba(0, 255, 136, 0.15);
}

.offer-pre {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.price-container {
    margin-bottom: 20px;
}

.old-price {
    display: block;
    text-decoration: line-through;
    color: #666;
    font-size: 1.2rem;
}

.new-price {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-light);
}

.offer-justification {
    color: var(--primary-color);
    margin-bottom: 40px;
    font-weight: 600;
}

.big-cta {
    font-size: 1.3rem;
    padding: 25px 50px;
    width: 100%;
    max-width: 500px;
}

.cta-subtext {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #888;
}

.payment-methods {
    margin-top: 30px;
    font-size: 2rem;
    color: #555;
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Footer */
footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #222;
    color: #666;
    font-size: 0.9rem;
}

.footer-links {
    margin-top: 15px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    margin: 0 10px;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .guarantee-box {
        flex-direction: column;
        text-align: center;
    }
    
    .method-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .step {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .deliverables-box {
        padding: 30px 20px;
    }
    
    .new-price {
        font-size: 2.8rem;
    }
    
    .big-cta {
        padding: 20px 30px;
        font-size: 1.1rem;
    }
}
