/**
 * Netivi.bz storefront.
 *
 * Loads AFTER assets/css/tokens.css and consumes its variables, so the
 * storefront, the portal and the admin cannot drift apart on spacing, type
 * scale or surface colour. What it overrides is the palette: the portal's amber
 * belongs to TVGO, and this is Netivi — blue #0870CF and red #FF0024, sampled
 * from the wordmark.
 *
 * The canvas stays dark. That is not a stylistic preference borrowed from the
 * admin: it is what a television product looks like everywhere the customer
 * already watches, it keeps artwork and logos from fighting the page, and it
 * means tokens.css's surfaces work unmodified.
 *
 * No framework, no build step, no web fonts. One request for the CSS, one for
 * the logo. The audience is on Belize mobile data.
 */

:root {
    /* ── Netivi brand ────────────────────────────────────────────────── */
    /* The wordmark blue is #0870CF. On a near-black canvas it sits just
       under the 4.5:1 text ratio, so interactive elements use the lifted
       --nv-blue while #0870CF stays for large fills where contrast is not
       the constraint. Using one value for both would have made every link
       on the page technically unreadable. */
    --nv-blue-deep: #0870CF;
    --nv-blue:      #2A8FE8;
    --nv-blue-lift: #57ABF2;
    --nv-red:       #FF0024;
    --nv-red-lift:  #FF3A55;
    --nv-cyan:      #00B0F0;

    --nv-bg:      #0A0C10;
    --nv-surface: #12151B;
    --nv-raised:  #171B23;
    --nv-line:    #242A35;
    --nv-line-2:  #333B49;

    --nv-text:   #FFFFFF;
    --nv-body:   #C3C9D4;
    --nv-muted:  #8891A0;

    --nv-radius:    14px;
    --nv-radius-sm: 10px;
    --nv-max:       1180px;

    /* Reach for the brand where tokens.css assumes TVGO amber. */
    --border-focus: var(--nv-blue);
}

/* ── reset ──────────────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
    margin: 0;
    background: var(--nv-bg);
    color: var(--nv-body);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--nv-blue-lift); text-decoration: none; }
a:hover { color: var(--nv-blue); }

h1, h2, h3, h4 { color: var(--nv-text); line-height: 1.15; margin: 0 0 .5em; font-weight: 700; }
h1 { font-size: clamp(2.1rem, 5.5vw, 3.6rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.4rem); letter-spacing: -.015em; }
h3 { font-size: 1.15rem; }
p  { margin: 0 0 1rem; }

:focus-visible {
    outline: 3px solid var(--nv-blue);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Keyboard users need to land below the sticky header, not behind it. */
.nv-skip {
    position: absolute; left: -9999px; top: 0; z-index: 200;
    background: var(--nv-blue-deep); color: #fff; padding: 12px 18px;
    border-radius: 0 0 var(--nv-radius-sm) 0; font-weight: 600;
}
.nv-skip:focus { left: 0; color: #fff; }

/* ── layout ─────────────────────────────────────────────────────────── */

.nv-wrap { width: 100%; max-width: var(--nv-max); margin: 0 auto; padding: 0 20px; }

section { padding: 84px 0; position: relative; }
section.nv-alt { background: var(--nv-surface); }

.nv-head { text-align: center; max-width: 660px; margin: 0 auto 52px; }
.nv-head p { color: var(--nv-muted); font-size: 1.06rem; margin: 0; }

.nv-eyebrow {
    display: inline-block; margin-bottom: 14px;
    font-size: .74rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
    color: var(--nv-cyan);
}

/* ── header ─────────────────────────────────────────────────────────── */

.nv-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(10, 12, 16, .88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--nv-line);
}
.nv-header .nv-wrap {
    display: flex; align-items: center; gap: 28px;
    height: 70px;
}
.nv-logo { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.nv-logo img { height: 34px; width: auto; }
.nv-logo .nv-tag {
    font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    color: var(--nv-muted); border-left: 1px solid var(--nv-line-2); padding-left: 11px;
}

.nv-nav { display: flex; gap: 26px; margin-left: auto; }
.nv-nav a {
    color: var(--nv-body); font-size: .93rem; font-weight: 500;
    padding: 6px 0; border-bottom: 2px solid transparent; transition: color .15s, border-color .15s;
}
.nv-nav a:hover { color: var(--nv-text); border-bottom-color: var(--nv-red); }

.nv-burger {
    display: none; margin-left: auto;
    background: none; border: 1px solid var(--nv-line-2); border-radius: 9px;
    color: var(--nv-text); padding: 8px 11px; font-size: 1.1rem; cursor: pointer; line-height: 1;
}

@media (max-width: 900px) {
    .nv-nav {
        display: none; position: absolute; top: 70px; left: 0; right: 0;
        flex-direction: column; gap: 0;
        background: var(--nv-surface); border-bottom: 1px solid var(--nv-line);
        padding: 8px 20px 16px;
    }
    .nv-nav.open { display: flex; }
    .nv-nav a { padding: 13px 0; border-bottom: 1px solid var(--nv-line); }
    .nv-burger { display: block; }
    .nv-header .nv-btn-wa { display: none; }
}

/* ── buttons ────────────────────────────────────────────────────────── */

.nv-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    padding: 13px 26px; border-radius: 999px; border: 1px solid transparent;
    font-size: .97rem; font-weight: 600; font-family: inherit;
    cursor: pointer; text-align: center; transition: background .15s, border-color .15s, transform .1s;
}
.nv-btn:active { transform: translateY(1px); }

