
:root {
    /* Color Palette - Validated Low-Ticket Model 03 Theme */
    --bg-chocolate: #3A1B09;     /* Deep dark chocolate brown for main backgrounds */
    --bg-peach: #F6DFB9;         /* Sandy warm peach/beige background */
    --bg-warm-grey: #E6DCCB;     /* Soft warm grey background */
    --bg-cream: #F6F0DA;         /* Buttery light cream/beige for inner boxes */
    --bg-soft-green: #F6FFF6;     /* Soft green background for positive checklists */
    --bg-offwhite: #FDF6F7;      /* Warm white background */
    --accent-red: #EE6352;       /* Vibrant coral red for top bar & scarcity */
    --accent-gold: #E7B66F;      /* Honey gold highlight color */
    --accent-gold-dark: #ce7628; /* Border accent for gold boxes */
    --btn-green: #39B574;        /* Vibrant green for high-converting buttons */
    --btn-green-hover: #2e9b62;  /* Slightly darker green for hover effects */
    --success: #39B574;          /* Green success ticks */
    --text-white: #ffffff;
    --text-dark: #111111;        /* Dark text on light sections */
    --text-gray: #2B1810;        /* Muted body text on light sections */
    --text-light-gray: #d4d4d8;  /* Light body text on dark sections */
    --text-muted: #71717a;
    --border: #2E2E2E2a;         /* Soft layout borders */
    
    /* Layout */
    --container-max: 1200px;
    --container-slim: 800px;
    --font-sans: 'Inter', 'Poppins', sans-serif;
    --font-heading: 'Inter', 'Poppins', sans-serif;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-offwhite);
}

body {
    background-color: var(--bg-offwhite);
    color: var(--text-dark);
    font-family: var(--font-sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    user-select: none; /* Anti-copy reference feature */
}

/* Anti-copy iOS callout */
img, svg {
    -webkit-touch-callout: none;
    -webkit-user-drag: none;
}

/* Scrollbar Custom */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-card-light);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-red);
}

/* Typographical Hierarchy */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

p {
    font-weight: 400;
    color: var(--text-gray);
    font-size: 1.15rem; /* Increased by 15% from base */
}

/* Core Container Utilities */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.container-slim {
    width: 100%;
    max-width: var(--container-slim);
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Security Bar */
.top-security-bar {
    background-color: #8B0000; /* Blood red */
    color: var(--text-white);
    padding: 12px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
    z-index: 100;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.top-security-bar span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 480px) {
    .top-security-bar {
        font-size: clamp(9px, 2.7vw, 12px);
        padding: 8px 0;
        letter-spacing: 0;
    }
    .top-security-bar .container {
        padding: 0 5px;
    }
    .top-security-bar span {
        display: inline-flex;
        white-space: nowrap;
        gap: 3px;
        justify-content: center;
    }
}

.hero-section {
    padding: 140px 0 160px 0; /* Added 60px vertical padding to breathe */
    position: relative;
    overflow: hidden;
    background: #000000;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 15px 0 30px 0; /* minimize padding on mobile */
    }
    .hero-ticker-marquee {
        margin: 0 auto 15px auto !important; /* reduce space below marquee */
    }
    .hero-header {
        margin-bottom: 15px !important; /* reduce space below title wrapper */
    }
    .hero-title {
        margin-bottom: 10px !important; /* reduce space below title */
    }
    .hero-visual-wrapper {
        margin-bottom: 15px !important; /* reduce space below mockup */
    }
    .hero-subtitle {
        margin-top: 15px !important;
        margin-bottom: 15px !important; /* reduce space around subtitle */
    }
    .hero-action-container {
        margin-top: 15px !important; /* bring CTA button closer */
    }
}

/* Hero Ticker Marquee (Tiny ribbon above headline) */
.hero-ticker-marquee {
    width: 100%;
    max-width: 480px;
    margin: 0 auto 25px auto;
    overflow: hidden;
    position: relative;
    padding: 6px 0;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Premium gradient fades on the sides to blend with chocolate background */
.hero-ticker-marquee::before,
.hero-ticker-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    z-index: 2;
    pointer-events: none;
}
.hero-ticker-marquee::before {
    left: 0;
    background: linear-gradient(to right, #000000 0%, rgba(0, 0, 0, 0) 100%);
}
.hero-ticker-marquee::after {
    right: 0;
    background: linear-gradient(to left, #000000 0%, rgba(0, 0, 0, 0) 100%);
}

.hero-ticker-track {
    display: flex;
    gap: 12px;
    width: max-content;
    animation: ticker-scroll 30s linear infinite;
}

.hero-ticker-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;               /* Width matching portrait ratio */
    height: 48px;              /* Height of a headline letter */
    border-radius: 4px;        /* Subtle rounded rectangle */
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.hero-ticker-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes ticker-scroll {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}


.hero-header {
    text-align: center;
    margin-bottom: 40px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    text-transform: uppercase;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-white);
}

.hero-title span {
    color: var(--accent-gold);
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: var(--accent-gold);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}

/* Mockup Area */
.hero-visual-wrapper {
    max-width: 580px;
    margin: 0 auto 30px auto;
    border-radius: 20px;
    position: relative;
}

.hero-mockup-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.hero-mockup-img:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .hero-visual-wrapper {
        max-width: 92%;
    }
}

