/* ============ BRAND TOKENS — taken directly from the Hostnuvia logo ============ */
:root {
    --nv-blue: #0961A9;
    /* logo wordmark blue */
    --nv-blue-700: #075083;
    --nv-blue-900: #062B4A;
    /* deep navy for dark sections */
    --nv-orange: #EE5418;
    /* logo leaf/accent orange */
    --nv-orange-600: #D2450F;
    --nv-cream: #F4F7FA;
    /* cool light background, not warm cream */
    --nv-ink: #0E2136;
    --nv-gray: #5C6B7C;
    --nv-border: #E3E9EF;
    --nv-success: #1FA97A;
    --nv-blue-grad: linear-gradient(125deg, var(--nv-blue) 0%, #0B7FD1 100%);
    --nv-radius: 18px;
    --nv-shadow: 0 22px 48px -22px rgba(6, 43, 74, .35);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--nv-ink);
    background: #fff;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
.display-font {
    font-family: 'Sora', sans-serif;
    letter-spacing: -.01em;
}

.mono {
    font-family: 'JetBrains Mono', monospace;
}

a {
    text-decoration: none;
}

section {
    position: relative;
}

.section-pad {
    padding: 5.5rem 0;
}

@media(max-width:767px) {
    .section-pad {
        padding: 3.4rem 0;
    }
}

.section-tag {
    color: var(--nv-orange);
    font-weight: 700;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .09em;
}

/* ===== BUTTONS ===== */
.btn-nv-primary {
    background: var(--nv-orange);
    color: #fff;
    border: none;
    font-weight: 600;
    padding: .75rem 1.6rem;
    border-radius: 10px;
    transition: .3s ease;
    box-shadow: 0 14px 26px -12px rgba(238, 84, 24, .55);
}

.btn-nv-primary:hover {
    background: var(--nv-orange-600);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 18px 30px -10px rgba(238, 84, 24, .6);
}

.btn-nv-blue {
    background: var(--nv-blue);
    color: #fff;
    border: none;
    font-weight: 600;
    padding: .75rem 1.6rem;
    border-radius: 10px;
    transition: .3s ease;
    box-shadow: 0 14px 26px -12px rgba(9, 97, 169, .5);
}

.btn-nv-blue:hover {
    background: var(--nv-blue-700);
    color: #fff;
    transform: translateY(-2px);
}

.btn-nv-outline {
    border: 2px solid var(--nv-border);
    color: var(--nv-blue-900);
    font-weight: 600;
    padding: .68rem 1.5rem;
    border-radius: 10px;
    background: #fff;
    transition: .25s ease;
}

.btn-nv-outline:hover {
    border-color: var(--nv-blue);
    color: var(--nv-blue);
    transform: translateY(-2px);
}

.btn-nv-ghost {
    border: 1.5px solid rgba(255, 255, 255, .35);
    color: #fff;
    font-weight: 600;
    padding: .65rem 1.4rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, .06);
    transition: .25s ease;
    position: relative;
    z-index: 1;
}

.btn-nv-ghost:hover {
    background: rgba(255, 255, 255, .16);
    color: #fff;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: #FFD9C8;
    background: rgba(238, 84, 24, .18);
    border: 1px solid rgba(238, 84, 24, .4);
    padding: .4rem .9rem;
    border-radius: 8px;
}

/* ===== TOP UTILITY BAR ===== */
.nv-topbar {
    background: var(--nv-blue-900);
    color: rgba(255, 255, 255, .75);
    font-size: .82rem;
    padding: .5rem 0;
}

.nv-topbar a {
    color: rgba(255, 255, 255, .75);
}

.nv-topbar a:hover {
    color: var(--nv-orange);
}

.nv-topbar .divider {
    opacity: .25;
    margin: 0 .9rem;
}

/* =========================================================
   NAVBAR
   ========================================================= */

.nv-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.4rem 0;
    background: #fff;
    border-bottom: 1px solid var(--nv-border);
    transition: .3s ease;
}

.nv-navbar.scrolled {
    /* padding: .55rem 0; */
    box-shadow: 0 10px 30px -20px rgba(6, 43, 74, .3);
}


/* =========================================================
   LOGO
   ========================================================= */

.site-logo {
    max-width: 200px;
}

.nv-logo {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--nv-blue-900);
    display: flex;
    align-items: center;
    gap: .6rem;
}

.nv-logo .logo-badge {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--nv-blue);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    box-shadow: 0 8px 18px -6px rgba(9, 97, 169, .55);
}

