/* ===== 2024/2025 MODERN FUNNEL ===== */
:root {
    --bg: #0a0a0a;
    --bg-card: rgba(255,255,255,0.03);
    --border: rgba(255,255,255,0.08);
    --accent: #e50914;
    --accent-soft: rgba(229,9,20,0.15);
    --text: #fafafa;
    --text-muted: #a1a1a1;
    --radius: 16px;
    --radius-sm: 10px;
}

.funnel-page { background: var(--bg) !important; color: var(--text); }

/* Glassmorphism */
.card-glass {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Floating CTA */
.fab-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--accent);
    color: white;
    border-radius: 100px;
    font-weight: 600;
    font-size: 15px;
    z-index: 100;
    box-shadow: 0 4px 24px rgba(229,9,20,0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}
.fab-cta:hover { transform: scale(1.03); box-shadow: 0 8px 32px rgba(229,9,20,0.5); }
.fab-price { opacity: 0.9; font-size: 13px; }

/* Nav */
.nav-glass {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 16px 24px;
    background: rgba(10,10,10,0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 50;
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-logo { font-size: 20px; font-weight: 700; color: var(--text); }
.btn-pill {
    padding: 10px 20px;
    background: var(--accent);
    color: white;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
}

/* Hero Bento */
.hero-bento {
    position: relative;
    min-height: 100vh;
    padding: 140px 24px 80px;
    overflow: hidden;
}
.hero-mesh {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(229,9,20,0.12) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 100% 50%, rgba(229,9,20,0.06) 0%, transparent 50%);
    pointer-events: none;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}
.hero-main { padding: 40px; }
.pill-live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(34,197,94,0.15);
    color: #4ade80;
    border-radius: 100px;
    font-size: 13px;
    margin-bottom: 24px;
}
.dot { width: 6px; height: 6px; background: #4ade80; border-radius: 50%; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero-main h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}
.gradient-text { background: linear-gradient(135deg, var(--accent), #ff6b6b); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-desc {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 420px;
}
.btn-primary-modern {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    background: var(--accent);
    color: white;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 15px;
    transition: background 0.2s, transform 0.2s;
}
.btn-primary-modern:hover { background: #ff1a1a; transform: translateY(-1px); }
.btn-large { padding: 18px 36px; font-size: 17px; }

.hero-side { display: flex; flex-direction: column; gap: 16px; }
.card-stack { padding: 24px; }
.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}
.stat-row:last-child { border-bottom: none; }
.stat-num { font-size: 22px; font-weight: 700; }
.stat-label { font-size: 13px; color: var(--text-muted); }
.live-feed { padding: 16px 0 0; }
.feed-title { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 12px; }
.feed-item { font-size: 14px; padding: 8px 0; color: var(--text-muted); }
.feed-item span { color: var(--text); font-weight: 500; }

/* Scroll animation */
[data-animate] { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-animate].animate-in { opacity: 1; transform: translateY(0); }

/* Plans Bento */
.section-plans { padding: 80px 24px; }
.section-head { text-align: center; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.5rem); font-weight: 700; margin-bottom: 8px; }
.section-head p { color: var(--text-muted); font-size: 17px; }
.bento-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}
.plan-bento {
    display: block;
    padding: 28px;
    transition: transform 0.2s, border-color 0.2s;
    position: relative;
}
.plan-bento:hover {
    transform: translateY(-4px);
    border-color: rgba(229,9,20,0.3);
}
.plan-featured { border-color: rgba(229,9,20,0.4); }
.plan-tag {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 12px;
    background: var(--accent);
    font-size: 11px;
    font-weight: 600;
    border-radius: 100px;
    text-transform: uppercase;
}
.plan-save {
    display: inline-block;
    color: #4ade80;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}
.plan-bento h3 { font-size: 20px; margin-bottom: 4px; }
.plan-dur { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; }
.plan-feats {
    list-style: none;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}
.plan-feats li { padding: 4px 0; }
.plan-price { font-size: 28px; font-weight: 700; display: block; margin-bottom: 8px; }
.plan-cta { font-size: 14px; color: var(--accent); font-weight: 600; }

/* Compare */
.section-compare { padding: 60px 24px; }
.compare-wrap { max-width: 560px; margin: 0 auto; padding: 28px; }
.compare-title { font-size: 16px; font-weight: 600; margin-bottom: 20px; text-align: center; }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.compare-col h4 { font-size: 15px; margin-bottom: 12px; }
.compare-ours h4 { color: var(--accent); }
.compare-theirs h4 { color: var(--text-muted); }
.compare-col ul { list-style: none; font-size: 14px; color: var(--text-muted); }
.compare-ours li { color: var(--text); padding: 6px 0; }
.compare-theirs li { padding: 6px 0; }

/* Testimonials strip */
.section-testimonials { padding: 60px 24px; }
.testimonial-strip {
    display: flex;
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
}
.testimonial-strip::-webkit-scrollbar { display: none; }
.testimonial-pill {
    flex: 0 0 300px;
    padding: 20px;
}
.testimonial-pill .stars { color: #fbbf24; font-size: 12px; margin-bottom: 8px; }
.testimonial-pill p { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

/* FAQ Accordion */
.section-faq { padding: 80px 24px; }
.section-faq h2 { font-size: 2rem; margin-bottom: 32px; text-align: center; }
.faq-accordion { max-width: 600px; margin: 0 auto; }
.faq-item {
    padding: 0;
    margin-bottom: 12px;
    overflow: hidden;
}
.faq-item summary {
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; float: right; font-weight: 400; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Final CTA */
.section-cta { padding: 80px 24px; text-align: center; }
.cta-box { max-width: 400px; margin: 0 auto; }
.cta-box h2 { font-size: 2rem; margin-bottom: 24px; }

/* Footer */
.footer-modern { padding: 32px; text-align: center; font-size: 13px; color: var(--text-muted); }

@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-side { flex-direction: row; flex-wrap: wrap; }
    .bento-plans { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .hero-side { flex-direction: column; }
    .compare-grid { grid-template-columns: 1fr; }
    .fab-cta { bottom: 16px; right: 16px; padding: 10px 16px; font-size: 14px; }
}