/* Delivery Highlight Badge */
.hero-delivery-badge {
    background-color: var(--accent-gold);
    border: 1px solid var(--accent-gold-dark);
    color: #202020;
    padding: 12px 24px;
    border-radius: 50px;
    text-align: center;
    max-width: 540px;
    margin: 0 auto 35px auto;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.hero-delivery-badge p {
    color: #202020;
    margin: 0;
}

/* Price block */
.pricing-action-box {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    background: var(--bg-cream);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.price-old {
    font-size: 16px;
    color: var(--text-gray);
    text-decoration: line-through;
    margin-bottom: 4px;
}

.price-new {
    font-size: 48px;
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--accent-red);
    line-height: 1;
    margin-bottom: 6px;
}

.price-info {
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 24px;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px 24px;
    font-size: 20px;
    font-family: var(--font-heading);
    font-weight: 700;
    color: #ffffff;
    background: var(--btn-green);
    border: 2px solid #000000;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(57, 181, 116, 0.4);
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.btn-primary:hover {
    animation-play-state: paused;
    transform: scale(1.05);
    background: var(--btn-green-hover);
    box-shadow: 0 6px 20px rgba(57, 181, 116, 0.6);
}

.btn-primary.pulse {
    animation: pulse-glow-anim 2s infinite;
}

.delivery-note {
    font-size: 13px;
    color: var(--text-light-gray);
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.delivery-note img {
    width: 16px;
    height: 16px;
}

.trust-badge-img {
    max-width: 250px;
    margin: 20px auto 0 auto;
    display: block;
    opacity: 0.8;
}

/* Social Proof (WhatsApp Carousels) */
.social-proof-section {
    padding: 80px 0;
    background: #ffffff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-title {
    text-align: center;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.section-title span {
    color: var(--accent-red);
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 50px;
    font-size: 16px;
}

.testimonial-slider-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.testimonial-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scroll-left-anim 40s linear infinite;
}

.testimonial-track:hover {
    animation-play-state: paused;
}

.whatsapp-card {
    width: 280px;
    background: #0b141a; /* WhatsApp dark mode chat bg */
    border: 1px solid #222e35;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
}

.wa-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    border-bottom: 1px solid #222e35;
    padding-bottom: 8px;
}

.wa-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #53616a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
}

.wa-user-info h4 {
    font-size: 14px;
    font-family: var(--font-sans);
    color: #e9edef;
}

.wa-user-info span {
    font-size: 11px;
    color: #8696a0;
}

.wa-bubble {
    background: #005c4b; /* WhatsApp received bubble color */
    border-radius: 0 12px 12px 12px;
    padding: 10px 12px;
    color: #e9edef;
    font-size: 13.5px;
    position: relative;
    align-self: flex-start;
}

.wa-bubble p {
    color: #e9edef;
}

.wa-time {
    font-size: 9px;
    color: #aebac1;
    text-align: right;
    margin-top: 4px;
    display: block;
}

/* Sample / Inside Look Section */
.inside-look-section {
    padding: 80px 0;
}

.inside-look-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.category-block {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 25px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}

.category-block:hover {
    border-color: var(--accent-red);
    box-shadow: 0 15px 40px rgba(238, 99, 82, 0.1);
}

.category-visual {
    background: var(--bg-cream);
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    position: relative;
    border-bottom: 1px solid var(--border);
}

.category-content {
    padding: 30px;
}

.category-tag {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--accent-red);
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    display: block;
}

.category-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.category-desc {
    color: var(--text-gray);
    font-size: 17px; /* Scaled by 15% */
    margin-bottom: 24px;
}

.category-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.cat-price-box {
    text-align: left;
}

.cat-price-label {
    font-size: 12px;
    color: var(--text-muted);
}

.cat-price-val {
    font-size: 24px;
    font-weight: 900;
    color: var(--accent-gold-dark);
    font-family: var(--font-heading);
}

.btn-cat-buy {
    background: var(--bg-warm-grey);
    border: 2px solid #000000;
    color: var(--text-dark);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-cat-buy:hover {
    background: var(--btn-green);
    border-color: var(--btn-green);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(57, 181, 116, 0.3);
}

/* Pain & Agitation Section */
.pain-agitation-section {
    padding: 80px 0;
    position: relative;
    background: var(--bg-offwhite);
    color: var(--text-dark);
    border-top: none;
    border-bottom: none;
}

.pain-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    background: var(--bg-cream);
    border: 1px solid var(--accent-gold-dark);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.pain-text-content {
    text-align: center;
    max-width: 800px;
}

.pain-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    text-transform: uppercase;
    font-weight: 900;
    color: var(--text-dark) !important;
    margin-bottom: 24px;
}