.nv-logo .logo-badge:after {
    content: "";
    position: absolute;
    top: -6px;
    left: -6px;
    width: 12px;
    height: 12px;
    background: var(--nv-orange);
    border-radius: 0 100% 0 100%;
}


/* =========================================================
   MAIN NAVIGATION
   ========================================================= */

.nv-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nv-links > li {
    position: relative;
}

.nv-links > li > a {
    color: #2B3646;
    font-weight: 600;
    font-size: .95rem;
    padding: .55rem .6rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: .35rem;
    transition: .25s;
    text-decoration: none;
}

.nv-links > li > a:hover,
.nv-links > li.open > a {
    color: var(--nv-blue);
    background: rgba(9, 97, 169, .07);
}


/* =========================================================
   MAIN MENU ARROW
   ========================================================= */

.nv-links .chev {
    font-size: .68rem;
    transition: transform .3s ease;
}

.nv-links li.open > a .chev {
    transform: rotate(180deg);
}


/* =========================================================
   MENU ITEM
   ========================================================= */

.menu-item-has-children {
    position: relative;
}


/* =========================================================
   FIRST LEVEL SUBMENU
   ========================================================= */

.primary-nav .sub-menu {
    position: absolute;

    top: calc(100% + 12px);
    left: 0;

    min-width: 270px;

    margin: 0;
    padding: .6rem;

    list-style: none;

    background: #fff;

    border: 1px solid var(--nv-border);
    border-radius: 14px;

    box-shadow: var(--nv-shadow);

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px) scale(.98);

    transition:
        opacity .3s ease,
        transform .3s ease,
        visibility .3s ease;

    z-index: 20;
}


/* =========================================================
   FIRST LEVEL SUBMENU POINTER
   ========================================================= */

.primary-nav
.nv-links
> li.menu-item-has-children
> .sub-menu::before {

    content: "";

    position: absolute;

    top: -6px;
    left: 28px;

    width: 12px;
    height: 12px;

    background: #fff;

    border-left: 1px solid var(--nv-border);
    border-top: 1px solid var(--nv-border);

    transform: rotate(45deg);
}


/* =========================================================
   OPEN FIRST LEVEL
   ========================================================= */

.primary-nav
.nv-links
> li.menu-item-has-children.open
> .sub-menu {

    opacity: 1;
    visibility: visible;

    transform: translateY(0) scale(1);
}


/* =========================================================
   SUBMENU LINKS
   ========================================================= */

.primary-nav .sub-menu a {
    display: flex;
    align-items: center;

    gap: .7rem;

    padding: .6rem .7rem;

    border-radius: 10px;

    color: #2B3646;

    font-weight: 500;
    font-size: .92rem;

    transition: .2s ease;

    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.primary-nav .sub-menu a:hover {
    background: var(--nv-cream);
    color: var(--nv-blue);
}
.primary-nav .sub-menu a i {
    transition: transform 0.3s ease;
}
.primary-nav .sub-menu a:hover i {
    transform: rotate(180deg);
}
/* =========================================================
   SUBMENU ICON
   ========================================================= */

.primary-nav .sub-menu .sub-ico {
    width: 34px;
    height: 34px;

    flex: 0 0 34px;

    border-radius: 9px;

    background: rgba(9, 97, 169, .09);

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--nv-blue);
}


/* =========================================================
   PRICE TAG
   ========================================================= */

.primary-nav .sub-menu .price-tag {
    margin-left: auto;

    font-size: .72rem;
    font-weight: 700;

    color: var(--nv-orange);
}


/* =========================================================
   NESTED SUBMENU
   ========================================================= */

/*
   Example:

   Services
      └── Website
             └── Corporate
*/

.primary-nav
.sub-menu
.menu-item-has-children {

    position: relative;
}


/* Nested submenu position */

.primary-nav
.sub-menu
.menu-item-has-children
> .sub-menu {

    top: -1px;
    left: calc(100% + 1px);

    min-width: 270px;

    margin: 0;

    /*
       Top-left is square so it connects
       nicely with the parent menu.
    */
    border-radius: 0 14px 14px 14px;

    opacity: 0;
    visibility: hidden;

    transform: translateX(8px) scale(.98);

    transition:
        opacity .25s ease,
        transform .25s ease,
        visibility .25s ease;

    z-index: 30;
}


/* =========================================================
   NESTED MENU OPEN
   ========================================================= */

.primary-nav
.sub-menu
.menu-item-has-children.open
> .sub-menu {

    opacity: 1;
    visibility: visible;

    transform: translateX(0) scale(1);
}


/* =========================================================
   NESTED MENU ARROW
   ========================================================= */

