:root {
    --primary-color: #8e44ad;
    /* Purple */
    --primary-hover: #9b59b6;
    --secondary-color: #2ecc71;
    /* Green */
    --text-color: #333333;
    /* Dark text for light bg */
    --text-muted: #666666;
    --bg-light: #ffffff;
    --bg-card: #f9f9f9;
    --bg-dark-accent: #f4f4f4;
    /* Light Grey instead of true dark */
    --bg-overlay: rgba(142, 68, 173, 0.4);
    --font-main: 'Sora', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    --spacing-container: 20px;
    --radius: 12px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-light);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--spacing-container);
}

/* --- Hero Section & Background Animation --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    /* Fallback */
    background: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
    /* Clean White/Grey */
    background: linear-gradient(to right bottom, #ffffff, #f0fdf4, #dcfce7);
    /* Fresh Mint/White Health Theme */
    overflow: hidden;
    color: var(--text-color);
    /* Dark text for light bg */
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.1;
    /* Very subtle texture if image is present */
    display: none;
    /* Hiding image to use pure CSS clean background for now, or uncomment if image exists */
}

/* 
.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
*/

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Removed dark gradient overlay */
    background: radial-gradient(circle at top right, rgba(46, 204, 113, 0.1), transparent 40%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
    padding-top: 80px;
    padding-bottom: 80px;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.badge {
    background: rgba(46, 204, 113, 0.15);
    color: var(--secondary-color);
    /* Green text */
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 25px;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #2c3e50;
    /* Dark slate */
}

.highlight {
    color: var(--primary-color);
    /* Purple highlight */
    font-style: italic;
    font-weight: 800;
}

.subheadline {
    font-size: 1.15rem;
    color: #555;
    /* Dark grey for readability */
    margin-bottom: 35px;
    font-weight: 400;
}

.hero-image img,
.hero-video {
    max-width: 100%;
    width: 100%;
    /* Ensure it fills container up to max-width */
    max-width: 600px;
    /* Limit video size in center view */
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.1));
    /* Softer shadow */
    border-radius: var(--radius);
    /* Consistent rounding */
    display: block;
    margin: 0 auto;
    /* Center image/video */
}

/* Price Card in Hero */
.price-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
    margin-bottom: 30px;
    display: inline-block;
    min-width: 250px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.price-from {
    font-size: 0.9rem;
    text-decoration: line-through;
    color: #888;
    margin-bottom: 5px;
}

.price-to {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin: 5px 0;
}

.price-to span {
    color: var(--primary-color);
    /* Purple for price emphasis */
    font-size: 1.8rem;
}

.price-note {
    font-size: 0.85rem;
    color: #666;
    font-weight: 600;
}

/* CTA Button */
.cta-button {
    background: var(--primary-color);
    color: #fff;
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(142, 68, 173, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(142, 68, 173, 0.5);
    background: var(--primary-hover);
}

.big-cta {
    font-size: 1.3rem;
    padding: 22px 40px;
}

.scarcity {
    margin-top: 15px;
    font-size: 0.8rem;
    color: #666;
    /* Darker for light bg */
    display: flex;
    align-items: center;
    justify-content: center;
    /* Centered under button */
    gap: 5px;
    justify-content: center;
    /* Already centered, but ensuring */
}

.scarcity::before {
    content: '🔥';
}

/* --- Sections --- */
.section {
    padding: 80px 0;
}

.dark-bg {
    background-color: var(--bg-dark-accent);
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
    text-transform: uppercase;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

/* Problem Grid */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.problem-item {
    background: var(--bg-card);
    padding: 30px;
    border-radius: var(--radius);
    border-left: 3px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    /* Center problem text */
}

.problem-item h3 {
    margin-bottom: 15px;
    color: var(--text-color);
    font-size: 1.3rem;
}

.problem-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Benefit List */
.benefit-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.benefit-list li {
    font-size: 1.1rem;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    color: var(--text-color);
}

.benefit-list li:last-child {
    margin-bottom: 0;
}

.check {
    color: var(--secondary-color);
    margin-right: 15px;
    font-weight: bold;
}

/* Method Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.step-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    position: relative;
    border: 1px solid #eee;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(142, 68, 173, 0.1);
    /* Purple tint */
    position: absolute;
    top: 10px;
    right: 20px;
}

.step-card h3 {
    margin: 20px 0 15px;
    color: var(--primary-color);
}

.step-card p {
    color: var(--text-muted);
}

/* Testimonials & Visual Placeholders */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 30px;
}

.testimonial {
    background: var(--bg-card);
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.visual-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #eee, #ddd);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #888;
    margin-bottom: 20px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.result-img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

/* Authority Section */
.authority {
    background: #fff;
    text-align: center;
}

.authority-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--primary-color);
}

.authority-content p {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.8;
}

/* Offer Box */
.offer-box {
    background: linear-gradient(to right, #f4f4f4, #ffffff);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--primary-color);
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(142, 68, 173, 0.15);
}

.bonus-text {
    color: var(--secondary-color);
    margin: 15px 0;
    font-size: 1.4rem;
    font-weight: 800;
}

.price-container {
    margin: 30px 0;
}

.price-old {
    color: #999;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.final-price {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.price-cash {
    color: #666;
    font-size: 0.9rem;
    font-weight: 600;
}

.footer-link {
    margin-top: 30px;
    font-size: 0.8rem;
    color: #666;
}

.footer-link a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* FAQ Section */
.faq-grid {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background: #fff;
    border-radius: var(--radius);
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #eee;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f9f9f9;
}

.faq-question .icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 300;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #fafafa;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: #666;
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* Approximate max height */
}

.faq-item.active .faq-question .icon {
    transform: rotate(45deg);
}

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* Pulse Animation for Button */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(142, 68, 173, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(142, 68, 173, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(142, 68, 173, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        /* Stack vertically */
        text-align: center;
        padding-top: 40px;
        padding-bottom: 60px;
        gap: 40px;
    }

    .hero-text {
        margin: 0 auto;
        order: 1;
        /* Keep text first usually, or change order if desired. Default is fine. */
    }

    .hero-image {
        display: block;
        /* Show image on mobile */
        order: 2;
        /* Image below text */
        max-width: 500px;
        margin: 0 auto;
    }

    h1 {
        font-size: 2.2rem;
    }

    .cta-button {
        width: 100%;
        /* Full width button on mobile */
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .price-to span {
        font-size: 1.5rem;
    }

    .offer-box {
        padding: 30px 20px;
    }

    .hero-content {
        gap: 30px;
    }

    h1 {
        font-size: 1.8rem;
        /* Smaller heading for mobile */
    }
}