/* Soft UI Evolution - Listicle Theme V2 */

/* Variables */
:root {
    --primary-color: #FDBA74;
    /* Amber-300 - Soft Orange */
    --primary-dark: #F97316;
    /* Orange-500 - CTA/Highlights */
    --bg-color: #F8FAFC;
    /* Slate-50 - Main Background */
    --text-color: #334155;
    /* Slate-700 - Body Text */
    --heading-color: #1E293B;
    /* Slate-800 - Headlines */
    --white: #FFFFFF;

    --shadow-soft: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.05);

    --spacing-block: 40px;
    /* Compact spacing requested */
    --radius-soft: 20px;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

/* Container logic */
.main-container {
    max-width: 600px;
    /* Mobile-first reading width */
    margin: 0 auto;
    background: var(--white);
    min-height: 100vh;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.03);
    position: relative;
    /* Context for absolute positioning if needed */
}

/* -------------------------------------------
   Hero Section - Direct Response
------------------------------------------- */
.hero-section {
    padding: 24px 20px 20px;
    /* Minimal top spacing */
    text-align: center;
}

.hero-headline {
    font-size: 28px;
    /* Slightly larger */
    font-weight: 800;
    line-height: 1.3;
    color: var(--heading-color);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.highlight {
    background-color: #FFEDD5;
    /* Darker orange (Orange-100) */
    border-bottom: 3px solid #FDBA74;
    /* Underline accent */
    padding: 0 4px;
    border-radius: 4px;
    color: #9A3412;
    /* Darker text for contrast (Orange-900) */
    display: inline-block;
    /* Ensure proper padding behavior */
}

/* Specific Highlight for "Myth #X:" which needs to look consistent */
.myth-title .highlight {
    background: linear-gradient(120deg, rgba(253, 186, 116, 0.4) 0%, rgba(253, 186, 116, 0.2) 100%);
    border-bottom: 2px solid #FDBA74;
    color: var(--heading-color);
    margin-right: 6px;
}

.hero-subheadline {
    font-size: 16px;
    margin-bottom: 24px;
    color: #475569;
}

.hero-image {
    width: 100%;
    border-radius: var(--radius-soft);
    margin-bottom: 16px;
    box-shadow: var(--shadow-soft);
}

.hero-hook {
    font-size: 14px;
    color: #64748B;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
}

/* -------------------------------------------
   Myths & Listicle Flow
------------------------------------------- */
.myth-block {
    padding: 0 24px;
    /* Continuous flow - no background boundaries */
}

.myth-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 20px;
    line-height: 1.4;
}

.myth-image-wrapper {
    margin-top: 24px;
    /* Image AFTER body now */
    margin-bottom: 12px;
}

.content-image {
    width: 100%;
    border-radius: 16px;
    /* Soft integration - no hard borders */
}

.myth-body p {
    font-size: 17px;
    margin-bottom: 0;
}

/* Breaker Lines */
.section-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #E2E8F0, transparent);
    margin: var(--spacing-block) 0;
}

/* -------------------------------------------
   CTAs
------------------------------------------- */
.interim-cta {
    padding: 0 24px;
    margin-bottom: var(--spacing-block);
    box-sizing: border-box;
    /* Prevent padding from adding to width */
}

.cta-button {
    display: block;
    width: 100%;
    box-sizing: border-box;
    background: var(--primary-dark);
    color: var(--white);
    text-align: center;
    padding: 20px 10px;
    border-radius: 12px;
    font-size: clamp(13px, 4.5vw, 22px);
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 6px -1px rgba(249, 115, 22, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
    overflow: hidden;
    line-height: 1.3;
}

.cta-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px -1px rgba(249, 115, 22, 0.3);
}

.cta-subtext {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: #94A3B8;
    margin-top: 12px;
    font-weight: 400;
}

.cta-subtext svg {
    width: 16px;
    height: 16px;
    fill: var(--primary-dark);
    flex-shrink: 0;
}



/* -------------------------------------------
   Sales Block
------------------------------------------- */
.sales-block {
    background: #FFF7ED;
    /* Orange-50 tint */
    padding: 40px 24px;
    margin-top: var(--spacing-block);
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.sales-header {
    text-align: center;
    margin-bottom: 30px;
}

.sales-header h2 {
    font-size: 28px;
    color: var(--primary-dark);
}

.product-image {
    width: 80%;
    margin: 0 auto 30px;
    display: block;
    mix-blend-mode: multiply;
    /* Better integrating white bg images */
}

.sales-body {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 30px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.benefit-item {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 600;
}

.check-icon {
    color: var(--primary-dark);
}

/* Testimonials */
.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 30px;
}

.testimonial-card {
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    /* Stack vertically */
    align-items: center;
    text-align: center;
}

.t-avatar {
    width: 100%;
    /* Full Width */
    max-width: 100%;
    aspect-ratio: 1/1;
    /* Square */
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 16px;
}

.t-content {
    width: 100%;
}

.t-text {
    font-size: 16px;
    font-style: italic;
    margin: 0 0 8px 0;
    color: #334155;
}

.t-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-dark);
    text-transform: uppercase;
    display: block;
}

/* Final CTA */
.final-cta-wrapper {
    padding: 0 10px;
    /* Slight buffer */
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4);
    }

    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 10px rgba(249, 115, 22, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
    }
}

.guarantee-badge {
    text-align: center;
    font-size: 12px;
    color: #64748B;
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Footer */
.site-footer {
    padding: 40px 24px;
    text-align: center;
    font-size: 12px;
    color: #CBD5E1;
    background: var(--white);
}

.footer-links a {
    color: #94A3B8;
    text-decoration: none;
}

/* -------------------------------------------
   Mobile Enhancements
------------------------------------------- */
@media (min-width: 768px) {
    .main-container {
        margin: 40px auto;
        border-radius: 20px;
        overflow: hidden;
        /* For rounded corners */
    }

    .hero-headline {
        font-size: 36px;
    }

    /* On tablet/desktop, keep testimonials side-by-side maybe? 
       Or keep full width vertical stack for listicle feel.
       Let's keep vertical for listicle flow. */
}