:root {
    --nv-bg: #0B0F17;
    --nv-bg-2: #0E1420;
    --nv-surface: #141923;
    --nv-surface-2: #1B2230;
    --nv-surface-3: #242C3D;
    --nv-border: #242C3D;
    --nv-border-soft: #1B2230;

    --nv-cyan: #00E0FF;
    --nv-cyan-2: #00B8E6;
    --nv-purple: #7C4DFF;
    --nv-pink: #FF4D8F;
    --nv-lime: #C4F542;

    --nv-text: #F5F7FA;
    --nv-text-dim: #9DA9BE;
    --nv-text-muted: #6B7891;

    --nv-glow-cyan: 0 0 48px rgba(0, 224, 255, 0.35);
    --nv-glow-purple: 0 0 40px rgba(124, 77, 255, 0.35);
}

* { box-sizing: border-box; }

html {
    font-size: 16px;
    scroll-behavior: smooth;
    background: var(--nv-bg);
    overflow-x: clip;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--nv-text);
    background: var(--nv-bg);
    line-height: 1.6;
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--nv-text);
    margin-top: 0;
}

h1 { font-size: clamp(2.5rem, 5.5vw, 4.75rem); line-height: 1.05; letter-spacing: -0.04em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.75rem); line-height: 1.15; }
h3 { font-size: 1.4rem; }

p { color: var(--nv-text-dim); }

a { color: var(--nv-cyan); text-decoration: none; }
a:hover { color: var(--nv-cyan-2); text-decoration: none; }

/* ---------- Ambient background glow ---------- */
body::before {
    content: "";
    position: fixed;
    top: -320px;
    left: -280px;
    width: 720px;
    height: 720px;
    background: radial-gradient(circle, rgba(124, 77, 255, 0.18) 0%, rgba(124, 77, 255, 0) 65%);
    pointer-events: none;
    z-index: -1;
}
body::after {
    content: "";
    position: fixed;
    top: 35vh;
    right: -300px;
    width: 760px;
    height: 760px;
    background: radial-gradient(circle, rgba(0, 224, 255, 0.12) 0%, rgba(0, 224, 255, 0) 65%);
    pointer-events: none;
    z-index: -1;
}

/* ---------- Navigation ---------- */
/* Sticky goes on <header> (not .nv-navbar) so its containment box is <body>
   and the nav actually stays pinned past the header's own height. */
.nv-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    isolation: isolate;
}
.nv-navbar {
    border-bottom: 1px solid var(--nv-border-soft);
    padding: 0.75rem 0;
    position: relative;
}
.nv-navbar::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(11, 15, 23, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: -1;
    pointer-events: none;
}
.nv-brand {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--nv-text) !important;
    letter-spacing: -0.02em;
}
.nv-brand .nv-brand-accent { color: var(--nv-cyan); }
.nv-brand:hover { text-decoration: none; }

.nv-nav-link {
    color: var(--nv-text-dim) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.15s ease;
}
.nv-nav-link:hover, .nv-nav-link.active {
    color: var(--nv-text) !important;
}

.navbar-toggler {
    border: 1px solid var(--nv-border);
    color: var(--nv-text);
    padding: 0.35rem 0.6rem;
    border-radius: 8px;
}
.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(0, 224, 255, 0.25); }
.navbar-toggler-icon {
    filter: invert(0.9);
}

/* Offcanvas (mobile slide-out, only below lg breakpoint) */
@media (max-width: 991.98px) {
    .nv-offcanvas {
        background: var(--nv-bg-2);
        color: var(--nv-text);
        border-left: 1px solid var(--nv-border);
        box-shadow: -24px 0 60px rgba(0, 0, 0, 0.55);
    }
    .nv-offcanvas .offcanvas-header {
        border-bottom: 1px solid var(--nv-border-soft);
        padding: 1.1rem 1.25rem;
    }
    .nv-offcanvas .offcanvas-title {
        font-family: 'Space Grotesk', sans-serif;
        font-weight: 700;
        color: var(--nv-text);
        font-size: 1.15rem;
    }
    .nv-offcanvas .btn-close {
        filter: invert(1) grayscale(1) brightness(1.4);
        opacity: 0.75;
    }
    .nv-offcanvas .btn-close:hover { opacity: 1; }
    .nv-offcanvas .offcanvas-body {
        padding: 1rem 1.25rem 1.75rem;
    }
    .nv-offcanvas .navbar-nav { gap: 0.25rem; }
    .nv-offcanvas .nv-nav-link {
        padding: 0.85rem 0.75rem !important;
        border-radius: 8px;
        font-size: 1.05rem;
        color: var(--nv-text) !important;
        border: 1px solid transparent;
    }
    .nv-offcanvas .nv-nav-link:hover {
        background: var(--nv-surface);
        border-color: var(--nv-border);
    }
    .nv-offcanvas .nv-nav-link.active {
        background: rgba(0, 224, 255, 0.08);
        border-color: rgba(0, 224, 255, 0.25);
        color: var(--nv-cyan) !important;
    }
    .nv-offcanvas .btn-nv-primary {
        margin-top: 0.75rem;
        width: 100%;
        text-align: center;
    }
}