.pain-title span {
    color: var(--accent-red);
}

.pain-text-content p {
    font-size: 1.15rem; /* Scaled by 15% */
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.pain-highlight {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 600;
    padding: 15px;
    border-left: 4px solid var(--accent-red);
    background: rgba(238, 99, 82, 0.08);
    border-radius: 0 8px 8px 0;
    text-align: left;
    margin: 30px 0;
}

/* Target Audience Checklist Cards */
.audience-section {
    padding: 80px 0;
    background: var(--bg-offwhite);
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
}

.audience-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-glow);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.check-icon-circle {
    width: 48px;
    height: 48px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-icon-circle svg {
    width: 24px;
    height: 24px;
    fill: var(--success);
}

.audience-card-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.audience-card-content p {
    font-size: 16px; /* Scaled by 15% */
    color: var(--text-gray);
}

/* Exclusive Bonuses Section */
.bonuses-section {
    padding: 80px 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.bonuses-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.bonus-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.bonus-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-red);
    color: #ffffff;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(238, 99, 82, 0.3);
}

.bonus-visual {
    background: var(--bg-cream);
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    border-bottom: 1px solid var(--border);
}

.bonus-content {
    padding: 24px;
    flex-grow: 1;
}

.bonus-num {
    font-size: 12px;
    color: var(--accent-red);
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
    display: block;
}

.bonus-title {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.bonus-desc {
    font-size: 16px; /* Scaled by 15% */
    color: var(--text-gray);
}

/* Pricing Grid / Main Checkout Cards */
.pricing-section {
    padding: 80px 0;
    position: relative;
    background: var(--bg-peach);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 50px;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 30px; /* highly rounded premium corners */
    padding: 40px 25px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: var(--text-dark);
}

.pricing-card.featured {
    border: 2px solid var(--accent-gold-dark);
    background: #ffffff;
    color: var(--text-dark);
    box-shadow: 0 20px 45px rgba(206, 118, 40, 0.12);
    transform: scale(1.03);
}

.pricing-card.featured h3 {
    color: var(--accent-gold-dark);
}

.pricing-card .btn-primary {
    background: #c6ff00 !important; /* Neon yellow-lime green */
    color: #000000 !important; /* Pure black bold text */
    border-radius: 50px !important; /* Pill shaped */
    font-size: 16px !important;
    font-weight: 800 !important;
    padding: 18px 24px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    border: 2px solid #000000 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.02em !important;
    box-shadow: 0 5px 15px rgba(198, 255, 0, 0.4) !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.pricing-card .btn-primary:hover {
    background: #b2e600 !important; /* slightly darker lime on hover */
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 8px 20px rgba(198, 255, 0, 0.6) !important;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-gold) 100%);
    color: white;
    font-weight: 800;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 15px rgba(238, 99, 82, 0.4);
    white-space: nowrap;
}

.pricing-card h3 {
    font-size: 24px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.pricing-card .subtitle {
    text-align: center;
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 24px;
}

.pricing-val-box {
    text-align: center;
    margin-bottom: 30px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

.pricing-val-box .old {
    font-size: 18px; /* Larger old price */
    color: var(--text-muted);
    text-decoration: line-through;
}

.pricing-val-box .new {
    font-size: 72px; /* High visibility price */
    font-family: var(--font-heading);
    font-weight: 900;
    color: #00d600 !important; /* Neon green pricing like in the image */
    line-height: 1.1;
    letter-spacing: -0.02em;
}

/* Ensure dark text and correctly colored elements on all white pricing cards */
.pricing-card .payments-logo-img {
    filter: invert(1) !important;
}
.pricing-card .delivery-note {
    color: var(--text-dark) !important;
}

.pricing-val-box .installments {
    font-size: 16px; /* Larger installment details */
    color: var(--text-gray);
    font-weight: 600; /* Thicker weight for prominence */
    margin-top: 4px;
}

.pricing-features-list {
    list-style: none;
    margin-bottom: 35px;
    flex-grow: 1;
}

.pricing-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15.5px; /* highly readable font size */
    margin-bottom: 14px;
    color: var(--text-dark);
}

.pricing-features-list li svg {
    width: 18px;
    height: 18px;
    fill: #00c800; /* vibrant green checkmarks matching the design style */
    flex-shrink: 0;
}

.pricing-features-list li.bonus-item {
    font-weight: 600;
}

.pricing-features-list li.bonus-item svg {
    fill: var(--accent-gold-dark);
}

/* Scarcity Countdown Section */
.scarcity-countdown-section {
    background-color: var(--accent-red);
    color: var(--text-white);
    padding: 50px 0;
    text-align: center;
    position: relative;
    box-shadow: inset 0 10px 20px rgba(0,0,0,0.1), inset 0 -10px 20px rgba(0,0,0,0.1);
}

.scarcity-countdown-section h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: var(--text-white);
    letter-spacing: -0.5px;
}

