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

:root {
    --red: #c0392b;
    --red-dark: #96281b;
    --cream: #f5f0e8;
    --dark: #111010;
    --mid: #1c1a1a;
    --text: #d4cfc8;
    --muted: #6b6560;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1.6;
}

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

/* ─── BADGE ─── */
.badge {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    border: 1px solid var(--red);
    padding: 5px 14px;
    border-radius: 2px;
    margin-bottom: 24px;
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-block;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
    padding: 14px 28px;
    text-align: center;
}

.btn-primary {
    background: var(--red);
    color: #fff;
}

.btn-primary:hover {
    background: var(--red-dark);
}

.btn-outline {
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(245, 240, 232, 0.3);
}

.btn-outline:hover {
    border-color: rgba(245, 240, 232, 0.7);
    color: #fff;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

/* ─── HERO — mobile first ─── */
.hero {
    min-height: 100svh;
    display: flex;
    align-items: center;
    background: var(--dark);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -60px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(192,57,43,0.14) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    width: 100%;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.hero-left h1 {
    font-family: 'Lora', serif;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.08;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-left h1 em {
    font-style: italic;
    color: var(--red);
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 32px;
}

.hero-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-right {
    display: flex;
    flex-direction: row;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 40px;
    flex-wrap: wrap;
    gap: 24px;
}

.stat-block {
    flex: 1;
    min-width: 80px;
}

.stat-num {
    display: block;
    font-family: 'Lora', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--muted);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ─── BENEFITS — mobile first ─── */
.benefits {
    padding: 64px 0;
    background: var(--mid);
}

.benefits-header {
    margin-bottom: 40px;
}

.section-label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
}

.benefits-header h2 {
    font-family: 'Lora', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
}

.benefits-list {
    display: flex;
    flex-direction: column;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 28px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.benefit-item:last-child {
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.benefit-num {
    font-family: 'Lora', serif;
    font-size: 1rem;
    color: var(--red);
    font-weight: 700;
    min-width: 28px;
    padding-top: 2px;
}

.benefit-item h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.benefit-item p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.7;
}

/* ─── CTA — mobile first ─── */
.cta-section {
    padding: 64px 0;
    background: var(--dark);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.cta-inner {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.cta-text h2 {
    font-family: 'Lora', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 12px;
}

.cta-text h2 em {
    font-style: italic;
    color: var(--red);
}

.cta-text p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.65;
}

.cta-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ─── FOOTER ─── */
.footer {
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer p {
    color: var(--muted);
    font-size: 0.8rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--cream);
}

/* ─── TABLET 640px+ ─── */
@media (min-width: 640px) {
    .container {
        padding: 0 32px;
    }

    .hero-btns {
        flex-direction: row;
    }

    .cta-btns {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footer-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* ─── DESKTOP 900px+ ─── */
@media (min-width: 900px) {
    .container {
        max-width: 1080px;
        padding: 0 40px;
    }

    .hero-inner {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
        padding: 80px 40px;
        gap: 60px;
        max-width: 1080px;
        margin: 0 auto;
    }

    .hero-left {
        flex: 1;
    }

    .hero-left h1 {
        font-size: 5.5rem;
        margin-bottom: 28px;
    }

    .hero-sub {
        max-width: 420px;
    }

    .hero-right {
        flex-direction: column;
        border-top: none;
        border-left: 1px solid rgba(255,255,255,0.07);
        padding-top: 0;
        padding-left: 48px;
        gap: 0;
        min-width: 190px;
        flex-wrap: nowrap;
    }

    .stat-block {
        padding: 28px 0;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        flex: unset;
        min-width: unset;
    }

    .stat-block:last-child {
        border-bottom: none;
    }

    .stat-num {
        font-size: 2.4rem;
    }

    .benefits {
        padding: 110px 0;
    }

    .benefits-header {
        margin-bottom: 60px;
    }

    .benefits-header h2 {
        font-size: 2.8rem;
    }

    .benefit-item {
        gap: 40px;
        padding: 40px 0;
    }

    .cta-section {
        padding: 110px 0;
    }

    .cta-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 60px;
    }

    .cta-text h2 {
        font-size: 3rem;
    }

    .cta-btns {
        flex-direction: column;
        min-width: 240px;
        flex-wrap: nowrap;
    }
}

/* ═══════════════════════════════════════════
   CONVERSION ELEMENTS
═══════════════════════════════════════════ */

/* ─── STICKY BAR ─── */
#sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: #0e0d0d;
    border-top: 1px solid rgba(192,57,43,0.35);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -8px 32px rgba(0,0,0,0.5);
}

#sticky-bar.visible {
    transform: translateY(0);
}

.sticky-text {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.4;
}

.sticky-text strong {
    color: #fff;
}

.sticky-cta {
    white-space: nowrap;
    padding: 11px 24px;
    font-size: 0.9rem;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    #sticky-bar {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    .sticky-cta {
        width: 100%;
    }
}

/* ─── LIVE TOAST ─── */
.live-toast {
    position: fixed;
    bottom: 80px;
    left: 20px;
    z-index: 950;
    background: #1c1a1a;
    border: 1px solid rgba(255,255,255,0.08);
    border-left: 3px solid var(--red);
    border-radius: 6px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
    max-width: 300px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    opacity: 0;
    transform: translateX(-110%);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.live-toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #2ecc71;
    flex-shrink: 0;
    box-shadow: 0 0 0 0 rgba(46,204,113,0.6);
    animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
    0%   { box-shadow: 0 0 0 0 rgba(46,204,113,0.6); }
    70%  { box-shadow: 0 0 0 7px rgba(46,204,113,0); }
    100% { box-shadow: 0 0 0 0 rgba(46,204,113,0); }
}

.toast-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.3;
}

.toast-body strong {
    font-size: 0.85rem;
    color: #fff;
    font-weight: 600;
}

.toast-body span {
    font-size: 0.75rem;
    color: var(--muted);
}

/* ─── EXIT INTENT OVERLAY ─── */
#exit-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0,0,0,0.82);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    backdrop-filter: blur(4px);
}

#exit-overlay.visible {
    opacity: 1;
    pointer-events: all;
}

.exit-box {
    background: #1c1a1a;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 48px 40px 40px;
    max-width: 460px;
    width: 100%;
    text-align: center;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

#exit-overlay.visible .exit-box {
    transform: translateY(0);
}

.exit-pulse {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(192,57,43,0.15);
    border: 2px solid var(--red);
    margin: 0 auto 24px;
    position: relative;
}

.exit-pulse::after {
    content: '👋';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.4rem;
}

.exit-box h2 {
    font-family: 'Lora', serif;
    font-size: 1.7rem;
    color: #fff;
    margin-bottom: 12px;
}

.exit-box p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 28px;
}

.exit-main-btn {
    display: block;
    width: 100%;
    margin-bottom: 14px;
}

.exit-skip {
    background: none;
    border: none;
    color: var(--muted);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    cursor: pointer;
    text-decoration: underline;
    padding: 4px;
    transition: color 0.2s;
}

.exit-skip:hover {
    color: var(--text);
}

.exit-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    color: var(--muted);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
    transition: color 0.2s;
}

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

@media (max-width: 480px) {
    .exit-box {
        padding: 40px 24px 32px;
    }
    .exit-box h2 {
        font-size: 1.4rem;
    }
}
