:root {
    --primary-color: #2e7d32;
    /* Deep Herbal Green */
    --secondary-color: #558b2f;
    /* Light Olive Green */
    --accent-color: #ffca28;
    /* Amber Gold */
    --accent-hover: #ffb300;
    --text-color: #37474f;
    /* Blue Grey for softer text */
    --bg-light: #f1f8e9;
    /* Very light green tint */
    --white: #ffffff;
    --radius: 16px;
    --shadow-soft: 0 10px 30px rgba(46, 125, 50, 0.08);
    --shadow-hover: 0 20px 40px rgba(46, 125, 50, 0.15);
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--bg-light);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

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

.section {
    padding: 100px 0;
    position: relative;
}

/* Helper Classes */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-20 {
    margin-top: 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 20px 40px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: #3e2723;
    font-weight: 800;
    text-decoration: none;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.4);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: 0.3s;
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(255, 193, 7, 0.6);
}

.btn:hover::after {
    opacity: 1;
}

/* Hero Section */
.hero {
    background: linear-gradient(180deg, #f1f8e9 0%, #ffffff 100%);
    padding: 100px 0 140px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.1) 0%, rgba(76, 175, 80, 0) 70%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 50px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 202, 40, 0.1) 0%, rgba(255, 202, 40, 0) 70%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
}

.hero h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #1b5e20, #43a047);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 5px 15px rgba(76, 175, 80, 0.15);
    position: relative;
    z-index: 1;
    line-height: 1.15;
}

.hero p {
    font-size: 1.4rem;
    color: #546e7a;
    margin-bottom: 3.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

.hero-image img {
    border-radius: var(--radius);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    /* Softer, deeper shadow */
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hero-image img:hover {
    transform: perspective(1000px) rotateX(2deg) scale(1.02);
}

/* Feature Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.benefit-card {
    background: var(--white);
    padding: 50px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card h3 {
    margin: 25px 0 15px;
    font-size: 1.5rem;
}

.benefit-card p {
    color: #78909c;
    font-size: 1rem;
    line-height: 1.6;
}

/* Bonuses */
.bonus-card {
    padding: 0;
    overflow: hidden;
    text-align: left;
}

.bonus-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bonus-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bonus-card:hover .bonus-image img {
    transform: scale(1.1);
}

.bonus-content {
    padding: 30px;
}

.bonus-tag {
    display: inline-block;
    background-color: #e8f5e9;
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(135deg, #f1f8e9 0%, #dcedc8 100%);
    clip-path: polygon(0 50px, 100% 0, 100% 100%, 0 100%);
    /* Adds clear separation */
    padding-top: 150px;
    margin-top: -50px;
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 60px;
    align-items: center;
}

.pricing-card {
    background: var(--white);
    padding: 60px 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    width: 380px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card.regular {
    border: 1px solid #e0e0e0;
    z-index: 1;
}

.pricing-card.regular h3 {
    color: #555;
}

.pricing-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.08);
    z-index: 2;
    box-shadow: 0 30px 60px rgba(46, 125, 50, 0.25);
}

.pricing-card.featured:hover {
    transform: scale(1.1);
}

.best-value-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--accent-color);
    color: #3e2723;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-tag {
    font-size: 4rem;
    color: var(--primary-color);
    font-weight: 800;
    margin: 20px 0;
    font-family: var(--font-heading);
    letter-spacing: -2px;
}

.price-small {
    font-size: 1.1rem;
    color: #90a4ae;
    font-weight: normal;
    text-decoration: line-through;
    margin-right: 10px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 40px;
}

.pricing-features li {
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #546e7a;
    display: flex;
    align-items: flex-start;
}

.pricing-features li i {
    color: var(--secondary-color);
    margin-right: 15px;
    margin-top: 5px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.featured .pricing-features li i {
    color: var(--primary-color);
}

.pricing-features li strong {
    color: var(--text-color);
    font-weight: 600;
}

.condition-text {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #d32f2f;
    font-weight: 600;
    background: rgba(211, 47, 47, 0.05);
    padding: 8px;
    border-radius: 8px;
    display: inline-block;
}

/* FAQ Accordion */
.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    color: var(--text-color);
    font-size: 1.1rem;
}

.faq-question:hover {
    background-color: #fbfbfb;
    color: var(--primary-color);
}

.faq-question i {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #fff;
    color: #607d8b;
    line-height: 1.8;
}

.faq-answer.active {
    padding: 0 30px 30px 30px;
    max-height: 600px;
}

.faq-question.active {
    background-color: #f1f8e9;
    color: var(--primary-color);
}

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

/* Content Split Section */
.content-split {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.content-image {
    flex: 1;
    min-width: 300px;
    max-width: 550px;
}

.content-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.content-text {
    flex: 1;
    min-width: 300px;
}

.content-text ul {
    list-style: none;
    margin-top: 30px;
    font-size: 1.15rem;
}

/* Footer */
footer {
    background-color: #1b5e20;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: 60px 0;
    font-size: 0.95rem;
    margin-top: 0;
}

/* Responsive */

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .hero {
        padding: 60px 0 80px;
    }

    .hero::before,
    .hero::after {
        opacity: 0.5;
        transform: scale(0.7);
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }

    .hero-image img {
        width: 100% !important;
        max-width: 400px !important;
    }

    .content-split {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .content-text ul {
        text-align: left;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .pricing-container {
        gap: 30px;
    }

    .pricing-card {
        width: 100%;
        max-width: 400px;
        padding: 40px 25px;
    }

    .pricing-card.featured {
        transform: scale(1);
        margin: 0;
        border-width: 2px;
    }

    .price-tag {
        font-size: 3rem;
    }

    .pricing-section {
        clip-path: none;
        padding-top: 80px;
        margin-top: 0;
    }

    .btn {
        width: 100%;
        padding: 18px 20px;
        font-size: 1rem;
        white-space: normal;
        line-height: 1.4;
    }

    .container {
        padding: 0 20px;
    }
}

/* Video Player Styles */
:root {
    --video-progress-color: var(--primary-color, #4CAF50);
    --video-bg-color: #000;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 30px auto;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.video-wrapper video {
    width: 100%;
    display: block;
    /* border-radius: 12px; Optional, wrapper already clips */
}

/* Overlay "Click to Listen" */
.video-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: opacity 0.5s ease;
    animation: pulse 2s infinite;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.video-overlay i {
    font-size: 1.1rem;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* Custom Progress Bar */
.progress-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 10;
    pointer-events: none;
}

.progress-fill {
    height: 100%;
    background: var(--primary-color);
    width: 0%;
    box-shadow: 0 0 10px var(--primary-color);
    transition: width 0.1s linear;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .video-overlay {
        top: 15px;
        right: 15px;
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}