/* ========================================
   CSS RESET & BASE STYLES
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --sage-green: #8A9A5B;
    --cream: #F5F5DC;
    --dark-grey: #333;
    --burnt-orange: #D17B47;
    --gold: #D4AF37;
    --white: #FFFFFF;
    --light-grey: #F9F9F9;
    --border-color: #E5E5E5;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--dark-grey);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--cream);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
}

/* ========================================
   TOP BAR (STICKY URGENCY)
======================================== */
.top-bar {
    background: linear-gradient(135deg, var(--burnt-orange), var(--gold));
    color: var(--white);
    padding: 12px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.urgency-text {
    text-align: center;
    font-size: 16px;
    font-weight: 400;
}

.countdown {
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(180deg, var(--cream) 0%, var(--light-grey) 100%);
    text-align: center;
    margin-top: 48px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-headline {
    font-size: 48px;
    color: var(--dark-grey);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subheadline {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
    font-weight: 300;
}

.product-showcase {
    margin: 40px 0;
}

.product-image {
    max-width: 350px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.pricing {
    margin: 30px 0;
}

.price-old {
    font-size: 24px;
    color: #999;
    text-decoration: line-through;
    margin-right: 15px;
}

.price-new {
    font-size: 42px;
    color: var(--burnt-orange);
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    cursor: pointer;
    text-align: center;
}

.primary-cta {
    background: linear-gradient(135deg, var(--burnt-orange), var(--gold));
    color: var(--white);
}

.primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.secondary-cta {
    background: var(--sage-green);
    color: var(--white);
}

.secondary-cta:hover {
    background: #7A8A4B;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.trust-badge {
    margin-top: 30px;
}

.stars {
    color: var(--gold);
    font-size: 24px;
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.trust-badge p {
    color: #666;
    font-size: 16px;
}

/* ========================================
   PROBLEM SECTION
======================================== */
.problem-section {
    padding: 80px 0;
    background-color: var(--white);
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--dark-grey);
}

.section-intro {
    text-align: center;
    font-size: 20px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 50px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.problem-card {
    background: var(--light-grey);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
}

.problem-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark-grey);
}

.problem-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.problem-conclusion {
    text-align: center;
    font-size: 20px;
    color: var(--dark-grey);
    font-style: italic;
    max-width: 800px;
    margin: 40px auto 0;
}

/* ========================================
   SOLUTION SECTION
======================================== */
.solution-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--light-grey) 100%);
}

.features-list {
    max-width: 900px;
    margin: 0 auto 50px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    background: var(--white);
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
}

.checkmark {
    font-size: 28px;
    color: var(--sage-green);
    margin-right: 20px;
    flex-shrink: 0;
    font-weight: 700;
}

.feature-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--dark-grey);
}

.feature-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.solution-section .cta-button {
    display: block;
    max-width: 400px;
    margin: 0 auto;
}

/* ========================================
   TESTIMONIALS SECTION
======================================== */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--light-grey);
    padding: 40px 30px;
    border-radius: 12px;
    border-left: 4px solid var(--sage-green);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card .stars {
    margin-bottom: 15px;
    font-size: 20px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-grey);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 16px;
    font-weight: 700;
    color: var(--sage-green);
}

/* ========================================
   GUARANTEE SECTION
======================================== */
.guarantee-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--sage-green), #7A8A4B);
    text-align: center;
}

.guarantee-box {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 12px;
    max-width: 800px;
    margin: 0 auto 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.guarantee-badge {
    font-size: 60px;
    margin-bottom: 20px;
}

.guarantee-box h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--dark-grey);
}

.guarantee-box p {
    font-size: 18px;
    line-height: 1.7;
    color: #666;
}

/* ========================================
   FINAL CTA SECTION
======================================== */
.final-cta-section {
    padding: 80px 0;
    background-color: var(--cream);
    text-align: center;
}

.final-cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--dark-grey);
}

.final-message {
    font-size: 20px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 40px;
}

.secure-checkout {
    margin-top: 20px;
    font-size: 14px;
    color: #999;
}

/* ========================================
   FLOATING CTA (MOBILE)
======================================== */
.floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 999;
    display: none;
}

.floating-button {
    width: 100%;
    padding: 16px 30px;
    font-size: 18px;
}

/* ========================================
   FOOTER
======================================== */
.footer {
    padding: 30px 0;
    background-color: var(--dark-grey);
    color: var(--white);
    text-align: center;
}

.footer p {
    font-size: 14px;
}

/* ========================================
   ANIMATIONS
======================================== */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 768px) {
    .hero-headline {
        font-size: 32px;
    }

    .hero-subheadline {
        font-size: 18px;
    }

    .product-image {
        max-width: 280px;
    }

    .price-new {
        font-size: 36px;
    }

    .cta-button {
        padding: 16px 40px;
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-intro {
        font-size: 18px;
    }

    .problem-grid {
        grid-template-columns: 1fr;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
    }

    .checkmark {
        margin-bottom: 15px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .guarantee-box {
        padding: 40px 25px;
    }

    .guarantee-box h2 {
        font-size: 28px;
    }

    .final-cta-section h2 {
        font-size: 32px;
    }

    .floating-cta {
        display: block;
    }

    .final-cta-section {
        padding-bottom: 100px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }

    .hero-headline {
        font-size: 28px;
    }

    .hero-subheadline {
        font-size: 16px;
    }

    .urgency-text {
        font-size: 14px;
    }

    .countdown {
        font-size: 16px;
    }

    .problem-card {
        padding: 30px 20px;
    }

    .feature-item {
        padding: 25px 20px;
    }
}