:root {
    --primary-color: #4A8B7C;
    --primary-dark: #3a6f62;
    --secondary-color: #E8F5EE;
    --text-color: #1F2937;
    --text-light: #6B7280;
    --bg-color: #F8FAF9;
    --white: #ffffff;
    --footer-bg: #0F172A;
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --hover-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
}

h1,
h2,
h3 {
    font-weight: 700;
    color: #2D3748;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    margin-top: -2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 1.1rem;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 139, 124, 0.3);
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
}

.btn-white:hover {
    background-color: #f0fdfa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid #D1D5DB;
}

.btn-outline:hover {
    border-color: var(--text-color);
    background-color: #f9fafb;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(74, 139, 124, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(74, 139, 124, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(74, 139, 124, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Hero Section */
.hero {
    padding: 6rem 0 4rem;
    /* Added padding top for badge */
    text-align: center;
    background-color: #F8FAF9;
    background-image: url('abstract-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Subtle dot pattern to mimic texture */
    position: relative;
}

/* Optional: Add a subtle overlay if the pattern is too strong, or use a pseudo-element for the "curve" effect in the print */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #2F5C50;
    /* Darker Green */
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #556963;
    /* Slightly green-tinted gray */
    margin-bottom: 2.5rem;
}

/* VSL Player */
.vsl-container {
    max-width: 400px;
    margin: 0 auto 2.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.video-wrapper {
    position: relative;
    padding-bottom: 177.78%;
    /* 9:16 Aspect Ratio (Vertical) */
    height: 0;
    background: transparent;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.unmute-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: opacity 0.3s;
    z-index: 10;
}

.unmute-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.unmute-button {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: pulse 2s infinite;
}

.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 3rem;
}

.cta-guarantee {
    font-size: 0.9rem;
    color: var(--text-light);
}

.guarantee-badge-small {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #f3f4f6;
    padding: 1rem 2rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.guarantee-badge-small .badge-icon {
    font-size: 2rem;
    color: var(--primary-color);
}

.guarantee-badge-small .badge-text {
    text-align: left;
    font-size: 0.9rem;
    color: var(--text-color);
}

/* Pain Points Section */
.pain-points {
    padding: 5rem 0;
    background-color: #F8FAFC;
}

.pain-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    text-align: center;
    transition: transform 0.3s ease;
}

.pain-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.pain-card .icon {
    background: #E8F5EE;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.pain-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.pain-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Product Showcase Section */
.product-showcase {
    padding: 5rem 0;
    background-color: white;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.product-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.product-content .section-title {
    color: #2F5C50;
}

.product-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.product-description .highlight {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-content .section-title {
        text-align: center !important;
    }

    .product-content .section-cta {
        text-align: center !important;
    }

    .product-image {
        order: -1;
        /* Image always on top in mobile */
    }
}

/* Features Section */
.features {
    padding: 5rem 0;
    background-color: var(--primary-color);
    color: white;
}

.features .section-title {
    color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.feature-card .icon {
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.feature-card h3 {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: white;
}

.feature-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Content Preview Section */
.content-preview {
    padding: 5rem 0;
    background-color: #F9FAFB;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.preview-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    border: 1px solid #E5E7EB;
}

.preview-card h3 {
    color: var(--primary-dark);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

ul.check-list,
ul.check-list-circle {
    list-style: none;
}

ul.check-list li,
ul.check-list-circle li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: #4B5563;
}

ul.check-list li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1;
}

ul.check-list-circle li::before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Audience Section */
.audience {
    padding: 5rem 0;
    background-color: white;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.audience-card {
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid;
}

.audience-card.for-who {
    background-color: #F0FDF4;
    /* Light green bg */
    border-color: #BBF7D0;
}

.audience-card.not-for-who {
    background-color: #F8FAFC;
    /* Light gray bg */
    border-color: #E2E8F0;
}

.audience-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.audience-header .icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.for-who .audience-header .icon {
    start: #DCFCE7;
    color: #166534;
}

.for-who h3 {
    color: #166534;
}

.not-for-who .audience-header .icon {
    start: #F1F5F9;
    color: #475569;
}

.not-for-who h3 {
    color: #475569;
}

ul.check-list-green,
ul.cross-list {
    list-style: none;
}

ul.check-list-green li,
ul.cross-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    color: #374151;
}

ul.check-list-green li::before {
    content: "✓";
    color: #16A34A;
    position: absolute;
    left: 0;
    font-weight: bold;
}

ul.cross-list li::before {
    content: "•";
    /* Dot for neutral */
    color: #94A3B8;
    position: absolute;
    left: 0;
    font-weight: bold;
}


/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background-color: #F9FAFB;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    border: 1px solid #E5E7EB;
    position: relative;
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.pricing-card.premium {
    border: 2px solid var(--primary-color);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 0.5rem;
}

.plan-desc {
    color: #6B7280;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1F2937;
    margin-bottom: 2rem;
}

.price .period {
    font-size: 1rem;
    font-weight: 400;
    color: #6B7280;
}

ul.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

ul.pricing-features li {
    margin-bottom: 0.8rem;
    padding-left: 1.8rem;
    position: relative;
    color: #4B5563;
}

ul.pricing-features li::before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.pricing-card .btn {
    width: 100%;
}

/* Footer */
.footer {
    background-color: var(--footer-bg);
    color: white;
    padding: 4rem 0 2rem;
    text-align: center;
}

.footer-note {
    font-size: 0.9rem;
    color: #94A3B8;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.footer-note strong {
    color: #E2E8F0;
}

.copyright {
    border-top: 1px solid #1E293B;
    padding-top: 2rem;
    color: #64748B;
    font-size: 0.9rem;
}

/* Expert Section */
.expert-section {
    padding: 5rem 0;
    background-color: var(--secondary-color);
}

.expert-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.expert-image img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 4px solid white;
}

.expert-content {
    width: 100%;
}

.expert-name {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.expert-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.expert-bio p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    font-size: 1.05rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.1rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .footer {
        padding: 3rem 1rem 2rem;
    }
}