/* ---------- Buttons ---------- */
.btn-nv-primary {
    background: var(--nv-cyan);
    color: #001018 !important;
    font-weight: 700;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    border: 0;
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.15s ease;
    box-shadow: 0 8px 28px rgba(0, 224, 255, 0.25);
}
.btn-nv-primary:hover {
    background: #33EBFF;
    box-shadow: 0 10px 40px rgba(0, 224, 255, 0.45), var(--nv-glow-cyan);
    transform: translateY(-1px);
    color: #001018 !important;
}

.btn-nv-ghost {
    background: transparent;
    color: var(--nv-text) !important;
    border: 1px solid var(--nv-border);
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    transition: background 0.15s ease, border-color 0.15s ease;
}
.btn-nv-ghost:hover {
    background: var(--nv-surface);
    border-color: var(--nv-surface-3);
    color: var(--nv-text) !important;
}

.btn-nv-outline {
    background: transparent;
    border: 1px solid var(--nv-cyan);
    color: var(--nv-cyan) !important;
    font-weight: 600;
    padding: 0.7rem 1.3rem;
    border-radius: 10px;
    transition: background 0.15s ease, color 0.15s ease, box-shadow 0.2s ease;
}
.btn-nv-outline:hover {
    background: rgba(0, 224, 255, 0.1);
    box-shadow: 0 0 24px rgba(0, 224, 255, 0.25);
    color: var(--nv-cyan) !important;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

/* ---------- Eyebrow / pill ---------- */
.nv-eyebrow {
    display: inline-block;
    background: rgba(0, 224, 255, 0.08);
    color: var(--nv-cyan);
    border: 1px solid rgba(0, 224, 255, 0.25);
    padding: 0.4rem 0.95rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}
.nv-eyebrow.pink {
    background: rgba(255, 77, 143, 0.08);
    color: var(--nv-pink);
    border-color: rgba(255, 77, 143, 0.25);
}
.nv-eyebrow.purple {
    background: rgba(124, 77, 255, 0.08);
    color: #B8A1FF;
    border-color: rgba(124, 77, 255, 0.3);
}
.nv-eyebrow .bi {
    margin-right: 0.45rem;
    font-size: 0.95em;
    vertical-align: -0.06em;
    display: inline-block;
}

/* ---------- Hero ---------- */
.nv-hero {
    padding: 7rem 0 6rem;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(800px circle at 18% 22%, rgba(124, 77, 255, 0.38), transparent 55%),
        radial-gradient(720px circle at 82% 78%, rgba(0, 224, 255, 0.30), transparent 55%),
        radial-gradient(560px circle at 50% 50%, rgba(255, 77, 143, 0.12), transparent 65%);
}

/* Home hero: video background with dark overlay + brand glows */
.nv-hero-home {
    background: var(--nv-bg);
}
.nv-hero-home::before {
    /* Hide the dot grid for the video hero - too noisy on top of motion */
    display: none;
}
.nv-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    pointer-events: none;
}
.nv-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
        linear-gradient(180deg, rgba(11, 15, 23, 0.55) 0%, rgba(11, 15, 23, 0.80) 65%, rgba(11, 15, 23, 1) 100%),
        radial-gradient(900px circle at 15% 20%, rgba(124, 77, 255, 0.30), transparent 55%),
        radial-gradient(820px circle at 85% 80%, rgba(0, 224, 255, 0.25), transparent 55%);
}

/* Respect reduced-motion preference: hide the video, fallback to poster image */
@media (prefers-reduced-motion: reduce) {
    .nv-hero-video {
        display: none;
    }
    .nv-hero-home {
        background-image:
            linear-gradient(180deg, rgba(11, 15, 23, 0.55) 0%, rgba(11, 15, 23, 0.80) 65%, rgba(11, 15, 23, 1) 100%),
            radial-gradient(900px circle at 15% 20%, rgba(124, 77, 255, 0.38), transparent 55%),
            radial-gradient(820px circle at 85% 80%, rgba(0, 224, 255, 0.32), transparent 55%),
            url('https://images.unsplash.com/photo-1761155228019-0a29e3f6c8e9?w=2400&q=80&auto=format&fit=crop');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}

.nv-hero-attribution {
    position: absolute;
    bottom: 10px;
    right: 18px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.55);
    z-index: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
.nv-hero-attribution a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.3);
}
.nv-hero-attribution a:hover {
    color: #fff;
    text-decoration-color: rgba(255, 255, 255, 0.75);
}
.nv-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.05) 1.25px, transparent 0);
    background-size: 32px 32px;
    -webkit-mask-image: radial-gradient(ellipse 70% 80% at center, #000 40%, transparent 85%);
            mask-image: radial-gradient(ellipse 70% 80% at center, #000 40%, transparent 85%);
    pointer-events: none;
    z-index: -1;
}
.nv-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 224, 255, 0.35) 30%, rgba(124, 77, 255, 0.35) 70%, transparent);
    pointer-events: none;
    z-index: -1;
}

