/* ============================================
   FinIQ Consultant LP — Deep dark + electric blue accent
   Fonts: Outfit (headings) + Source Sans 3 (body)
   ============================================ */

:root {
    --bg: #08090f;
    --bg-card: #10131c;
    --bg-card-alt: #0c0e16;
    --bg-elevated: #171b28;
    --text: #dfe4ed;
    --text-muted: #8692a8;
    --text-dim: #525f75;
    --accent: #3b9eff;
    --accent-dim: rgba(59, 158, 255, 0.12);
    --accent-glow: rgba(59, 158, 255, 0.3);
    --accent-light: #6db8ff;
    --red-muted: #f0465a;
    --red-dim: rgba(240, 70, 90, 0.12);
    --green: #34d399;
    --purple: #a78bfa;
    --border: rgba(255, 255, 255, 0.06);
    --radius: 12px;
    --radius-lg: 20px;
    --font-head: 'Outfit', system-ui, sans-serif;
    --font-body: 'Source Sans 3', system-ui, sans-serif;
    --container: 1140px;
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
.section-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-align: center;
    margin-bottom: 0.5rem;
}
.section-sub {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 3rem;
}
.text-accent { color: var(--accent); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 600;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.25s ease;
    text-decoration: none;
    gap: 8px;
}
.btn-accent {
    background: var(--accent);
    color: #fff;
}
.btn-accent:hover {
    background: var(--accent-light);
    box-shadow: 0 0 30px var(--accent-glow);
    transform: translateY(-1px);
}
.btn-sm { padding: 8px 18px; font-size: 0.875rem; }
.btn-lg { padding: 16px 36px; font-size: 1.1rem; }
.btn-full { width: 100%; }

/* ============ NAVBAR ============ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(8, 9, 15, 0.8);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s;
}
.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
}
.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--accent);
    color: #fff;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: 8px;
}
.logo-text {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.25rem;
}
.nav-links { display: flex; gap: 32px; }
.nav-link {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-link:hover { color: var(--text); }
.burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}
.mobile-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.75rem;
    background: rgba(8, 9, 15, 0.95);
    border-bottom: 1px solid var(--border);
}
.mobile-menu.active { display: flex; }
.mobile-link { color: var(--text-muted); font-size: 1rem; padding: 0.5rem; }

@media (max-width: 768px) {
    .nav-links, .navbar .btn-sm { display: none; }
    .burger { display: flex; }
}

/* ============ HERO ============ */
.hero {
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(59, 158, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 158, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 100%);
}
.hero::after {
    content: '';
    position: absolute;
    top: 10%;
    left: 55%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0.12;
    filter: blur(90px);
}
.hero-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: start;
}
.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--accent-dim);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.hero-title {
    font-family: var(--font-head);
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
}
.hero-sub {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 2rem;
}
.hero-bullets { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.hero-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
}
.bullet-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    color: var(--accent);
    margin-top: 2px;
}
.hero-bullets strong { color: #fff; }

/* Lead Form */
.lead-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
}
.form-title {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}
.form-sub {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}
.form-group { margin-bottom: 0.75rem; }
.form-input {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.2s;
    outline: none;
}
.form-input::placeholder { color: var(--text-dim); }
.form-input:focus { border-color: var(--accent); }
.form-note {
    text-align: center;
    color: var(--text-dim);
    font-size: 0.8rem;
    margin-top: 0.75rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}
.lead-form-final {
    max-width: 640px;
    margin: 0 auto;
    background: var(--bg-elevated);
    border: 1px solid rgba(59, 158, 255, 0.12);
}
.lead-form-final .form-group { margin-bottom: 0; }
.lead-form-final .btn { margin-top: 1rem; width: 100%; }

@media (max-width: 900px) {
    .hero-layout { grid-template-columns: 1fr; gap: 40px; }
    .hero-form-wrap { order: 2; }
    .form-row { grid-template-columns: 1fr; }
}

/* ============ SECTION ============ */
.section { padding: 80px 0; }

/* ============ POSITIONING ============ */
.positioning { padding-top: 40px; }
.pos-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3rem;
    text-align: center;
}
.pos-card .section-title { margin-bottom: 1rem; }
.pos-text {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 720px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}
.pos-text strong { color: var(--text); }
.pos-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.stat-item { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}
.stat-label { font-size: 0.85rem; color: var(--text-muted); }
@media (max-width: 640px) {
    .pos-stats { grid-template-columns: 1fr 1fr; }
    .pos-card { padding: 2rem 1.5rem; }
}

