:root {
    /* Launch You Brand Colors */
    --gold: #EDB50E;
    --gold-light: #f5c93a;
    --gold-dark: #c99a0c;
    --red: #EB0039;
    --red-light: #ff1a4f;
    --green: #74C82F;
    --green-dark: #5fa025;
    --cyan: #00ABF3;
    --cyan-dark: #0090cc;

    /* Backgrounds */
    --dark-bg: #000000;
    --dark-surface: #0a0a0a;
    --dark-card: #111111;
    --dark-border: #222222;
    --light-bg: #fafafa;
    --light-surface: #ffffff;
    --light-border: #e8e8e8;

    /* Text */
    --text-white: #ffffff;
    --text-light: #b8b8b8;
    --text-dark: #1a1a1a;
    --text-muted: #666666;

    /* Semantic */
    --success: #74C82F;
    --success-bg: rgba(116, 200, 47, 0.1);
    --danger: #EB0039;
}

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

body {
    font-family: 'Avenir', 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark-bg);
    color: var(--text-white);
    line-height: 1.7;
    overflow-x: hidden;
}
.new-lp-pro-offer{
/* Headers use Plus Jakarta Sans for impact */
h1, h2, h3, h4, .cta-btn {
    font-family: 'Plus Jakarta Sans', 'Avenir', sans-serif;
}

.container { max-width: 900px; margin: 0 auto; padding: 0 24px; }

/* ==================== HERO ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 24px;
    position: relative;
    background: radial-gradient(ellipse at 50% 0%, rgba(237, 181, 14, 0.08) 0%, transparent 50%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(237, 181, 14, 0.1);
    border: 1px solid rgba(237, 181, 14, 0.3);
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 32px;
    animation: fadeInDown 0.8s ease;
}
@media (max-width: 500px) {
    .hero-badge {
        font-size: 10px;
        letter-spacing: 1px;
        padding: 8px 16px;
    }
}

.hero h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
    max-width: 950px;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 750px;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-guarantee {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--success-bg);
    border: 1px solid rgba(116, 200, 47, 0.3);
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--success);
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.3s both;
    text-align: left;
}

.hero-guarantee svg { width: 20px; height: 20px; flex-shrink: 0; }

/* Video */
.video-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 40px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.video-wrapper {
    position: relative;
    padding-bottom: 0%;
    background: var(--dark-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--dark-border);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.video-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #0c0c0c 100%);
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover .play-btn {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(237, 181, 14, 0.4);
}

.play-btn {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(237, 181, 14, 0.3);
}

.play-btn svg { width: 28px; height: 28px; fill: #000; margin-left: 4px; }
.video-placeholder span { font-size: 14px; color: var(--text-light); }

/* CTA Buttons */
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 36px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.cta-btn.primary {
    background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
    color: #fff;
    box-shadow: 0 4px 24px rgba(0, 171, 243, 0.3);
}

.cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 171, 243, 0.4);
}

.cta-btn.gold {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #000;
    box-shadow: 0 4px 24px rgba(237, 181, 14, 0.3);
}

.cta-btn.gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(237, 181, 14, 0.4);
}

.cta-btn.cyan {
    background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
    color: #fff;
    box-shadow: 0 4px 24px rgba(0, 171, 243, 0.3);
}

.cta-btn.cyan:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 171, 243, 0.4);
}

.cta-btn svg { width: 18px; height: 18px; }

/* ==================== SECTIONS ==================== */
section { padding: 100px 24px; }
section.dark { background: var(--dark-bg); }
section.light { background: var(--light-bg); color: var(--text-dark); }
section.surface { background: var(--dark-surface); }