/* Centered hero layout (used on Home now that image is gone) */
.nv-hero-center {
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.nv-hero-center .nv-lead {
    margin-left: auto;
    margin-right: auto;
}
.nv-hero-center .nv-hero-ctas {
    justify-content: center;
}
.nv-hero-center .nv-hero-stats {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.nv-hero h1 {
    background: linear-gradient(135deg, #FFFFFF 0%, #B8A1FF 60%, #00E0FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.nv-hero .nv-lead {
    font-size: 1.2rem;
    color: var(--nv-text-dim);
    max-width: 680px;
    margin-top: 1.25rem;
}
.nv-hero-ctas {
    margin-top: 2.25rem;
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.nv-hero-media {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--nv-border);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 120px rgba(124, 77, 255, 0.15);
}
.nv-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 340px;
}
.nv-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(11,15,23,0) 30%, rgba(11,15,23,0.55) 100%);
    pointer-events: none;
}
.nv-hero-media .nv-unsplash-credit {
    position: absolute;
    bottom: 8px;
    right: 12px;
    z-index: 2;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.75);
    background: rgba(0, 0, 0, 0.35);
    padding: 3px 8px;
    border-radius: 6px;
    backdrop-filter: blur(6px);
}
.nv-hero-media .nv-unsplash-credit a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.4);
}

.nv-hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 3.5rem;
    padding-top: 2.25rem;
    border-top: 1px solid var(--nv-border-soft);
}
.nv-hero-stat .num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--nv-cyan);
    display: block;
    letter-spacing: -0.02em;
}
.nv-hero-stat .label {
    font-size: 0.88rem;
    color: var(--nv-text-muted);
}

/* ---------- Sections ---------- */
.nv-section {
    padding: 5rem 0;
    position: relative;
}
.nv-section-alt {
    background: linear-gradient(180deg, var(--nv-bg) 0%, var(--nv-bg-2) 100%);
}
.nv-section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 3.5rem;
}
.nv-section-head p {
    color: var(--nv-text-dim);
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* ---------- Feature cards ---------- */
.nv-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}
.nv-feature-grid.cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 992px) {
    .nv-feature-grid,
    .nv-feature-grid.cols-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 640px) {
    .nv-feature-grid,
    .nv-feature-grid.cols-4 {
        grid-template-columns: 1fr;
    }
}
.nv-feature {
    background: linear-gradient(180deg, var(--nv-surface) 0%, var(--nv-bg-2) 100%);
    border: 1px solid var(--nv-border);
    border-radius: 16px;
    padding: 1.85rem;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}
.nv-feature::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(0, 224, 255, 0.08) 0%, rgba(0, 224, 255, 0) 60%);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}
.nv-feature:hover {
    transform: translateY(-3px);
    border-color: var(--nv-surface-3);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 224, 255, 0.1);
}
.nv-feature:hover::before { opacity: 1; }
.nv-feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 224, 255, 0.15) 0%, rgba(124, 77, 255, 0.15) 100%);
    color: var(--nv-cyan);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    font-size: 1.4rem;
    border: 1px solid rgba(0, 224, 255, 0.25);
}
.nv-feature h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--nv-text);
}
.nv-feature p {
    color: var(--nv-text-dim);
    margin: 0;
    font-size: 0.96rem;
}

/* ---------- Product rows with images ---------- */
.nv-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
    padding: 3.5rem 0;
    border-bottom: 1px solid var(--nv-border-soft);
}
.nv-product:last-child { border-bottom: 0; }
.nv-product.reverse .nv-product-media { order: 2; }

.nv-product-media {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--nv-border);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
}
.nv-product-media img {
    width: 100%;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.nv-product-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(0, 224, 255, 0.05) 0%, rgba(124, 77, 255, 0.08) 100%);
    pointer-events: none;
}
.nv-product-media .nv-unsplash-credit {
    position: absolute;
    bottom: 8px;
    right: 12px;
    z-index: 2;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(0, 0, 0, 0.4);
    padding: 3px 8px;
    border-radius: 6px;
    backdrop-filter: blur(6px);
}
.nv-product-media .nv-unsplash-credit a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.4);
}

.nv-product-body ul {
    padding-left: 0;
    list-style: none;
    margin-top: 1.25rem;
}
.nv-product-body ul li {
    padding: 0.4rem 0 0.4rem 2rem;
    position: relative;
    color: var(--nv-text-dim);
}
.nv-product-body ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.8rem;
    width: 14px;
    height: 2px;
    background: var(--nv-cyan);
    border-radius: 2px;
}

@media (max-width: 900px) {
    .nv-product { grid-template-columns: 1fr; gap: 1.75rem; padding: 2.25rem 0; }
    .nv-product.reverse .nv-product-media { order: 0; }
}

