/* ===========================================
   DESIGN SYSTEM — PREMIUM REPLICA
   Font: Nunito + Plus Jakarta Sans
   Palette: Red headings, Green accents, Clean white/light BG
   =========================================== */

:root {
    --red: #c0392b;
    --red-dark: #a93226;
    --green: #2E7D02;
    --green-light: #E8F5E9;
    --green2: #27ae60;
    --orange: #e67e22;
    --gold: #f39c12;
    --dark: #1a1a1a;
    --text: #222222;
    --subtext: #555;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --radius: 14px;
    --r-sm: 8px;

    --font-body: 'Nunito', sans-serif;
    --font-head: 'Plus Jakarta Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg-white);
    color: var(--text);
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

.container-wide {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

/* ============ TOP BANNER ============ */
.top-banner {
    background: var(--green-light);
    color: var(--green);
    text-align: center;
    padding: 10px 16px;
    font-size: 13.5px;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.2px;
    line-height: 1.5;
}
.top-banner strong { font-weight: 800; }

/* ============ HERO SECTION ============ */
.hero-section {
    background: var(--bg-white);
    padding: 24px 0 28px;
    border-bottom: 2px solid #f0f0f0;
}

.hero-h1 {
    font-family: var(--font-head);
    font-size: 1.55rem;
    font-weight: 900;
    color: var(--red);
    text-align: center;
    line-height: 1.4;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.hero-price-green {
    color: var(--green);
    font-size: 1.1em;
    display: block;
    margin-top: 4px;
}

.hero-sub {
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--subtext);
    margin-bottom: 16px;
    font-style: italic;
}

.hero-img-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 18px;
}
.hero-img-wrap img {
    width: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}

/* ============ SECTION HEADINGS ============ */
.section-red-heading {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--red);
    text-align: center;
    line-height: 1.45;
    margin-bottom: 20px;
}

.imagine-heading {
    font-family: var(--font-head);
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--red);
    margin-bottom: 22px;
}

/* ============ BENEFIT LIST ============ */
.benefit-list {
    list-style: none;
    margin: 10px 0 20px;
    padding: 0;
}
.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 15.5px;
    font-weight: 700;
    color: var(--dark);
}

.check-box {
    display: inline-block;
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: var(--green);
    border-radius: 4px;
    margin-top: 2px;
}
.check-box::after {
    content: '✓';
    color: white;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-weight: 900;
}

.check-box.gold {
    background: var(--gold);
}

.green-text { color: var(--green); font-weight: 800; }

/* ============ PRICE ROW ============ */
.price-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 16px 0;
    flex-wrap: wrap;
}
.price-current {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--green);
    line-height: 1;
}
.price-old {
    font-size: 1.1rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 600;
}
.price-off {
    background: var(--orange);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 20px;
}

/* ============ BUY BUTTON ============ */
.btn-buy {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, var(--green) 0%, #27ae60 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 16px 20px;
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 800;
    cursor: pointer;
    text-align: center;
    line-height: 1.4;
    letter-spacing: 0.3px;
    box-shadow: 0 6px 24px rgba(46,125,2,0.35);
    transition: transform 0.2s, box-shadow 0.2s;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}
.btn-buy::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255,255,255,0.0) 30%,
        rgba(255,255,255,0.45) 50%,
        rgba(255,255,255,0.0) 70%,
        transparent 100%
    );
    animation: shimmerSweep 2.2s ease-in-out infinite;
    pointer-events: none;
}
@keyframes shimmerSweep {
    0%   { left: -100%; }
    60%  { left: 150%; }
    100% { left: 150%; }
}
.btn-buy small {
    font-size: 0.72rem;
    font-weight: 600;
    display: block;
    opacity: 0.9;
    text-transform: none;
    letter-spacing: 0;
}
.btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(46,125,2,0.45);
}
.btn-buy i { margin-right: 6px; }