.section-badge {
    display: inline-block;
    background: rgba(237, 181, 14, 0.15);
    border: 1px solid rgba(237, 181, 14, 0.3);
    color: var(--gold);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

section.light .section-badge {
    background: rgba(237, 181, 14, 0.1);
    color: var(--gold-dark);
}

h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

section.light h2, section.light h3 { color: var(--text-dark); }
section.light p { color: var(--text-muted); }

/* Base paragraph spacing */
p { margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-success { color: var(--success); }
.mb-0 { margin-bottom: 0 !important; }

/* Visual break for long sections */
.section-break {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--dark-border), transparent);
    margin: 40px 0;
}
section.light .section-break {
    background: linear-gradient(90deg, transparent, var(--light-border), transparent);
}

/* ==================== PAIN/DESIRE GRIDS ==================== */
.pain-grid, .desire-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 32px 0;
}

@media (max-width: 600px) {
    .pain-grid, .desire-grid { grid-template-columns: 1fr; }
}

.pain-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background: rgba(255, 107, 107, 0.05);
    border: 1px solid rgba(255, 107, 107, 0.15);
    border-radius: 12px;
}

.pain-item .icon { width: 24px; height: 24px; flex-shrink: 0; color: var(--danger); margin-top: 2px; }
.pain-item p { margin: 0; font-size: 15px; color: var(--text-light); }

.desire-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background: var(--success-bg);
    border: 1px solid rgba(116, 200, 47, 0.2);
    border-radius: 12px;
}

.desire-item .icon { width: 24px; height: 24px; flex-shrink: 0; color: var(--success); margin-top: 2px; }
.desire-item p { margin: 0; font-size: 15px; color: var(--text-light); }

/* ==================== IMAGINE CARDS ==================== */
.imagine-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 48px 0;
}

@media (max-width: 768px) { .imagine-grid { grid-template-columns: 1fr; } }

.imagine-card {
    background: var(--light-surface);
    border: 1px solid var(--light-border);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.imagine-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.imagine-card .emoji { font-size: 3rem; margin-bottom: 20px; }
.imagine-card h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold-dark);
    margin-bottom: 12px;
}
.imagine-card p { font-size: 14px; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* ==================== QUOTE BOX ==================== */
.quote-box {
    background: linear-gradient(135deg, rgba(237, 181, 14, 0.1), rgba(237, 181, 14, 0.05));
    border: 1px solid rgba(237, 181, 14, 0.2);
    border-radius: 16px;
    padding: 32px;
    margin: 48px 0;
    position: relative;
}

.quote-box::before {
    content: '"';
    position: absolute;
    top: 16px;
    left: 24px;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
}

.quote-box p {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 16px;
    padding-left: 40px;
}

section.light .quote-box p { color: var(--text-dark); }

.quote-box .author {
    font-size: 14px;
    font-weight: 600;
    color: var(--gold-dark);
    padding-left: 40px;
}

/* ==================== QUESTION ITEMS ==================== */
.question-list { margin: 32px 0; }

.question-item {
    padding: 16px 20px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 10px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--text-light);
    font-style: italic;
}

.question-label {
    font-style: normal;
    font-weight: 600;
    color: var(--gold);
    margin: 32px 0 16px;
}

/* ==================== SOFTWARE STACK ==================== */
.stack-table {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    overflow: hidden;
    margin: 32px 0;
}

section.light .stack-table {
    background: var(--light-surface);
    border-color: var(--light-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.stack-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid var(--dark-border);
}

section.light .stack-row { border-bottom-color: var(--light-border); }
.stack-row:last-child { border-bottom: none; }
.stack-row .label { font-size: 15px; color: var(--text-light); }
section.light .stack-row .label { color: var(--text-muted); }
.stack-row .price { font-weight: 700; color: var(--danger); }

.stack-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: rgba(255, 107, 107, 0.1);
    border-top: 2px solid var(--danger);
}

.stack-total .label { font-weight: 700; font-size: 1rem; }
.stack-total .price { font-weight: 800; font-size: 1.25rem; color: var(--danger); }

/* ==================== HIGHLIGHT BOX ==================== */
.highlight-box {
    background: var(--success-bg);
    border: 1px solid rgba(116, 200, 47, 0.3);
    border-radius: 16px;
    padding: 28px;
    margin: 32px 0;
}

