/* ── Scroll-Triggered Navigator CTA Widget ── */
.nvc-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}
.nvc-widget.nvc-visible {
    transform: translateY(0);
    pointer-events: auto;
}
.nvc-inner {
    background: linear-gradient(135deg, #0a0f1a 0%, #1a2240 100%);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 0.875rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}
.nvc-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}
.nvc-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(37,99,235,0.25);
    border: 1px solid rgba(37,99,235,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #60a5fa;
}
.nvc-text {
    flex: 1;
}
.nvc-headline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.15rem;
    line-height: 1.2;
}
.nvc-sub {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
}
.nvc-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.25rem;
    background: var(--accent, #2563eb);
    color: #fff;
    border-radius: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.15s, transform 0.15s;
}
.nvc-cta:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}
.nvc-dismiss {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.85rem;
    transition: background 0.15s, color 0.15s;
    padding: 0;
    line-height: 1;
}
.nvc-dismiss:hover {
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.7);
}

@media (max-width: 600px) {
    .nvc-inner { padding: 0.75rem 1rem; flex-wrap: wrap; }
    .nvc-left { flex: 1 1 100%; }
    .nvc-headline { font-size: 0.85rem; }
    .nvc-sub { display: none; }
    .nvc-cta { font-size: 0.8rem; padding: 0.55rem 1rem; }
}

/* ── Inline CTA Strip (for use in page sections) ── */
.nvc-inline {
    background: linear-gradient(135deg, rgba(37,99,235,0.07) 0%, rgba(16,185,129,0.05) 100%);
    border: 1px solid rgba(37,99,235,0.15);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin: 1.5rem 0;
}
.nvc-inline-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(37,99,235,0.12);
    border: 1px solid rgba(37,99,235,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    flex-shrink: 0;
}
.nvc-inline-text { flex: 1; }
.nvc-inline-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ink, #0a0f1a);
    margin-bottom: 0.2rem;
}
.nvc-inline-desc {
    font-size: 0.82rem;
    color: var(--ink-muted, #4a5578);
}
.nvc-inline-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.65rem 1.25rem;
    background: var(--accent, #2563eb);
    color: #fff;
    border-radius: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.15s;
}
.nvc-inline-btn:hover { background: #1d4ed8; }

@media (max-width: 600px) {
    .nvc-inline { flex-wrap: wrap; }
    .nvc-inline-text { flex: 1 1 100%; }
    .nvc-inline-btn { width: 100%; justify-content: center; }
}