/*
   IMPORTANT:
   We hide .chev inside nested menus
   because otherwise two arrows appear.
*/

.primary-nav
.sub-menu
.menu-item-has-children
> a
.chev {

    display: none;
}






/* =========================================================
   NESTED MENU POINTER
   ========================================================= */

.primary-nav
.sub-menu
.menu-item-has-children
> .sub-menu::before {

    content: "";

    position: absolute;

    top: 18px;
    left: -6px;

    width: 12px;
    height: 12px;

    background: #fff;

    border-left: 1px solid var(--nv-border);
    border-bottom: 1px solid var(--nv-border);

    transform: rotate(45deg);
}


/* =========================================================
   NESTED PARENT HOVER
   ========================================================= */

.primary-nav
.sub-menu
.menu-item-has-children:hover
> a {

    background: var(--nv-cream);

    color: var(--nv-blue);

    /*
       You requested square hover area
       for the nested parent.
    */
    border-radius: 0;
}


/* =========================================================
   NESTED SUBMENU LINKS
   ========================================================= */

.primary-nav
.sub-menu
.sub-menu
> li
> a {

    border-radius: 0;
}


/* Nested submenu hover */

.primary-nav
.sub-menu
.sub-menu
> li
> a:hover {

    background: var(--nv-cream);

    color: var(--nv-blue);

    border-radius: 0;
}


/* =========================================================
   DEEP NESTED SUBMENU
   Supports:

   Level 1
      Level 2
         Level 3
            Level 4
   ========================================================= */

.primary-nav
.sub-menu
.sub-menu
.menu-item-has-children
> .sub-menu {

    top: -1px;
    left: calc(100% + 1px);

    transform: translateX(8px) scale(.98);

    z-index: 40;
}


.primary-nav
.sub-menu
.sub-menu
.menu-item-has-children.open
> .sub-menu {

    opacity: 1;
    visibility: visible;

    transform: translateX(0) scale(1);
}


/* =========================================================
   ACTIONS
   ========================================================= */

.nv-actions {
    display: flex;
    align-items: center;
    gap: .6rem;
}

.nv-login {
    font-weight: 600;

    color: var(--nv-blue-900);

    padding: .6rem .9rem;
}

.nv-login:hover {
    color: var(--nv-blue);
}


/* =========================================================
   BURGER
   ========================================================= */

.nv-burger {
    width: 46px;
    height: 46px;

    border-radius: 10px;

    border: 1px solid var(--nv-border);

    background: #fff;

    display: none;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 5px;

    cursor: pointer;
}

.nv-burger span {
    width: 20px;
    height: 2px;

    background: var(--nv-blue-900);

    border-radius: 2px;

    transition: .3s ease;
}

.nv-burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nv-burger.active span:nth-child(2) {
    opacity: 0;
}

.nv-burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* =========================================================
   DESKTOP HOVER
   ========================================================= */

@media (min-width: 992px) {

    /* Main dropdown */

    .primary-nav
    .nv-links
    > li.menu-item-has-children:hover
    > .sub-menu {

        opacity: 1;

        visibility: visible;

        transform: translateY(0) scale(1);
    }


    /* Nested dropdown */

    .primary-nav
    .sub-menu
    .menu-item-has-children:hover
    > .sub-menu {

        opacity: 1;

        visibility: visible;

        transform: translateX(0) scale(1);
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 991px) {

    .nv-navbar {
        padding: 1rem 0;
    }

    .nv-burger {
        display: flex;
    }

    .nv-links {
        flex-direction: column;
        align-items: stretch;
    }

    .primary-nav .sub-menu {
        position: static;

        width: 100%;
        min-width: 0;

        margin-top: .4rem;

        border-radius: 10px;

        box-shadow: none;

        transform: none;

        display: none;
    }


    /* Open mobile submenu */

    .primary-nav
    .menu-item-has-children.open
    > .sub-menu {

        display: block;

        opacity: 1;
        visibility: visible;

        transform: none;
    }


    /* Disable desktop pointer */

    .primary-nav
    .sub-menu::before {

        display: none;
    }


    /* Nested submenu on mobile */

    .primary-nav
    .sub-menu
    .menu-item-has-children
    > .sub-menu {

        position: static;

        width: 100%;

        margin: .3rem 0 0;

        padding-left: 1rem;

        border-radius: 10px;

        transform: none;

        box-shadow: none;

        display: none;
    }


    .primary-nav
    .sub-menu
    .menu-item-has-children.open
    > .sub-menu {

        display: block;

        opacity: 1;
        visibility: visible;

        transform: none;
    }


    /* Mobile nested arrow */

    .primary-nav
    .sub-menu
    .menu-item-has-children
    > a::after {

        content: "›";

        display: block;

        margin-left: auto;
    }


    /* Mobile nested hover */

    .primary-nav
    .sub-menu
    .menu-item-has-children:hover
    > a {

        border-radius: 10px;
    }

}
/* =========================================
   MOBILE OFF-CANVAS MENU
========================================= */

.nv-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6, 43, 74, 0.55);
    backdrop-filter: blur(2px);
    z-index: 1040;

    opacity: 0;
    visibility: hidden;

    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.nv-overlay.show {
    opacity: 1;
    visibility: visible;
}