.highlight-box.gold {
    background: rgba(237, 181, 14, 0.1);
    border-color: rgba(237, 181, 14, 0.3);
}

.highlight-box p { color: var(--text-light); margin-bottom: 12px; }
.highlight-box p:last-child { margin-bottom: 0; }
section.light .highlight-box p { color: var(--text-muted); }
section.light .highlight-box strong { color: var(--text-dark); }

/* ==================== BULLET LISTS ==================== */
.bullet-list {
    margin: 24px 0;
}

.bullet-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    font-size: 15px;
    color: var(--text-light);
    list-style: none;
}

section.light .bullet-list li { color: var(--text-muted); }

.bullet-list li::before {
    content: "•";
    color: var(--gold);
    font-weight: bold;
}

/* ==================== COMPONENT CARDS ==================== */
.component-card {
    background: var(--light-surface);
    border-radius: 24px;
    padding: 48px;
    margin-bottom: 40px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.component-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.component-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #000;
    flex-shrink: 0;
}

.component-title h3 { font-size: 1.5rem; color: var(--text-dark); margin-bottom: 4px; }
.component-title .subtitle { font-size: 14px; font-weight: 600; color: var(--gold-dark); }
.component-card p { color: var(--text-muted); margin-bottom: 16px; }
.component-card strong { color: var(--text-dark); }

.component-image {
    width: 100%;
    border-radius: 12px;
    margin: 24px 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Feature Pills */
.feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0;
}

.feature-pill {
    background: var(--success-bg);
    border: 1px solid rgba(116, 200, 47, 0.3);
    color: var(--green-dark);
    padding: 10px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
}

/* Business Type Cards */
.biz-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 24px 0;
}

@media (max-width: 600px) { .biz-grid { grid-template-columns: 1fr; } }

.biz-card {
    background: var(--light-bg);
    border: 1px solid var(--light-border);
    border-radius: 12px;
    padding: 20px;
}

.biz-card strong { display: block; color: var(--gold-dark); margin-bottom: 8px; font-size: 15px; }
.biz-card p { font-size: 13px; margin: 0; }

/* ==================== MISSION MAP MODULES ==================== */
.phase-block {
    margin-bottom: 32px;
}

.phase-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    border-radius: 12px 12px 0 0;
    margin-bottom: 0;
}

.phase-header.phase-prepare {
    background: linear-gradient(135deg, rgba(235, 0, 57, 0.2), rgba(235, 0, 57, 0.1));
    border: 1px solid rgba(235, 0, 57, 0.3);
    border-bottom: none;
}

.phase-header.phase-launch {
    background: linear-gradient(135deg, rgba(116, 200, 47, 0.15), rgba(116, 200, 47, 0.05));
    border: 1px solid rgba(116, 200, 47, 0.3);
    border-bottom: none;
}

.phase-header.phase-grow {
    background: linear-gradient(135deg, rgba(0, 171, 243, 0.15), rgba(0, 171, 243, 0.05));
    border: 1px solid rgba(0, 171, 243, 0.3);
    border-bottom: none;
}

/* Phase headers inside light component cards */
.component-card .phase-header.phase-prepare {
    background: linear-gradient(135deg, rgba(235, 0, 57, 0.1), rgba(235, 0, 57, 0.05));
    border-color: rgba(235, 0, 57, 0.2);
}

.component-card .phase-header.phase-launch {
    background: linear-gradient(135deg, rgba(116, 200, 47, 0.1), rgba(116, 200, 47, 0.05));
    border-color: rgba(116, 200, 47, 0.2);
}

.component-card .phase-header.phase-grow {
    background: linear-gradient(135deg, rgba(0, 171, 243, 0.1), rgba(0, 171, 243, 0.05));
    border-color: rgba(0, 171, 243, 0.2);
}

.component-card .phase-number {
    color: var(--text-muted);
}

.component-card .phase-timeline {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-muted);
}

.phase-number {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

.phase-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
}