/* ---------- CTA banner ---------- */
.nv-cta-banner {
    background: linear-gradient(135deg, #11192A 0%, #1B1733 100%);
    border: 1px solid var(--nv-border);
    color: var(--nv-text);
    padding: 4.5rem 2rem;
    text-align: center;
    border-radius: 24px;
    margin: 2.5rem 0;
    position: relative;
    overflow: hidden;
}
.nv-cta-banner::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -150px;
    top: -180px;
    background: radial-gradient(circle, rgba(0, 224, 255, 0.3) 0%, rgba(0, 224, 255, 0) 70%);
    pointer-events: none;
}
.nv-cta-banner::after {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    left: -140px;
    bottom: -170px;
    background: radial-gradient(circle, rgba(124, 77, 255, 0.28) 0%, rgba(124, 77, 255, 0) 70%);
    pointer-events: none;
}
.nv-cta-banner > * { position: relative; z-index: 1; }
.nv-cta-banner p {
    color: var(--nv-text-dim);
    max-width: 680px;
    margin: 1.1rem auto 2.25rem;
    font-size: 1.1rem;
}

/* ---------- Pricing ---------- */
.nv-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.nv-plan {
    background: linear-gradient(180deg, var(--nv-surface) 0%, var(--nv-bg-2) 100%);
    border: 1px solid var(--nv-border);
    border-radius: 18px;
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    position: relative;
}
.nv-plan.popular {
    border: 1px solid rgba(0, 224, 255, 0.6);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 224, 255, 0.2), 0 0 80px rgba(0, 224, 255, 0.12);
}
.nv-plan.popular::before {
    content: "Most popular";
    position: absolute;
    top: -14px;
    right: 1.5rem;
    background: var(--nv-cyan);
    color: #001018;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.nv-plan h3 { margin-bottom: 0.35rem; color: var(--nv-text); font-size: 1.35rem; }
.nv-plan .nv-plan-desc { color: var(--nv-text-muted); font-size: 0.95rem; margin-bottom: 1.35rem; }
.nv-plan .nv-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--nv-text);
    letter-spacing: -0.03em;
}
.nv-plan .nv-price-unit { font-size: 0.95rem; color: var(--nv-text-muted); font-weight: 500; }
.nv-plan ul {
    list-style: none;
    padding: 0;
    margin: 1.6rem 0;
    flex: 1;
}
.nv-plan ul li {
    padding: 0.45rem 0 0.45rem 1.75rem;
    position: relative;
    color: var(--nv-text-dim);
    font-size: 0.95rem;
}
.nv-plan ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 12px;
    height: 2px;
    background: var(--nv-cyan);
    border-radius: 2px;
}

/* ---------- Testimonials ---------- */
.nv-quote {
    background: var(--nv-surface);
    border: 1px solid var(--nv-border);
    border-radius: 18px;
    padding: 1.85rem;
    font-size: 1rem;
    position: relative;
    height: 100%;
}
.nv-quote::before {
    content: "\201C";
    font-size: 3.5rem;
    color: var(--nv-cyan);
    line-height: 1;
    position: absolute;
    top: 0.5rem;
    left: 1rem;
    font-family: Georgia, serif;
    opacity: 0.35;
}
.nv-quote p {
    color: var(--nv-text);
    margin: 0 0 1rem;
    padding-top: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
}
.nv-quote .nv-quote-who {
    font-size: 0.88rem;
    color: var(--nv-text-muted);
}
.nv-quote .nv-quote-who strong { color: var(--nv-text); font-weight: 600; }

/* ---------- About / 3nity badge ---------- */
.nv-badge-3nity {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    background: var(--nv-surface);
    border: 1px solid var(--nv-border);
    padding: 0.6rem 1.15rem;
    border-radius: 999px;
    font-size: 0.9rem;
    color: var(--nv-text-dim);
    font-weight: 500;
    text-decoration: none;
}
.nv-badge-3nity:hover {
    border-color: var(--nv-surface-3);
    color: var(--nv-text);
    text-decoration: none;
}
.nv-badge-3nity strong { color: var(--nv-text); }

/* 3nity logo sizing */
.nv-3nity-logo {
    height: 22px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    opacity: 0.9;
    transition: opacity 0.15s ease;
}
a:hover > .nv-3nity-logo, .nv-3nity-logo:hover { opacity: 1; }
.nv-3nity-logo-lg { height: 44px; }
.nv-3nity-logo-footer { height: 20px; }