/* =========================================
   MOBILE MENU PANEL
========================================= */

.nv-mobile {
    position: fixed;
    top: 0;
    right: 0;

    width: min(340px, 86vw);
    height: 100%;

    background: #fff;
    z-index: 1050;

    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(.22, .98, .35, 1);

    display: flex;
    flex-direction: column;

    box-shadow: -20px 0 50px rgba(6, 20, 40, 0.25);
}

.nv-mobile.show {
    transform: translateX(0);
}


/* =========================================
   MOBILE MENU HEADER
========================================= */

.nv-mobile-head {
    background: var(--nv-blue-900);
    padding: 1rem 1.3rem;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nv-mobile-head .logo-badge img {
    height: 60px !important;
    width: auto;
    display: block;
}

.nv-mobile-close {
    width: 38px;
    height: 38px;

    border: none;
    border-radius: 10px;

    background: rgba(255, 255, 255, 0.18);
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
}


/* =========================================
   MOBILE MENU BODY
========================================= */

.nv-mobile-body {
    flex: 1;

    overflow-y: auto;

    padding: 1.1rem;
    margin: 0;

    list-style: none;
}

.nv-mobile-body::-webkit-scrollbar {
    width: 5px;
}

.nv-mobile-body::-webkit-scrollbar-thumb {
    background: var(--nv-border);
    border-radius: 5px;
}


/* =========================================
   MENU ITEMS
========================================= */

.nv-mobile-body .menu-item {
    border-bottom: 1px solid var(--nv-border);
    padding: 0px 0.9rem;
}

.nv-mobile-body .menu-item > a {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 0.8rem;

    padding: 0.95rem 0.2rem;

    font-weight: 600;
    color: #1B2635;

    cursor: pointer;
    text-decoration: none;
}


/* =========================================
   DROPDOWN ARROW
========================================= */

.nv-mobile-body .menu-item-has-children > a .has-child-icon {
    margin-left: auto;

    font-size: 0.8rem;
    color: var(--nv-gray);

    transition: transform 0.3s ease;
}

.nv-mobile-body .menu-item-has-children.open > a .has-child-icon {
    transform: rotate(180deg);
}


/* =========================================
   SUBMENU
========================================= */

.nv-mobile-body .sub-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    margin: 0;
    padding: 0 0 0 2rem;
    list-style: none;
}


.nv-mobile-body .menu-item-has-children.open > .sub-menu {
    max-height: 500px;
}

.nv-mobile-body .menu-item-has-children.open > .sub-menu {
    max-height: 500px;
}


/* Open menu item */
.nv-mobile-body .menu-item-has-children.open {
    background: #f5f8fc;
    border-radius: 8px;
}

/* Open menu title */
.nv-mobile-body .menu-item-has-children.open > a {
    color: #1B2635;
}

/* Submenu area */
.nv-mobile-body .menu-item-has-children.open > .sub-menu {
    background: #f5f8fc;
    padding-left: 1.5rem;
    padding-right: 0.6rem;
}

/* Submenu items - BLACK */
.nv-mobile-body .sub-menu a,
.nv-mobile-body .sub-menu a span {
    color: #1B2635 !important;
    font-weight: 500;
}

/* Submenu hover */
.nv-mobile-body .sub-menu a:hover {
    color: var(--nv-orange) !important;
}


/* =========================================
   SUBMENU LINKS
========================================= */

.nv-mobile-body .sub-menu a {
    display: flex;
    align-items: center;

    padding: 0.6rem 0;

    color: var(--nv-gray);
    font-weight: 500;
    font-size: 0.92rem;

    text-decoration: none;
}

.nv-mobile-body .sub-menu a:hover {
    color: var(--nv-blue);
}


/* =========================================
   SUBMENU TEXT
========================================= */

.nv-mobile-body .sub-menu a span {
    color: var(--nv-orange);
    font-weight: 600;
}