.scarcity-countdown-section .countdown-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 25px 0;
}

.scarcity-countdown-section .countdown-box {
    background: rgba(0, 0, 0, 0.3) !important;
    padding: 15px 30px;
    border-radius: 12px;
    min-width: 160px;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}

.scarcity-countdown-section .countdown-time {
    font-size: 38px;
    font-weight: 800;
    display: block;
    font-family: monospace;
    letter-spacing: 2px;
    color: #ffffff !important;
}

.scarcity-countdown-section .countdown-label {
    font-size: 12px;
    text-transform: uppercase;
    opacity: 0.95;
    font-weight: 700;
    display: block;
    margin-top: 5px;
    color: #ffffff !important;
}

.scarcity-countdown-section p {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Guarantee Block */
.guarantee-section {
    padding: 80px 0;
    background: var(--bg-offwhite);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.guarantee-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
    background: var(--bg-cream);
    border: 1px solid var(--accent-gold-dark);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.guarantee-badge {
    max-width: 130px;
    height: auto;
}

.guarantee-content {
    max-width: 700px;
}

.guarantee-content h2 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: var(--text-dark);
}

.guarantee-content p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* How to access steps */
.steps-section {
    padding: 80px 0;
    background: var(--bg-offwhite);
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.step-card:hover {
    border-color: var(--btn-green);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transform: translateY(-3px);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--btn-green);
    color: white;
    font-weight: 800;
    font-family: var(--font-heading);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--bg-offwhite);
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 10px auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(57, 181, 116, 0.1);
    border-radius: 16px;
}

.step-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--btn-green);
}

.step-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.step-card p {
    font-size: 14px;
    color: var(--text-gray);
}

/* FAQ Accordion Section */
.faq-section {
    padding: 80px 0;
    background: var(--bg-warm-grey);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-accordion {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.faq-item:hover {
    border-color: rgba(58, 27, 9, 0.2);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-dark);
    user-select: none;
    transition: color 0.3s ease;
}

.faq-question::after {
    content: '+';
    font-size: 22px;
    color: var(--text-gray);
    font-family: monospace;
    transition: transform 0.3s ease;
}

.faq-item.active {
    border-color: var(--accent-gold-dark);
    box-shadow: 0 8px 20px rgba(58, 27, 9, 0.05);
}

.faq-item.active .faq-question {
    color: var(--bg-chocolate);
}

.faq-item.active .faq-question::after {
    content: '−';
    transform: rotate(180deg);
    color: var(--bg-chocolate);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
}

.faq-answer-content {
    padding: 0 25px 20px 25px;
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

/* Footer Section */
.footer-section {
    padding: 60px 0;
    background: var(--bg-chocolate);
    text-align: center;
}

.footer-disclaimer {
    max-width: 800px;
    margin: 0 auto;
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-copy {
    font-size: 12px;
    color: var(--text-gray);
}


/* Animações e Keyframes */
@keyframes flash {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

@keyframes pulse-glow-anim {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4), 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    50% {
        transform: scale(1.04);
        box-shadow: 0 6px 20px rgba(34, 197, 94, 0.6), 0 0 0 12px rgba(34, 197, 94, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4), 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

@keyframes scroll-left-anim {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* WORKOUT ANIMATIONS (SVG Keyframes) */
.exercise-anim-svg {
    width: 200px;
    height: 200px;
}

.exercise-anim-svg .joint {
    fill: var(--accent-red);
}

.exercise-anim-svg .bone {
    stroke: var(--text-white);
    stroke-width: 6px;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.exercise-anim-svg .ground {
    stroke: var(--border-glow);
    stroke-width: 4px;
    stroke-linecap: round;
}

.exercise-anim-svg .barbell {
    stroke: #52525b;
    stroke-width: 4px;
    fill: none;
}

.exercise-anim-svg .weight {
    fill: #27272a;
    stroke: #3f3f46;
    stroke-width: 2px;
}

/* 1. BICEPS CURL ANIMATION */
@keyframes curl-forearm {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(-95deg); }
}

@keyframes curl-dumbbell {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-30px, -45px); }
}

.biceps-curl-svg #forearm-group {
    transform-origin: 100px 95px; /* elbow point */
    animation: curl-forearm 2s ease-in-out infinite;
}

.biceps-curl-svg #dumbbell {
    transform-origin: 100px 95px;
    animation: curl-dumbbell 2s ease-in-out infinite;
}

/* 2. SQUAT ANIMATION */
@keyframes squat-thigh {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(45deg); }
}

@keyframes squat-shin {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(-35deg); }
}

@keyframes squat-torso {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-10px, 35px) rotate(10deg); }
}

