@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Montserrat:wght@400;500;600;700;800;900&display=swap');

:root {
    --primary: #0f172a; /* Very dark navy blue */
    --bg-dark: #0f172a;
    --bg-darker: #020617;
    --red-alert: #ef4444; 
    --red-alert-dark: #b91c1c;
    --text-main: #f8fafc; /* White/very light gray for dark bg */
    --text-muted: #cbd5e1;
    --bg-light: #ffffff; /* For cards/testimonials */
    --accent-gold: #f59e0b;
    --accent-gold-hover: #d97706;
    --green-check: #22c55e;
    --dark: #0f172a;
}

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

body {
    font-family: 'Inter', sans-serif; /* Extremely readable body text */
    color: var(--text-main);
    background-color: var(--bg-dark);
    line-height: 1.65;
    font-size: 1.15rem; /* Standardizing easy-to-read body size */
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.text-primary { color: var(--text-main); }
.font-heading { font-family: 'Montserrat', sans-serif; }
.bold { font-weight: 700; }
.italic { font-style: italic; }
.mt-1 { margin-top: 1.5rem; }
.mt-2 { margin-top: 2.5rem; }
.mt-3 { margin-top: 4rem; }
.mb-1 { margin-bottom: 1.5rem; }
.mb-2 { margin-bottom: 2.5rem; }
.hidden { display: none !important; }

/* ================== STICKY COUNTDOWN ================== */
.top-warning-bar {
    background-color: var(--red-alert);
    color: #fff;
    text-align: center;
    padding: 14px 20px;
    font-size: 1.15rem;
    font-weight: 800;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    letter-spacing: 0.5px;
}

.warning-text {
    margin-bottom: 6px;
    display: block;
}

.countdown-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.time-unit {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}

.time-label {
    font-size: 0.75rem;
    margin-top: 4px;
    font-weight: 600;
    text-transform: lowercase;
}

.time-card {
    background: #fff;
    color: #000;
    font-weight: 900;
    font-size: 1.4rem;
    padding: 4px 10px;
    border-radius: 4px;
    box-shadow: inset 0 -2px 0 rgba(0,0,0,0.15);
}

.time-sep {
    font-weight: bold;
    color: #fff;
    font-size: 1.4rem;
    margin-top: -18px; /* Offset to center vertically with numbers */
}

/* ================== HERO / HEADLINE ================== */
.hero-section {
    background-color: var(--bg-dark);
    padding: 4rem 0 3rem;
}

.main-headline {
    font-size: 2.8rem;
    line-height: 1.25;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.sub-headline {
    font-size: 1.25rem;
    color: #cbd5e1;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    font-weight: 400;
}

.hero-main-image {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    display: block;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* ================== BUY 1 GET 3 ================== */
.b1g3-title {
    font-size: 2.3rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0.8rem;
    font-family: 'Inter', sans-serif;
}

.b1g3-subtitle {
    font-size: 1.25rem;
    color: #f8fafc;
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.b1g3-image-container {
    max-width: 800px;
    margin: 0 auto;
}

.b1g3-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.b1g3-prices {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    padding: 0 10%;
}

.b1g3-price-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

.b1g3-price-strikethrough {
    color: var(--accent-gold);
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 2px;
}

.b1g3-price-final {
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 800;
}

@media (max-width: 768px) {
    .b1g3-title { font-size: 1.9rem; }
    .b1g3-subtitle { font-size: 1.15rem; margin-bottom: 1.5rem; }
    .b1g3-prices { padding: 0 4%; }
    .b1g3-price-strikethrough { font-size: 1.05rem; }
    .b1g3-price-final { font-size: 1.35rem; }
}

/* ================== CALL TO ACTION BOX ================== */
.cta-box {
    background: transparent;
    padding: 1.5rem 0;
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
}

.cta-box h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.star-rating {
    color: var(--accent-gold);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    gap: 4px;
}

.price-container {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-container .current-price {
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
}

.price-container .savings {
    font-size: 1.25rem;
    color: #94a3b8;
    margin-top: 0.5rem;
}

.price-container .savings s {
    color: var(--red-alert);
}

.price-container .savings strong {
    color: #ffffff;
    font-weight: 700;
    margin-left: 8px;
}

.btn-buy-now {
    display: block;
    width: 100%;
    background-color: var(--accent-gold);
    color: #000000;
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1.25rem 2rem;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4);
    transition: all 0.2s ease;
    border: 3px solid #b45309;
    max-width: 450px;
    margin: 0 auto;
}

.btn-buy-now:hover {
    background-color: #fbbf24;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(245, 158, 11, 0.6);
}

.guarantee-text {
    font-size: 0.95rem;
    color: #94a3b8;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ================== DEAL INFO SECTIONS ================== */
.text-section {
    padding: 4rem 0;
    background-color: var(--bg-dark);
}

.text-section h2 {
    color: #ffffff;
}

.text-section p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #cbd5e1;
}

.divider {
    height: 1px;
    background: #334155;
    max-width: 60%;
    margin: 3rem auto;
}

/* ================== HTML BENEFITS CHECKLIST ================== */
.benefits-section {
    padding: 4rem 0;
    background-color: var(--bg-dark);
}

.benefits-list {
    list-style: none;
    max-width: 750px;
    margin: 2rem auto;
}

.benefits-list li {
    font-size: 1.2rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid #334155;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    color: #f8fafc;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list li i {
    color: var(--green-check);
    font-size: 1.6rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ================== BUNDLE SECTION ================== */
.bundle-section {
    padding: 4rem 0;
    background-color: var(--bg-dark);
    color: #fff;
    text-align: center;
}

.bundle-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.bundle-image {
    width: 100%;
    max-width: 900px;
    margin: 2rem auto;
    display: block;
}

/* ================== TESTIMONIALS ================== */
.testimonials-section {
    padding: 4rem 0;
    background: var(--bg-dark);
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 650px;
    margin: 0 auto 2rem;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.5);
    color: var(--dark);
    text-align: left;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #cbd5e1;
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark);
}

.verified-buyer {
    font-size: 0.85rem;
    color: var(--green-check);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.testimonial-stars {
    color: var(--accent-gold);
    display: flex;
    margin-bottom: 0.75rem;
}

.testimonial-title {
    font-weight: 800;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.testimonial-text {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.6;
}

/* ================== EXTRA SALES SECTIONS ================== */
.huge-offer-banner {
    background-color: var(--bg-dark); 
    padding: 3rem 1rem;
    text-align: center;
    border-top: none; 
    border-bottom: none;
}

.huge-offer-title {
    font-size: 9rem;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -2px;
}

.huge-offer-subtitle {
    font-size: 4.5rem;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    letter-spacing: -1px;
}

.transform-section {
    position: relative;
    padding: 3rem 20px;
    background-color: var(--bg-dark);
    /* In a real scenario, you can add the sunset background image here:
       background-image: url('images/sunset-bg.jpg');
       background-size: cover;
       background-position: center;
       background-blend-mode: overlay;
    */
    color: #ffffff;
    overflow: hidden;
}

.transform-title {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    color: #ffc107;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    margin-bottom: 2rem;
    line-height: 1.15;
}

.transform-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.transform-image-wrapper {
    flex: 1;
    max-width: 500px;
}

.transform-image-wrapper img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.transform-benefits {
    flex: 1;
    list-style: none;
}

.transform-benefits li {
    font-size: 1.8rem;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.transform-benefits li::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background-color: #b91c1c;
    border-radius: 50%;
    margin-top: 8px;
    box-shadow: inset -2px -2px 4px rgba(0,0,0,0.5);
    flex-shrink: 0;
}

/* ================== RESPONSIVE ================== */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hero-section, .text-section, .benefits-section, .bundle-section, .testimonials-section {
        padding: 0.8rem 0 !important;
    }

    .divider {
        margin: 1.5rem auto !important;
    }

    /* Decrease explicit utility margins on mobile */
    .mt-1 { margin-top: 1rem !important; }
    .mt-2 { margin-top: 1.5rem !important; }
    .mt-3 { margin-top: 2rem !important; }
    .mb-1 { margin-bottom: 1rem !important; }
    .mb-2 { margin-bottom: 1.5rem !important; }
    
    .top-warning-bar {
        padding: 10px;
    }
    .warning-text {
        font-size: 1.1rem;
        margin-bottom: 4px;
    }
    .time-card {
        font-size: 1.1rem;
        padding: 4px 10px;
    }
    .time-sep {
        font-size: 1.1rem;
        margin-top: -14px;
    }
    .time-label {
        font-size: 0.65rem;
    }

    .main-headline {
        font-size: 2.1rem;
        line-height: 1.25;
        margin-bottom: 1.2rem;
    }
    
    .sub-headline {
        font-size: 1.1rem;
    }
    
    .price-container .current-price {
        font-size: 3.2rem;
    }
    
    .btn-buy-now {
        font-size: 1.4rem;
        padding: 1.2rem 1rem;
    }
    
    .text-section p, .benefits-list li {
        font-size: 1.15rem;
    }
    
    .bundle-section h2 {
        font-size: 2.2rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .huge-offer-banner {
        padding: 1rem 1rem;
    }
    
    .huge-offer-title {
        font-size: 4rem;
    }
    
    .huge-offer-subtitle {
        font-size: 1.8rem;
    }
    
    .transform-title {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }
    
    .transform-image-wrapper {
        width: 100%;
        margin-bottom: -1rem;
    }

    .transform-image-wrapper img {
        width: 100%;
        max-width: 100%;
        transform: scale(1.05); /* Make the image pop a bit more */
    }
    
    .transform-grid {
        flex-direction: column;
        gap: 1rem;
    }
    
    .transform-benefits li {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
}
