:root {
    /* Color Palette */
    --primary-color: #FF8C00;
    --primary-light: #FFA500;
    --secondary-color: #28a745;
    --secondary-hover: #218838;
    --contrast-color: #111;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;

    /* Spacing */
    --container-width: 1100px;
    --border-radius: 16px;

    /* Fonts */
    --font-main: 'Inter', sans-serif;
    --font-display: 'Outfit', sans-serif;

    /* Shadows */
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* RESET & GLOBAL LAYOUT */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: auto;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

body {
    display: block !important;
    /* FORCE BLOCK LAYOUT */
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fff;
}

/* MAIN LAYOUT BLOCKS */
header,
main,
footer,
section {
    display: block !important;
    /* FORCE VERTICAL STACKING */
    width: 100% !important;
    position: relative;
    clear: both;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: block;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.highlight {
    color: var(--primary-color);
}

.underline {
    text-decoration: underline;
    text-decoration-color: var(--primary-light);
    text-decoration-thickness: 3px;
}

/* BUTTONS */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--secondary-color);
    color: white;
    font-weight: 800;
    text-transform: uppercase;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: transform 0.2s;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-3px);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(40, 167, 69, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

/* HERO SECTION */
.hero-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, #fff 0%, #fff5e6 100%);
    text-align: center;
}

.logo-placeholder {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--contrast-color);
    margin-bottom: 30px;
    background: white;
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: var(--shadow-md);
}

.logo-placeholder i {
    color: var(--primary-color);
}

.main-headline {
    font-size: 2rem;
    /* Mobile first */
    color: var(--contrast-color);
    margin-bottom: 20px;
}

.sub-headline {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.benefits-list {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.benefits-list li i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.social-proof-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.avatars {
    display: flex;
}

.avatars i {
    font-size: 2rem;
    color: #ddd;
    margin-right: -10px;
    background: white;
    border-radius: 50%;
    border: 2px solid white;
}

.image-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    max-width: 500px;
    margin: 0 auto;
}

.floating-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 10px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.floating-badge span {
    display: block;
    font-weight: 800;
    color: var(--primary-color);
    font-size: 1.4rem;
    line-height: 1;
}

.floating-badge small {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
}

/* TESTIMONIALS */
.testimonials-section {
    background-color: var(--contrast-color);
    padding: 60px 0;
    color: white;
}

.carousel-container {
    max-width: 400px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.3s ease;
    list-style: none;
}

.carousel-slide {
    min-width: 100%;
}

.testimonial-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.testimonial-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    text-align: center;
}

.testimonial-card .result {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
}

.carousel-indicator.current-slide {
    background: var(--primary-color);
}

.carousel-btn {
    display: none;
}

/* PAIN SECTION */
.pain-section {
    background-color: var(--primary-color);
    padding: 60px 0;
}

.section-title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 30px;
    color: var(--contrast-color);
}

.section-title.white {
    color: white;
}

.pain-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* Mobile: 1 column */
    gap: 20px;
}

.pain-card {
    background: white;
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.pain-card .emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
}

.pain-center-image {
    display: none;
}

/* ERRORS SECTION */
.errors-section {
    background-color: #111;
    padding: 60px 0;
    color: white;
}

.errors-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.error-card {
    background: #222;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #333;
}

.error-number {
    font-size: 3rem;
    color: var(--primary-color);
    padding: 20px;
    text-align: left;
    margin-top: 30px;
}

/* PROBLEM SECTION */
.problem-section {
    padding: 60px 0;
    text-align: center;
    background: white;
}

.problem-diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.diagram-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.diagram-step p {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--contrast-color);
}

.diagram-icon {
    width: 100px;
    height: 100px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--contrast-color);
    box-shadow: var(--shadow-md);
}

.diagram-arrow {
    color: var(--primary-color);
    font-size: 2rem;
    transform: rotate(90deg);
    /* Down on mobile */
}

.insight-box {
    background: #fff5e6;
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    text-align: left;
    margin-top: 30px;
}

/* METHOD SECTION */
.method-section {
    background: var(--bg-light);
    padding: 60px 0;
}

.method-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.method-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.method-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