/* =========================================
   MOBILE FOOTER
========================================= */

.nv-mobile-foot {
    padding: 1.1rem;

    border-top: 1px solid var(--nv-border);

    display: flex;
    gap: 0.6rem;
}

.nv-mobile-foot .btn-nv-outline,
.nv-mobile-foot .btn-nv-primary {
    flex: 1;

    text-align: center;

    font-size: 0.9rem;
    padding: 0.7rem 0.5rem;
}


/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 480px) {

    .nv-mobile {
        width: 88vw;
    }

    .nv-mobile-head {
        padding: 0.8rem 1rem;
    }

    .nv-mobile-head .logo-badge img {
        height: 40px !important;
    }

    .nv-mobile-body {
        padding: 0px;
        margin:0px;
    }

    .nv-mobile-foot {
        padding: 0.8rem;
    }

}

/* ===== HERO ===== */
.hero {
    background:
        radial-gradient(720px 420px at 92% 8%, rgba(238, 84, 24, .28), transparent 60%),
        radial-gradient(900px 560px at 6% 100%, rgba(11, 127, 209, .35), transparent 60%),
        linear-gradient(175deg, var(--nv-blue-900) 0%, #08375D 55%, #062B4A 100%);
    padding: 5.5rem 0 6.5rem;
    color: #fff;
    overflow: hidden;
}

.hero:after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: radial-gradient(circle at 70% 30%, #000 0%, transparent 70%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 2.5rem;
    /* font-size: clamp(2.1rem, 4.3vw, 3.3rem); */
    font-weight: 800;
    line-height: 1.14;
}

.hero h3 {
    font-size: 1.4rem;
    /* font-size: clamp(2.1rem, 4.3vw, 3.3rem); */
    font-weight: 700;
    line-height: 1.14;
}

.hero h1 em {
    font-style: normal;
    color: var(--nv-orange);
}

.hero p.lead {
    color: rgba(255, 255, 255, .72);
    font-size: .96rem;
    max-width: 520px;
}

.hero-stats {
    display: flex;
    gap: 1.8rem;
    margin-top: 2.2rem;
    flex-wrap: wrap;
}

.hero-stats div b {
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    display: block;
}

.hero-stats div span {
    color: rgba(255, 255, 255, .58);
    font-size: .82rem;
}

/* signature: uptime dashboard card */
.dash-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 22px;
    padding: 1.6rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 30px 70px -25px rgba(0, 0, 0, .55);
}

.dash-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.3rem;
}

.dash-head .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--nv-success);
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(31, 169, 122, .6);
    animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
    0% {
        box-shadow: 0 0 0 0 rgba(31, 169, 122, .55);
    }

    70% {
        box-shadow: 0 0 0 9px rgba(31, 169, 122, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(31, 169, 122, 0);
    }
}

.dash-grid {
    display: flex;
    gap: 1.4rem;
    align-items: center;
}

.uptime-ring {
    width: 132px;
    height: 132px;
    border-radius: 50%;
    flex: 0 0 132px;
    background: conic-gradient(var(--nv-orange) 0deg 359.6deg, rgba(255, 255, 255, .15) 359.6deg 360deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.uptime-ring:before {
    content: "";
    position: absolute;
    inset: 11px;
    border-radius: 50%;
    background: #0A3357;
}

.uptime-ring .ring-txt {
    position: relative;
    text-align: center;
}

.uptime-ring .ring-txt b {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.35rem;
}

.uptime-ring .ring-txt span {
    font-size: .65rem;
    color: rgba(255, 255, 255, .6);
}

.dash-bars {
    flex: 1;
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 110px;
}

.dash-bars i {
    flex: 1;
    background: linear-gradient(180deg, #1495E0, var(--nv-blue));
    border-radius: 5px 5px 0 0;
    position: relative;
}

.dash-bars i:nth-child(4),
.dash-bars i:nth-child(7) {
    background: linear-gradient(180deg, #FF8A50, var(--nv-orange));
}

.dash-metrics {
    display: flex;
    gap: .8rem;
    margin-top: 1.4rem;
}

.dash-metrics .m {
    flex: 1;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: .7rem .85rem;
}

.dash-metrics .m b {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.1rem;
}

.dash-metrics .m span {
    font-size: .7rem;
    color: rgba(255, 255, 255, .55);
}

/* ===== TRUST STRIP ===== */
.trust-strip {
    background: var(--nv-cream);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: .6rem;
    color: var(--nv-gray);
    font-weight: 600;
    font-size: .9rem;
    justify-content: center;
}

.trust-item i {
    color: var(--nv-blue);
    font-size: 1.15rem;
}

/* ===== DOMAIN SEARCH ===== */
.domain-box {
    /* margin-top: -3.6rem; */
    position: relative;
    z-index: 5;
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--nv-shadow);
    padding: 2rem 2rem 1.6rem;
    border: 1px solid var(--nv-border);
}

.domain-form .form-control {
    border-radius: 10px 0 0 10px;
    border: 1.5px solid var(--nv-border);
    padding: .95rem 1.1rem;
    font-size: 1rem;
}

.domain-form .form-control:focus {
    box-shadow: none;
    border-color: var(--nv-blue);
}

.domain-form .btn-nv-primary {
    border-radius: 0 10px 10px 0;
    padding: .95rem 1.6rem;
}

.tld-chip {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: var(--nv-cream);
    border-radius: 8px;
    padding: .4rem 1rem;
    font-size: .85rem;
    font-weight: 600;
    color: var(--nv-blue-900);
    border: 1px solid var(--nv-border);
}

.tld-chip b {
    color: var(--nv-orange);
}

/* ===== SOLUTION CARDS ===== */
.solution-card {
    background: #fff;
    border: 1px solid var(--nv-border);
    border-radius: 18px;
    padding: 2rem;
    height: 100%;
    transition: .35s ease;
    position: relative;
    overflow: hidden;
}

.solution-card:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--nv-orange);
    transform: scaleY(0);
    transform-origin: top;
    transition: .35s ease;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--nv-shadow);
}