@keyframes pulse {
    0%,100% { box-shadow: 0 6px 24px rgba(46,125,2,0.35); }
    50% { box-shadow: 0 6px 34px rgba(46,125,2,0.65), 0 0 0 8px rgba(46,125,2,0.12); }
}
.btn-pulse { animation: pulse 2s ease-in-out infinite; }

/* ============ BADGE ROW ============ */
.badge-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
    flex-wrap: wrap;
}
.badge-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ffffff;
    padding: 6px 12px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    border: 1.5px solid #e2e8f0;
    font-size: 13px;
    color: #334155;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.badge-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.08);
}
.badge-item svg {
    flex-shrink: 0;
}
.stars-wrap {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    margin-left: 4px;
}
.stars { color: #f39c12; }

/* ============ SECTIONS ============ */
.section { padding: 36px 0; }
.bg-white { background: var(--bg-white); }
.bg-light { background: var(--bg-light); }
.center-text { text-align: center; }

/* ============ PAIN CARDS ============ */
.pain-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 0;
}
.pain-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.10);
    border: 1.5px solid #ececec;
    transition: transform 0.22s, box-shadow 0.22s;
}
.pain-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.14);
}

/* Image wrap with overlay */
.pain-img-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.pain-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.35s;
}
.pain-card:hover .pain-img-wrap img {
    transform: scale(1.05);
}

/* Overlay badge top-left */
.pain-img-overlay {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0,0,0,0.62);
    color: #fff;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.45;
    padding: 5px 10px;
    border-radius: 6px;
    backdrop-filter: blur(4px);
    pointer-events: none;
}
.pain-img-overlay strong {
    font-weight: 900;
    font-size: 12px;
    display: block;
}

/* Card body */
.pain-body {
    padding: 14px 14px 16px;
}
.pain-body h3 {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 6px;
    line-height: 1.4;
}
.pain-body p {
    font-size: 12.5px;
    color: #555;
    line-height: 1.6;
    font-weight: 600;
}
.emergency-text { color: var(--red); font-weight: 800; }


/* ============ CALLOUT ============ */
.callout-heading {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--red);
    line-height: 1.4;
    margin-bottom: 20px;
}
.callout-img-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 14px;
}
.callout-sub {
    font-size: 15px;
    font-weight: 800;
    color: var(--dark);
    text-align: center;
}

/* ============ IMAGINE GRID ============ */
.imagine-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.imagine-col {
    background: #fff;
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    border-left: 4px solid var(--green);
}
.imagine-col-title {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.4;
}
.imagine-sub {
    font-size: 13.5px;
    color: #555;
    font-weight: 600;
    margin-bottom: 6px;
}
.imagine-bold {
    font-size: 14px;
    font-weight: 800;
    color: var(--green);
    line-height: 1.5;
}

/* ============ TESTIMONIALS ============ */
.testimonials-wrapper {
    position: relative;
    overflow: hidden;
    min-height: 200px;
}
.tcard {
    display: none;
    background: #fff;
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
    border: 1.5px solid #e8e8e8;
    animation: fadeIn 0.4s ease;
}
.tcard.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.tcard-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 14px;
    gap: 12px;
}
.tcard-info h3 {
    font-family: var(--font-head);
    font-size: 14.5px;
    font-weight: 800;
    margin-bottom: 2px;
}
.tcard-info span {
    font-size: 12px;
    color: #888;
    font-weight: 600;
}
.tstars { color: var(--gold); font-size: 14px; margin-top: 4px; }
.tcard-header > img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--green-light);
    flex-shrink: 0;
}
.tcard blockquote {
    font-size: 13.5px;
    color: #444;
    font-style: italic;
    border-left: 3px solid var(--green);
    padding-left: 12px;
    line-height: 1.7;
    font-weight: 600;
}

.slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 16px;
}
.snav-btn {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1.5px solid #ddd;
    background: #fff;
    cursor: pointer;
    font-size: 14px;
    color: #555;
    transition: all 0.2s;
    display: flex; align-items: center; justify-content: center;
}
.snav-btn:hover { background: var(--green); color: #fff; border-color: var(--green); }
.snav-dots { display: flex; gap: 6px; }
.sdot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #ddd;
    transition: background 0.2s;
}
.sdot.active { background: var(--green); }

/* ============ WHAT YOU GET ============ */
.product-hero {
    text-align: center;
    margin-bottom: 10px;
}
.product-hero img {
    max-width: 420px;
    width: 100%;
    height: auto;
    display: inline-block;
    filter: drop-shadow(0 8px 28px rgba(0,0,0,0.18));
    border-radius: 10px;
}
.product-main-title {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--dark);
    text-align: center;
    margin-bottom: 22px;
}


.mb-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 22px;
}
.mb-col {
    background: #fff;
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    border: 1.5px solid #e8e8e8;
}
.mb-col-title {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 14px;
}
.modules-title { background: #fff3cd; color: #856404; }
.bonus-title { background: #d1fae5; color: #064e3b; }

.mb-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.mb-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--text);
    font-weight: 600;
    line-height: 1.5;
}
.mb-list li strong { font-weight: 800; font-size: 13.5px; }
.mb-list li span { color: #666; font-weight: 500; font-size: 12px; }
.icon-green2 { color: var(--green2); font-size: 17px; margin-top: 1px; flex-shrink: 0; }
.icon-gold { color: var(--gold); font-size: 17px; margin-top: 1px; flex-shrink: 0; }
.value-tag {
    background: #fef3c7;
    color: #92400e;
    font-size: 10px;
    padding: 2px 7px;
    border-radius: 10px;
    font-weight: 700;
    display: inline-block;
    margin-left: 4px;
}

/* ============ GUARANTEE BOX ============ */
.guarantee-box {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #e6f4ea;
    border: 2px solid var(--green2);
    border-radius: var(--radius);
    padding: 18px;
    margin-bottom: 16px;
}
.guarantee-icon { font-size: 2.2rem; flex-shrink: 0; }
.guarantee-box h3 { font-family: var(--font-head); font-size: 15px; font-weight: 800; margin-bottom: 5px; }
.guarantee-box p { font-size: 13px; font-weight: 600; color: #333; }

/* ============ COMPARISON ============ */
.cmp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.cmp-card {
    border-radius: var(--radius);
    padding: 18px 14px;
    position: relative;
}
.cmp-card h3 {
    font-family: var(--font-head);
    font-size: 13.5px;
    font-weight: 800;
    margin-bottom: 14px;
    line-height: 1.4;
}
.cmp-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.cmp-card li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 600;
    line-height: 1.4;
}
.cmp-bad { background: #fef2f2; border: 1.5px solid #fca5a5; }
.cmp-bad h3 { color: var(--red); }
.cmp-bad li i { color: var(--red); font-size: 13px; margin-top: 2px; flex-shrink: 0; }
.cmp-good { background: #f0fdf4; border: 2px solid var(--green2); }
.cmp-good h3 { color: var(--green); }
.cmp-good li i { color: var(--green2); font-size: 13px; margin-top: 2px; flex-shrink: 0; }
.rec-tag {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

/* ============ CREATOR SECTION ============ */
.creator-section {
    background: #ffffff;
    padding: 60px 0;
}

.creator-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
}

.creator-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.creator-image-wrap {
    width: 100%;
    max-width: 420px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.creator-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.creator-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.creator-name {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.creator-subtitle {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 20px;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 8px 0;
    width: 100%;
    max-width: 500px;
}

.creator-desc {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: #334155;
    margin-bottom: 28px;
    max-width: 550px;
}

.creator-cta-wrap {
    width: 100%;
    max-width: 320px;
}

.btn-creator-purchase {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: #2e7d32; /* Premium Green */
    color: #ffffff;
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 14px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
    transition: all 0.2s ease;
    text-transform: none;
    text-decoration: none;
}

.btn-creator-purchase:hover {
    background: #1b5e20;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
}

/* Responsive Styles */
@media (max-width: 767px) {
    .top-banner {
        background: var(--green-light);
        color: var(--green);
        text-align: center;
        padding: 10px 16px;
        font-size: 12px;
        font-family: var(--font-body);
        font-weight: 500;
        letter-spacing: 0.2px;
        line-height: 1.5;
    }
    .creator-name {
        font-size: 1.8rem;
    }
    .creator-subtitle {
        font-size: 0.95rem;
    }
    .creator-desc {
        font-size: 0.95rem;
    }
}

@media (min-width: 768px) {
    .creator-grid {
        grid-template-columns: 1.1fr 1fr;
        gap: 50px;
        align-items: center;
    }
    
    .creator-left {
        align-items: flex-start;
        text-align: left;
    }
    
    .creator-right {
        align-items: flex-start;
        text-align: left;
    }
    
    .creator-subtitle {
        text-align: left;
        max-width: none;
    }
    
    .creator-desc {
        max-width: none;
    }
}

/* ============ URGENCY SECTION ============ */
.urgency-section { background: #fff7ed; border-top: 2px solid #fed7aa; border-bottom: 2px solid #fed7aa; }
.urgency-wrap {
    background: #fff;
    border-radius: var(--radius);
    padding: 24px 18px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1.5px solid #fde68a;
}
.urgency-title {
    font-family: var(--font-head);
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--red);
    margin-bottom: 6px;
}
.urgency-sub { font-size: 14px; font-weight: 700; color: #555; margin-bottom: 18px; }

.sold-bar-wrap { margin-bottom: 18px; }
.sold-bar-label {
    display: flex;
    justify-content: space-between;
    font-size: 12.5px;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--dark);
}
.sold-live {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--red);
}
.blink-dot {
    width: 8px; height: 8px;
    background: var(--red);
    border-radius: 50%;
    display: inline-block;
    animation: blink 1s ease-in-out infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.2; } }
.sold-bar-track {
    height: 12px;
    background: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
}
.sold-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--orange), var(--red));
    border-radius: 10px;
    animation: fillBar 1s ease-out;
}
@keyframes fillBar { from { width: 0%; } }

