:root {
    /* Color Palette - Professional/Sober */
    --primary-color: #0F3D3E;
    /* Deep Teal/Forest - Authority */
    --primary-dark: #0A2829;
    /* Darker variant */
    --secondary-color: #F4F6F8;
    /* Clean Grey/White - Institutional background */
    --accent-color: #D32F2F;
    /* Strong Red for alerts/pain points (but less used) or Gold/Orange for CTA? Let's stick to a strong professional contrast */
    --cta-color: #D84315;
    /* Burnt Orange for CTAs */

    --text-color: #1A202C;
    /* Very dark grey for text */
    --light-text-color: #4A5568;
    /* Medium grey */

    --bg-color: #FFFFFF;
    --section-bg-alt: #F7FAFC;
    --white: #FFFFFF;

    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    /* Subtle, professional shadow */

    /* Design Tokens */
    --border-radius: 4px;
    /* Reduced for professional look */

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

overflow-x: hidden;
scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.7;
    /* Better readability */
    background-color: var(--bg-color);
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    text-align: center;
    cursor: pointer;
    border: none;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--cta-color);
    /* Changed to CTA color specifically */
    color: var(--white);
    font-size: 1.125rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: #BF360C;
    /* Darker burnt orange */
    transform: translateY(-1px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.btn-large {
    font-size: 1.25rem;
    padding: 1.25rem 3rem;
    width: 100%;
    max-width: 400px;
}

/* 1. Hero Section */
.hero-section {
    background-color: var(--white);
    padding: 5rem 0 3rem 0;
    text-align: center;
    border-bottom: 1px solid #E2E8F0;
}

.hero-container {
    display: block;
    /* Stacked for center alignment as per sober design */
    max-width: 900px;
    margin: 0 auto;
}

.hero-text {
    max-width: 100%;
    margin: 0 auto;
}

.hero-headline {
    font-size: 2.75rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-subheadline {
    font-size: 1.25rem;
    color: var(--light-text-color);
    margin-bottom: 0;
    /* No margin bottom because next section is VSL */
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* 2. VSL Section (New) */
.vsl-section {
    padding: 3rem 0 5rem 0;
    background-color: var(--white);
    text-align: center;
}

.vsl-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    /* Reduced margin */
    color: var(--primary-color);
    font-weight: 700;
}

.vsl-description {
    max-width: 600px;
    margin: 0 auto 2rem auto;
    font-size: 1rem;
    color: var(--light-text-color);
    line-height: 1.5;
}

.vsl-wrapper {
    max-width: 340px;
    /* Constrained Mobile width for vertical video */
    margin: 0 auto;
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    border: 4px solid var(--primary-dark);
}

.vsl-container-new {
    width: 100%;
    background: #000;
}

.vsl-cta-wrapper {
    margin-top: 2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-headline {
        font-size: 2rem;
    }
}

/* 2. Pain Section */
.pain-section {
    padding: 6rem 0;
    /* Increased whitespace */
    background-color: var(--white);
}

.pain-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pain-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

.pain-item:hover {
    transform: translateY(-5px);
}

.pain-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.pain-conclusion {
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* 3. Enemy Section */
.enemy-section {
    background-color: var(--section-bg-alt);
    padding: 4rem 0;
    text-align: center;
}

.enemy-section .highlight {
    background-color: rgba(255, 112, 67, 0.1);
    color: #D84315;
    padding: 0 5px;
    border-radius: 4px;
    font-weight: 700;
}

.enemy-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* 4. Solution Section */
.solution-section {
    padding: 4rem 0;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.solution-title {
    color: var(--white);
}

.solution-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

/* 5. Benefits Section */
.benefits-section {
    padding: 4rem 0;
}

.benefits-list {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
}

.benefits-list li {
    background: var(--white);
    margin-bottom: 1rem;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.benefits-list li i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 1rem;
    min-width: 30px;
    text-align: center;
}

.benefits-list .highlight-benefit {
    background-color: var(--secondary-color);
    font-weight: 600;
    border: 2px solid var(--primary-color);
}

/* 7. Social Proof Section (Images) */
.social-proof-section {
    padding: 5rem 0;
    background-color: var(--section-bg-alt);
    text-align: center;
}

.social-proof-header {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonials-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-img {
    max-width: 320px;
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid #E2E8F0;
    transition: transform 0.3s ease;
}

.testimonial-img:hover {
    transform: translateY(-5px);
}


/* 7. Transformation Section */
.transformation-section {
    padding: 4rem 0;
}

.transformation-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.transformation-card {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.transformation-card.before {
    background-color: #FFEBEE;
    /* Light Red */
    border-left: 5px solid #EF5350;
}

.transformation-card.after {
    background-color: #E8F5E9;
    /* Light Green */
    border-left: 5px solid #66BB6A;
}

.transformation-card h3 {
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.transformation-card ul {
    list-style: none;
}

.transformation-card ul li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.transformation-card ul li i {
    margin-right: 0.8rem;
}

.transformation-card.before ul li i {
    color: #EF5350;
}

.transformation-card.after ul li i {
    color: #66BB6A;
}

.arrow-icon {
    font-size: 2rem;
    color: var(--light-text-color);
}

/* 8. Access Section */
.access-section {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 4rem 0;
}

.access-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    flex-wrap: wrap;
    text-align: center;
}

.access-content .access-icon {
    font-size: 4rem;
    color: var(--secondary-color);
}

.access-content p {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* 9. Final CTA */
.final-cta-section {
    padding: 5rem 0;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, var(--secondary-color) 100%);
}

.final-headline {
    max-width: 800px;
    margin: 0 auto 3rem auto;
    font-size: 1.8rem;
    color: var(--primary-dark);
}

/* Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-headline {
        font-size: 2rem;
    }

    .transformation-grid {
        flex-direction: column;
    }

    .arrow-icon {
        transform: rotate(90deg);
        margin: 1rem 0;
    }

    .access-content {
        flex-direction: column;
    }
}

/* Offer CTA */
.offer-cta {
    margin-top: 2rem;
}

/* Removing old VSL Section Styles since they are replaced */


/* 2. Offer Section Styles */
.offer-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.offer-box {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.offer-title {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.offer-subtitle {
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.offer-includes {
    text-align: left;
    margin-bottom: 3rem;
    background: var(--section-bg-alt);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.offer-includes h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.offer-includes ul {
    list-style: none;
}

.offer-includes li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.offer-includes li i {
    color: var(--primary-color);
    margin-right: 0.8rem;
    min-width: 20px;
}

/* Price Styling */
.price-display {
    margin-top: 2rem;
}

.price-anchor {
    font-size: 0.95rem;
    color: var(--light-text-color);
    margin-bottom: 1rem;
    font-style: italic;
}

.price-tag {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0.5rem;
}

.price-tag .currency {
    font-size: 1.5rem;
    margin-top: 1rem;
    font-weight: 600;
}

.price-complement {
    font-size: 1rem;
    color: var(--light-text-color);
    font-weight: 500;
}

/* 4. Guarantee Section Styles */
.guarantee-section {
    padding: 3rem 0;
    background-color: var(--section-bg-alt);
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.guarantee-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.guarantee-icon {
    font-size: 3rem;
    color: var(--primary-color);
}

.guarantee-text h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.guarantee-text p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* CTA Microcopy */
.cta-microcopy {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--light-text-color);
    font-weight: 500;
}

@media (max-width: 768px) {
    .guarantee-content {
        flex-direction: column;
        text-align: center;
    }
}