.phase-prepare .phase-name { color: var(--red); }
.phase-launch .phase-name { color: var(--green); }
.phase-grow .phase-name { color: var(--cyan); }

.phase-timeline {
    margin-left: auto;
    font-size: 13px;
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 100px;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--dark-border);
    border-radius: 0 0 12px 12px;
    overflow: hidden;
}

.module-card {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--dark-card);
    border-right: 1px solid var(--dark-border);
}

.module-card:last-child {
    border-right: none;
}

/* Module cards inside light component cards */
.component-card .modules-grid {
    border-color: var(--light-border);
}

.component-card .module-card {
    background: var(--light-bg);
    border-right-color: var(--light-border);
}

.component-card .module-content h4 {
    color: var(--text-dark);
}

.component-card .module-content p {
    color: var(--text-muted);
}

.component-card .module-number {
    background: var(--light-surface);
    border-color: var(--light-border);
}

.module-number {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
}

.module-content h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-white);
}

.module-content p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .modules-grid {
        grid-template-columns: 1fr;
    }

    .module-card {
        border-right: none;
        border-bottom: 1px solid var(--dark-border);
    }

    .module-card:last-child {
        border-bottom: none;
    }

    .phase-header {
        flex-wrap: wrap;
        gap: 8px;
    }

    .phase-timeline {
        margin-left: 0;
        width: 100%;
        text-align: center;
        margin-top: 8px;
    }
}

/* ==================== VALUE STACK ==================== */
.value-stack { margin: 40px 0; }

.value-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid var(--dark-border);
}

.value-row:last-child { border-bottom: none; }
.value-row .name { font-weight: 600; font-size: 15px; }
.value-row .price { color: var(--text-light); text-decoration: line-through; font-size: 14px; }

.value-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    margin-top: 16px;
    border-top: 2px solid var(--gold);
}

.value-total .name { font-weight: 700; font-size: 1.1rem; }
.value-total .price { font-weight: 800; font-size: 1.5rem; color: var(--gold); text-decoration: none; }

/* ==================== COMPARISON CARDS ==================== */
.compare-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 40px 0;
}

@media (max-width: 700px) { .compare-grid { grid-template-columns: 1fr; } }

.compare-card { border-radius: 20px; padding: 32px; }

.compare-card.slow {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    opacity: 0.8;
}

.compare-card.fast {
    background: var(--success-bg);
    border: 2px solid var(--success);
}

section.light .compare-card.slow {
    background: var(--light-surface);
    border: 1px solid var(--light-border);
}

section.light .compare-card.fast { background: rgba(116, 200, 47, 0.08); }

.compare-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.compare-card.slow .compare-badge { background: rgba(255, 255, 255, 0.1); color: var(--text-light); }
section.light .compare-card.slow .compare-badge { background: rgba(0, 0, 0, 0.05); color: var(--text-muted); }
.compare-card.fast .compare-badge { background: rgba(116, 200, 47, 0.2); color: var(--success); }

.compare-card p { font-size: 14px; margin-bottom: 10px; }
.compare-card.slow p { color: var(--text-light); }
section.light .compare-card.slow p { color: var(--text-muted); }
.compare-card.fast p { color: var(--text-light); }
section.light .compare-card.fast p { color: var(--text-muted); }

/* ==================== TIMELINE ==================== */
.timeline { margin: 32px 0; }

.timeline-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--light-border);
}

.timeline-item:last-child { border-bottom: none; }

.timeline-month {
    width: 100px;
    flex-shrink: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: var(--gold-dark);
}

.timeline-content { color: var(--text-muted); }

/* ==================== TESTIMONIALS ==================== */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 40px 0;
}

@media (max-width: 700px) { .testimonial-grid { grid-template-columns: 1fr; } }

.testimonial-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 28px;
}