.nv-btn-primary {
    background: linear-gradient(135deg, var(--nv-blue-deep), var(--nv-blue));
    color: #fff; box-shadow: 0 6px 22px rgba(8, 112, 207, .32);
}
.nv-btn-primary:hover { background: linear-gradient(135deg, var(--nv-blue), var(--nv-blue-lift)); color: #fff; }
.nv-btn-primary:disabled { opacity: .55; cursor: not-allowed; box-shadow: none; }

.nv-btn-red { background: var(--nv-red); color: #fff; }
.nv-btn-red:hover { background: var(--nv-red-lift); color: #fff; }

.nv-btn-ghost { background: transparent; border-color: var(--nv-line-2); color: var(--nv-text); }
.nv-btn-ghost:hover { border-color: var(--nv-blue); color: var(--nv-text); background: rgba(42,143,232,.08); }

.nv-btn-wa { background: #25D366; color: #062611; font-weight: 700; }
.nv-btn-wa:hover { background: #3FE07B; color: #062611; }

.nv-btn-block { width: 100%; }

/* ── hero ───────────────────────────────────────────────────────────── */

.nv-hero {
    padding: 72px 0 84px;
    position: relative; overflow: hidden;
    /* Two soft brand-coloured pools rather than a photograph. The old site's
       hero was a wall of film posters with a price baked into the pixels;
       this cannot go stale and owes nobody a licence. */
    background:
        radial-gradient(900px 480px at 12% -10%, rgba(8, 112, 207, .30), transparent 62%),
        radial-gradient(760px 420px at 96% 8%,  rgba(255, 0, 36, .16),  transparent 60%),
        var(--nv-bg);
}
.nv-hero::after {
    /* A faint grid, masked to fade out before it reaches the copy. */
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(circle at 50% 0%, #000 35%, transparent 78%);
    -webkit-mask-image: radial-gradient(circle at 50% 0%, #000 35%, transparent 78%);
}
.nv-hero .nv-wrap { position: relative; z-index: 1; }

.nv-hero-grid {
    display: grid; grid-template-columns: 1fr 440px; gap: 56px;
    /* Top-aligned, not centred. The signup card is much taller than the copy
       beside it, and centring pushed the headline halfway down the screen so
       the first thing a visitor saw was whitespace. */
    align-items: start;
}
@media (max-width: 980px) {
    .nv-hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

.nv-hero h1 { margin-bottom: 18px; }
.nv-hero h1 .nv-max {
    background: linear-gradient(100deg, var(--nv-red), #FF7A45);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    white-space: nowrap;
}
.nv-lede { font-size: 1.14rem; color: var(--nv-body); max-width: 40ch; margin-bottom: 26px; }

.nv-ticks { list-style: none; padding: 0; margin: 0 0 30px; display: grid; gap: 11px; }
.nv-ticks li { display: flex; align-items: flex-start; gap: 11px; font-size: .97rem; }
.nv-ticks svg { flex-shrink: 0; margin-top: 3px; color: var(--nv-cyan); }

.nv-trust { display: flex; flex-wrap: wrap; gap: 10px 26px; font-size: .84rem; color: var(--nv-muted); }
.nv-trust span { display: inline-flex; align-items: center; gap: 7px; }

/* ── signup card ────────────────────────────────────────────────────── */

.nv-card {
    background: var(--nv-raised);
    border: 1px solid var(--nv-line);
    border-radius: var(--nv-radius);
    padding: 28px;
}
.nv-signup {
    box-shadow: 0 26px 60px rgba(0, 0, 0, .5);
    position: relative;
}
.nv-signup::before {
    /* A brand hairline along the top edge, drawn on the border radius. */
    content: ''; position: absolute; inset: 0 0 auto 0; height: 3px;
    border-radius: var(--nv-radius) var(--nv-radius) 0 0;
    background: linear-gradient(90deg, var(--nv-blue-deep), var(--nv-cyan), var(--nv-red));
}
.nv-signup h2 { font-size: 1.3rem; margin-bottom: 4px; }
.nv-signup .nv-sub { color: var(--nv-muted); font-size: .89rem; margin-bottom: 22px; }

.nv-field { margin-bottom: 15px; }
.nv-field label {
    display: block; font-size: .8rem; font-weight: 600; color: var(--nv-body);
    margin-bottom: 6px; letter-spacing: .01em;
}
.nv-field .nv-opt { color: var(--nv-muted); font-weight: 400; }

.nv-input, .nv-select, .nv-textarea {
    width: 100%; padding: 12px 14px;
    background: var(--bg-3, #222226); color: var(--nv-text);
    border: 1px solid var(--nv-line-2); border-radius: var(--nv-radius-sm);
    font-size: 1rem; font-family: inherit;
    transition: border-color .15s, box-shadow .15s;
}
.nv-input::placeholder, .nv-textarea::placeholder { color: var(--nv-muted); }
.nv-input:focus, .nv-select:focus, .nv-textarea:focus {
    outline: none; border-color: var(--nv-blue);
    box-shadow: 0 0 0 3px rgba(42, 143, 232, .22);
}
.nv-input[aria-invalid="true"] { border-color: var(--nv-red); }
.nv-textarea { resize: vertical; min-height: 74px; }

.nv-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 460px) { .nv-row { grid-template-columns: 1fr; } }

/* The +501 prefix is furniture, not something to type. */
.nv-phone { display: flex; }
.nv-phone .nv-prefix {
    display: flex; align-items: center; padding: 0 13px;
    background: var(--nv-surface); border: 1px solid var(--nv-line-2); border-right: none;
    border-radius: var(--nv-radius-sm) 0 0 var(--nv-radius-sm);
    color: var(--nv-muted); font-size: .95rem; white-space: nowrap;
}
.nv-phone .nv-input { border-radius: 0 var(--nv-radius-sm) var(--nv-radius-sm) 0; letter-spacing: .06em; }

.nv-hint  { font-size: .78rem; color: var(--nv-muted); margin-top: 6px; }
.nv-error { font-size: .81rem; color: var(--nv-red-lift); margin-top: 6px; display: none; }
.nv-error.show { display: block; }

/* Device chooser — five segments, the price follows the choice. */
.nv-devices { display: grid; grid-template-columns: repeat(5, 1fr); gap: 7px; }
.nv-devices input { position: absolute; opacity: 0; pointer-events: none; }
.nv-devices label {
    display: flex; align-items: center; justify-content: center;
    padding: 12px 0; margin: 0; cursor: pointer;
    background: var(--bg-3, #222226); border: 1px solid var(--nv-line-2);
    border-radius: var(--nv-radius-sm);
    font-size: 1.02rem; font-weight: 600; color: var(--nv-body);
    transition: all .15s;
}
.nv-devices label:hover { border-color: var(--nv-line-2); color: var(--nv-text); }
.nv-devices input:checked + label {
    background: linear-gradient(135deg, var(--nv-blue-deep), var(--nv-blue));
    border-color: var(--nv-blue); color: #fff;
}
.nv-devices input:focus-visible + label { outline: 3px solid var(--nv-blue); outline-offset: 2px; }

.nv-quote {
    display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
    margin: 16px 0 18px; padding: 15px 17px;
    background: rgba(8, 112, 207, .10); border: 1px solid rgba(42, 143, 232, .30);
    border-radius: var(--nv-radius-sm);
}
.nv-quote .nv-amount { font-size: 1.75rem; font-weight: 700; color: var(--nv-text); line-height: 1; }
.nv-quote .nv-per    { font-size: .85rem; color: var(--nv-muted); }
.nv-quote .nv-save   { font-size: .82rem; color: var(--nv-cyan); font-weight: 600; text-align: right; }

/* Adult catalogue: a real choice, made once, before anything is bought. */
.nv-check { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 16px; }
.nv-check input { margin: 3px 0 0; width: 17px; height: 17px; accent-color: var(--nv-blue); flex-shrink: 0; }
.nv-check label { font-size: .86rem; color: var(--nv-body); margin: 0; }
.nv-check .nv-hint { margin-top: 3px; }

/* Bots fill it in; people never see it. */
.nv-hp { position: absolute !important; left: -9999px !important; opacity: 0; height: 0; width: 0; }

.nv-captcha { display: flex; gap: 12px; align-items: flex-start; }
.nv-captcha img {
    border-radius: var(--nv-radius-sm); border: 1px solid var(--nv-line-2);
    height: 48px; width: auto; background: #fff; cursor: pointer;
}
.nv-captcha .nv-input { letter-spacing: .22em; text-transform: uppercase; }

.nv-legal { font-size: .76rem; color: var(--nv-muted); margin: 14px 0 0; text-align: center; }
.nv-legal a { color: var(--nv-muted); text-decoration: underline; }

/* ── the result panel, after a signup lands ─────────────────────────── */

.nv-done { display: none; text-align: center; padding: 8px 0 4px; }
.nv-done.show { display: block; }
.nv-done .nv-check-ring {
    width: 62px; height: 62px; margin: 0 auto 18px; border-radius: 50%;
    background: rgba(37, 211, 102, .12); border: 2px solid #25D366;
    display: flex; align-items: center; justify-content: center; color: #25D366;
}
.nv-done h2 { font-size: 1.35rem; margin-bottom: 8px; }
.nv-ref {
    display: inline-block; margin: 6px 0 16px; padding: 11px 22px;
    background: var(--nv-bg); border: 1px dashed var(--nv-line-2); border-radius: var(--nv-radius-sm);
    font-family: var(--font-mono); font-size: 1.28rem; font-weight: 700;
    color: var(--nv-cyan); letter-spacing: .06em;
}
.nv-steps { text-align: left; margin: 20px 0 22px; padding: 0; list-style: none; counter-reset: s; }
.nv-steps li {
    position: relative; padding-left: 40px; margin-bottom: 14px;
    font-size: .92rem; counter-increment: s;
}
.nv-steps li::before {
    content: counter(s); position: absolute; left: 0; top: -1px;
    width: 26px; height: 26px; border-radius: 50%;
    background: rgba(8, 112, 207, .18); border: 1px solid var(--nv-blue);
    color: var(--nv-blue-lift); font-size: .78rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}

/* ── generic cards grid ─────────────────────────────────────────────── */

.nv-grid { display: grid; gap: 22px; }
.nv-grid-2 { grid-template-columns: repeat(2, 1fr); }
.nv-grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .nv-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .nv-grid-2, .nv-grid-3 { grid-template-columns: 1fr; } }

.nv-feature {
    background: var(--nv-raised); border: 1px solid var(--nv-line);
    border-radius: var(--nv-radius); padding: 26px;
    transition: border-color .18s, transform .18s;
}
.nv-feature:hover { border-color: var(--nv-line-2); transform: translateY(-3px); }
.nv-feature .nv-ico {
    width: 44px; height: 44px; border-radius: 11px; margin-bottom: 16px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(8, 112, 207, .15); color: var(--nv-blue-lift);
}
.nv-feature h3 { margin-bottom: 7px; }
.nv-feature p  { font-size: .93rem; color: var(--nv-muted); margin: 0; }

/* ── what is netivi ─────────────────────────────────────────────────── */

.nv-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .nv-split { grid-template-columns: 1fr; gap: 36px; } }

.nv-vs {
    background: var(--nv-raised); border: 1px solid var(--nv-line);
    border-radius: var(--nv-radius); padding: 26px;
}
.nv-vs h3 { font-size: 1rem; margin-bottom: 16px; color: var(--nv-cyan); }
.nv-vs dl { margin: 0; display: grid; gap: 16px; }
.nv-vs dt { font-weight: 700; color: var(--nv-text); font-size: .95rem; }
.nv-vs dd { margin: 3px 0 0; font-size: .91rem; color: var(--nv-muted); }

/* ── apps ───────────────────────────────────────────────────────────── */

.nv-apps {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
}
@media (max-width: 860px) { .nv-apps { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .nv-apps { grid-template-columns: repeat(2, 1fr); } }

.nv-app {
    background: #fff; border-radius: var(--nv-radius); padding: 20px 14px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 11px; min-height: 118px;
    transition: transform .18s, box-shadow .18s;
}
.nv-app:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,.4); }
.nv-app img { height: 40px; width: auto; object-fit: contain; }
.nv-app span { font-size: .77rem; font-weight: 600; color: #2b303a; text-align: center; line-height: 1.3; }

/* ── plans ──────────────────────────────────────────────────────────── */

.nv-plans { display: grid; grid-template-columns: repeat(5, 1fr); gap: 15px; align-items: stretch; }
@media (max-width: 1050px) { .nv-plans { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .nv-plans { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px)  { .nv-plans { grid-template-columns: 1fr; } }

.nv-plan {
    background: var(--nv-raised); border: 1px solid var(--nv-line);
    border-radius: var(--nv-radius); padding: 24px 19px;
    display: flex; flex-direction: column; text-align: center;
    position: relative; transition: border-color .18s, transform .18s;
}
.nv-plan:hover { border-color: var(--nv-blue); transform: translateY(-4px); }
.nv-plan.nv-pop { border-color: var(--nv-blue); background: linear-gradient(180deg, rgba(8,112,207,.13), var(--nv-raised) 55%); }
.nv-plan .nv-badge {
    position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
    background: var(--nv-red); color: #fff; font-size: .66rem; font-weight: 700;
    letter-spacing: .09em; text-transform: uppercase; padding: 4px 12px; border-radius: 999px;
    white-space: nowrap;
}
.nv-plan .nv-n { font-size: .82rem; font-weight: 700; color: var(--nv-muted); text-transform: uppercase; letter-spacing: .09em; }
.nv-plan .nv-price { font-size: 2.15rem; font-weight: 700; color: var(--nv-text); line-height: 1.1; margin: 12px 0 2px; }
.nv-plan .nv-price small { font-size: .95rem; font-weight: 600; color: var(--nv-muted); }
.nv-plan .nv-cycle { font-size: .8rem; color: var(--nv-muted); margin-bottom: 4px; }
.nv-plan .nv-savepill {
    display: inline-block; font-size: .72rem; font-weight: 700; color: var(--nv-cyan);
    background: rgba(0,176,240,.12); border-radius: 999px; padding: 3px 10px; margin-bottom: 16px;
}
.nv-plan .nv-btn { margin-top: auto; }

.nv-included {
    margin-top: 40px; background: var(--nv-raised);
    border: 1px solid var(--nv-line); border-radius: var(--nv-radius); padding: 30px;
}
.nv-included h3 { text-align: center; margin-bottom: 22px; }
.nv-inc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 800px) { .nv-inc-grid { grid-template-columns: 1fr; gap: 22px; } }
.nv-inc-grid h4 { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--nv-cyan); margin-bottom: 11px; }
.nv-inc-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.nv-inc-grid li { display: flex; gap: 9px; align-items: flex-start; font-size: .92rem; }
.nv-inc-grid li::before { content: '▸'; color: var(--nv-blue); flex-shrink: 0; }

/* ── faq ────────────────────────────────────────────────────────────── */

.nv-faq { max-width: 820px; margin: 0 auto; display: grid; gap: 11px; }
.nv-faq details {
    background: var(--nv-raised); border: 1px solid var(--nv-line);
    border-radius: var(--nv-radius-sm); overflow: hidden;
}
.nv-faq details[open] { border-color: var(--nv-line-2); }
.nv-faq summary {
    padding: 17px 22px; cursor: pointer; font-weight: 600; color: var(--nv-text);
    font-size: .99rem; list-style: none;
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.nv-faq summary::-webkit-details-marker { display: none; }
.nv-faq summary::after {
    content: '+'; font-size: 1.4rem; font-weight: 400; color: var(--nv-blue);
    flex-shrink: 0; line-height: 1; transition: transform .18s;
}
.nv-faq details[open] summary::after { transform: rotate(45deg); }
.nv-faq .nv-answer { padding: 0 22px 19px; font-size: .93rem; color: var(--nv-muted); }
.nv-faq .nv-answer p:last-child { margin-bottom: 0; }

/* ── videos ─────────────────────────────────────────────────────────── */

.nv-vids { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 880px) { .nv-vids { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .nv-vids { grid-template-columns: 1fr; } }

.nv-vid {
    background: var(--nv-raised); border: 1px solid var(--nv-line);
    border-radius: var(--nv-radius); overflow: hidden;
    display: flex; flex-direction: column; transition: border-color .18s, transform .18s;
}
.nv-vid:hover { border-color: var(--nv-blue); transform: translateY(-3px); }
.nv-vid .nv-thumb {
    aspect-ratio: 16 / 9; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(8,112,207,.26), rgba(255,0,36,.14)), var(--nv-surface);
    color: #fff; position: relative;
}
.nv-vid .nv-play {
    width: 52px; height: 52px; border-radius: 50%;
    background: rgba(255,255,255,.14); backdrop-filter: blur(6px);
    border: 1.5px solid rgba(255,255,255,.55);
    display: flex; align-items: center; justify-content: center;
}
.nv-vid .nv-body { padding: 17px 19px; }
.nv-vid h3 { font-size: 1rem; margin-bottom: 5px; }
.nv-vid p  { font-size: .86rem; color: var(--nv-muted); margin: 0; }
.nv-vid .nv-soon {
    font-size: .68rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
    color: var(--nv-muted); background: var(--nv-surface); border: 1px solid var(--nv-line);
    border-radius: 999px; padding: 3px 9px; position: absolute; top: 11px; right: 11px;
}

/* ── closing call to action ─────────────────────────────────────────── */

.nv-cta {
    text-align: center; border-radius: var(--nv-radius);
    padding: 58px 28px; margin: 0 20px;
    background:
        radial-gradient(620px 300px at 50% 0%, rgba(8, 112, 207, .30), transparent 68%),
        var(--nv-surface);
    border: 1px solid var(--nv-line);
}
.nv-cta h2 { margin-bottom: 12px; }
.nv-cta p  { color: var(--nv-body); max-width: 50ch; margin: 0 auto 26px; }
.nv-cta-btns { display: flex; gap: 13px; justify-content: center; flex-wrap: wrap; }

/* ── footer ─────────────────────────────────────────────────────────── */

/* The bottom padding clears the floating WhatsApp button, which otherwise
   sits directly on top of the Terms and Privacy links. */
.nv-footer { background: var(--nv-surface); border-top: 1px solid var(--nv-line); padding: 52px 0 30px; }
@media (max-width: 760px) { .nv-footer { padding-bottom: 92px; } }
.nv-foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
@media (max-width: 760px) { .nv-foot-grid { grid-template-columns: 1fr; gap: 28px; } }
.nv-footer h4 { font-size: .77rem; letter-spacing: .12em; text-transform: uppercase; color: var(--nv-muted); margin-bottom: 14px; }
.nv-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.nv-footer a { color: var(--nv-body); font-size: .91rem; }
.nv-footer a:hover { color: var(--nv-text); }
.nv-footer .nv-logo { margin-bottom: 14px; }
.nv-footer .nv-about { font-size: .89rem; color: var(--nv-muted); max-width: 42ch; margin: 0; }
.nv-foot-base {
    border-top: 1px solid var(--nv-line); padding-top: 22px; padding-right: 76px;
    display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
    font-size: .82rem; color: var(--nv-muted);
}

/* ── floating WhatsApp ──────────────────────────────────────────────── */

.nv-float {
    position: fixed; right: 20px; bottom: 20px; z-index: 90;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25D366; color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 26px rgba(37, 211, 102, .42);
    transition: transform .18s;
}
.nv-float:hover { transform: scale(1.07); color: #fff; }

/* ── renewal page ───────────────────────────────────────────────────── */

.nv-narrow { max-width: 560px; margin: 0 auto; }
.nv-kv { display: grid; gap: 12px; margin: 0 0 22px; }
.nv-kv div { display: flex; justify-content: space-between; gap: 16px; font-size: .94rem; padding-bottom: 12px; border-bottom: 1px solid var(--nv-line); }
.nv-kv div:last-child { border-bottom: none; padding-bottom: 0; }
.nv-kv dt { color: var(--nv-muted); margin: 0; }
.nv-kv dd { color: var(--nv-text); font-weight: 600; margin: 0; text-align: right; }

.nv-note {
    padding: 15px 17px; border-radius: var(--nv-radius-sm); font-size: .9rem;
    border: 1px solid; margin-bottom: 20px;
}
.nv-note-warn { background: rgba(255, 0, 36, .08);  border-color: rgba(255, 58, 85, .35); color: #FFC3CC; }
.nv-note-info { background: rgba(0, 176, 240, .08); border-color: rgba(0, 176, 240, .30); color: #B8E9FB; }
.nv-note-ok   { background: rgba(37, 211, 102, .08); border-color: rgba(37, 211, 102, .30); color: #B9F0D0; }

/* ── print ──────────────────────────────────────────────────────────── */

@media print {
    .nv-header, .nv-float, .nv-cta, .nv-footer, .nv-btn { display: none !important; }
    body { background: #fff; color: #000; }
}