.squat-svg #squat-thigh {
    transform-origin: 100px 140px; /* knee point */
    animation: squat-thigh 2.5s ease-in-out infinite;
}

.squat-svg #squat-shin {
    transform-origin: 100px 180px; /* ankle point */
    animation: squat-shin 2.5s ease-in-out infinite;
}

.squat-svg #squat-torso {
    transform-origin: 100px 105px; /* hip point */
    animation: squat-torso 2.5s ease-in-out infinite;
}

/* 3. PUSH-UP ANIMATION */
@keyframes pushup-body {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(0, 30px) rotate(-8deg); }
}

@keyframes pushup-arm {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.4); }
}

.pushup-svg #pushup-body-group {
    transform-origin: 160px 150px; /* toes point */
    animation: pushup-body 2s ease-in-out infinite;
}

.pushup-svg #pushup-arm-group {
    transform-origin: 50px 150px;
    animation: pushup-arm 2s ease-in-out infinite;
}

/* 4. MOBILITY SIDE-STRETCH ANIMATION */
@keyframes stretch-torso {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(15deg); }
}

@keyframes stretch-arm {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(-30deg); }
}

.stretch-svg #stretch-torso-group {
    transform-origin: 100px 130px; /* hip center */
    animation: stretch-torso 3s ease-in-out infinite alternate;
}

.stretch-svg #stretch-arm-group {
    transform-origin: 90px 85px; /* shoulder left */
    animation: stretch-arm 3s ease-in-out infinite alternate;
}

/* 5. JUMPING JACKS (CARDIO) ANIMATION */
@keyframes jack-legs-left {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(-25deg); }
}

@keyframes jack-legs-right {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(25deg); }
}

@keyframes jack-arms-left {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(120deg); }
}

@keyframes jack-arms-right {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(-120deg); }
}

.jack-svg #jack-leg-l {
    transform-origin: 100px 130px;
    animation: jack-legs-left 1.2s ease-in-out infinite;
}
.jack-svg #jack-leg-r {
    transform-origin: 100px 130px;
    animation: jack-legs-right 1.2s ease-in-out infinite;
}
.jack-svg #jack-arm-l {
    transform-origin: 85px 85px;
    animation: jack-arms-left 1.2s ease-in-out infinite;
}
.jack-svg #jack-arm-r {
    transform-origin: 115px 85px;
    animation: jack-arms-right 1.2s ease-in-out infinite;
}


/* Media Queries for Responsiveness */
@media (min-width: 768px) {
    .inside-look-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .audience-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .bonuses-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .guarantee-container {
        flex-direction: row;
        text-align: left;
        padding: 20px;
    }
}

@media (min-width: 1024px) {
    .inside-look-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==========================================================================
   Image & Video Scaling & Proportions Fix (Desktop & Mobile)
   ========================================================================== */

/* Testimonial Screenshot Styles */
.screenshot-testimonials-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.screenshot-testimonials-grid img {
    width: 100%;
    max-width: 480px; /* Readable on desktop */
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border);
    margin: 0 auto;
    display: block;
}
@media (max-width: 768px) {
    .social-proof-section .container {
        padding: 0 20px;
    }
    .screenshot-testimonials-grid {
        margin-left: -20px;
        margin-right: -20px;
        width: calc(100% + 40px);
        gap: 15px;
    }
    .screenshot-testimonials-grid img {
        max-width: 100% !important;
        width: 100%;
        border-radius: 0;
        border-left: none;
        border-right: none;
        height: auto !important;
        aspect-ratio: 1 / 1;
    }
}
@media (max-width: 480px) {
    .social-proof-section .container {
        padding: 0 20px;
    }
    .screenshot-testimonials-grid {
        margin-left: -20px;
        margin-right: -20px;
        width: calc(100% + 40px);
        gap: 15px;
    }
    .screenshot-testimonials-grid img {
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
}

/* Bundle Mockup Image (Muscles Group / Pricing) */
.bundle-mockup-img {
    display: block;
    max-width: 480px; /* Tighter layout width */
    width: 100%;
    height: auto;
    margin: 30px auto;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border);
}
@media (max-width: 768px) {
    .bundle-mockup-img {
        max-width: 90%; /* Responsive mobile limit */
        margin: 20px auto;
        border-radius: 10px;
    }
}

/* Audience Cards Visual Styles */
.audience-grid-visual {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 40px auto 0 auto;
    max-width: 960px;
}
.audience-card-visual {
    background: var(--bg-soft-green);
    border: 1px solid rgba(57, 181, 116, 0.2);
    border-radius: 24px;
    padding: 30px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}