.testimonial-card p {
    font-size: 15px;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

.testimonial-card .author { font-size: 14px; font-weight: 600; color: var(--gold); }

/* ==================== FACEBOOK SLIDER ==================== */
.fb-slider-container {
    margin-top: 60px;
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.fb-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 20px 0;
    scrollbar-width: none;
}

.fb-slider::-webkit-scrollbar {
    display: none;
}

.fb-slide {
    flex: 0 0 auto;
    width: 320px;
    scroll-snap-align: start;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    background:white;
}

.fb-slide:hover {
    transform: scale(1.02);
}

.fb-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}

.slider-btn svg {
    width: 20px;
    height: 20px;
}

.fb-disclaimer {
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 24px;
    font-style: italic;
}

/* ==================== PRICING ==================== */
.pricing-section {
    padding: 100px 24px;
    background: var(--dark-bg);
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 50px auto 0;
    align-items: stretch;
}

@media (max-width: 700px) { .pricing-grid { grid-template-columns: 1fr; } }

.pricing-card {
    background: var(--dark-card);
    border: 2px solid var(--dark-border);
    border-radius: 24px;
    padding: 40px 32px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover { transform: translateY(-4px); }

.pricing-card.featured {
    background: linear-gradient(180deg, rgba(237, 181, 14, 0.15) 0%, var(--dark-card) 100%);
    border: 2px solid var(--gold);
}

.pricing-card.annual {
    background: linear-gradient(180deg, rgba(0, 171, 243, 0.1) 0%, var(--dark-card) 100%);
    border: 2px solid var(--cyan);
}

.pricing-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #000;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.pricing-card.annual .pricing-tag {
    background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
    color: #fff;
}

.pricing-card h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.pricing-amount {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.pricing-amount span { font-size: 1rem; font-weight: 400; color: var(--text-light); }
.pricing-note { font-size: 14px; color: var(--text-light); margin-bottom: 24px; }
.pricing-card.featured .pricing-note { color: var(--success); }

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

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-light);
}

.pricing-features li svg { width: 18px; height: 18px; color: var(--success); flex-shrink: 0; margin-top: 2px; }
.pricing-card .cta-btn { width: 100%; margin-top: auto; }

.skip-link {
    display: block;
    margin-top: 24px;
    font-size: 13px;
    color: var(--text-light);
    text-decoration: underline;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.skip-link:hover { opacity: 1; }

/* ==================== CHECK LIST ==================== */
.check-list { margin: 32px 0; }

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
}

.check-item svg { width: 22px; height: 22px; color: var(--success); flex-shrink: 0; margin-top: 2px; }
.check-item p { margin: 0; }
section.light .check-item p { color: var(--text-muted); }

/* ==================== FAQ ==================== */
.faq-list { margin: 40px 0; }

.faq-item {
    background: var(--light-surface);
    border: 1px solid var(--light-border);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 24px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover { background: var(--light-bg); }
.faq-question::after { content: '+'; font-size: 1.5rem; color: var(--gold-dark); transition: transform 0.3s; }
.faq-item.open .faq-question::after { transform: rotate(45deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease;padding-left: 20px; padding-right: 20px;padding-bottom: 20px;}
.faq-item.open .faq-answer { max-height: 500px; padding: 0 24px 20px; }
.faq-answer p { color: var(--text-muted); font-size: 15px; margin: 0; }

/* ==================== TRUST BAR ==================== */
.trust-bar {
    padding: 40px 24px;
    background: var(--dark-surface);
    border-top: 1px solid var(--dark-border);
}

.trust-items { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px 40px; }

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-light);
}

.trust-item svg { width: 16px; height: 16px; color: var(--success); }

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