.solution-card:hover:before {
    transform: scaleY(1);
}

.solution-card .sc-ico {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nv-blue);
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 1.3rem;
}

.solution-card .sc-tag {
    position: absolute;
    top: 1.3rem;
    right: 1.3rem;
    font-size: .68rem;
    font-weight: 700;
    color: var(--nv-orange);
    background: rgba(238, 84, 24, .1);
    padding: .28rem .7rem;
    border-radius: 8px;
}

/* ===== PRICING ===== */
.pricing-card {
    background: #fff;
    border: 1.5px solid var(--nv-border);
    border-radius: 20px;
    padding: 1.6rem;
    height: 100%;
    transition: .35s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--nv-shadow);
}

.pricing-card.popular {
    border-color: var(--nv-orange);
    box-shadow: 0 25px 50px -25px rgba(238, 84, 24, .4);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--nv-orange);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    padding: .4rem 1.1rem;
    border-radius: 8px;
    white-space: nowrap;
}

.price-tier {
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--nv-gray);
}

.price-amount {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 2.25rem;
    color: var(--nv-blue-900);
}

.price-amount span {
    font-size: .92rem;
    color: var(--nv-gray);
    font-weight: 500;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 1.6rem 0;
}

.pricing-card ul li {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .3rem 0;
    font-size: .92rem;
    color: #3A4552;
    border-bottom: 1px dashed var(--nv-border);
}

.pricing-card ul li i {
    color: var(--nv-success);
}

.ssl-note {
    font-size: .78rem;
    color: var(--nv-gray);
    display: flex;
    align-items: center;
    gap: .4rem;
    justify-content: center;
    margin-top: 2rem;
}

/* ===== BENTO FEATURES ===== */
.bento-lead {
    background: var(--nv-blue-900);
    color: #fff;
    border-radius: 22px;
    padding: 2.4rem;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.bento-lead:before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    background: rgba(238, 84, 24);
    border-radius: 50%;
    top: -120px;
    right: -90px;
}

.bento-lead .bl-ico {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--nv-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.4rem;
    position: relative;
    z-index: 2;
}

.bento-lead ul {
    list-style: none;
    padding: 0;
    margin-top: 1.4rem;
    position: relative;
    z-index: 2;
}

.bento-lead ul li {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .45rem 0;
    font-size: .92rem;
    color: rgba(255, 255, 255, .82);
}

.bento-lead ul li i {
    color: var(--nv-orange);
}

.bento-card {
    background: var(--nv-cream);
    border-radius: 18px;
    padding: 1.7rem;
    height: 100%;
    transition: .3s ease;
    border: 1px solid transparent;
}

.bento-card:hover {
    background: #fff;
    border-color: var(--nv-border);
    box-shadow: var(--nv-shadow);
}

.bento-card .bc-ico {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nv-blue);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    box-shadow: 0 8px 18px -10px rgba(6, 43, 74, .25);
}

/* ===== STATS BAND ===== */
.stats-band {
    background: var(--nv-blue);
    color: #fff;
}

.stats-band b {
    font-family: 'Sora', sans-serif;
    font-size: 2.1rem;
    display: block;
}