.audience-card-visual:hover {
    transform: translateY(-5px);
    border-color: var(--btn-green);
    box-shadow: 0 12px 25px rgba(57, 181, 116, 0.15);
}
.audience-card-visual img {
    width: 100%;
    max-width: 110px;
    height: auto;
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.audience-card-visual h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
}
.audience-card-visual p {
    font-size: 15.5px; /* Scaled by 15% */
    color: var(--text-gray);
    line-height: 1.5;
}
@media (max-width: 900px) {
    .audience-grid-visual {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .audience-card-visual {
        max-width: 280px;
        margin: 0 auto;
    }
    .audience-card-visual img {
        max-width: 90px;
    }
}

@media (max-width: 768px) {
    .audience-grid-visual {
        margin-left: -20px;
        margin-right: -20px;
        width: calc(100% + 40px);
        max-width: none;
    }
    .audience-card-visual {
        max-width: none;
        width: 100%;
        border-radius: 0;
        border-left: none;
        border-right: none;
        padding: 0 0 24px 0;
    }
    .audience-card-visual img {
        max-width: 100% !important;
        width: 100%;
        border-radius: 0;
        margin-bottom: 20px;
        height: auto !important;
        aspect-ratio: 16 / 10;
        object-fit: cover;
    }
    .audience-card-visual h3,
    .audience-card-visual p {
        padding: 0 20px;
    }
}

/* Bonus Mockup Image Styles */
.bonus-card {
    overflow: hidden;
}
.bonus-mockup {
    width: 100%;
    height: 220px;
    object-fit: contain;
    background: #ffffff;
    padding: 20px;
    border-bottom: 2px solid var(--border);
    display: block;
}

@media (max-width: 768px) {
    .bonuses-grid {
        margin-left: -20px;
        margin-right: -20px;
        width: calc(100% + 40px);
        gap: 20px;
    }
    .bonus-card {
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
    .bonus-mockup {
        padding: 0;
        height: auto !important;
        aspect-ratio: 16 / 10;
        object-fit: cover;
    }
}

/* Local Video Demos Grid and Card Styles */
.video-demos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px auto 0 auto;
    max-width: 800px;
    justify-content: center;
}
.video-demo-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}
.video-demo-card.wide-card {
    grid-column: 1 / span 2;
    max-width: 680px;
    width: 100%;
    margin: 0 auto;
}
.video-demo-card.vertical-card {
    max-width: 300px;
    width: 100%;
}
.video-demo-card.vertical-card:nth-of-type(1) {
    justify-self: end;
}
.video-demo-card.vertical-card:nth-of-type(2) {
    justify-self: start;
}
.video-demo-card:hover {
    transform: translateY(-5px);
    border-color: var(--btn-green);
    box-shadow: 0 12px 25px rgba(57, 181, 116, 0.15);
}
.video-demo-card h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--text-dark);
}
.local-video-container {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}
.local-video-container.horizontal-video {
    aspect-ratio: 16 / 9; /* Landscape layout */
}
.local-video-container.vertical-video {
    aspect-ratio: 9 / 16; /* Reels/portrait layout */
}
.local-video-container video {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}
.local-video-container.horizontal-video video {
    object-fit: contain; /* Full layout readability */
}
.local-video-container.vertical-video video {
    object-fit: cover;
}
@media (max-width: 900px) {
    .video-demos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .video-demo-card.wide-card {
        grid-column: 1;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }
    .video-demo-card.vertical-card {
        max-width: 280px;
        margin: 0 auto;
        justify-self: center !important;
    }
}

@media (max-width: 768px) {
    .video-demo-card.wide-card {
        margin-left: -20px;
        margin-right: -20px;
        width: calc(100% + 40px) !important;
        max-width: none !important;
        border-radius: 0;
        border-left: none;
        border-right: none;
        padding: 15px 0;
    }
    .video-demo-card.wide-card .local-video-container {
        border-radius: 0;
    }
    .video-demo-card.wide-card h4 {
        padding: 0 20px;
    }
}

/* Centering and sizing the payments logo in pricing cards */
.payments-logo-img {
    display: block;
    margin: 15px auto 0 auto;
    max-width: 260px; /* Keeps it neat and proportional */
    width: 100%;
    height: auto;
}

/* Pricing card mockups styling */
.pricing-mockup-wrapper {
    background: var(--bg-card-light);
    border-radius: 18px;
    padding: 20px;
    margin: 15px 0 25px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.pricing-mockup-img {
    width: 100%;
    max-width: 100%;
    max-height: 220px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
    transition: transform 0.3s ease;
}
.pricing-card:hover .pricing-mockup-img {
    transform: scale(1.03);
}



/* Section Specific Background Alignments */
.video-demos-section {
    padding: 80px 0;
    background: var(--bg-peach);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}


/* Examples Carousel Section */
.examples-carousel-section {
    padding: 80px 0;
    background: var(--bg-cream); /* Warm buttery background to stand out */
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.examples-carousel-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    margin-top: 40px;
}

.carousel-row {
    display: flex;
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Gradient overlays for fading edge effect */
.carousel-row::before,
.carousel-row::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}
.carousel-row::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-cream) 0%, rgba(246, 240, 218, 0) 100%);
}
.carousel-row::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-cream) 0%, rgba(246, 240, 218, 0) 100%);
}

