:root {
    --bg-color: #FAFAF9;
    --surface-color: #FFFFFF;
    --text-color: #1C1917;
    --text-muted: #57534E;
    --primary-color: #046C4E;
    --primary-hover: #065F46;
    --accent-color: #D97706;
    --border-color: #E7E5E4;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    --container-width: 1100px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 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;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.text-center {
    text-align: center;
}

.highlight {
    color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-heading);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    background-color: var(--text-color);
    color: white;
}

.btn-sm:hover {
    background-color: var(--primary-color);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    width: 100%;
    max-width: 400px;
}

/* Header */
.top-banner {
    background-color: #EF4444;
    color: white;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(250, 250, 249, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0 0 1rem 0;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

header.scrolled {
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    padding: 0.75rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

/* Hero */
.hero {
    padding: 8rem 0 4rem;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.03em;
}

.hero-sub {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
    max-width: 500px;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: #E6F4F1;
    /* Light green tint */
    color: var(--primary-color);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.guarantee-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: var(--spacing-sm);
}

.guarantee-text i {
    width: 16px;
    height: 16px;
}

.image-placeholder {
    width: 100%;
    height: 500px;
    background-color: #E5E7EB;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
}

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

.image-placeholder:hover img {
    transform: scale(1.05);
}

/* Pain / Opportunity */
.pain-opportunity {
    padding: var(--spacing-xl) 0;
    background-color: var(--surface-color);
}

.pain-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--spacing-md);
    align-items: center;
    text-align: center;
}

.pain-item h3 {
    color: #EF4444;
    margin-bottom: 0.5rem;
}

.opportunity-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.arrow-icon {
    color: var(--text-muted);
}

/* Promise */
.promise {
    padding: var(--spacing-xl) 0;
    text-align: center;
    background-color: var(--primary-color);
    color: white;
}

.promise h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.promise-sub {
    font-size: 1.5rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.video-wrapper {
    max-width: 800px;
    margin: var(--spacing-lg) auto 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
    background: #1C1917;
    /* Dark background for video area */
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #1C1917, #292524);
    color: white;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    background: linear-gradient(45deg, #292524, #1C1917);
}

.video-placeholder i {
    width: 64px;
    height: 64px;
    opacity: 0.8;
}

.video-placeholder span {
    font-weight: 500;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

.demo-video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mechanism */
.mechanism {
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.mechanism-content {
    max-width: 800px;
    margin: 0 auto;
}

.mechanism h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.label {
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    display: block;
    margin-bottom: var(--spacing-xs);
}

/* Value Prop */
.value-prop {
    padding: var(--spacing-lg) 0;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.card {
    background: var(--surface-color);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.card .icon {
    color: var(--primary-color);
    width: 32px;
    height: 32px;
    margin-bottom: var(--spacing-sm);
}

/* How it Works */
.how-it-works {
    padding: var(--spacing-xl) 0;
    background-color: var(--surface-color);
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    font-size: 2.5rem;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    font-size: 4rem;
    font-weight: 700;
    color: rgba(4, 108, 78, 0.1);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.step h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 0.5rem;
}

.step p {
    position: relative;
    z-index: 1;
    color: var(--text-muted);
}

/* Audience */
.audience {
    padding: var(--spacing-xl) 0;
}

.audience h2 {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.check-list {
    max-width: 600px;
    margin: 0 auto;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.check-list i {
    color: var(--primary-color);
    flex-shrink: 0;
}

/* Testimonials */
.testimonials {
    padding: var(--spacing-xl) 0;
    background-color: #F0FDF4;
    /* Very light green */
}

.testimonials h2 {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.testimonial-card {
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.testimonial-card cite {
    font-weight: 600;
    color: var(--text-color);
    font-style: normal;
}

/* Offer */
.offer {
    padding: var(--spacing-xl) 0;
}

.offer-box {
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.offer-tag {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-bottom-left-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.9rem;
}

.offer-includes {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin: var(--spacing-md) 0;
    text-align: left;
}

.include-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--bg-color);
    padding: 1rem;
    border-radius: var(--radius-sm);
    flex: 1;
}

.include-item i {
    color: var(--primary-color);
    width: 24px;
    height: 24px;
}

.bonuses {
    margin: var(--spacing-md) 0;
    text-align: left;
    background: #FFFBEB;
    /* Light yellow/amber */
    padding: 1.5rem;
    border-radius: var(--radius-sm);
}

.bonuses h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.bonuses ul li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.bonuses i {
    color: var(--accent-color);
    width: 18px;
}

.price-section {
    margin: var(--spacing-md) 0;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
}

.current-price {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.currency {
    font-size: 2rem;
    vertical-align: super;
}

.cents {
    font-size: 2rem;
}

.payment-info {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Guarantee */
.guarantee {
    padding: var(--spacing-lg) 0;
    background-color: var(--bg-color);
}

.guarantee-box {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.guarantee-icon {
    width: 64px;
    height: 64px;
    color: var(--primary-color);
    flex-shrink: 0;
}

/* FAQ */
.faq {
    padding: var(--spacing-xl) 0;
    background: white;
}

.faq h2 {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.accordion {
    max-width: 700px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid var(--border-color);
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 1.5rem 0;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-bottom: 0;
}

.accordion-content p {
    padding-bottom: 1.5rem;
    color: var(--text-muted);
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    /* Adjust as needed */
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

/* Final CTA */
.final-cta {
    padding: var(--spacing-xl) 0;
    background-color: #F0FDF4;
}

.final-cta h2 {
    margin-bottom: var(--spacing-md);
    font-size: 2.5rem;
}

/* Footer */
footer {
    padding: var(--spacing-lg) 0;
    text-align: center;
    background-color: var(--text-color);
    color: white;
}

.footer .logo {
    color: white;
    margin-bottom: 1rem;
    display: block;
}

.disclaimer {
    font-size: 0.8rem;
    color: #A8A29E;
    margin-top: 2rem;
}

/* Social Proof Notifications */
.notification-container {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 9999;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notification-toast {
    background: white;
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 16px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid var(--primary-color);
    pointer-events: auto;
    min-width: 280px;
    max-width: 320px;
}

.notification-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.notification-content p {
    font-size: 0.9rem;
    color: var(--text-color);
    margin: 0;
    font-weight: 600;
    line-height: 1.2;
}

.notification-content span {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
    margin-top: 2px;
}

.notification-icon {
    color: var(--primary-color);
    background: #ECFDF5;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

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

    .arrow-icon {
        transform: rotate(90deg);
        margin: 1rem 0;
    }

    .grid-3,
    .steps,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .offer-includes {
        flex-direction: column;
    }

    .guarantee-box {
        flex-direction: column;
        text-align: center;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Image Styles */
.hero-img-real {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: auto;
    object-fit: cover;
    animation: float 6s ease-in-out infinite;
}

.offer-img-real {
    max-width: 100%;
    width: 350px;
    margin: 0 auto var(--spacing-sm);
    display: block;
    border-radius: var(--radius-sm);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}