/* ---------- Contact form ---------- */
.nv-form {
    background: var(--nv-surface);
    border: 1px solid var(--nv-border);
    border-radius: 20px;
    padding: 2.25rem;
}
.nv-form .form-label, .nv-form label {
    color: var(--nv-text);
    font-weight: 600;
    margin-bottom: 0.4rem;
}
.nv-form .form-control, .nv-form .form-select {
    background: var(--nv-bg-2);
    color: var(--nv-text);
    border-radius: 10px;
    border: 1px solid var(--nv-border);
    padding: 0.75rem 0.95rem;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.nv-form .form-control::placeholder { color: var(--nv-text-muted); }
.nv-form .form-control:focus, .nv-form .form-select:focus {
    background: var(--nv-bg-2);
    color: var(--nv-text);
    border-color: var(--nv-cyan);
    box-shadow: 0 0 0 3px rgba(0, 224, 255, 0.18);
    outline: none;
}
.nv-form .form-check-input {
    background: var(--nv-bg-2);
    border: 1px solid var(--nv-border);
}
.nv-form .form-check-input:checked {
    background-color: var(--nv-cyan);
    border-color: var(--nv-cyan);
}
.nv-form .form-check-label { color: var(--nv-text-dim); font-weight: 500; }

.nv-alert-success {
    background: rgba(0, 224, 255, 0.08);
    border: 1px solid rgba(0, 224, 255, 0.35);
    color: var(--nv-cyan);
    padding: 0.75rem 1.1rem;
    border-radius: 10px;
    display: inline-block;
    font-weight: 600;
}

/* Honeypot: visually hidden but present in DOM for naive bots */
.nv-honeypot {
    position: absolute !important;
    left: -10000px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0;
}

/* ---------- Unsplash attribution ---------- */
.nv-unsplash {
    margin: 0;
    position: relative;
}
.nv-unsplash-credit {
    font-size: 0.78rem;
    color: var(--nv-text-muted);
    margin-top: 0.5rem;
}
.nv-unsplash-credit a { color: var(--nv-text-dim); text-decoration: underline; text-decoration-color: rgba(157, 169, 190, 0.3); }
.nv-unsplash-credit a:hover { color: var(--nv-cyan); text-decoration-color: var(--nv-cyan); }

/* ---------- Footer ---------- */
.nv-footer {
    background: var(--nv-bg-2);
    color: var(--nv-text-dim);
    padding: 4rem 0 2rem;
    margin-top: 5rem;
    border-top: 1px solid var(--nv-border-soft);
    position: relative;
}
.nv-footer h5 {
    color: var(--nv-text);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.1rem;
}
.nv-footer a {
    color: var(--nv-text-dim);
    display: block;
    padding: 0.3rem 0;
    font-size: 0.95rem;
    text-decoration: none;
}
.nv-footer a:hover { color: var(--nv-text); }
.nv-footer-brand {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--nv-text);
}
.nv-footer-brand .nv-brand-accent { color: var(--nv-cyan); }
.nv-footer-desc {
    color: var(--nv-text-muted);
    max-width: 360px;
    font-size: 0.95rem;
    margin-top: 0.75rem;
}
.nv-footer-bottom {
    border-top: 1px solid var(--nv-border-soft);
    padding-top: 1.5rem;
    margin-top: 2.75rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--nv-text-muted);
}
.nv-footer-bottom a { display: inline; color: var(--nv-text-dim); }

/* ---------- SVG Wave separator ---------- */
.nv-wave {
    display: block;
    width: 100%;
    height: 60px;
    color: var(--nv-bg-2);
}

/* ---------- Utilities ---------- */
.text-dim { color: var(--nv-text-dim) !important; }
.text-muted-soft { color: var(--nv-text-muted) !important; }
.bg-surface { background: var(--nv-surface); }

.btn:focus, .btn:active:focus { outline: none; box-shadow: 0 0 0 3px rgba(0, 224, 255, 0.35); }

/* ============================================================
   BLOG
   ============================================================ */
.nv-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 1.5rem;
}
.nv-blog-card {
    display: flex;
    flex-direction: column;
    background: var(--nv-surface);
    border: 1px solid var(--nv-border);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none !important;
    color: var(--nv-text);
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.2s ease;
}
.nv-blog-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 224, 255, 0.35);
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(0, 224, 255, 0.12);
    color: var(--nv-text);
}
.nv-blog-card-image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--nv-bg-2);
}
.nv-blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.nv-blog-card:hover .nv-blog-card-image img { transform: scale(1.04); }
.nv-blog-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.nv-blog-card-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.78rem;
    color: var(--nv-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.6rem;
}
.nv-blog-category {
    color: var(--nv-cyan);
    font-weight: 600;
}
.nv-blog-card-title {
    font-size: 1.18rem;
    line-height: 1.3;
    margin-bottom: 0.6rem;
    color: var(--nv-text);
}
.nv-blog-card-excerpt {
    color: var(--nv-text-dim);
    font-size: 0.93rem;
    flex: 1;
    margin-bottom: 1rem;
}
.nv-blog-card-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--nv-text-muted);
    font-size: 0.85rem;
    border-top: 1px solid var(--nv-border-soft);
    padding-top: 0.85rem;
}
.nv-blog-card-arrow .bi {
    color: var(--nv-cyan);
    transition: transform 0.18s ease;
}
.nv-blog-card:hover .nv-blog-card-arrow .bi { transform: translateX(4px); }