.carousel-track {
    display: flex;
    gap: 20px;
    width: max-content;
}

.carousel-track.scroll-left {
    animation: scroll-left-marquee 40s linear infinite;
}

.carousel-track.scroll-right {
    animation: scroll-right-marquee 40s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.carousel-item {
    width: 180px;
    height: 320px; /* Portrait aspect ratio for GIFs */
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.carousel-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes scroll-left-marquee {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

@keyframes scroll-right-marquee {
    0% {
        transform: translate3d(-50%, 0, 0);
    }
    100% {
        transform: translate3d(0, 0, 0);
    }
}

@media (max-width: 480px) {
    .btn-primary {
        font-size: clamp(12px, 3.8vw, 15px) !important;
        padding: 16px 10px !important;
        white-space: nowrap !important;
        letter-spacing: -0.2px !important;
    }
}

/* Pain & Agitation Bullets List CRO Style */
.pain-bullets-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}
.pain-bullets-list li {
    margin-bottom: 24px;
    padding: 20px;
    background: rgba(238, 99, 82, 0.05);
    border-left: 4px solid var(--accent-red);
    border-radius: 0 12px 12px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}
.pain-bullets-list li:last-child {
    background: rgba(57, 181, 116, 0.05);
    border-left: 4px solid var(--success);
}
.bullet-pain {
    display: block;
    font-size: 1.15rem;
    font-weight: 700;
    color: #b91c1c; /* dark red for error contrast */
    margin-bottom: 6px;
}
.pain-bullets-list li:last-child .bullet-pain {
    color: #15803d; /* dark green for success delivery */
}
.bullet-solution {
    display: block;
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.5;
}

/* Pricing Anchoring Badges */
.pricing-anchor-badge-warning {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 15px;
    display: inline-block;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}
.pricing-anchor-badge-success {
    background-color: #dcfce7;
    color: #166534;
    border: 1px solid #86efac;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 15px;
    display: inline-block;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}
.pricing-anchor-text-highlight {
    font-size: 13px;
    color: #16a34a;
    font-weight: 700;
    margin-top: 8px;
    display: block;
}

/* Exit Intent Modal Styles */
.exit-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    display: none; /* Controlled by JS */
    align-items: center;
    justify-content: center;
}

.exit-modal.show {
    display: flex;
}

.exit-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 17, 17, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease forwards;
}

.exit-modal-content {
    position: relative;
    background: var(--bg-chocolate);
    border: 2px solid var(--accent-gold);
    border-radius: 24px;
    padding: 35px 30px;
    max-width: 520px;
    width: 90%;
    text-align: center;
    color: #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 20px rgba(231, 182, 111, 0.2);
    z-index: 2;
    animation: scaleUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.exit-modal-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 28px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.exit-modal-close-btn:hover {
    color: #fff;
}

.exit-modal-badge {
    display: inline-block;
    background: var(--accent-red);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
}

.exit-modal-content h2 {
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.exit-modal-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-bottom: 25px;
}

.exit-modal-content p strong {
    color: var(--accent-gold);
}

.exit-modal-product {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 15px;
    margin-bottom: 25px;
}

.exit-modal-img {
    max-width: 120px;
    height: auto;
    object-fit: contain;
}

.exit-modal-pricing {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.exit-modal-pricing .old-price {
    font-size: 13px;
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.5);
}

.exit-modal-pricing .new-price {
    font-size: 32px;
    font-weight: 900;
    color: var(--accent-gold);
    line-height: 1;
    margin: 4px 0;
}

.exit-modal-pricing .installments {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.exit-modal-cta-btn {
    background: var(--btn-green) !important;
    color: #fff !important;
    font-size: 18px !important;
    padding: 18px 24px !important;
    border-radius: 12px !important;
    border: 2px solid #000000 !important;
    box-shadow: 0 4px 15px rgba(57, 181, 116, 0.4) !important;
    display: inline-flex !important;
    width: 100% !important;
    margin-bottom: 15px;
}

.exit-modal-cta-btn:hover {
    transform: scale(1.02) !important;
}

.exit-modal-decline-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.2s ease;
}

.exit-modal-decline-btn:hover {
    color: rgba(255, 255, 255, 0.7);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleUp {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@media (max-width: 480px) {
    .exit-modal-content {
        padding: 25px 20px;
    }
    .exit-modal-product {
        flex-direction: column;
        gap: 10px;
    }
    .exit-modal-pricing {
        align-items: center;
    }
    .exit-modal-content h2 {
        font-size: 20px;
    }
}

/* ==========================================================================
   New conversion-focused sections (Results and Benefits)
   ========================================================================== */

/* Giant Mockup Styling */
.hero-visual-wrapper.giant-mockup {
    max-width: 850px;
    margin: 40px auto 0 auto;
}
.hero-visual-wrapper.giant-mockup .hero-mockup-img {
    box-shadow: 0 25px 60px rgba(231, 182, 111, 0.25), 0 15px 30px rgba(0,0,0,0.6);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

/* Results Section */
.results-section {
    padding: 80px 0;
    background: var(--bg-offwhite);
    border-bottom: 1px solid var(--border);
}
.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.result-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}
.result-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 20px rgba(231, 182, 111, 0.15);
}
.result-emoji {
    font-size: 32px;
    display: inline-block;
    margin-bottom: 12px;
}
.result-card h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 700;
}
.result-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.5;
}
@media (max-width: 992px) {
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .results-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .results-section {
        padding: 40px 0;
    }
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: var(--bg-chocolate);
    border-bottom: 1px solid var(--border);
}
.benefits-box {
    background: var(--bg-cream);
    border: 2px solid var(--accent-gold-dark);
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}
.benefits-list {
    list-style: none;
    margin-top: 35px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.benefits-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.benefit-check {
    font-size: 24px;
    flex-shrink: 0;
}
.benefits-list li strong {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--text-dark);
    display: block;
    margin-bottom: 4px;
    font-weight: 700;
}
.benefits-list li p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.4;
}
@media (max-width: 768px) {
    .benefits-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .benefits-box {
        padding: 30px 20px;
    }
    .benefits-section {
        padding: 40px 0;
    }
}