footer p { font-size: 13px; color: var(--text-light); }

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    section { padding: 60px 20px; }
    .component-card { padding: 32px 24px; }
    .pricing-card { padding: 32px 24px; }
    .component-header { flex-direction: column; align-items: flex-start; }

    /* MOBILE TEXT SPACING FIX */
    body { line-height: 1.85; }

    p {
        margin-bottom: 20px !important;
        font-size: 16px;
    }

    section.dark p,
    section.light p {
        margin-bottom: 20px !important;
    }

    h2 {
        margin-bottom: 28px;
        font-size: 1.6rem;
    }

    h3 {
        margin-bottom: 20px;
        margin-top: 40px;
        font-size: 1.3rem;
    }

    .container > p + p {
        margin-top: 0;
    }

    /* More spacing for lists */
    .bullet-list { margin: 28px 0; }
    .bullet-list li {
        padding: 12px 0;
        font-size: 15px;
        line-height: 1.7;
    }

    /* Question items spacing */
    .question-list { margin: 28px 0; }
    .question-item {
        margin-bottom: 16px;
        padding: 18px 20px;
        font-size: 15px;
        line-height: 1.7;
    }

    /* Pain/Desire grids */
    .pain-grid, .desire-grid {
        gap: 14px;
        margin: 28px 0;
    }
    .pain-item, .desire-item {
        padding: 18px;
    }
    .pain-item p, .desire-item p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 0 !important;
    }

    /* Stack table */
    .stack-table { margin: 28px 0; }
    .stack-row {
        padding: 18px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .stack-row .label { font-size: 14px; }
    .stack-row .price { font-size: 15px; }

    /* Highlight boxes */
    .highlight-box {
        margin: 32px 0;
        padding: 24px 20px;
    }
    .highlight-box p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 14px !important;
    }

    /* Quote box */
    .quote-box {
        padding: 28px 20px;
        margin: 40px 0;
    }
    .quote-box p {
        font-size: 1rem;
        padding-left: 0;
        line-height: 1.7;
    }
    .quote-box::before { display: none; }
    .quote-box .author { padding-left: 0; }

    /* Component cards */
    .component-card { margin-bottom: 32px; }
    .component-card p {
        margin-bottom: 18px !important;
        font-size: 15px;
        line-height: 1.75;
    }

    /* Value stack */
    .value-stack { margin: 32px 0; }
    .value-row {
        padding: 16px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    .value-row .name { font-size: 14px; }

    /* Timeline */
    .timeline { margin: 28px 0; }
    .timeline-item {
        flex-direction: column;
        gap: 8px;
        padding: 18px 0;
    }
    .timeline-month { width: auto; }

    /* Testimonial cards */
    .testimonial-card { padding: 24px 20px; }
    .testimonial-card p {
        font-size: 15px;
        line-height: 1.75;
        margin-bottom: 14px !important;
    }

    /* Check list */
    .check-list { margin: 28px 0; }
    .check-item { padding: 12px 0; }
    .check-item p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 0 !important;
    }

    /* FAQ */
    .faq-question {
        padding: 18px 20px;
        font-size: 15px;
        line-height: 1.5;
    }

    .faq-answer p {
        font-size: 14px;
        line-height: 1.75;
    }

    /* Compare cards */
    .compare-card { padding: 24px 20px; }
    .compare-card p {
        font-size: 14px;
        margin-bottom: 12px;
        line-height: 1.6;
    }

    /* Section badges */
    .section-badge { margin-bottom: 16px; }

    /* CTA buttons */
    .cta-btn {
        padding: 16px 28px;
        font-size: 15px;
    }

    /* Pricing cards */
    .pricing-features li {
        padding: 12px 0;
        font-size: 14px;
        line-height: 1.5;
    }

    /* Imagine cards */
    .imagine-grid { gap: 20px; margin: 36px 0; }
    .imagine-card { padding: 28px 20px; }
    .imagine-card p {
        font-size: 14px;
        line-height: 1.65;
    }

    /* Feature pills */
    .feature-pills { margin: 24px 0; gap: 8px; }
    .feature-pill {
        padding: 8px 14px;
        font-size: 12px;
    }

    /* Biz grid cards */
    .biz-grid { margin: 24px 0; gap: 14px; }
    .biz-card { padding: 18px; }
    .biz-card p {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 0 !important;
    }

    /* Resources grid */
    .resources-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Resources grid base */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}
@media (max-width: 500px) {
    .resources-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .container > div[style*="grid-template-columns: repeat(3"] {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
}
}