/* ---------- Blog pagination ---------- */
.nv-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}
.nv-page-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1rem;
    border: 1px solid var(--nv-border-soft);
    border-radius: 8px;
    color: var(--nv-text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    transition: border-color 0.15s ease, color 0.15s ease;
}
.nv-page-link:hover:not(.nv-page-disabled) {
    border-color: var(--nv-cyan);
    color: var(--nv-cyan);
}
.nv-page-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
.nv-page-numbers {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.35rem;
}
.nv-page-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.25rem;
    height: 2.25rem;
    padding: 0 0.5rem;
    border-radius: 8px;
    border: 1px solid var(--nv-border-soft);
    color: var(--nv-text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.nv-page-num:hover {
    border-color: var(--nv-cyan);
    color: var(--nv-cyan);
}
.nv-page-current {
    background: var(--nv-cyan);
    border-color: var(--nv-cyan);
    color: #0B0F17;
    font-weight: 600;
}

/* ---------- Single post layout ---------- */
.nv-blog-article {
    padding-bottom: 4rem;
}
.nv-blog-post-header {
    padding: 4rem 0 2rem;
    text-align: center;
}
.nv-blog-back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--nv-text-dim);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    text-decoration: none;
}
.nv-blog-back:hover { color: var(--nv-cyan); }
.nv-blog-post-header h1 {
    font-size: clamp(2rem, 4.2vw, 3.2rem);
    margin: 0.65rem 0 1rem;
    line-height: 1.15;
}
.nv-blog-post-excerpt {
    font-size: 1.15rem;
    color: var(--nv-text-dim);
    max-width: 640px;
    margin: 0 auto 1.5rem;
}
.nv-blog-post-meta {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: var(--nv-text-muted);
    font-size: 0.9rem;
    justify-content: center;
}
.nv-blog-post-meta .bi { color: var(--nv-cyan); margin-right: 0.3rem; }

.nv-blog-post-hero {
    margin: 2rem auto 3rem;
    max-width: 1080px;
    padding: 0 1rem;
    position: relative;
}
.nv-blog-post-hero img {
    width: 100%;
    aspect-ratio: 16 / 8;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid var(--nv-border);
}
.nv-blog-post-hero .nv-unsplash-credit {
    position: absolute;
    bottom: 12px;
    right: 24px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(0, 0, 0, 0.45);
    padding: 4px 10px;
    border-radius: 6px;
    backdrop-filter: blur(6px);
    margin: 0;
}
.nv-blog-post-hero .nv-unsplash-credit a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.4);
}

.nv-blog-post-body {
    color: var(--nv-text-dim);
    font-size: 1.05rem;
    line-height: 1.78;
}
.nv-blog-post-body p { margin: 0 0 1.25rem; }
.nv-blog-post-body h2 {
    color: var(--nv-text);
    font-size: 1.65rem;
    margin: 2.5rem 0 1rem;
    line-height: 1.25;
}
.nv-blog-post-body h3 {
    color: var(--nv-text);
    font-size: 1.25rem;
    margin: 2rem 0 0.75rem;
}
.nv-blog-post-body strong { color: var(--nv-text); font-weight: 600; }
.nv-blog-post-body em { color: var(--nv-text); font-style: italic; }
.nv-blog-post-body a {
    color: var(--nv-cyan);
    text-decoration: underline;
    text-decoration-color: rgba(0, 224, 255, 0.4);
}
.nv-blog-post-body a:hover { text-decoration-color: var(--nv-cyan); }
.nv-blog-post-body ul,
.nv-blog-post-body ol {
    margin: 0 0 1.5rem;
    padding-left: 1.5rem;
}
.nv-blog-post-body li {
    margin-bottom: 0.55rem;
}
.nv-blog-post-body ul li::marker { color: var(--nv-cyan); }
.nv-blog-post-body ol li::marker { color: var(--nv-cyan); font-weight: 700; }
.nv-blog-post-body blockquote {
    margin: 2rem 0;
    padding: 1.25rem 1.5rem;
    border-left: 3px solid var(--nv-cyan);
    background: var(--nv-surface);
    border-radius: 0 12px 12px 0;
    color: var(--nv-text);
    font-style: italic;
}
.nv-blog-post-body img {
    max-width: 100%;
    border-radius: 14px;
    margin: 1.5rem 0;
    border: 1px solid var(--nv-border);
}
.nv-blog-post-body .callout {
    background: linear-gradient(135deg, rgba(124, 77, 255, 0.08) 0%, rgba(0, 224, 255, 0.06) 100%);
    border: 1px solid rgba(0, 224, 255, 0.25);
    border-radius: 14px;
    padding: 1.4rem 1.6rem;
    margin: 2rem 0;
    color: var(--nv-text);
}
.nv-blog-post-body .callout strong { color: var(--nv-cyan); }
.nv-blog-post-body .checklist {
    list-style: none;
    padding-left: 0;
}
.nv-blog-post-body .checklist li {
    position: relative;
    padding: 0.4rem 0 0.4rem 2rem;
    color: var(--nv-text);
}
.nv-blog-post-body .checklist li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 1.4rem;
    height: 1.4rem;
    background: rgba(0, 224, 255, 0.15);
    border: 1px solid rgba(0, 224, 255, 0.35);
    color: var(--nv-cyan);
    border-radius: 5px;
    text-align: center;
    line-height: 1.2rem;
    font-weight: 700;
}