/* ==========================================================================
   Pricing Feature Differentiation Override
   ========================================================================== */
.pricing-features-list li.missing-feature {
    opacity: 0.5;
    color: var(--text-muted);
    text-decoration: line-through;
}

.pricing-features-list li.missing-feature svg {
    fill: #ef4444 !important; /* Red crosses for missing features */
}

.pricing-features-list li.premium-bonus-feature {
    font-weight: 600;
    color: var(--text-dark);
}

.pricing-features-list li.premium-bonus-feature svg {
    fill: var(--accent-gold-dark, #ce7628) !important; /* Gold highlights for premium bonuses */
}

/* ==========================================================================
   Filterable GIF Grid & Tabs
   ========================================================================== */
.gif-tabs-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 35px;
    margin-bottom: 35px;
}

.gif-tab-btn {
    background: #ffffff;
    border: 1px solid var(--border);
    color: var(--text-dark);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    outline: none;
}

.gif-tab-btn:hover {
    border-color: var(--accent-gold);
    background: var(--bg-cream);
    transform: translateY(-1px);
}

.gif-tab-btn.active {
    background: var(--btn-green);
    color: #ffffff;
    border-color: var(--btn-green);
    box-shadow: 0 4px 15px rgba(57, 181, 116, 0.3);
}

.gif-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.gif-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 12px;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.15), box-shadow 0.3s ease, opacity 0.3s ease;
}

.gif-card.hidden {
    display: none !important;
}

.gif-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.06);
    border-color: var(--accent-gold);
}

.gif-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    border-radius: 10px;
    background: #f7f7f7;
    margin-bottom: 12px;
    display: block;
}

.gif-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(17, 17, 17, 0.85);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    backdrop-filter: blur(4px);
    z-index: 10;
}

.gif-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
    line-height: 1.3;
}

.gif-card p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.2;
}

/* Responsividade do Grid */
@media (max-width: 1200px) {
    .gif-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 900px) {
    .gif-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .gif-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .gif-tabs-container {
        justify-content: center;
        gap: 8px;
        flex-wrap: wrap;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
        overflow-x: visible;
    }
    .gif-tab-btn {
        padding: 6px 12px;
        font-size: 13px;
    }
}

/* Premium Purchase Notification Toast */
.purchase-toast {
    position: fixed;
    top: -120px; /* Hidden initially above screen */
    right: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(18, 18, 18, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 14px 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    max-width: 360px;
    width: calc(100% - 32px);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
    opacity: 0;
    pointer-events: none;
}

.purchase-toast.show {
    transform: translateY(144px); /* Slides down below the red bar */
    opacity: 1;
    pointer-events: auto;
}

.purchase-toast-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    color: #111111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(231, 182, 111, 0.3);
}

.purchase-toast-info {
    flex-grow: 1;
}

.purchase-toast-title {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2px;
    line-height: 1.3;
}

.purchase-toast-title strong {
    font-weight: 700;
    color: #ffffff;
}

.purchase-toast-subtitle {
    font-size: 13px;
    color: #a1a1aa;
    line-height: 1.3;
    margin-bottom: 4px;
}

.purchase-toast-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--btn-green);
    font-weight: 600;
}

.purchase-toast-meta svg {
    width: 12px;
    height: 12px;
    fill: var(--btn-green);
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .purchase-toast {
        right: 16px;
        left: 16px;
        max-width: none;
    }
    .purchase-toast.show {
        transform: translateY(136px);
    }
}