.urgency-offer {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.5;
    margin-bottom: 14px;
}
.urgency-offer span { color: var(--red); }
.urgency-list { list-style: none; margin-bottom: 18px; display: flex; flex-direction: column; gap: 8px; }
.urgency-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 700;
}
.urgency-list li i { color: var(--green2); margin-top: 2px; flex-shrink: 0; }

/* ============ COUNTDOWN ============ */
.countdown-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 18px 0;
}
.cdown-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--dark);
    border-radius: 10px;
    padding: 12px 18px;
    min-width: 68px;
}
.cdown-num {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}
.cdown-lbl {
    font-size: 10px;
    font-weight: 600;
    color: #aaa;
    margin-top: 4px;
}
.cdown-sep {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 14px;
}

/* ============ FAQ ============ */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
    background: #fff;
    border-radius: var(--r-sm);
    border: 1.5px solid #e5e5e5;
    overflow: hidden;
    box-shadow: 0 1px 6px rgba(0,0,0,0.05);
}
.faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    padding: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    text-align: left;
    line-height: 1.5;
    transition: background 0.2s;
}
.faq-q:hover { background: #f9f9f9; }
.faq-q[aria-expanded="true"] { color: var(--red); }
.faq-icon { font-size: 14px; color: var(--green); flex-shrink: 0; margin-top: 3px; transition: transform 0.3s; }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.faq-a p {
    padding: 0 16px 16px;
    font-size: 13.5px;
    color: #555;
    font-weight: 600;
    line-height: 1.7;
}

/* ============ FINAL CTA ============ */
.bg-dark-cta {
    background: linear-gradient(135deg, var(--green) 0%, #1a5c01 100%);
}
.final-cta-title {
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 8px;
}
.final-cta-sub {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 22px;
}
.bg-dark-cta .btn-buy {
    background: #fff;
    color: var(--green);
    box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}
.bg-dark-cta .btn-buy:hover {
    background: #f5f5f5;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* ============ FOOTER ============ */
.footer {
    background: #000000; /* Pure black */
    color: #ffffff; /* White text */
    padding: 40px 0 20px;
    text-align: center;
}

.footer .container {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 16px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer-title {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
}

.footer-tagline {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #cccccc;
    margin: 0;
    max-width: 480px;
    line-height: 1.5;
}

.footer-badges-new {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 18px;
    margin: 10px 0;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
}

.footer-badges-new span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.footer-support-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.support-title {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
}

.footer-support-new p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #cccccc;
    margin: 0;
}

.support-email a {
    color: #ffffff !important;
    text-decoration: underline;
    font-weight: 700;
}

.support-email a:hover {
    color: #cccccc !important;
}

.footer-divider {
    border: 0;
    border-top: 1px solid #222222;
    margin: 24px 0 16px;
    width: 100%;
}

.footer-copy {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: #888888;
    margin: 0;
}

/* ============ STICKY BAR ============ */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 10px 16px;
    z-index: 900;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    border-top: 1.5px solid #e8e8e8;
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-inner {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.sticky-price {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.sticky-bar .btn-buy { width: auto; flex-shrink: 0; }

/* ============ MODAL OVERLAY ============ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 16px;
    backdrop-filter: blur(4px);
    animation: overlayIn 0.25s ease;
}
.modal-overlay[style*="none"] { display: none !important; }
@keyframes overlayIn { from { opacity: 0; } to { opacity: 1; } }

.modal-box {
    background: #fff;
    border-radius: 18px;
    padding: 28px 22px;
    width: 100%;
    max-width: 420px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: modalIn 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes modalIn { from { opacity: 0; transform: scale(0.9) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } }

.modal-close {
    position: absolute;
    top: 14px; right: 14px;
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 1.5px solid #ddd;
    background: #f5f5f5;
    cursor: pointer;
    font-size: 14px;
    color: #555;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
}
.modal-close:hover { background: #fee2e2; border-color: #fca5a5; color: var(--red); }

.modal-header { text-align: center; margin-bottom: 16px; }
.modal-lock {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--green), #27ae60);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 10px;
    color: #fff;
    font-size: 1.3rem;
}
.modal-header h2 {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 4px;
}
.modal-header p { font-size: 12.5px; color: #888; font-weight: 600; }

.modal-price-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
    justify-content: center;
}

.form-group { margin-bottom: 14px; }
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}
.form-group input {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--dark);
    outline: none;
    transition: border-color 0.2s;
}
.form-group input:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(46,125,2,0.1); }
.form-group input::placeholder { color: #bbb; font-weight: 500; }

.btn-pay-now {
    width: 100%;
    background: linear-gradient(135deg, var(--green), #27ae60);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 16px;
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    margin-top: 4px;
    box-shadow: 0 6px 20px rgba(46,125,2,0.3);
    transition: transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}
.btn-pay-now::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0) 30%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 70%, transparent 100%);
    animation: shimmerSweep 2.2s ease-in-out infinite;
    pointer-events: none;
}
.btn-pay-now:hover { transform: translateY(-2px); }

.modal-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    font-size: 12px;
    color: #999;
    font-weight: 600;
}
.modal-trust img { height: 18px; }

/* ============ SUCCESS MODAL ============ */
.success-modal-box { text-align: center; }
.success-icon-wrap { margin-bottom: 14px; }
.success-icon {
    width: 72px; height: 72px;
    background: linear-gradient(135deg, var(--green), #27ae60);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    animation: popIn 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes popIn { from { transform: scale(0); } to { transform: scale(1); } }
.success-title {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 8px;
}
.success-sub { font-size: 14px; color: #555; font-weight: 600; margin-bottom: 14px; }

.payment-id-box {
    background: #f5f5f5;
    border-radius: var(--r-sm);
    padding: 8px 14px;
    font-size: 12.5px;
    color: #555;
    margin-bottom: 16px;
    text-align: left;
}
.payment-id-box strong { color: var(--dark); font-size: 13px; }

.pdf-download-section {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #f0fdf4;
    border: 1.5px solid #86efac;
    border-radius: var(--radius);
    padding: 14px;
    margin-bottom: 16px;
    text-align: left;
}
.pdf-icon {
    width: 48px; height: 48px;
    background: #dc2626;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    flex-shrink: 0;
}
.pdf-download-section h4 { font-family: var(--font-head); font-size: 13.5px; font-weight: 800; margin-bottom: 2px; }
.pdf-download-section p { font-size: 12px; color: #777; font-weight: 600; }

.btn-download {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--green), #27ae60);
    color: #fff;
    border-radius: 12px;
    padding: 16px;
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 800;
    width: 100%;
    margin-bottom: 14px;
    box-shadow: 0 6px 20px rgba(46,125,2,0.3);
    transition: transform 0.2s;
}
.btn-download:hover { transform: translateY(-2px); }

.success-note {
    font-size: 12.5px;
    color: #888;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 16px;
}
.success-note strong { color: var(--dark); }

.btn-close-success {
    background: #f5f5f5;
    border: none;
    border-radius: 10px;
    padding: 10px 24px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    color: #555;
    width: 100%;
    transition: background 0.2s;
}
.btn-close-success:hover { background: #ebebeb; }

/* ============ SECRET SECTION ============ */
.secret-heading {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--red);
    text-align: center;
    margin-bottom: 20px;
}

.secret-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.secret-card {
    background: #fff;
    border-radius: 14px;
    border: 1.5px solid #e0e0e0;
    overflow: hidden;
    box-shadow: 0 2px 14px rgba(0,0,0,0.07);
    transition: transform 0.22s, box-shadow 0.22s;
}
.secret-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.13);
}
.secret-card-highlight {
    border: 2.5px solid var(--green);
    box-shadow: 0 2px 18px rgba(46,125,2,0.18);
}
.secret-card-highlight:hover {
    box-shadow: 0 8px 28px rgba(46,125,2,0.25);
}

.secret-img-wrap {
    width: 100%;
    overflow: hidden;
}
.secret-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}
.secret-card:hover .secret-img-wrap img {
    transform: scale(1.04);
}

.secret-body {
    padding: 14px 12px 16px;
}
.secret-card-title {
    font-family: var(--font-head);
    font-size: 13.5px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.secret-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.secret-list li {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #333;
    line-height: 1.5;
}
.sq-check {
    flex-shrink: 0;
    font-size: 12px;
    margin-top: 0;
}

/* ============ TRUST BAR ============ */
.trust-bar-section {
    background: #fff;
    padding: 22px 16px;
    border-top: 1.5px solid #f0f0f0;
    border-bottom: 1.5px solid #f0f0f0;
}
.trust-bar-text {
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 900;
    color: #e91e8c;
    margin-bottom: 14px;
    line-height: 1.4;
}
.btn-trust-buy {
    display: inline-block;
    background: var(--green);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px 32px;
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 16px rgba(46,125,2,0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}
.btn-trust-buy::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255,255,255,0.0) 30%,
        rgba(255,255,255,0.45) 50%,
        rgba(255,255,255,0.0) 70%,
        transparent 100%
    );
    animation: shimmerSweep 2.2s ease-in-out infinite;
    pointer-events: none;
}
.btn-trust-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(46,125,2,0.4);
}

/* ============ REVIEWS GRID ============ */
.reviews-sub {
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 18px;
}

.reviews-filter-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.filter-label {
    font-size: 13px;
    font-weight: 800;
    color: var(--dark);
    white-space: nowrap;
}
.reviews-filter {
    flex: 1;
    min-width: 160px;
    padding: 10px 14px;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--dark);
    background: #fff;
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s;
    appearance: auto;
}
.reviews-filter:focus { border-color: var(--green); }

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 20px;
}

.rcard {
    background: #fff;
    border-radius: var(--radius);
    border: 1.5px solid #e5e5e5;
    padding: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s, opacity 0.3s;
}
.rcard:hover { transform: translateY(-2px); }
.rcard.hidden { display: none; }

.rcard-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.ravatar {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 900;
}

.rcard-meta { flex: 1; }

.rcard-name {
    font-size: 14px;
    font-weight: 800;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 2px;
}

.verified-badge {
    font-size: 11px;
    font-weight: 700;
    color: #16a34a;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}
.verified-badge i { font-size: 10px; }

.rstars {
    color: var(--gold);
    font-size: 13px;
    margin-bottom: 2px;
}
.rdate {
    font-size: 11.5px;
    color: #999;
    font-weight: 600;
}

.rreview {
    font-size: 13px;
    color: #333;
    font-weight: 600;
    line-height: 1.75;
    margin-bottom: 10px;
}
.rreview strong { color: var(--dark); font-weight: 800; }

.rproduct {
    font-size: 11.5px;
    color: #aaa;
    font-weight: 600;
    border-top: 1px solid #f0f0f0;
    padding-top: 8px;
}

.reviews-footer-text {
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: #555;
    padding-top: 6px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 400px) {
    .hero-h1 { font-size: 1.3rem; }
    .cmp-grid { grid-template-columns: 1fr; }
    .cdown-box { min-width: 56px; padding: 10px 12px; }
    .cdown-num { font-size: 1.6rem; }
}

@media (min-width: 560px) {
    .mb-grid { flex-direction: row; }
    .mb-col { flex: 1; }
    .author-flex { flex-direction: row; text-align: left; }
    .imagine-grid { flex-direction: row; flex-wrap: wrap; }
    .imagine-col { flex: 1; min-width: 45%; }

    /* Pain: 2-col on medium */
    .pain-grid { grid-template-columns: repeat(2, 1fr); }

    /* Secret: 2-col on medium screens */
    .secret-grid { grid-template-columns: repeat(2, 1fr); }
    .secret-card-title { font-size: 13px; }
    .secret-list li { font-size: 12px; }

    /* Reviews: 3-col on medium+ */
    .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 800px) {
    /* Pain: 4-col on large screens */
    .pain-grid { grid-template-columns: repeat(4, 1fr); }

    /* Secret: 4-col on large screens */
    .secret-grid { grid-template-columns: repeat(4, 1fr); }
    .secret-card-title { font-size: 13.5px; }
    .secret-list li { font-size: 12.5px; }
}

/* ============ AFTER SECTION (6 MONTHS LATER) ============ */
.bg-light-orange {
    background: #fffbf9;
    border-top: 2px solid #ffedd5;
    border-bottom: 2px solid #ffedd5;
}
.after-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 24px;
    margin-bottom: 30px;
}
.after-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1.5px solid #f1f5f9;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}
.after-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(169,50,38,0.12);
    border-color: #fde68a;
}
.after-img-wrap {
    width: 100%;
    height: 180px;
    overflow: hidden;
}
.after-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.after-card:hover .after-img-wrap img {
    transform: scale(1.06);
}
.after-body {
    padding: 18px;
    text-align: center;
}
.after-body h3 {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.after-body p {
    font-size: 13.5px;
    color: #4b5563;
    line-height: 1.6;
    font-weight: 600;
}
.choice-heading {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--red);
    text-align: center;
    margin-top: 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