/* Tags + inline CTA */
.nv-blog-tags {
    margin: 2.5rem 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.nv-blog-tag {
    background: var(--nv-surface);
    border: 1px solid var(--nv-border);
    color: var(--nv-text-dim);
    font-size: 0.82rem;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
}
.nv-blog-cta {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--nv-surface) 0%, var(--nv-bg-2) 100%);
    border: 1px solid rgba(0, 224, 255, 0.25);
    border-radius: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    justify-content: space-between;
}
.nv-blog-cta h3 {
    margin: 0 0 0.4rem;
    color: var(--nv-text);
    font-size: 1.2rem;
}
.nv-blog-cta p { margin: 0; color: var(--nv-text-dim); }

/* ---------- Bootstrap overrides for dark ---------- */
.text-danger { color: #FF7A8F !important; }

/* ============================================================
   LANDING PAGE (paid traffic, /quote)
   ============================================================ */

.nv-landing-body {
    background: var(--nv-bg);
}

/* Top bar: minimal, just brand + click-to-call */
.nv-landing-topbar {
    padding: 1rem 0;
    border-bottom: 1px solid var(--nv-border-soft);
    background: rgba(11, 15, 23, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1030;
    isolation: isolate;
}
.nv-landing-call {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--nv-cyan) !important;
    font-weight: 600;
    text-decoration: none;
    padding: 0.45rem 0.95rem;
    border: 1px solid rgba(0, 224, 255, 0.35);
    border-radius: 8px;
    transition: background 0.15s ease, box-shadow 0.2s ease;
}
.nv-landing-call:hover {
    background: rgba(0, 224, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 224, 255, 0.2);
    color: var(--nv-cyan) !important;
}

/* Landing footer: tight, single row, minimal links */
.nv-landing-footer {
    padding: 2rem 0;
    border-top: 1px solid var(--nv-border-soft);
    margin-top: 4rem;
    background: var(--nv-bg-2);
}
.nv-landing-footer a {
    color: var(--nv-text-dim);
    text-decoration: none;
}
.nv-landing-footer a:hover { color: var(--nv-text); }

/* Hero block: form sits next to copy, both above the fold */
.nv-lp-hero {
    padding: 4.5rem 0 5rem;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background-image:
        linear-gradient(180deg, rgba(11, 15, 23, 0.85) 0%, rgba(11, 15, 23, 0.92) 70%, rgba(11, 15, 23, 1) 100%),
        radial-gradient(900px circle at 12% 18%, rgba(124, 77, 255, 0.32), transparent 55%),
        radial-gradient(800px circle at 88% 82%, rgba(0, 224, 255, 0.28), transparent 55%),
        url('https://images.unsplash.com/photo-1758518731572-7791381c5ce8?w=2400&q=80&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.nv-lp-hero-headline {
    font-size: clamp(2.2rem, 4.6vw, 3.85rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 1.25rem;
}
.nv-grad-text {
    background: linear-gradient(135deg, #00E0FF 0%, #B8A1FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.nv-lp-lead {
    font-size: 1.15rem;
    color: var(--nv-text-dim);
    margin: 0 0 1.5rem;
    max-width: 600px;
}
.nv-lp-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
}
.nv-lp-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 0.4rem 0;
    color: var(--nv-text);
    font-size: 1.02rem;
}
.nv-lp-bullets .bi {
    color: var(--nv-cyan);
    font-size: 1.15rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}
.nv-lp-trust {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--nv-text-muted);
    font-size: 0.9rem;
    padding: 0.55rem 1rem;
    background: var(--nv-surface);
    border: 1px solid var(--nv-border);
    border-radius: 999px;
}
.nv-lp-trust .bi { color: var(--nv-cyan); }

/* Form panel */
.nv-lp-form-wrap {
    background: var(--nv-surface);
    border: 1px solid var(--nv-border);
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(0, 224, 255, 0.08), 0 0 80px rgba(0, 224, 255, 0.08);
    position: sticky;
    top: 90px;
}
.nv-lp-form-heading {
    font-size: 1.5rem;
    margin-bottom: 0.35rem;
}
.nv-lp-form-sub {
    color: var(--nv-text-muted);
    font-size: 0.92rem;
    margin-bottom: 1.5rem;
}
.nv-lp-form .form-label {
    font-size: 0.92rem;
    font-weight: 600;
}
.nv-lp-form-foot {
    color: var(--nv-text-muted);
    font-size: 0.78rem;
    margin: 0.85rem 0 0;
    line-height: 1.45;
}
.nv-lp-form-foot a { color: var(--nv-text-dim); text-decoration: underline; }

@media (max-width: 992px) {
    .nv-lp-form-wrap {
        position: static;
        margin-top: 2rem;
    }
}

/* Metric cards (benefits section) */
.nv-lp-metric {
    background: var(--nv-surface);
    border: 1px solid var(--nv-border);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    height: 100%;
}
.nv-lp-metric-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.85rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00E0FF 0%, #B8A1FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    letter-spacing: -0.03em;
}
.nv-lp-metric-label {
    color: var(--nv-text);
    font-weight: 600;
    margin: 0.75rem 0 0.85rem;
    font-size: 1.02rem;
}