/* ============ PAIN SECTIONS ============ */
.pain-section { position: relative; }
.pain-alt { background: var(--bg-card-alt); }
.pain-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.pain-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--red-muted);
    background: var(--red-dim);
    padding: 4px 12px;
    border-radius: 6px;
    margin-bottom: 1rem;
}
.pain-title {
    font-family: var(--font-head);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}
.pain-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}
.pain-stat {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1rem;
    padding: 10px 14px;
    background: var(--accent-dim);
    border-radius: 8px;
    display: inline-block;
}
.pain-quote {
    border-left: 3px solid var(--accent);
    padding-left: 1rem;
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.6;
}
.pain-quote cite {
    display: block;
    margin-top: 0.5rem;
    font-style: normal;
    color: var(--text-dim);
    font-size: 0.85rem;
}

/* Solution Cards */
.solution-card {
    background: var(--bg-elevated);
    border: 1px solid rgba(59, 158, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
}
.solution-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    background: var(--accent-dim);
    padding: 4px 12px;
    border-radius: 6px;
    margin-bottom: 0.75rem;
}
.solution-card h3 {
    font-family: var(--font-head);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.solution-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

/* Pain 1 visual — dashboard */
.dashboard-visual {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.dash-item {
    padding: 16px 12px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.dash-name {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.8;
}
.dash-val {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.25rem;
}
.dash-green {
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.2);
    color: var(--green);
}
.dash-blue {
    background: var(--accent-dim);
    border: 1px solid rgba(59, 158, 255, 0.2);
    color: var(--accent);
}
.dash-purple {
    background: rgba(167, 139, 250, 0.1);
    border: 1px solid rgba(167, 139, 250, 0.2);
    color: var(--purple);
}

/* Pain 2 visual — flow */
.flow-visual { text-align: center; }
.flow-sources {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 12px;
}
.flow-chip {
    padding: 8px 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.flow-arrow {
    color: var(--accent);
    margin: 8px 0;
}
.flow-arrow svg { width: 24px; height: 24px; }
.flow-target {
    display: inline-block;
    padding: 10px 24px;
    background: var(--accent-dim);
    border: 1px solid rgba(59, 158, 255, 0.2);
    border-radius: 10px;
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--accent);
}

/* Pain 3 visual — realtime */
.realtime-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.rt-item {
    padding: 16px 24px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.rt-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    opacity: 0.7;
}
.rt-val {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.35rem;
}
.rt-old {
    background: var(--red-dim);
    border: 1px solid rgba(240, 70, 90, 0.2);
    color: var(--red-muted);
}
.rt-new {
    background: var(--accent-dim);
    border: 1px solid rgba(59, 158, 255, 0.2);
    color: var(--accent);
}
.rt-arrow { color: var(--accent); }
.rt-arrow svg { width: 24px; height: 24px; }

@media (max-width: 768px) {
    .pain-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ============ FEATURES ============ */
.features { background: var(--bg-card-alt); }
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: border-color 0.3s, transform 0.3s;
}
.feature-card:hover {
    border-color: rgba(59, 158, 255, 0.2);
    transform: translateY(-4px);
}
.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.25rem;
    color: var(--accent);
}
.feature-icon svg { width: 100%; height: 100%; }
.feature-card h3 {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.feature-accent {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
}
@media (max-width: 900px) { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .features-grid { grid-template-columns: 1fr; } }

/* ============ AI SECTION ============ */
.ai-section { overflow: hidden; }
.chat-window {
    max-width: 620px;
    margin: 0 auto 2.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.chat-msg { display: flex; }
.chat-user { justify-content: flex-end; }
.chat-ai { justify-content: flex-start; }
.chat-bubble {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 0.9rem;
    line-height: 1.5;
}
.chat-user .chat-bubble {
    background: var(--accent);
    color: #fff;
    border-bottom-right-radius: 4px;
}
.chat-ai .chat-bubble {
    background: var(--bg-elevated);
    color: var(--text);
    border-bottom-left-radius: 4px;
    border: 1px solid var(--border);
}
.ai-scenarios {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 2rem;
}
.scenario-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.scenario-q { font-weight: 600; font-size: 0.9rem; color: var(--text); }
.scenario-a { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }
.ai-note {
    text-align: center;
    color: var(--text-dim);
    font-size: 0.9rem;
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
}
@media (max-width: 768px) { .ai-scenarios { grid-template-columns: 1fr; } }

/* ============ COMPARISON ============ */
.compare { background: var(--bg-card-alt); }
.compare-block { margin-top: 1rem; }
.compare-table {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.compare-row {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 0.6fr;
}
.compare-row > span {
    padding: 14px 16px;
    font-size: 0.88rem;
    border-bottom: 1px solid var(--border);
}
.compare-row:last-child > span { border-bottom: none; }
.compare-header > span {
    font-weight: 700;
    font-family: var(--font-head);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-dim);
    background: var(--bg-elevated);
}
.compare-name {
    font-weight: 600;
    color: var(--text);
}
.compare-price {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-dim);
}
.compare-bad { color: var(--text-dim); }
.compare-mid { color: #e8a838; }
.compare-good { color: var(--accent); font-weight: 500; }
.compare-finiq {
    background: var(--accent-dim);
}
.compare-finiq > span {
    border-bottom-color: rgba(59, 158, 255, 0.1);
}

@media (max-width: 768px) {
    .compare-row { grid-template-columns: 1fr 1fr; gap: 2px; }
    .compare-header { display: none; }
    .compare-row > span { padding: 10px 14px; font-size: 0.82rem; }
}

/* ============ ROI ============ */
.roi-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3rem;
    text-align: center;
}
.roi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 2rem 0;
}
.roi-item {
    padding: 1.5rem;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.roi-other { background: var(--bg); border: 1px solid var(--border); }
.roi-finiq { background: var(--accent-dim); border: 1px solid rgba(59, 158, 255, 0.2); }
.roi-price {
    font-family: var(--font-head);
    font-size: 1.75rem;
    font-weight: 700;
}
.roi-other .roi-price { color: var(--text-dim); text-decoration: line-through; text-decoration-color: var(--red-muted); }
.roi-finiq .roi-price { color: var(--accent); }
.roi-label { font-size: 0.85rem; color: var(--text-muted); }
.roi-note { color: var(--text-muted); font-size: 1rem; margin-bottom: 2rem; }
.roi-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}
.roi-result {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.roi-result-num {
    font-family: var(--font-head);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent);
}
@media (max-width: 640px) {
    .roi-grid, .roi-results { grid-template-columns: 1fr; }
    .roi-card { padding: 2rem 1.5rem; }
}

/* ============ FAQ ============ */
.faq-list {
    max-width: 720px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 20px;
    background: none;
    border: none;
    color: var(--text);
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    gap: 16px;
}
.faq-arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s;
    color: var(--text-dim);
}
.faq-item.active .faq-arrow { transform: rotate(180deg); color: var(--accent); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p {
    padding: 0 20px 18px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============ CTA FINAL ============ */
.cta-final { background: var(--bg-card-alt); }
.cta-card { text-align: center; padding: 3rem 0; }
.cta-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}
.cta-sub { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 2rem; }

/* ============ FOOTER ============ */
.footer {
    padding: 2rem 0;
    border-top: 1px solid var(--border);
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-logo {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text);
}
.footer-copy { color: var(--text-dim); font-size: 0.8rem; }
@media (max-width: 480px) {
    .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
}

/* ============ SUCCESS OVERLAY ============ */
.success-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(8, 9, 15, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.success-overlay.active { opacity: 1; pointer-events: all; }
.success-modal {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3rem;
    text-align: center;
    max-width: 400px;
    transform: scale(0.9);
    transition: transform 0.3s;
}
.success-overlay.active .success-modal { transform: scale(1); }
.success-icon {
    width: 64px;
    height: 64px;
    color: var(--accent);
    margin: 0 auto 1rem;
}
.success-modal h3 {
    font-family: var(--font-head);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.success-modal p { color: var(--text-muted); margin-bottom: 1.5rem; }

/* ============ ANIMATIONS ============ */
.anim-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.7s ease forwards;
}
.anim-d1 { animation-delay: 0.15s; }
.anim-d2 { animation-delay: 0.3s; }
.anim-d3 { animation-delay: 0.45s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.anim-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.anim-reveal.visible { opacity: 1; transform: translateY(0); }

.features-grid .feature-card:nth-child(2) { transition-delay: 0.1s; }
.features-grid .feature-card:nth-child(3) { transition-delay: 0.2s; }
.features-grid .feature-card:nth-child(4) { transition-delay: 0.3s; }
.features-grid .feature-card:nth-child(5) { transition-delay: 0.4s; }
.features-grid .feature-card:nth-child(6) { transition-delay: 0.5s; }
.ai-scenarios .scenario-card:nth-child(2) { transition-delay: 0.08s; }
.ai-scenarios .scenario-card:nth-child(3) { transition-delay: 0.16s; }
.ai-scenarios .scenario-card:nth-child(4) { transition-delay: 0.24s; }
.ai-scenarios .scenario-card:nth-child(5) { transition-delay: 0.32s; }
.ai-scenarios .scenario-card:nth-child(6) { transition-delay: 0.4s; }
