:root {
    --primary-bg: #0a0a0a;
    --secondary-bg: #141414;
    --accent-red: #d32f2f;
    --accent-red-hover: #b71c1c;
    --accent-gold: #ffb300;
    --text-main: #f5f5f5;
    --text-muted: #aaaaaa;
    --success: #4caf50;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--primary-bg);
    color: var(--text-main);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.py-section {
    padding: 80px 0;
}

.dark-bg {
    background-color: var(--secondary-bg);
}

.highlight {
    color: var(--accent-red);
}

.text-center {
    text-align: center;
}

.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.text-sm { font-size: 0.85rem; color: var(--text-muted); }
.text-success { color: var(--success); }

/* GRID LAYOUTS */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.align-start { align-items: start; }

/* GLASSMORPHISM CARDS */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: transform 0.3s ease;
}

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

/* HERO SECTION */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: url('assets/hero_bg.png') center/cover no-repeat;
    text-align: center;
    padding: 15px 0 20px 0;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10,10,10,0.7), rgba(10,10,10,0.95));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.top-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 45px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background-color: var(--accent-red);
    border-radius: 50%;
    margin-right: 10px;
    animation: pulse-red 1.5s infinite;
}

.pulse-dot-green {
    width: 10px;
    height: 10px;
    background-color: var(--success);
    border-radius: 50%;
    margin-right: 10px;
    animation: pulse-green 1.5s infinite;
}

@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(76, 175, 80, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #e0e0e0;
    margin-bottom: 25px;
}

.hero-image-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.hero-mockup {
    max-width: 100%;
    width: 760px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.7);
}

/* COUNTDOWN */
.countdown {
    background: rgba(211, 47, 47, 0.1);
    border: 1px solid var(--accent-red);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 40px;
    display: inline-block;
}

/* BONUSES SECTION */
.bonus-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-red) transparent;
}

.bonus-grid::-webkit-scrollbar {
    height: 8px;
}

.bonus-grid::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

.bonus-grid::-webkit-scrollbar-thumb {
    background: var(--accent-red);
    border-radius: 4px;
}

.bonus-card {
    display: flex;
    flex-direction: column;
    padding: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 3px solid var(--accent-gold);
    min-width: 230px;
    width: 230px;
    flex: 0 0 auto;
    scroll-snap-align: start;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 179, 0, 0.2);
}

.bonus-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.bonus-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.bonus-tag {
    background: var(--accent-red);
    color: white;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 10px;
    align-self: flex-start;
}

.bonus-old-price {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.bonus-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
    line-height: 1.2;
}

.bonus-desc {
    color: #cccccc;
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex: 1;
}

.bonus-included {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid var(--success);
    color: var(--success);
    font-weight: 800;
    text-align: center;
    padding: 8px;
    border-radius: 5px;
    letter-spacing: 1px;
}