/* Feature pills */
.nv-lp-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
}
.nv-lp-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1rem;
    background: var(--nv-surface);
    border: 1px solid var(--nv-border);
    border-radius: 999px;
    color: var(--nv-text);
    font-size: 0.93rem;
    font-weight: 500;
    transition: border-color 0.15s ease, transform 0.15s ease;
}
.nv-lp-pill:hover {
    border-color: rgba(0, 224, 255, 0.45);
    transform: translateY(-1px);
}
.nv-lp-pill .bi { color: var(--nv-cyan); }

/* How it works steps */
.nv-lp-step {
    background: linear-gradient(180deg, var(--nv-surface) 0%, var(--nv-bg-2) 100%);
    border: 1px solid var(--nv-border);
    border-radius: 16px;
    padding: 2rem 1.75rem;
    height: 100%;
    position: relative;
}
.nv-lp-step-num {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 224, 255, 0.15) 0%, rgba(124, 77, 255, 0.15) 100%);
    border: 1px solid rgba(0, 224, 255, 0.3);
    color: var(--nv-cyan);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}
.nv-lp-step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* Risk reversal list */
.nv-lp-reassurance {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1.5rem;
}
.nv-lp-reassurance li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: var(--nv-text);
    padding: 0.5rem 0;
    font-size: 0.97rem;
}
.nv-lp-reassurance .bi {
    color: var(--nv-cyan);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}
@media (max-width: 768px) {
    .nv-lp-reassurance { grid-template-columns: 1fr; }
}

/* FAQ accordion */
.nv-lp-faq .accordion-item {
    background: var(--nv-surface);
    border: 1px solid var(--nv-border);
    border-radius: 12px !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
}
.nv-lp-faq .accordion-button {
    background: var(--nv-surface);
    color: var(--nv-text);
    font-weight: 600;
    padding: 1.1rem 1.35rem;
    box-shadow: none;
}
.nv-lp-faq .accordion-button:not(.collapsed) {
    background: var(--nv-surface-2);
    color: var(--nv-cyan);
    box-shadow: none;
}
.nv-lp-faq .accordion-button::after {
    filter: invert(0.85);
}
.nv-lp-faq .accordion-button:focus {
    box-shadow: 0 0 0 2px rgba(0, 224, 255, 0.25);
    border-color: transparent;
}
.nv-lp-faq .accordion-body {
    background: var(--nv-surface);
    color: var(--nv-text-dim);
    padding: 0.95rem 1.35rem 1.4rem;
    font-size: 0.97rem;
    line-height: 1.65;
    border-top: 1px solid var(--nv-border-soft);
}

/* Mid-page feature block: image + supporting copy */
.nv-lp-feature-section {
    padding: 4.5rem 0;
}
.nv-lp-feature-img {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--nv-border);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    margin: 0;
    position: relative;
}
.nv-lp-feature-img img {
    width: 100%;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.nv-lp-feature-img .nv-unsplash-credit {
    position: absolute;
    bottom: 8px;
    right: 12px;
    z-index: 2;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(0, 0, 0, 0.4);
    padding: 3px 8px;
    border-radius: 6px;
    backdrop-filter: blur(6px);
    margin: 0;
}
.nv-lp-feature-img .nv-unsplash-credit a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.4);
}

/* Mobile breathing room: bump container padding so text doesn't kiss the edges */
@media (max-width: 575.98px) {
    .container, .container-fluid, .container-sm, .container-md, .container-lg {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    .nv-section { padding: 3.5rem 0; }
    .nv-lp-hero { padding: 3rem 0 3.5rem; }
    .nv-cta-banner { padding: 3rem 1.25rem; border-radius: 18px; }
    .nv-lp-form-wrap { padding: 1.5rem; border-radius: 14px; }
}

/* ThankYou next-steps card */
.nv-lp-thanks-next {
    margin-top: 2.5rem;
    text-align: left;
    background: var(--nv-surface);
    border: 1px solid var(--nv-border);
    border-radius: 14px;
    padding: 1.75rem 1.85rem;
}
.nv-lp-thanks-next h3 {
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--nv-text-muted);
    margin-bottom: 1rem;
}
.nv-lp-thanks-next ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.nv-lp-thanks-next li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.55rem 0;
    color: var(--nv-text-dim);
}
.nv-lp-thanks-next .bi {
    color: var(--nv-cyan);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}
