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

:root {
    --bg: #fafaf9;
    --bg-alt: #f5f5f4;
    --bg-dark: #1c1917;
    --text: #1c1917;
    --text-light: #fafaf9;
    --text-muted: #78716c;
    --text-muted-light: #a8a29e;
    --accent: #0c4a6e;
    --accent-hover: #075985;
    --accent-light: #e0f2fe;
    --border: #e7e5e4;
    --border-dark: #44403c;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --max-width: 760px;
    --radius: 8px;
    --shadow: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Section Spacing ===== */
section { padding: 80px 0; }

.section-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 12px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.15s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: var(--shadow);
}
.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border);
    width: 100%;
}
.btn-outline:hover {
    background: var(--bg-alt);
    border-color: var(--text-muted);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* ===== HERO ===== */
.hero {
    padding: 100px 0 80px;
    text-align: center;
    background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}

.hero .eyebrow {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    max-width: 700px;
    margin: 0 auto 24px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.hero-cta {
    margin-bottom: 48px;
}

.cta-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 12px;
}

.hero-proof {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

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

.proof-num {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.proof-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ===== PROBLEM ===== */
.problem {
    background: var(--bg-alt);
}

.problem h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

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

.problem-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text);
}

.problem-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.problem-highlight {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 32px;
    text-align: center;
    font-size: 1.05rem;
}

.problem-highlight p { margin: 0; }

/* ===== STORY ===== */
.story h2 {
    font-size: 1.8rem;
    margin-bottom: 28px;
}

.story-content p {
    margin-bottom: 18px;
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-muted);
}

.story-content p:first-of-type { color: var(--text); }

.story-callout {
    background: var(--accent-light);
    border-left: 3px solid var(--accent);
    padding: 20px 24px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin-top: 28px;
    font-size: 1.05rem !important;
    color: var(--text) !important;
    font-style: italic;
}

/* ===== WHO IS THIS FOR ===== */
.who-for {
    background: var(--bg-alt);
}

.who-for h2 {
    font-size: 1.8rem;
    margin-bottom: 40px;
}

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

.who-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: border-color 0.2s;
}
.who-card:hover { border-color: var(--accent); }

.who-icon {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.who-card h3 {
    font-size: 1.1rem;
    margin-top: 0;
    margin-bottom: 8px;
}

.who-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ===== CONTENT / MODULES ===== */
.content h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.section-intro {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.modules {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
}

.module {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 28px;
    transition: border-color 0.2s;
}
.module:hover { border-color: var(--accent); }

.module-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 8px;
}

.module-num {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent);
    background: var(--accent-light);
    padding: 4px 10px;
    border-radius: 4px;
    flex-shrink: 0;
}

.module h3 {
    margin: 0;
    font-size: 1.1rem;
}

.module p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    padding-left: 50px;
}

/* ===== BONUSES ===== */
.bonuses {
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 32px;
}

.bonuses h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.bonus-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 24px;
}

.bonus-card h4 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.bonus-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--bg-dark);
    color: var(--text-light);
    text-align: center;
}

.cta-section h2 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.cta-section p {
    color: var(--text-muted-light);
    max-width: 560px;
    margin: 0 auto 28px;
    font-size: 1.05rem;
}

.guarantee-line {
    font-size: 0.85rem;
    color: var(--text-muted-light);
    margin-top: 16px;
}

/* ===== PRICING ===== */
.pricing h2 {
    font-size: 1.8rem;
    margin-bottom: 40px;
}

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

.pricing-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s;
}
.pricing-card:hover { border-color: var(--text-muted); }

.pricing-card.popular {
    border-color: var(--accent);
    box-shadow: 0 4px 20px rgba(12, 74, 110, 0.1);
}

.popular-badge {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.intro-tag {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: #dc2626;
    color: #fff;
    padding: 3px 8px;
    border-radius: 3px;
    vertical-align: middle;
    margin-left: 6px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-header h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.price {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    flex-grow: 1;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}
.pricing-features li:last-child { border-bottom: none; }

.pricing-features li::before {
    content: "✓";
    color: var(--accent);
    font-weight: 700;
    margin-right: 10px;
}

.pricing-features li em {
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.85em;
}

/* ===== FAQ ===== */
.faq h2 {
    font-size: 1.8rem;
    margin-bottom: 32px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    padding-bottom: 24px;
}

.faq-item h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.faq-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ===== FINAL CTA ===== */
.final-cta {
    background: var(--bg-dark);
    color: var(--text-light);
    text-align: center;
    padding: 100px 0;
}

.final-eyebrow {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 16px;
}

.final-cta h2 {
    color: #fff;
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

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

.final-guarantee {
    font-size: 0.85rem;
    color: var(--text-muted-light);
    margin-top: 16px;
}

/* ===== INTRO PRICING BANNER ===== */
.intro-banner {
    background: var(--accent);
    color: #fff;
    padding: 12px 0;
    text-align: center;
    font-size: 0.9rem;
}

.intro-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.intro-badge {
    background: #fff;
    color: var(--accent);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 3px 10px;
    border-radius: 3px;
}

.intro-text {
    font-weight: 500;
}

/* ===== STICKY CTA BAR ===== */
.sticky-cta {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    z-index: 100;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

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

.sticky-cta .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sticky-text {
    font-weight: 600;
    font-size: 0.95rem;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--accent);
    z-index: 101;
    width: 0%;
    transition: width 0.1s;
}

/* ===== EXIT INTENT MODAL ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal {
    background: #fff;
    border-radius: var(--radius);
    padding: 40px;
    max-width: 480px;
    width: 90%;
    position: relative;
    box-shadow: var(--shadow-lg);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: var(--text);
}

.modal h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    margin-top: 0;
}

.modal p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.modal-form {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.modal-form input[type="email"] {
    flex: 1;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
}

.modal-form input[type="email"]:focus {
    border-color: var(--accent);
}

.modal-form button {
    white-space: nowrap;
}

.modal-disclaimer {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.modal-no-thanks {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: underline;
    cursor: pointer;
}

.modal-no-thanks:hover {
    color: var(--text);
}

/* ===== FOOTER ===== */
footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 40px 0;
    text-align: center;
}

footer p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}

footer a {
    color: var(--accent);
    text-decoration: none;
}
footer a:hover { text-decoration: underline; }

/* ===== Responsive ===== */
@media (max-width: 768px) {
    section { padding: 60px 0; }
    .hero { padding: 80px 0 60px; }
    .hero h1 { font-size: 2rem; }
    .hero-proof { gap: 24px; }
    .problem-grid { grid-template-columns: 1fr; }
    .who-grid { grid-template-columns: 1fr; }
    .bonus-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .final-cta h2 { font-size: 1.7rem; }
    .module p { padding-left: 0; }
    .sticky-cta .container { padding: 0 16px; }
    .sticky-text { font-size: 0.85rem; }
    .modal { padding: 32px 24px; }
    .modal-form { flex-direction: column; }
}