.stats-band span {
    color: rgba(255, 255, 255, .7);
    font-size: .85rem;
}

/* ===== TESTIMONIALS ===== */
.review-card {
    background: #fff;
    border: 1px solid var(--nv-border);
    border-radius: 18px;
    padding: 2rem;
    height: 100%;
}

.review-card .stars {
    color: var(--nv-orange);
    font-size: .85rem;
    margin-bottom: .9rem;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-top: 1.4rem;
}

.avatar-initial {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--nv-blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: 'Sora', sans-serif;
}

/* ===== CTA ===== */
.cta-band {
    background: linear-gradient(120deg, var(--nv-blue) 0%, var(--nv-blue-900) 100%);
    border-radius: 26px;
    padding: 3.4rem 2.5rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-band:before {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    background: rgba(238, 84, 24);
    border-radius: 50%;
    top: -160px;
    right: -100px;
}

/* ===== FOOTER ===== */
footer.nv-footer {
    background: var(--nv-blue-900);
    color: rgba(255, 255, 255, .65);
    padding: 4.5rem 0 0;
}

.nv-footer h6 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1.3rem;
    font-family: 'Sora', sans-serif;
}

.nv-footer ul {
    list-style: none;
    padding: 0;
}

.nv-footer ul li {
    margin-bottom: .7rem;
}

.nv-footer a {
    color: rgba(255, 255, 255, .6);
    transition: .2s;
}

.nv-footer a:hover {
    color: var(--nv-orange);
    padding-left: 3px;
}

.footer-social li {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: rgba(255, 255, 255, .06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: .5rem;
    transition: .25s;
}

.footer-social a:hover {
    background: var(--nv-orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin-top: 3rem;
    padding: 1.4rem 0;
    font-size: .85rem;
}

.newsletter-input {
    border-radius: 10px 0 0 10px;
    border: 1px solid rgba(255, 255, 255, .15);
    background: rgba(255, 255, 255, .05);
    color: #fff;
    padding: .75rem 1rem;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, .4);
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, .08);
    color: #fff;
    box-shadow: none;
    border-color: var(--nv-orange);
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    background: #fff;
    padding: .6rem 1rem;
    z-index: 2000;
}

.skip-link:focus {
    left: 10px;
    top: 10px;
}

@media(max-width:991.98px) {

    .nv-links,
    .nv-actions .nv-login,
    .nv-actions .btn-nv-primary {
        display: none;
    }

    .nv-burger {
        display: flex;
    }

    .domain-box {
        margin-top: -2.6rem;
    }

    .dash-grid {
        flex-direction: column;
    }

    .dash-bars {
        width: 100%;
    }
    
    .site-logo {
        max-width: 180px;
    }
    .nv-navbar {
        padding: 1.1rem 0;
    }


}

@media(max-width:575.98px) {
    .nv-topbar {
        display: none;
    }
    .site-logo {
        max-width: 150px;
    }
    .nv-navbar {
        padding: 0.9rem 0;
    }
}







.route-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 22px;
    padding: 1.6rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 30px 70px -25px rgba(0, 0, 0, .55);
}

.route-card .rc-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.1rem;
}

