:root {
    --bg-color: #050505;
    --section-bg: #0a0a0a;
    --card-bg: #121212;
    --text-primary: #e5e5e5;
    --text-secondary: #a3a3a3;
    --accent-red: #c1121f;
    --accent-red-hover: #9f0e19;
    --border-color: #27272a;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* TYPOGRAPHY */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.highlight-red {
    color: var(--accent-red);
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-red);
    color: white;
    padding: 16px 32px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 4px 15px rgba(193, 18, 31, 0.4);
}

.cta-button:hover {
    background-color: var(--accent-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(193, 18, 31, 0.6);
}

.cta-button {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(193, 18, 31, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(193, 18, 31, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(193, 18, 31, 0);
    }
}

.cta-button.secondary {
    background-color: transparent;
    border: 1px solid var(--text-secondary);
    color: var(--text-secondary);
    box-shadow: none;
}

.cta-button.secondary:hover {
    border-color: var(--text-primary);
    color: var(--text-primary);
}

/* HERO SECTION */
.hero {
    position: relative;
    padding: 80px 0;
    text-align: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)), url('https://images.unsplash.com/photo-1542281286-9e0a16bb7366?auto=format&fit=crop&q=80&w=2070');
    /* Placeholder abstract/dark */
    background-position: center;
    background-size: cover;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-headline {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subheadline {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* SECTIONS COMMON */
section {
    padding: 60px 0;
    border-bottom: 1px solid #111;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

/* DEEP PAIN */
.pain-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.pain-item {
    background: var(--card-bg);
    padding: 20px;
    border-left: 3px solid var(--accent-red);
    border-radius: 4px;
}

.pain-item p {
    font-weight: 600;
}

/* ILLUSION BREAK */
.illusion-break {
    text-align: center;
    background-color: #000;
}

.error-text {
    color: var(--text-secondary);
    text-decoration: line-through;
    text-decoration-color: var(--accent-red);
    text-decoration-thickness: 3px;
}

.illusion-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.illusion-reveal {
    font-size: 1.5rem;
    color: #fff;
    border: 1px solid var(--border-color);
    padding: 20px;
    display: inline-block;
    background: linear-gradient(45deg, #111, #000);
}

/* PROTOCOL */
.protocol-intro {
    text-align: center;
}

.intro-label {
    letter-spacing: 4px;
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 10px;
}

.product-title {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 5px;
}

.product-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-weight: 400;
}

.no-meds {
    margin-top: 30px;
    font-size: 0.9rem;
    opacity: 0.5;
    border: 1px solid #333;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
}

/* BENEFITS */
.benefit-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
}

.benefit-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.check-icon {
    color: var(--accent-red);
    margin-right: 15px;
    font-weight: bold;
    font-size: 1.3rem;
}

/* AUDIENCE */
.audience-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.for-who ul,
.not-for-who ul {
    list-style: none;
    padding-left: 20px;
}

.for-who li::before {
    content: "•";
    color: var(--accent-red);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.not-for-who li::before {
    content: "×";
    color: #555;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.for-who h3,
.not-for-who h3 {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

/* FORMAT */
.format-card {
    background: var(--card-bg);
    padding: 30px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.disclaimer {
    display: block;
    margin-top: 15px;
    color: #555;
}

/* OFFER */
.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.card {
    background: var(--card-bg);
    padding: 30px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    width: 100%;
    max-width: 350px;
    text-align: center;
    position: relative;
}

.recommended {
    border: 1px solid var(--accent-red);
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(193, 18, 31, 0.1);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-red);
    color: white;
    padding: 4px 12px;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 4px;
    text-transform: uppercase;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin: 10px 0;
    font-family: var(--font-heading);
}

.old-price {
    text-decoration: line-through;
    color: #555;
    margin-right: 10px;
}

.card .desc {
    color: var(--text-secondary);
    margin-bottom: 20px;
    min-height: 50px;
}

/* FAQ */
details {
    background: var(--card-bg);
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 4px;
    cursor: pointer;
}

summary {
    font-weight: 600;
    outline: none;
}

details p {
    margin-top: 10px;
    color: var(--text-secondary);
    padding-left: 20px;
    border-left: 2px solid #333;
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 40px 0;
    font-size: 0.8rem;
    color: #555;
    border-top: 1px solid #111;
}

/* MODAL */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.hidden {
    display: none;
}

.modal-content {
    background: #151515;
    padding: 30px;
    max-width: 500px;
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    position: relative;
    text-align: center;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease-out;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2rem;
    cursor: pointer;
    color: #777;
}

.modal-header h2 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.offer-title {
    color: var(--text-secondary);
    font-weight: bold;
}

.offer-price {
    font-size: 2rem;
    font-weight: 800;
    margin: 10px 0;
    font-family: var(--font-heading);
}

.full-width {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 15px;
}

.link-button {
    background: none;
    border: none;
    color: #555;
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.9rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* MEDIA QUERIES */
@media (min-width: 768px) {
    .hero-headline {
        font-size: 3.5rem;
    }

    .pain-grid {
        grid-template-columns: 1fr 1fr;
    }

    .audience-grid {
        grid-template-columns: 1fr 1fr;
    }
}
.micro-block { margin-top: 30px; max-width: 700px; margin-left: auto; margin-right: auto; background: rgba(255, 255, 255, 0.05); padding: 20px; border-radius: 4px; border-left: 2px solid var(--accent-red); text-align: left; } .micro-block p { font-size: 1rem; color: #ccc; margin-bottom: 10px; } .micro-block .punchline { font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0; }

/* PRICING OPTIMIZATION */ .complete-card { border: 2px solid var(--accent-red); box-shadow: 0 0 30px rgba(193, 18, 31, 0.2); transform: scale(1.05); z-index: 2; } .full-control-btn { background: var(--accent-red); box-shadow: 0 8px 15px rgba(193, 18, 31, 0.4); font-size: 1.3rem; padding: 18px 30px; width: 100%; margin-top: 20px; } .complete-benefits { list-style: none; text-align: left; margin: 20px 0; padding: 0; border-top: 1px solid #333; border-bottom: 1px solid #333; padding-top: 15px; padding-bottom: 15px; } .complete-benefits li { margin-bottom: 8px; font-size: 0.95rem; color: #dedede; } .reinforcement-text { font-size: 0.9rem; font-style: italic; color: #aaa; margin-bottom: 10px; } .basic-card { border: 1px solid #333; background: #0e0e0e; transform: scale(0.95); opacity: 0.9; z-index: 1; } .basic-desc { font-size: 0.9rem; line-height: 1.4; color: #aaa; margin-bottom: 10px; } .negation-text { font-size: 0.8rem; color: #666; margin-bottom: 20px; padding: 0 10px; } .psychologic-warning { text-align: center; color: #888; font-size: 0.9rem; margin-top: 30px; width: 100%; } @media (max-width: 768px) { .pricing-cards { flex-direction: column; align-items: center; gap: 30px; } .complete-card { transform: scale(1); margin-bottom: 0; width: 100%; } .basic-card { transform: scale(1); width: 100%; margin-top: 0; opacity: 1; border-color: #222; } }

/* MODAL UPDATES */ .modal-subtitle { color: #ccc; font-size: 1rem; margin-bottom: 20px; line-height: 1.4; } .modal-prices { display: flex; align-items: center; justify-content: center; gap: 15px; margin: 15px 0; } .offer-price { font-size: 1.8rem; font-weight: 800; font-family: var(--font-heading); color: white; } .modal-copy p { font-size: 0.95rem; color: #bbb; margin-bottom: 15px; line-height: 1.5; text-align: left; background: rgba(255,255,255,0.05); padding: 10px; border-radius: 4px; border-left: 2px solid #555; } .modal-copy p:last-child { margin-bottom: 5px; border-left: 2px solid var(--accent-red); }

/* CTA UPDATES */ .sticky-cta { position: fixed; top: 20px; right: 20px; background-color: #b30000; color: white; padding: 10px 20px; font-family: var(--font-heading); font-weight: bold; text-decoration: none; border-radius: 4px; box-shadow: 0 4px 10px rgba(0,0,0,0.5); z-index: 9999; text-transform: uppercase; font-size: 0.9rem; transition: opacity 0.3s, transform 0.3s; opacity: 0; pointer-events: none; transform: translateY(-20px); } .sticky-cta.visible { opacity: 1; pointer-events: auto; transform: translateY(0); } .sticky-cta:hover { background-color: var(--accent-red); } .mid-cta-container { margin-top: 40px; text-align: center; } .mid-cta { background-color: var(--accent-red); font-size: 1.1rem; padding: 15px 30px; } .final-decision { background-color: #080808; padding: 40px 0; border-top: 1px solid #222; text-align: center; } .final-cta { font-size: 1.4rem; padding: 20px 40px; width: 100%; max-width: 500px; box-shadow: 0 0 20px rgba(193, 18, 31, 0.3); } @media (max-width: 768px) { .sticky-cta { top: 10px; right: 10px; padding: 8px 15px; font-size: 0.8rem; } }

/* FIXED HEADER BAR */ .fixed-header { position: fixed; top: 0; left: 0; width: 100%; background: rgba(0,0,0,0.9); border-bottom: 1px solid #333; z-index: 9999; padding: 10px 0; transform: translateY(-100%); transition: transform 0.3s ease; } .fixed-header.visible { transform: translateY(0); } .header-content { display: flex; justify-content: space-between; align-items: center; } .header-logo { font-family: var(--font-heading); font-weight: bold; color: white; text-transform: uppercase; letter-spacing: 1px; } .sticky-cta { position: static; transform: none; box-shadow: none; opacity: 1; pointer-events: auto; } /* Override previous sticky-cta specific styles if needed */ .header-content .sticky-cta { margin: 0; }

/* ENSURE STICKY CTA VISIBILITY */ .fixed-header .sticky-cta { display: inline-block !important; opacity: 1 !important; visibility: visible !important; pointer-events: auto !important; transform: none !important; background-color: #b30000; color: white; padding: 8px 16px; font-size: 0.9rem; border-radius: 4px; text-decoration: none; font-weight: bold; margin-left: auto; }

/* FONT UPDATE */ :root { --font-heading: 'Bebas Neue', sans-serif !important; }