/* OFFER SECTION */
.offer-section {
    background: var(--contrast-color);
    padding: 60px 0;
    color: white;
}

.offer-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.mockup-placeholder {
    background: #222;
    height: 300px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #444;
    color: #666;
}

.offer-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offer-list li i {
    color: var(--secondary-color);
}

/* PRICE SECTION */
.price-section {
    padding: 60px 0;
    background: #f4f4f4;
}

.price-box {
    background: white;
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--primary-color);
    max-width: 500px;
    margin: 0 auto;
}

.price-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--contrast-color);
    line-height: 1;
    margin: 10px 0;
}

.price-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
    font-size: 0.9rem;
    color: #666;
}

/* CONTRAST SECTION */
.contrast-section {
    padding: 60px 0;
    background: #fff;
}

.contrast-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.contrast-card {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.contrast-card.pain {
    border-top: 5px solid #dc3545;
}

.contrast-card.pleasure {
    border-top: 5px solid var(--secondary-color);
}

.contrast-header {
    padding: 20px;
    text-align: center;
    background: #f9f9f9;
    border-bottom: 1px solid #eee;
}

.contrast-list {
    padding: 20px;
    list-style: none;
}

.contrast-list li {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

/* STACK SECTION */
.stack-section {
    background: var(--contrast-color);
    padding: 60px 0;
    color: white;
}

.stack-box {
    background: #1f1f1f;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #333;
}

.stack-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

.stack-dots {
    display: none;
}

/* ENHANCED STACK TOTAL */
.stack-total {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #444;
    text-align: center;
}

.stack-total p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 5px;
}

.stack-total .strikethrough {
    color: #ff4d4d;
    /* Red for deleted price */
    text-decoration: line-through;
    font-weight: 700;
}

.final-price {
    background: rgba(255, 140, 0, 0.1);
    /* Subtle orange background */
    padding: 15px;
    border-radius: 12px;
    border: 1px solid var(--primary-color);
    margin: 15px 0;
    display: inline-block;
    width: 100%;
}

.final-price small {
    display: block;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.final-price span {
    display: block;
    font-size: 3.5rem;
    /* Large font for price */
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    text-shadow: 0 2px 10px rgba(255, 140, 0, 0.3);
    /* Glow effect */
}

.installments {
    font-size: 0.9rem !important;
    color: #888 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* SECOND OFFER */
.second-offer-section {
    padding: 60px 0;
}

.second-offer-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.offer-headline {
    font-size: 2rem;
    line-height: 1.1;
    color: var(--contrast-color);
    margin-bottom: 20px;
}

/* AUTHORITY */
.authority-section {
    background: #111;
    padding: 60px 0;
    color: white;
}

.authority-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.authority-stats {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.stat-number {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 800;
}

.image-placeholder-vertical {
    background: #222;
    height: 400px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #444;
    color: #666;
}

/* FAQ */
.faq-section {
    padding: 60px 0;
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px;
    background: none;
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

/* FOOTER */
.footer-section {
    background: #000;
    padding: 60px 0;
    color: #666;
    text-align: center;
    width: 100% !important;
    display: block !important;
    clear: both;
}

.footer-logo {
    display: flex;
    justify-content: center;
    gap: 10px;
    color: white;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-links a {
    color: #888;
    margin: 0 10px;
    text-decoration: none;
}

/* DESKTOP STYLES (min-width: 992px) */
@media (min-width: 992px) {
    .hero-section {
        text-align: left;
        padding: 100px 0;
    }

    .hero-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .main-headline {
        font-size: 3.5rem;
    }

    .social-proof-hero {
        justify-content: flex-start;
    }

    .pain-grid {
        grid-template-columns: 1fr 1fr;
    }

    .errors-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .problem-diagram {
        flex-direction: row;
    }

    .diagram-arrow {
        transform: rotate(0deg);
    }

    .method-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .offer-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .contrast-grid {
        grid-template-columns: 1fr 1fr;
    }

    .second-offer-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .second-offer-content {
        order: -1;
    }

    .authority-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .carousel-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        color: white;
        border: none;
        cursor: pointer;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

    .stack-dots {
        display: block;
    }
}