.rc-head .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--nv-success);
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, .6);
    animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, .55);
    }

    70% {
        box-shadow: 0 0 0 9px rgba(16, 185, 129, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.route-track {
    position: relative;
    height: 70px;
    margin: 1.2rem 0 1.6rem;
}

.route-line {
    position: absolute;
    top: 50%;
    left: 6%;
    right: 6%;
    height: 2px;
    background: repeating-linear-gradient(90deg, rgba(255, 255, 255, .35) 0 6px, transparent 6px 12px);
}

.route-pt {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
}

.route-pt.a {
    left: 6%;
}

.route-pt.b {
    left: 50%;
    background: linear-gradient(135deg, var(--nv-blue-700), var(--nv-orange));
    border: none;
}

.route-pt.c {
    left: 94%;
}

.route-pt small {
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translateX(-50%);
    font-size: .62rem;
    color: rgba(255, 255, 255, .55);
    white-space: nowrap;
}

.route-packet {
    position: absolute;
    top: 50%;
    left: 6%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--nv-orange);
    transform: translateY(-50%);
    box-shadow: 0 0 10px var(--nv-orange);
    animation: travel 2.6s linear infinite;
}

@keyframes travel {
    0% {
        left: 6%;
        opacity: 0;
    }

    8% {
        opacity: 1;
    }

    92% {
        opacity: 1;
    }

    100% {
        left: 94%;
        opacity: 0;
    }
}

.route-metrics {
    display: flex;
    gap: .8rem;
}

.route-metrics .m {
    flex: 1;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 13px;
    padding: .7rem .9rem;
}

.route-metrics .m b {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.15rem;
}

.route-metrics .m span {
    font-size: .72rem;
    color: rgba(255, 255, 255, .55);
}








.text-grad{
  background: linear-gradient(100deg, var(--nv-orange), #ee5418);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ===== Hero search — leads the left column ===== */
.hero-search{
  display:flex;
  align-items:center;
  background:#fff;
  border-radius:50px;
  padding:.4rem .4rem .4rem 1.3rem;
  box-shadow: 0 20px 45px -20px rgba(0,0,0,.5);
  max-width:560px;
  position:relative;
  border: 1px solid rgba(255,255,255,.6);
}
.hero-search-ico{
  color: var(--nv-gray);
  font-size: .95rem;
  margin-right:.7rem;
}
.hero-search input{
  flex:1;
  border:none;
  outline:none;
  background:transparent;
  font-size:.94rem;
  color: var(--nv-ink);
  min-width:0;
}
.hero-search input::placeholder{ color:#8B96A5; }
.hero-search .btn-nv-primary{
  border-radius:50px;
  padding:.65rem 1.4rem;
  font-size:.9rem;
  white-space:nowrap;
  flex-shrink:0;
}

.hero-tlds{ display:flex; flex-wrap:wrap; gap:.5rem; }
.hero-tlds .tld-chip{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.22);
  color:#fff;
}
.hero-tlds .tld-chip b{ color:#FFB98C; }

@media(max-width:575.98px){
  .hero-search{
    flex-wrap:wrap;
    border-radius:18px;
    padding:1rem;
  }
  .hero-search input{
    flex-basis:100%;
    order:1;
    padding:.6rem 0;
  }
  .hero-search-ico{ order:0; }
  .hero-search .btn-nv-primary{
    order:2;
    width:100%;
    margin-top:.6rem;
    border-radius:10px;
  }
}

/* ===== PAGE HEADER (inner-page hero banner) ===== */
.page-header{
  background:
    radial-gradient(620px 360px at 92% 0%, rgba(238,84,24,.26), transparent 60%),
    radial-gradient(760px 460px at 4% 100%, rgba(11,127,209,.32), transparent 60%),
    linear-gradient(175deg,#062B4A 0%,#08375D 55%,#062B4A 100%);
  color:#fff;padding:3.6rem 0 3.2rem;overflow:hidden;
}
.page-header:after{content:"";position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);background-size:46px 46px;mask-image:radial-gradient(circle at 70% 30%,#000 0%,transparent 70%);pointer-events:none;}
.page-header .container{position:relative;z-index:2;}
.page-header h1{font-size:clamp(1.8rem,3.6vw,2.6rem);font-weight:800;margin-bottom:.6rem;}
.breadcrumb-nv{list-style:none;display:flex;gap:.5rem;padding:0;margin:0;font-size:.88rem;color:rgba(255,255,255,.6);}
.breadcrumb-nv li a{color:rgba(255,255,255,.75);font-weight:600;}
.breadcrumb-nv li a:hover{color:#EE5418;}
.breadcrumb-nv li.sep{opacity:.5;}
.breadcrumb-nv li.current{color:#FFB98C;font-weight:600;}



/* =========================================================
   COMMON SECTION HEADING
========================================================= */

.nv-section-heading {
    max-width: 680px;
    margin: 0 auto 45px;
    text-align: center;
}


/* Subtitle / Tag */
.nv-section-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    padding: 6px 13px;
    border: 1px solid #ffd8cb;
    border-radius: 30px;
    background: #fff4ef;
    color: #ff5517;
    font-size: 10px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}


/* Main Heading */
.nv-section-title {
    margin: 0 0 12px;
    color: #082f4f;
    font-size: 34px;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: -0.6px;
}


/* Highlight inside title */
.nv-section-title span {
    color: #ff5517;
}


/* Description */
.nv-section-description {
    max-width: 620px;
    margin: 0 auto;
    color: #718397;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .nv-section-heading {
        margin-bottom: 38px;
    }

    .nv-section-title {
        font-size: 31px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .nv-section-heading {
        margin-bottom: 30px;
    }

    .nv-section-title {
        font-size: 27px;
    }

    .nv-section-description {
        font-size: 13px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .nv-section-title {
        font-size: 24px;
    }

    .nv-section-tag {
        font-size: 9px;
    }

    .nv-section-description {
        font-size: 12.5px;
    }

}