/* Base Reset & Variables */
:root {
    --primary-color: #4A7C59;
    /* Green - Nature/Trust */
    --secondary-color: #C2B280;
    /* Earthy Beige - Organic */
    --accent-color: #D96C4A;
    /* Terracotta - Warmth/Action */
    --text-color: #333333;
    --bg-color: #FAFAF5;
    /* Off-white warmer */
    --white: #ffffff;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --spacing-container: 1100px;
    --border-radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.7;
    /* Increased for better readability */
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    font-weight: 700;
}

a {
    text-decoration: none;
}

.container {
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 20px;
}

/* 1. Urgency Bar */
.urgency-bar {
    background-color: var(--accent-color);
    color: var(--white);
    text-align: center;
    padding: 10px;
    font-weight: bold;
    font-size: 0.9rem;
}

/* 2. Hero Section */
.hero {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(to bottom, #FAFAF5, #EFEFDF);
}

.pre-headline {
    color: var(--accent-color);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.headline {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2C4A34;
    /* Darker green for contrast */
}

.subheadline {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #555;
}

.hero-content {
    display: flex;
    flex-direction: column;
    /* Mobile first */
    align-items: center;
    gap: 30px;
}

.hero-logo {
    max-width: 150px;
    margin-bottom: 20px;
}

.mockup-container img {
    max-width: 100%;
    height: auto;
    display: block;
}

.mockup-placeholder {
    /* Removed in favor of actual image styling */
    display: none;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 18px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.cta-button.large {
    font-size: 1.3rem;
    padding: 20px 40px;
    width: 100%;
    max-width: 500px;
    text-align: center;
}

.cta-button.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(217, 108, 74, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(217, 108, 74, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(217, 108, 74, 0);
    }
}

/* 3. Pain Points */
.pain-points {
    padding: 60px 0;
    background-color: var(--white);
    text-align: center;
}

.questions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}

.question-card {
    background-color: #F8F9F4;
    padding: 20px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.question-card .icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

/* 4. Solution */
.solution {
    padding: 60px 0;
    text-align: center;
}

.intro-text {
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-style: italic;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: left;
}

.benefit-item {
    background-color: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* Inspiration Gallery */
.inspiration-gallery {
    padding: 60px 0;
    background-color: #F8F9F4;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns on mobile */
    gap: 15px;
    margin-top: 30px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
    aspect-ratio: 1 / 1;
    /* Force square format */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.gallery-item img:hover {
    transform: scale(1.02);
}

/* Inspiration Gallery */
.inspiration-gallery {
    padding: 60px 0;
    background-color: #F8F9F4;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns on mobile */
    gap: 15px;
    margin-top: 30px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
    aspect-ratio: 1 / 1;
    /* Force square format */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.gallery-item img:hover {
    transform: scale(1.02);
}

/* 5. Bonuses */
/* 5. Bonuses */
.bonuses {
    padding: 60px 0;
    background-color: #EFEFDF;
    text-align: center;
}

.bonuses h2 {
    color: #2C4A34;
    /* Stronger contrast */
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.bonuses .subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #555;
}

.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1000px;
    /* Constrain width for better readbility on large screens */
    margin: 0 auto;
}

.bonus-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    /* Softer rounded corners */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-5px);
}

.bonus-img-container {
    width: 250px;
    height: 250px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bonus-img-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
}

.bonus-card h3 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
    min-height: 3em;
    /* Align titles */
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-line {
    font-size: 1.1rem;
    font-weight: 700;
}

.old-bonus-price {
    color: #999;
    text-decoration: line-through;
    margin-right: 10px;
    font-size: 1rem;
}

.free-tag {
    color: var(--primary-color);
    /* Green for "GRATIS" */
    font-weight: 800;
    letter-spacing: 0.5px;
}

/* 6. CTA Section */
.cta-section {
    padding: 50px 0;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--white);
}

.cta-reinforcement {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #EFEFDF;
}

.cta-section .cta-button {
    background-color: var(--white);
    color: var(--primary-color);
}

/* 7. Guarantee */
.guarantee {
    padding: 50px 0;
    background-color: var(--white);
}

.guarantee-box {
    border: 2px dashed var(--primary-color);
    padding: 30px;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.guarantee .seal {
    font-size: 3rem;
}

/* 8. Testimonials */
.testimonials {
    padding: 60px 0;
    background-color: #FAFAF5;
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    font-style: italic;
}

.testimonial-card .author {
    margin-top: 15px;
    font-weight: bold;
    font-style: normal;
    color: var(--primary-color);
}

/* 9. Offer Container */
.offer-container {
    padding: 60px 0;
}

.offer-box {
    background-color: var(--white);
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    overflow: hidden;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.offer-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px;
    text-align: center;
}

.offer-header h2 {
    color: var(--white);
    margin: 0;
}

.offer-body {
    padding: 30px;
    text-align: center;
}

.offer-body ul {
    list-style: none;
    margin: 0 auto 20px;
    text-align: left;
    display: inline-block;
}

.offer-body ul li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.offer-body ul li:last-child {
    border-bottom: none;
}

.price-container {
    margin: 30px 0;
}

.regular-price {
    font-size: 1.1rem;
    color: #777;
}

.strikethrough {
    text-decoration: line-through;
}

.offer-price {
    font-size: 3rem;
    color: var(--accent-color);
    font-weight: 700;
}

.urgency-text {
    font-size: 0.9rem;
    color: #D9534F;
    margin-bottom: 25px;
    background-color: #FFF5F5;
    padding: 10px;
    border-radius: 4px;
    display: inline-block;
}

.secure-payment {
    margin-top: 15px;
    font-size: 0.85rem;
    color: #777;
}

/* 11, 12. Author & FAQ */
.about-author,
.faq {
    padding: 50px 0;
    text-align: center;
    background-color: var(--white);
}

.about-author {
    background-color: #F0F4F1;
}

.faq-item {
    max-width: 800px;
    margin: 0 auto 20px;
    text-align: left;
    background-color: #F8F9F4;
    padding: 20px;
    border-radius: var(--border-radius);
}

.faq-item h4 {
    margin-bottom: 10px;
    color: var(--text-color);
}

/* Final Offer List Styling */
.offer-list-styled {
    list-style: none;
    padding: 0;
    margin: 0 auto 30px;
    text-align: left;
    max-width: 450px;
}

.offer-list-styled li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.offer-list-styled li:last-child {
    border-bottom: none;
}

.offer-list-styled li strong {
    color: var(--primary-color);
}

/* Guarantee Seal Sizing */
.guarantee-box img {
    max-width: 185px;
    /* Slightly increased */
    height: auto;
    margin-bottom: 25px;
}

/* Support Section */
.support-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--white);
}

.support-section h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 10px;
}

.support-section p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.support-email {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    display: block;
}

/* New Footer Styling */
footer {
    padding: 60px 0 40px;
    text-align: center;
    background-color: #111;
    /* Darker black */
    color: var(--white);
    font-size: 1rem;
}

.footer-logo {
    max-width: 70px;
    /* Smaller as requested */
    margin-bottom: 30px;
    background: white;
    padding: 10px;
    border-radius: 50%;
    /* Round logo container */
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Media Queries for Desktop */
@media (min-width: 768px) {
    .headline {
        font-size: 4rem;
    }

    .hero-content {
        flex-direction: row;
        justify-content: center;
        text-align: left;
        max-width: 900px;
        margin: 0 auto;
    }

    .questions-grid,
    .benefits-grid,
    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        /* 3 columns on desktop (3x2 layout) */
    }

    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns for bonuses on desktop */
    }
}