.countdown-label {
    color: var(--accent-red);
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.timer {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.time-box {
    display: flex;
    flex-direction: column;
}

.time-box span {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: var(--font-heading);
    background: var(--secondary-bg);
    padding: 10px 15px;
    border-radius: 8px;
    min-width: 70px;
}

.time-box small {
    margin-top: 5px;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* BUTTONS */
.cta-button {
    display: inline-block;
    background-color: var(--accent-red);
    color: white;
    font-size: 1.2rem;
    font-weight: 800;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 8px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
}

.cta-button:hover {
    background-color: var(--accent-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.6);
}

.pulse {
    animation: button-pulse 2s infinite;
}

.glow-effect {
    box-shadow: 0 0 20px var(--accent-red);
}

.trust-indicators {
    margin-top: 30px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* PROBLEM SOLUTION */
.error-icon {
    color: var(--accent-red);
    margin-right: 10px;
}

.pain-points {
    list-style: none;
    margin-top: 20px;
}

.pain-points li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    color: #e0e0e0;
}

.pain-points li::before {
    content: '✖';
    color: var(--accent-red);
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 0.9rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.lead {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.lead-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* FEATURES */
.process-steps {
    margin-bottom: 50px;
}

.step-card {
    background: var(--primary-bg);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    border-top: 3px solid var(--accent-red);
    transition: transform 0.3s;
}

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

.step-icon {
    font-size: 2.5rem;
    color: var(--accent-red);
    margin-bottom: 15px;
}

.step-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.check-list {
    list-style: none;
    margin-top: 20px;
}

.check-list li {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

/* SOCIAL PROOF */
.stats-text {
    font-size: 2.2rem;
}

.stars {
    color: var(--accent-gold);
}

.stars-small {
    color: var(--accent-gold);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.testimonial-card .quote {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-info strong {
    color: var(--accent-red);
}

.user-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* BONUSES */
.product-mockup {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.bonus-grid {
    gap: 20px;
}

.bonus-card {
    background: var(--primary-bg);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--accent-gold);
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 179, 0, 0.05));
    pointer-events: none;
}

.bonus-badge {
    background: var(--accent-gold);
    color: #000;
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.bonus-card h3 {
    margin-bottom: 8px;
    font-size: 1.15rem;
}

.bonus-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* FAQs */
.shield-icon {
    font-size: 4rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.sticky-desktop {
    position: sticky;
    top: 40px;
}

.faq-item {
    background: var(--secondary-bg);
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(255,255,255,0.05);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    color: var(--text-muted);
}

.faq-answer.active {
    padding: 0 20px 20px 20px;
    max-height: 200px;
}

/* QUOTE SECTION */
.quote-text {
    font-size: 1.8rem;
    line-height: 1.3;
}

/* FINAL CTA */
.final-cta {
    background: linear-gradient(to top, rgba(211, 47, 47, 0.1), transparent);
}

.cta-two-col {
    display: flex;
    align-items: center;
    gap: 40px;
}

.recipe-carousel::-webkit-scrollbar {
    display: none;
}

.recipe-track {
    display: inline-flex;
    gap: 15px;
    animation: scroll-marquee 20s linear infinite;
}
.recipe-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 7.5px)); }
}

.mobile-only-btn {
    display: none !important;
}

.price-box {
    display: inline-block;
    background: rgba(0,0,0,0.5);
    padding: 20px 40px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
}

.old-price {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.new-price {
    font-size: 3rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.badge-discount {
    background: var(--accent-red);
    color: white;
    font-size: 1rem;
    padding: 5px 10px;
    border-radius: 5px;
    vertical-align: middle;
}

footer {
    padding: 30px 0;
    background: #000;
    color: #555;
    font-size: 0.9rem;
}

/* ANIMATIONS */
@keyframes pulse-red {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(211, 47, 47, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(211, 47, 47, 0); }
}

@keyframes button-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

/* NEW SECTION STYLES */
.trust-stripe {
    background-color: var(--secondary-bg);
    border-top: 2px solid var(--accent-red);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 20px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    position: relative;
    z-index: 20;
}
.trust-stripe .trust-item {
    font-weight: 700;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e0e0e0;
}
.trust-stripe .trust-item i {
    color: var(--accent-red);
}

.step-number {
    font-size: 5rem;
    font-weight: 900;
    color: rgba(211, 47, 47, 0.7);
    font-family: var(--font-heading);
    margin-bottom: -20px;
    line-height: 1;
    text-align: left;
}

ul.pain-points li {
    font-size: 1.15rem;
}
ul.pain-points li::before {
    font-size: 1.2rem;
    top: 2px;
}

/* TOP BANNER */
.top-urgency-banner {
    background-color: var(--accent-red);
    color: white;
    text-align: center;
    padding: 12px 15px;
    font-weight: 800;
    font-size: 1.05rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    text-transform: uppercase;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .hero-title { font-size: 2.8rem; }
    .section-title { font-size: 2.2rem; }
}

@media (max-width: 768px) {
    .py-section { padding: 40px 0; }
    .grid-2 { grid-template-columns: 1fr; gap: 20px; }
    .grid-3 { grid-template-columns: 1fr; gap: 20px; }
    .hero-title { font-size: 2rem; }
    .section-title { font-size: 1.8rem; }
    .hero-subtitle { font-size: 1rem; }
    .glass-card { padding: 20px; }
    .time-box span { font-size: 2rem; min-width: 50px; }
    .stats-text { font-size: 1.3rem; }
    .sticky-desktop { position: relative; top: 0; }
    
    /* Optimize Trust Stripe for mobile */
    .trust-stripe { padding: 10px 0; }
    .trust-stripe .container {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 5px !important;
        overflow-x: auto;
    }
    .trust-stripe .trust-item {
        font-size: 0.65rem;
        white-space: nowrap;
        justify-content: center;
    }
    
    /* Optimize CTA Blocks for mobile */
    .cta-two-col { 
        flex-direction: row; 
        flex-wrap: wrap !important; /* allow the mobile button to drop below */
        gap: 10px; 
        align-items: center;
        padding: 10px !important; /* maximum room */
    }
    
    .desktop-only-btn { display: none !important; }
    .mobile-only-btn { 
        display: block !important; 
        width: 100% !important; 
        margin-top: 5px; 
        font-size: 1rem !important;
        padding: 12px !important;
    }

    .cta-two-col .cta-image {
        flex: 0 0 150px; /* Make image larger */
        max-width: 150px;
    }
    .cta-two-col .cta-text {
        flex: 1;
        text-align: left !important;
        min-width: 0; /* prevents flex blowout */
    }
    
    /* Clean up text sizing and spacing */
    .cta-two-col .cta-text > div:first-child {
        font-size: 0.6rem !important;
        margin-bottom: 5px !important;
    }
    .cta-two-col .cta-text h3 {
        font-size: 0.95rem !important;
        margin-bottom: 5px !important;
        line-height: 1.1 !important;
    }
    .cta-two-col .cta-text > div {
        margin-bottom: 5px !important;
    }
    .cta-two-col .cta-text span {
        font-size: 0.7rem !important;
    }
    .cta-two-col .cta-text span[style*="1.5rem"] {
        font-size: 0.95rem !important; /* The big price */
    }
    .cta-two-col .cta-text div[style*="border-radius"] {
        font-size: 0.65rem !important;
        padding: 4px 6px !important;
        margin-bottom: 5px !important;
        display: inline-block;
    }
    .cta-two-col .cta-text .fa-star, .cta-two-col .cta-text .fa-star-half-alt {
        font-size: 0.65rem !important;
    }
    .cta-two-col .cta-button {
        font-size: 0.75rem !important;
        padding: 8px 4px !important;
        margin-top: 4px !important;
    }
    
    .new-price { font-size: 2rem; flex-wrap: wrap; }
    .price-box { padding: 20px; }
    
    /* Optimize Top Banner for mobile */
    .top-urgency-banner { 
        font-size: 0.75rem; 
        padding: 10px 5px; 
        letter-spacing: -0.5px; 
        white-space: nowrap;
    }
    
    /* Optimize Quote for mobile */
    .quote-text {
        font-size: 1.2rem;
    }
}
