/* ═══════════════════════════════════════════════════════════════
   NORTHVIEW INFOTECH — MAIN STYLESHEET
   Palette: Navy #1B3A6B | Orange #E86C2C | White | Light Gray
   Fonts: Outfit (display) + DM Sans (body)
═══════════════════════════════════════════════════════════════ */

/* ── CSS Variables ──────────────────────────────────────────── */
:root {
    --navy:          #1B3A6B;
    --navy-dark:     #12285A;
    --navy-light:    #2A4F8C;
    --orange:        #E86C2C;
    --orange-dark:   #C85A20;
    --orange-light:  #F08040;
    --white:         #FFFFFF;
    --gray-50:       #F8F9FA;
    --gray-100:      #F0F2F5;
    --gray-200:      #E4E7EB;
    --gray-400:      #9CA3AF;
    --gray-600:      #6B7280;
    --gray-800:      #1F2937;
    --green:         #4ADE80;
    --font-display:  'Outfit', sans-serif;
    --font-body:     'DM Sans', sans-serif;
    --radius-sm:     6px;
    --radius-md:     12px;
    --radius-lg:     20px;
    --shadow-sm:     0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
    --shadow-md:     0 4px 16px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);
    --shadow-lg:     0 10px 40px rgba(27,58,107,.15);
    --shadow-xl:     0 20px 60px rgba(27,58,107,.20);
    --transition:    0.25s ease;
    --container:     1180px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-800);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    max-width: 100vw;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Container ──────────────────────────────────────────────── */
.nv-container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}
@media (min-width: 768px) { .nv-container { padding: 0 2rem; } }
@media (min-width: 1200px) { .nv-container { padding: 0 2.5rem; } }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.125rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Buttons ────────────────────────────────────────────────── */
.nv-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .875rem 2rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .01em;
    text-decoration: none;
    transition: all var(--transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.nv-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.1);
    opacity: 0;
    transition: opacity var(--transition);
}
.nv-btn:hover::before { opacity: 1; }

.nv-btn--primary {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(232,108,44,.35);
}
.nv-btn--primary:hover {
    background: var(--orange-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232,108,44,.40);
}
.nv-btn--white {
    background: var(--white);
    color: var(--navy);
    box-shadow: var(--shadow-md);
}
.nv-btn--white:hover { background: var(--gray-50); color: var(--navy); transform: translateY(-2px); }
.nv-btn--outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,.5);
}
.nv-btn--outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); color: var(--white); }
.nv-btn--sm { padding: .625rem 1.25rem; font-size: .9rem; }
.nv-btn--lg { padding: 1.1rem 2.5rem; font-size: 1.1rem; }
.nv-btn--full { width: 100%; justify-content: center; }
.nv-btn__arrow { transition: transform var(--transition); }
.nv-btn:hover .nv-btn__arrow { transform: translateX(4px); }
.nv-btn__loading { display: none; }
.nv-btn.is-loading .nv-btn__text { display: none; }
.nv-btn.is-loading .nv-btn__loading { display: inline; }

/* ── Badges ─────────────────────────────────────────────────── */
.nv-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .35rem .875rem;
    border-radius: 100px;
    font-size: .8rem;
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.nv-badge--light { background: rgba(255,255,255,.15); color: rgba(255,255,255,.95); border: 1px solid rgba(255,255,255,.25); }
.nv-badge--orange { background: rgba(232,108,44,.12); color: var(--orange); border: 1px solid rgba(232,108,44,.25); }
.nv-badge--navy { background: rgba(27,58,107,.08); color: var(--navy); border: 1px solid rgba(27,58,107,.15); }

/* ── Links ──────────────────────────────────────────────────── */
.nv-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .95rem;
    color: var(--orange);
    transition: gap var(--transition);
}
.nv-link-arrow:hover { gap: .75rem; color: var(--orange-dark); }

/* ── Section Header ─────────────────────────────────────────── */
.nv-section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3.5rem;
}
.nv-section-header h2 { margin-bottom: .75rem; }
.nv-section-header p { font-size: 1.1rem; color: var(--gray-600); }
.nv-section-header--light h2 { color: var(--white); }
.nv-section-header--light p { color: rgba(255,255,255,.75); }
.nv-section-header .nv-link-arrow { margin-top: .5rem; }

/* ── Top Bar ────────────────────────────────────────────────── */
.nv-topbar {
    background: var(--navy-dark);
    color: rgba(255,255,255,.75);
    font-size: .8rem;
    padding: .5rem 0;
}
.nv-topbar__inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: flex-end;
}
.nv-topbar__item {
    display: flex;
    align-items: center;
    gap: .4rem;
}
.nv-topbar__item a { color: rgba(255,255,255,.8); }
.nv-topbar__item a:hover { color: var(--white); }
.nv-topbar__item--location { display: none; }
@media (min-width: 640px) { .nv-topbar__item--location { display: flex; } }

/* ── Header ─────────────────────────────────────────────────── */
.nv-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
}
.nv-header.is-scrolled { box-shadow: var(--shadow-md); }
.nv-header__inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    height: 72px;
}

/* Logo */
.nv-logo { display: flex; flex-direction: column; line-height: 1.15; text-decoration: none; }
.nv-logo__brand {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -.02em;
}
.nv-logo__sub {
    font-size: .65rem;
    font-weight: 500;
    color: var(--orange);
    letter-spacing: .06em;
    text-transform: uppercase;
}

/* Nav */
.nv-nav { margin-left: auto; }
.nv-nav__list { display: flex; align-items: center; gap: .25rem; }
.nv-nav__list .menu-item a {
    display: block;
    padding: .5rem .875rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-size: .9rem;
    font-weight: 500;
    color: var(--gray-800);
    transition: all var(--transition);
}
.nv-nav__list .menu-item a:hover,
.nv-nav__list .menu-item.current-menu-item a {
    background: var(--gray-100);
    color: var(--navy);
}

/* Hamburger */
.nv-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 6px;
    border-radius: var(--radius-sm);
    margin-left: auto;
}
.nv-hamburger span {
    display: block;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all var(--transition);
}
.nv-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nv-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nv-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
    .nv-hamburger { display: flex; }
    .nv-header__cta { display: none; }
    .nv-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 2px solid var(--navy);
        box-shadow: var(--shadow-lg);
        padding: 1rem 1.5rem 1.5rem;
        margin: 0;
    }
    .nv-nav.is-open { display: block; }
    .nv-nav__list { flex-direction: column; align-items: stretch; gap: .25rem; }
    .nv-nav__list .menu-item a { padding: .75rem 1rem; font-size: 1rem; }
    .nv-nav__list::after {
        content: '';
        display: block;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--gray-200);
    }
}

/* ── Hero ───────────────────────────────────────────────────── */
.nv-hero {
    position: relative;
    background: var(--navy);
    overflow: hidden;
    padding: 5rem 0 4rem;
    min-height: 85vh;
    display: flex;
    align-items: center;
}
@media (max-width: 767px) {
    .nv-hero { min-height: auto; padding: 4rem 0 3rem; }
}
.nv-hero__bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
.nv-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(232,108,44,.18) 0%, transparent 60%);
    pointer-events: none;
}
.nv-hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,.04) 0%, transparent 60%);
    pointer-events: none;
}
.nv-hero__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
@media (min-width: 900px) {
    .nv-hero__inner { grid-template-columns: 1fr auto; gap: 4rem; }
}
.nv-hero__badge { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.nv-hero__headline {
    color: var(--white);
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -.03em;
    margin-bottom: 1.25rem;
}
.nv-hero__headline em {
    font-style: normal;
    color: var(--orange);
}
.nv-hero__subheadline {
    color: rgba(255,255,255,.8);
    font-size: 1.125rem;
    line-height: 1.65;
    max-width: 560px;
    margin-bottom: 2rem;
}
.nv-hero__actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.75rem;
}
.nv-hero__phone-link {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: rgba(255,255,255,.75);
    font-size: .95rem;
    font-weight: 500;
    transition: color var(--transition);
}
.nv-hero__phone-link:hover { color: var(--white); }
.nv-hero__trust {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}
.nv-hero__trust span {
    display: flex;
    align-items: center;
    gap: .4rem;
    color: rgba(255,255,255,.7);
    font-size: .85rem;
}

/* Hero Stat Cards */
.nv-hero__visual { position: relative; }
.nv-hero__stat-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 220px;
}
.nv-stat-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    transition: transform var(--transition);
}
.nv-stat-card:hover { transform: translateY(-4px); }
.nv-stat-card--1 { margin-left: 0; }
.nv-stat-card--2 { margin-left: 1.5rem; }
.nv-stat-card--3 { margin-left: .75rem; }
.nv-stat-card__num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}
.nv-stat-card__num span { font-size: 1.5rem; color: var(--orange); }
.nv-stat-card__label { color: rgba(255,255,255,.6); font-size: .85rem; margin-top: .3rem; }
.nv-stat-card__icon { margin-bottom: .5rem; }

.nv-hero__scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    color: rgba(255,255,255,.35);
    font-size: .7rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.nv-hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,.3), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: .3; transform: scaleY(1); }
    50% { opacity: .8; transform: scaleY(1.2); }
}

/* ── Carrier Logo Bar ───────────────────────────────────────── */
.nv-carriers {
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    padding: 1.75rem 0;
}
.nv-carriers__label {
    text-align: center;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 1.25rem;
}
.nv-carriers__logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .5rem;
}
.nv-carriers__logo-item {
    padding: .5rem 1.25rem;
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    background: var(--white);
}
.nv-carriers__logo-item span {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .875rem;
    color: var(--gray-600);
}
.nv-carriers__logo-item--more span { color: var(--orange); }

/* ── Value Props ────────────────────────────────────────────── */
.nv-value-props { padding: 5rem 0; }
.nv-value-props__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 640px) { .nv-value-props__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .nv-value-props__grid { grid-template-columns: repeat(4, 1fr); } }
.nv-value-prop {
    padding: 2rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: all var(--transition);
    background: var(--white);
}
.nv-value-prop:hover {
    border-color: var(--navy);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.nv-value-prop__icon {
    width: 56px;
    height: 56px;
    background: rgba(27,58,107,.07);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--navy);
    transition: all var(--transition);
}
.nv-value-prop:hover .nv-value-prop__icon {
    background: var(--navy);
    color: var(--white);
}
.nv-value-prop h3 { font-size: 1.15rem; margin-bottom: .625rem; }
.nv-value-prop p { font-size: .925rem; color: var(--gray-600); margin: 0; line-height: 1.65; }

/* ── How It Works ───────────────────────────────────────────── */
.nv-how-it-works {
    background: var(--navy);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}
.nv-how-it-works::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232,108,44,.15) 0%, transparent 60%);
    pointer-events: none;
}
.nv-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
    z-index: 1;
}
@media (min-width: 900px) {
    .nv-steps {
        grid-template-columns: 1fr auto 1fr auto 1fr;
        align-items: start;
        gap: 1rem;
    }
}
.nv-step {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-md);
    padding: 2rem;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    transition: all var(--transition);
}
.nv-step:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.2); }
.nv-step__num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
    margin-bottom: .875rem;
    opacity: .9;
}
.nv-step h3 { color: var(--white); font-size: 1.2rem; margin-bottom: .625rem; }
.nv-step p { color: rgba(255,255,255,.65); font-size: .9rem; margin: 0; line-height: 1.65; }
.nv-step__connector {
    display: none;
    align-self: center;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, rgba(255,255,255,.1), rgba(232,108,44,.4), rgba(255,255,255,.1));
}
@media (min-width: 900px) { .nv-step__connector { display: block; } }
.nv-how-it-works__cta { text-align: center; margin-top: 3rem; }

/* ── Industries Preview ─────────────────────────────────────── */
.nv-industries-preview { padding: 5rem 0; background: var(--gray-50); }
.nv-industry-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 640px) { .nv-industry-cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .nv-industry-cards { grid-template-columns: repeat(4, 1fr); } }
.nv-industry-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 2rem 1.75rem;
    text-decoration: none;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    gap: .875rem;
    position: relative;
    overflow: hidden;
}
.nv-industry-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transition: transform var(--transition);
}
.nv-industry-card:hover::before { transform: scaleX(1); }
.nv-industry-card:hover {
    border-color: var(--navy);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.nv-industry-card__icon {
    width: 60px;
    height: 60px;
    background: rgba(27,58,107,.07);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    transition: all var(--transition);
}
.nv-industry-card:hover .nv-industry-card__icon { background: var(--navy); color: var(--white); }
.nv-industry-card h3 { font-size: 1.1rem; color: var(--navy); margin: 0; }
.nv-industry-card p { font-size: .9rem; color: var(--gray-600); margin: 0; flex: 1; line-height: 1.65; }
.nv-industry-card__link { font-family: var(--font-display); font-size: .875rem; font-weight: 600; color: var(--orange); margin-top: auto; }

/* ── About Strip ────────────────────────────────────────────── */
.nv-about-strip { padding: 5rem 0; background: var(--white); }
.nv-about-strip__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 900px) { .nv-about-strip__inner { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.nv-about-strip__text h2 { margin-bottom: 1rem; }
.nv-about-strip__text p { color: var(--gray-600); margin-bottom: .875rem; }
.nv-about-strip__text .nv-link-arrow { margin-top: 1.25rem; font-size: 1rem; }
.nv-about-strip__credentials { display: flex; flex-direction: column; gap: 1rem; }
.nv-credential {
    padding: 1.25rem 1.5rem;
    border-left: 3px solid var(--orange);
    background: var(--gray-50);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.nv-credential__company {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1rem;
    color: var(--navy);
}
.nv-credential__title { font-size: .875rem; color: var(--gray-600); margin-top: .2rem; }

/* ── Testimonials ───────────────────────────────────────────── */
.nv-testimonials { padding: 5rem 0; background: var(--navy); }
.nv-testimonials .nv-section-header h2 { color: var(--white); }
.nv-testimonials__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 900px) { .nv-testimonials__grid { grid-template-columns: repeat(3, 1fr); } }
.nv-testimonial {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-md);
    padding: 2rem;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    transition: all var(--transition);
}
.nv-testimonial:hover { background: rgba(255,255,255,.09); transform: translateY(-4px); }
.nv-testimonial__stars { color: var(--orange); font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: .1em; }
.nv-testimonial__quote {
    color: rgba(255,255,255,.85);
    font-size: .95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}
.nv-testimonial__author { display: flex; align-items: center; gap: .875rem; }
.nv-testimonial__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .8rem;
    color: var(--white);
    flex-shrink: 0;
}
.nv-testimonial__name { font-weight: 600; color: var(--white); font-size: .9rem; }
.nv-testimonial__role { color: rgba(255,255,255,.5); font-size: .78rem; }

/* ── Blog Preview ───────────────────────────────────────────── */
.nv-blog-preview { padding: 5rem 0; }
.nv-blog-preview__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 640px) { .nv-blog-preview__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .nv-blog-preview__grid { grid-template-columns: repeat(3, 1fr); } }

/* ── Blog Cards ─────────────────────────────────────────────── */
.nv-blog-card {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--white);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}
.nv-blog-card:hover { border-color: var(--navy); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.nv-blog-card__img-wrap { display: block; overflow: hidden; aspect-ratio: 16/9; }
.nv-blog-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.nv-blog-card:hover .nv-blog-card__img-wrap img { transform: scale(1.04); }
.nv-blog-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.nv-blog-card__meta { font-size: .78rem; color: var(--gray-400); font-weight: 500; margin-bottom: .75rem; }
.nv-blog-card__title { font-size: 1.1rem; margin-bottom: .625rem; line-height: 1.35; }
.nv-blog-card__title a { color: var(--navy); }
.nv-blog-card__title a:hover { color: var(--orange); }
.nv-blog-card__excerpt { font-size: .875rem; color: var(--gray-600); margin-bottom: 1rem; flex: 1; line-height: 1.6; }

/* ── Pre-footer CTA Band ────────────────────────────────────── */
.nv-cta-band {
    background: var(--orange);
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
}
.nv-cta-band::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -100px;
    width: 400px;
    height: 200%;
    background: rgba(255,255,255,.08);
    transform: skewX(-12deg);
}
.nv-cta-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.nv-cta-band__text h2 { color: var(--white); font-size: clamp(1.5rem, 3vw, 2rem); }
.nv-cta-band__text p { color: rgba(255,255,255,.85); margin: .5rem 0 0; }
.nv-cta-band__action { display: flex; flex-direction: column; gap: .875rem; align-items: flex-start; }
.nv-cta-band__phone { color: rgba(255,255,255,.85); font-size: .9rem; font-weight: 500; }
.nv-cta-band__phone:hover { color: var(--white); }

/* ── Footer ─────────────────────────────────────────────────── */
.nv-footer {
    background: var(--gray-800);
    color: rgba(255,255,255,.7);
    padding: 4rem 0 0;
}
.nv-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (min-width: 640px) { .nv-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .nv-footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.nv-footer__logo .nv-logo__brand { color: var(--white); }
.nv-footer__logo .nv-logo__sub { color: var(--orange); }
.nv-footer__tagline { font-size: .875rem; color: rgba(255,255,255,.55); margin-top: .875rem; line-height: 1.65; }
.nv-footer__contact { display: flex; flex-direction: column; gap: .5rem; margin-top: 1.25rem; }
.nv-footer__contact-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .875rem;
    color: rgba(255,255,255,.65);
}
.nv-footer__contact-item:hover { color: var(--white); }
.nv-footer__col-title {
    font-family: var(--font-display);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    margin-bottom: 1rem;
}
.nv-footer__links li { margin-bottom: .5rem; }
.nv-footer__links a { font-size: .875rem; color: rgba(255,255,255,.65); }
.nv-footer__links a:hover { color: var(--white); }
.nv-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1.5rem 0;
    font-size: .8rem;
    color: rgba(255,255,255,.35);
}
.nv-footer__bottom-links { display: flex; gap: 1.5rem; }
.nv-footer__bottom-links a { color: rgba(255,255,255,.35); }
.nv-footer__bottom-links a:hover { color: rgba(255,255,255,.7); }

/* ── Page Hero ──────────────────────────────────────────────── */
.nv-page-hero {
    padding: 4rem 0 3.5rem;
    text-align: center;
}
.nv-page-hero--navy { background: var(--navy); color: var(--white); }
.nv-page-hero--navy h1 { color: var(--white); }
.nv-page-hero--navy p { color: rgba(255,255,255,.75); font-size: 1.1rem; max-width: 600px; margin: .875rem auto 0; }
.nv-page-hero--light { background: var(--gray-50); border-bottom: 1px solid var(--gray-200); }

/* ── Services Page ──────────────────────────────────────────── */
.nv-services-section { padding: 3rem 0; }
.nv-service-block {
    padding: 3.5rem 0;
    border-bottom: 1px solid var(--gray-200);
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 900px) { .nv-service-block { grid-template-columns: 80px 1fr; gap: 2.5rem; align-items: start; } }
.nv-service-block--alt { background: var(--gray-50); margin: 0 -2.5rem; padding: 3.5rem 2.5rem; }
.nv-service-block__icon {
    width: 80px;
    height: 80px;
    background: rgba(27,58,107,.07);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    flex-shrink: 0;
}
.nv-service-block__icon--featured { background: var(--orange); color: var(--white); }
.nv-service-block h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 1rem; }
.nv-service-block p { color: var(--gray-600); }
.nv-service-block__who {
    background: rgba(27,58,107,.05);
    border-left: 3px solid var(--navy);
    padding: 1rem 1.25rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: .9rem;
    color: var(--gray-800);
    margin: 1.25rem 0 1.75rem;
    line-height: 1.6;
}
.nv-service-list {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 1.75rem;
}
.nv-service-list li {
    padding: .35rem .875rem;
    background: var(--gray-100);
    border-radius: 100px;
    font-size: .825rem;
    font-weight: 500;
    color: var(--navy);
}
.nv-services-cta-mid { padding: 3.5rem 0; }
.nv-services-cta-mid h2 { margin-bottom: .75rem; }
.nv-services-cta-mid p { color: var(--gray-600); margin-bottom: 1.5rem; }

/* ── Industries Page ────────────────────────────────────────── */
.nv-industry-detail { padding: 4rem 0; }
.nv-industry-detail--alt { background: var(--gray-50); }
.nv-industry-detail__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
}
@media (min-width: 900px) { .nv-industry-detail__inner { grid-template-columns: 100px 1fr; gap: 3rem; } }
.nv-industry-detail__icon {
    width: 100px;
    height: 100px;
    background: rgba(27,58,107,.07);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    flex-shrink: 0;
}
.nv-industry-detail h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: .75rem; }
.nv-industry-detail__hook {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1rem;
    line-height: 1.5;
}
.nv-industry-detail p { color: var(--gray-600); }
.nv-industry-detail__pain-points {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin: 1.5rem 0 2rem;
}
.nv-industry-detail__pain-points h4 {
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: .875rem;
}
.nv-industry-detail__pain-points ul { display: flex; flex-direction: column; gap: .5rem; }
.nv-industry-detail__pain-points li {
    padding-left: 1.25rem;
    position: relative;
    font-size: .9rem;
    color: var(--gray-600);
    line-height: 1.55;
}
.nv-industry-detail__pain-points li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 700;
}

/* ── About Page ─────────────────────────────────────────────── */
.nv-about-main { padding: 4rem 0; }
.nv-about-main__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}
@media (min-width: 900px) { .nv-about-main__inner { grid-template-columns: 320px 1fr; gap: 4rem; } }
.nv-about-photo-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xl); }
.nv-about-photo { width: 100%; display: block; }
.nv-about-photo-placeholder {
    aspect-ratio: 4/5;
    background: var(--gray-100);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--gray-400);
    font-size: .875rem;
    text-align: center;
    padding: 2rem;
}
.nv-about-credentials { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .875rem; }
.nv-credential--card {
    padding: 1rem 1.25rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: var(--white);
}
.nv-credential--featured { border-color: var(--orange); background: rgba(232,108,44,.03); }
.nv-credential--featured .nv-credential__company { color: var(--orange); }
.nv-credential__location { font-size: .78rem; color: var(--gray-400); margin-top: .2rem; }
.nv-about-main__lead { font-size: 1.15rem; color: var(--navy); font-weight: 500; line-height: 1.65; margin-bottom: 1.25rem; }
.nv-about-main p { color: var(--gray-600); }
.nv-about-main__subhead { font-size: 1.25rem; margin: 2rem 0 .75rem; color: var(--navy); }
.nv-about-main__cta-block { margin-top: 2.5rem; }

.nv-about-promise { background: var(--gray-50); border-top: 1px solid var(--gray-200); padding: 4rem 0; }
.nv-about-promise h2 { text-align: center; margin-bottom: 2.5rem; }
.nv-promise-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 640px) { .nv-promise-grid { grid-template-columns: repeat(3, 1fr); } }
.nv-promise-item { padding: 2rem; border-left: 3px solid var(--orange); background: var(--white); border-radius: 0 var(--radius-md) var(--radius-md) 0; }
.nv-promise-item h3 { font-size: 1.1rem; margin-bottom: .625rem; }
.nv-promise-item p { font-size: .9rem; color: var(--gray-600); margin: 0; line-height: 1.65; }

/* ── Landing Page ───────────────────────────────────────────── */
.nv-landing-header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 1rem 0;
}
.nv-landing-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nv-landing-header__phone {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--navy);
}
.nv-landing-hero {
    background: var(--navy);
    padding: 4rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}
.nv-landing-hero__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}
@media (min-width: 960px) { .nv-landing-hero__inner { grid-template-columns: 1fr 480px; align-items: center; gap: 4rem; } }
.nv-landing-hero__copy h1 {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    letter-spacing: -.03em;
}
.nv-landing-hero__sub { color: rgba(255,255,255,.75); font-size: 1.05rem; line-height: 1.65; margin-bottom: 2rem; }
.nv-landing-trust { display: flex; flex-direction: column; gap: .625rem; margin-bottom: 2.5rem; }
.nv-landing-trust__item { display: flex; align-items: center; gap: .625rem; color: rgba(255,255,255,.8); font-size: .95rem; }
.nv-landing-steps { background: rgba(255,255,255,.07); border-radius: var(--radius-md); padding: 1.75rem; }
.nv-landing-steps h3 { color: var(--white); font-size: 1rem; font-weight: 600; margin-bottom: 1rem; }
.nv-landing-step { display: flex; gap: 1rem; margin-bottom: 1rem; align-items: flex-start; }
.nv-landing-step:last-child { margin-bottom: 0; }
.nv-landing-step__num {
    width: 28px;
    height: 28px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .8rem;
    color: var(--white);
    flex-shrink: 0;
    margin-top: .15rem;
}
.nv-landing-step strong { display: block; color: var(--white); font-size: .9rem; }
.nv-landing-step span { display: block; color: rgba(255,255,255,.6); font-size: .82rem; margin-top: .15rem; line-height: 1.5; }

/* Form */
.nv-landing-form-wrap { position: relative; }
.nv-landing-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    box-shadow: var(--shadow-xl);
}
.nv-landing-form__header { margin-bottom: 1.75rem; }
.nv-landing-form__header h2 { font-size: 1.5rem; color: var(--navy); margin-bottom: .375rem; }
.nv-landing-form__header p { color: var(--gray-600); font-size: .9rem; margin: 0; }
.nv-form__group { margin-bottom: 1rem; }
.nv-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.nv-form__label {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: .375rem;
}
.nv-form__required { color: var(--orange); }
.nv-form__input {
    width: 100%;
    padding: .75rem 1rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: .95rem;
    color: var(--gray-800);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    -webkit-appearance: none;
    appearance: none;
}
.nv-form__input:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(27,58,107,.1);
}
.nv-form__input.is-error { border-color: #ef4444; }
.nv-form__select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.nv-form__disclaimer { font-size: .75rem; color: var(--gray-400); text-align: center; margin-top: .875rem; line-height: 1.55; }
.nv-form__message { margin-top: 1rem; padding: .875rem 1rem; border-radius: var(--radius-sm); font-size: .9rem; display: none; }
.nv-form__message.is-error { display: block; background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
.nv-form__message.is-success { display: block; background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; }
.nv-form-success { text-align: center; padding: 2rem 1rem; }
.nv-form-success__icon { display: flex; align-items: center; justify-content: center; width: 80px; height: 80px; background: #f0fdf4; border-radius: 50%; margin: 0 auto 1.25rem; }
.nv-form-success h3 { color: var(--navy); margin-bottom: .75rem; }
.nv-form-success p { color: var(--gray-600); font-size: .95rem; }

.nv-landing-proof { background: var(--gray-50); border-top: 1px solid var(--gray-200); padding: 3rem 0; }
.nv-landing-proof__grid { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.nv-landing-proof__stat { text-align: center; }
.nv-landing-proof__num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
}
.nv-landing-proof__num span { color: var(--orange); }
.nv-landing-proof__label { font-size: .85rem; color: var(--gray-400); margin-top: .3rem; font-weight: 500; }

.nv-landing-footer { background: var(--gray-800); padding: 1.5rem 0; }
.nv-landing-footer p { text-align: center; font-size: .8rem; color: rgba(255,255,255,.4); }
.nv-landing-footer a { color: rgba(255,255,255,.55); }
.nv-landing-footer a:hover { color: rgba(255,255,255,.9); }

/* ── Blog / Single Page ─────────────────────────────────────── */
.nv-blog-layout, .nv-single-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
}
@media (min-width: 1024px) { .nv-blog-layout, .nv-single-layout { grid-template-columns: 1fr 320px; } }
.nv-blog-main, .nv-single-main { min-width: 0; }
.nv-posts-grid { display: flex; flex-direction: column; gap: 2rem; }
.nv-pagination { margin-top: 3rem; display: flex; gap: .5rem; }
.nv-pagination .page-numbers {
    padding: .5rem .875rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: .875rem;
    color: var(--gray-800);
}
.nv-pagination .page-numbers.current { background: var(--navy); color: var(--white); border-color: var(--navy); }
.nv-single-post__header { margin-bottom: 2rem; }
.nv-single-post__meta { font-size: .85rem; color: var(--gray-400); margin-bottom: .875rem; }
.nv-single-post__meta a { color: var(--gray-400); }
.nv-single-post__title { font-size: clamp(1.8rem, 4vw, 2.75rem); }
.nv-single-post__thumb { border-radius: var(--radius-md); overflow: hidden; margin-bottom: 2.5rem; }
.nv-single-post__thumb img { width: 100%; height: auto; }
.nv-single-post__cta-block {
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    margin-top: 3rem;
    text-align: center;
}
.nv-single-post__cta-block h3 { color: var(--white); margin-bottom: .625rem; }
.nv-single-post__cta-block p { color: rgba(255,255,255,.75); margin-bottom: 1.5rem; }

/* Content Styles */
.nv-content h2, .nv-content h3 { margin: 2rem 0 1rem; }
.nv-content p { color: var(--gray-600); line-height: 1.75; margin-bottom: 1.25rem; }
.nv-content ul, .nv-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.nv-content li { margin-bottom: .5rem; color: var(--gray-600); line-height: 1.65; }
.nv-content a { color: var(--orange); text-decoration: underline; }
.nv-content blockquote {
    border-left: 3px solid var(--orange);
    padding: 1rem 1.5rem;
    background: var(--gray-50);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--gray-600);
}

/* ── Sidebar ─────────────────────────────────────────────────── */
.nv-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.nv-sidebar__widget {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 1.5rem;
}
.nv-sidebar__widget--cta { background: var(--navy); border-color: var(--navy); }
.nv-sidebar__widget--cta h3 { color: var(--white); margin-bottom: .625rem; }
.nv-sidebar__widget--cta p { color: rgba(255,255,255,.75); font-size: .9rem; margin-bottom: 1.25rem; }
.nv-sidebar__widget h3 { font-size: 1rem; margin-bottom: .875rem; }

/* ── Animations ─────────────────────────────────────────────── */
[data-animate] { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
[data-animate="fade-left"] { transform: translateX(-24px); }
[data-animate="fade-right"] { transform: translateX(24px); }
[data-animate].is-visible { opacity: 1; transform: none; }

/* ── Utilities ──────────────────────────────────────────────── */
.nv-page-content { padding: 3rem 0; max-width: 780px; }
.nv-no-posts { color: var(--gray-400); text-align: center; padding: 4rem 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ── WordPress Core Compat ───────────────────────────────────── */
.alignleft { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter { display: block; margin: 0 auto 1rem; }
.wp-block-image img { border-radius: var(--radius-sm); }
.wp-caption { font-size: .8rem; color: var(--gray-400); text-align: center; }

/* ── About Page — Redesigned ────────────────────────────────── */

/* Stats Band */
.nv-about-stats {
    background: var(--navy);
    padding: 3.5rem 0;
    border-top: 1px solid rgba(255,255,255,.08);
}
.nv-about-stats__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
@media (min-width: 900px) {
    .nv-about-stats__grid { grid-template-columns: repeat(4, 1fr); }
}
.nv-about-stat { text-align: center; }
.nv-about-stat__num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: .25rem;
}
.nv-about-stat__num span { color: var(--orange); }
.nv-about-stat__label {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: .25rem;
}
.nv-about-stat__sub {
    font-size: .8rem;
    color: rgba(255,255,255,.5);
    line-height: 1.5;
}

/* Story Section */
.nv-about-story { padding: 5rem 0; background: var(--white); }
.nv-about-story__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}
@media (min-width: 960px) {
    .nv-about-story__inner { grid-template-columns: 1fr 400px; gap: 5rem; align-items: center; }
}
.nv-about-story__lead {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--navy);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}
.nv-about-story__text h2 { margin-bottom: 1.25rem; }
.nv-about-story__text p { color: var(--gray-600); }
.nv-about-story__callout { display: flex; flex-direction: column; gap: 1.25rem; }

.nv-about-callout-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 1.75rem;
}
.nv-about-callout-card--navy {
    background: var(--navy);
    border-color: var(--navy);
}
.nv-about-callout-card--navy h3 { color: var(--white); }
.nv-about-callout-card--navy p { color: rgba(255,255,255,.7); }
.nv-about-callout-card__icon { margin-bottom: .875rem; }
.nv-about-callout-card h3 { font-size: 1.1rem; margin-bottom: .625rem; }
.nv-about-callout-card p { font-size: .9rem; color: var(--gray-600); margin-bottom: .625rem; line-height: 1.65; }
.nv-about-callout-card p:last-child { margin-bottom: 0; }

/* Expertise Section */
.nv-about-expertise { padding: 5rem 0; background: var(--gray-50); }
.nv-expertise-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 900px) { .nv-expertise-grid { grid-template-columns: repeat(3, 1fr); } }

.nv-expertise-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: .875rem;
    transition: all var(--transition);
}
.nv-expertise-card:hover {
    border-color: var(--navy);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.nv-expertise-card__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: .25rem;
}
.nv-expertise-card__header h3 { font-size: 1.15rem; margin: 0; }
.nv-expertise-card__icon {
    width: 56px;
    height: 56px;
    background: rgba(27,58,107,.07);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    flex-shrink: 0;
    transition: all var(--transition);
}
.nv-expertise-card:hover .nv-expertise-card__icon { background: var(--navy); color: var(--white); }
.nv-expertise-card p { font-size: .9rem; color: var(--gray-600); line-height: 1.65; margin: 0; }
.nv-expertise-card__source { margin-top: auto; padding-top: 1.25rem; border-top: 1px solid var(--gray-200); }
.nv-expertise-card__source-label {
    display: block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: .625rem;
}
.nv-expertise-tag {
    display: inline-flex;
    padding: .25rem .7rem;
    background: var(--gray-100);
    border-radius: 100px;
    font-size: .75rem;
    font-weight: 500;
    color: var(--navy);
    margin: .2rem .2rem 0 0;
}

/* Values Section */
.nv-about-values {
    background: var(--navy);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}
.nv-about-values::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(232,108,44,.12) 0%, transparent 60%);
    pointer-events: none;
}
.nv-values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
    z-index: 1;
}
@media (min-width: 900px) { .nv-values-grid { grid-template-columns: repeat(3, 1fr); } }
.nv-value-item {
    padding: 2rem;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-md);
    background: rgba(255,255,255,.04);
    transition: all var(--transition);
}
.nv-value-item:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); }
.nv-value-item__num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
    margin-bottom: .875rem;
    opacity: .9;
}
.nv-value-item h3 { color: var(--white); font-size: 1.15rem; margin-bottom: .75rem; }
.nv-value-item p { color: rgba(255,255,255,.65); font-size: .9rem; line-height: 1.7; margin: 0; }

/* About CTA */
.nv-about-cta {
    background: var(--orange);
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
}
.nv-about-cta::before {
    content: '';
    position: absolute;
    top: -50%; right: -100px;
    width: 400px; height: 200%;
    background: rgba(255,255,255,.08);
    transform: skewX(-12deg);
}
.nv-about-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.nv-about-cta h2 { color: var(--white); font-size: clamp(1.5rem, 3vw, 2rem); }
.nv-about-cta p { color: rgba(255,255,255,.85); margin: .5rem 0 0; }
.nv-about-cta__actions {
    display: flex;
    flex-direction: column;
    gap: .875rem;
    align-items: flex-start;
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE RESPONSIVE FIXES — comprehensive overrides for <768px
═══════════════════════════════════════════════════════════════ */

@media (max-width: 767px) {

    /* ── Base typography ── */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.15rem; }

    /* ── Hero ── */
    .nv-hero {
        padding: 3rem 0 3rem;
        min-height: auto;
    }
    .nv-hero__inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .nv-hero__headline {
        font-size: 2.2rem;
        letter-spacing: -.02em;
    }
    .nv-hero__subheadline {
        font-size: 1rem;
    }
    .nv-hero__actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .nv-hero__actions .nv-btn {
        width: 100%;
        justify-content: center;
    }
    .nv-hero__trust {
        gap: .75rem;
    }
    .nv-hero__trust span {
        font-size: .8rem;
    }
    /* Hide decorative stat cards on mobile — they overflow */
    .nv-hero__visual {
        display: none;
    }
    .nv-hero__scroll-hint {
        display: none;
    }

    /* ── Carrier bar ── */
    .nv-carriers__logos {
        gap: .4rem;
    }
    .nv-carriers__logo-item {
        padding: .4rem .875rem;
    }
    .nv-carriers__logo-item span {
        font-size: .78rem;
    }

    /* ── Value props ── */
    .nv-value-props { padding: 3rem 0; }
    .nv-value-prop { padding: 1.5rem; }

    /* ── How It Works ── */
    .nv-how-it-works { padding: 3rem 0; }
    .nv-steps { gap: 1rem; }
    .nv-step { padding: 1.5rem; }
    .nv-step__num { font-size: 2.25rem; }
    .nv-how-it-works__cta .nv-btn {
        width: 100%;
        justify-content: center;
    }

    /* ── Industries preview ── */
    .nv-industries-preview { padding: 3rem 0; }
    .nv-industry-card { padding: 1.5rem; }

    /* ── About strip ── */
    .nv-about-strip { padding: 3rem 0; }
    .nv-about-strip__inner { gap: 2rem; }

    /* ── Testimonials ── */
    .nv-testimonials { padding: 3rem 0; }

    /* ── Pre-footer CTA band ── */
    .nv-cta-band { padding: 2.5rem 0; }
    .nv-cta-band__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    .nv-cta-band__action { width: 100%; }
    .nv-cta-band__action .nv-btn {
        width: 100%;
        justify-content: center;
    }

    /* ── Footer ── */
    .nv-footer { padding: 3rem 0 0; }
    .nv-footer__grid { gap: 2rem; }
    .nv-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: .75rem;
    }

    /* ── Page hero ── */
    .nv-page-hero { padding: 2.5rem 0 2rem; }
    .nv-page-hero p { font-size: 1rem; }

    /* ── Services page ── */
    .nv-service-block {
        padding: 2.5rem 0;
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .nv-service-block--alt {
        margin: 0 -1.5rem;
        padding: 2.5rem 1.5rem;
    }
    .nv-service-block__icon { width: 60px; height: 60px; }
    .nv-service-block h2 { font-size: 1.4rem; }
    .nv-services-cta-mid { padding: 2.5rem 0; }
    .nv-services-cta-mid .nv-btn {
        width: 100%;
        justify-content: center;
    }

    /* ── Industries page ── */
    .nv-industry-detail { padding: 2.5rem 0; }
    .nv-industry-detail__inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .nv-industry-detail__icon {
        width: 64px;
        height: 64px;
    }
    .nv-industry-detail h2 { font-size: 1.4rem; }
    .nv-industry-detail .nv-btn {
        width: 100%;
        justify-content: center;
    }

    /* ── About page — redesigned ── */
    .nv-about-stats { padding: 2.5rem 0; }
    .nv-about-stats__grid { gap: 1.5rem; }
    .nv-about-stat__num { font-size: 2.25rem; }

    .nv-about-story { padding: 3rem 0; }
    .nv-about-story__inner { gap: 2rem; }
    .nv-about-story__lead { font-size: 1.05rem; }

    .nv-about-expertise { padding: 3rem 0; }
    .nv-expertise-card { padding: 1.5rem; }

    .nv-about-values { padding: 3rem 0; }
    .nv-value-item { padding: 1.5rem; }
    .nv-value-item__num { font-size: 2rem; }

    .nv-about-cta { padding: 2.5rem 0; }
    .nv-about-cta__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    .nv-about-cta__actions { width: 100%; }
    .nv-about-cta__actions .nv-btn {
        width: 100%;
        justify-content: center;
    }

    /* ── Landing page ── */
    .nv-landing-hero {
        padding: 2.5rem 0;
        min-height: auto;
    }
    .nv-landing-hero__copy h1 { font-size: 1.9rem; }
    .nv-landing-hero__sub { font-size: .95rem; }
    .nv-landing-form { padding: 1.5rem; }
    .nv-form__row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .nv-landing-proof__grid { gap: 1.5rem; }
    .nv-landing-proof__num { font-size: 2rem; }

    /* ── Blog / Single ── */
    .nv-blog-layout,
    .nv-single-layout {
        padding-top: 2rem;
        padding-bottom: 2rem;
        gap: 2rem;
    }
    .nv-single-post__title { font-size: 1.75rem; }
    .nv-single-post__cta-block { padding: 1.75rem; }

    /* ── Sidebar — full width on mobile ── */
    .nv-sidebar { flex-direction: row; flex-wrap: wrap; }
    .nv-sidebar__widget { flex: 1 1 100%; }

    /* ── General button full-width in CTA contexts ── */
    .nv-promise-item { padding: 1.5rem; }

    /* ── Section headers ── */
    .nv-section-header { margin-bottom: 2.5rem; }
    .nv-section-header p { font-size: 1rem; }
}

/* ── Small phones (< 400px) ── */
@media (max-width: 400px) {
    .nv-hero__headline { font-size: 1.85rem; }
    .nv-container { padding: 0 1rem; }
    .nv-landing-form { padding: 1.25rem; }
    .nv-btn--lg { padding: 1rem 1.5rem; font-size: 1rem; }
    .nv-carriers__logo-item { padding: .35rem .6rem; }
    .nv-carriers__logo-item span { font-size: .72rem; }
}

/* ── Tablet (768px – 899px) ── */
@media (min-width: 768px) and (max-width: 899px) {
    .nv-hero__visual { display: none; }
    .nv-hero__headline { font-size: 2.75rem; }
    .nv-cta-band__inner { flex-direction: column; align-items: flex-start; }
    .nv-about-cta__inner { flex-direction: column; align-items: flex-start; }
    .nv-service-block--alt { margin: 0 -2rem; padding: 3rem 2rem; }
    .nv-steps { grid-template-columns: 1fr; }
    .nv-step__connector { display: none; }
}

/* ── Prevent horizontal overflow on all sections ── */
.nv-value-props,
.nv-how-it-works,
.nv-industries-preview,
.nv-about-strip,
.nv-testimonials,
.nv-blog-preview,
.nv-about-stats,
.nv-about-story,
.nv-about-expertise,
.nv-about-values,
.nv-about-cta,
.nv-page-hero,
.nv-services-header,
.nv-service-block,
.nv-industries-header,
.nv-industry-detail,
.nv-landing-hero,
.nv-landing-proof,
.nv-cta-band,
.nv-footer {
    overflow-x: hidden;
    max-width: 100%;
}

/* ── Carrier bar — prevent overflow scroll ── */
.nv-carriers {
    overflow-x: hidden;
}
.nv-carriers__logos {
    flex-wrap: wrap;
    justify-content: center;
}

/* ── Hero actions — stack on mobile ── */
@media (max-width: 599px) {
    .nv-hero__actions { flex-direction: column; width: 100%; }
    .nv-hero__actions .nv-btn,
    .nv-hero__actions a { width: 100%; text-align: center; justify-content: center; }
    .nv-hero__phone-link { justify-content: center; }
    .nv-step__connector { display: none; }
    .nv-steps { grid-template-columns: 1fr; }
    .nv-form__row { grid-template-columns: 1fr; }
    .nv-cta-band__inner { flex-direction: column; gap: 1.25rem; }
    .nv-cta-band__action { width: 100%; }
    .nv-cta-band__action .nv-btn { width: 100%; justify-content: center; }
    .nv-footer__bottom { flex-direction: column; gap: .5rem; text-align: center; }
    .nv-about-cta__inner { flex-direction: column; }
    .nv-about-cta__actions .nv-btn { width: 100%; justify-content: center; }
}

/* ── Hide "Free Audit" as a nav menu item — button in header serves this purpose ── */
/* Uses multiple selectors for maximum browser compatibility including Brave */
.nv-nav__list .menu-item a[href*="free-audit"] {
    display: none;
}
.nv-nav__list .menu-item:has(a[href*="free-audit"]) {
    display: none;
}
/* Fallback class-based hide — add class "hide-in-nav" to the Free Audit menu item in WP Menus > CSS Classes */
.nv-nav__list .hide-in-nav,
.nv-nav__list .menu-item.hide-in-nav {
    display: none !important;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════════════════ */

.nv-contact-body { padding: 5rem 0; background: var(--white); }
.nv-contact-body__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}
@media (min-width: 960px) {
    .nv-contact-body__inner { grid-template-columns: 420px 1fr; gap: 5rem; }
}

/* ── Contact Info ── */
.nv-contact-info { display: flex; flex-direction: column; gap: 0; }
.nv-contact-info__block {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--gray-200);
}
.nv-contact-info__block:first-child { padding-top: 0; }
.nv-contact-info__icon {
    width: 44px;
    height: 44px;
    background: rgba(27,58,107,.07);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    flex-shrink: 0;
}
.nv-contact-info__label {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: .25rem;
}
.nv-contact-info__value {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: .25rem;
}
a.nv-contact-info__value:hover { color: var(--orange); }
.nv-contact-info__note {
    font-size: .8rem;
    color: var(--gray-400);
}
.nv-contact-nudge {
    margin-top: 2rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-left: 3px solid var(--orange);
    border-radius: var(--radius-sm);
    padding: 1.25rem 1.5rem;
    font-size: .9rem;
    color: var(--gray-600);
    line-height: 1.65;
}
.nv-contact-nudge strong { color: var(--navy); }

/* ── Contact Form Card ── */
.nv-contact-form-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}
.nv-contact-form-card h2 { font-size: 1.6rem; margin-bottom: .375rem; }
.nv-contact-form-card__sub { color: var(--gray-600); margin-bottom: 1.75rem; font-size: .95rem; }

/* Form fields */
.nv-cf__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}
@media (max-width: 599px) { .nv-cf__row { grid-template-columns: 1fr; } }

.nv-cf__field { margin-bottom: 1rem; }
.nv-cf__field label {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: .4rem;
}
.nv-cf__required { color: var(--orange); }
.nv-cf__field input,
.nv-cf__field select,
.nv-cf__field textarea {
    width: 100%;
    padding: .75rem 1rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: .95rem;
    color: var(--gray-800);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    -webkit-appearance: none;
    appearance: none;
}
.nv-cf__field input:focus,
.nv-cf__field select:focus,
.nv-cf__field textarea:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(27,58,107,.1);
}
.nv-cf__field textarea { resize: vertical; min-height: 130px; }
.nv-cf__field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right .875rem center;
    padding-right: 2.5rem;
}

/* Success & error states */
.nv-cf__success {
    display: flex;
    align-items: center;
    gap: .875rem;
    background: rgba(74,222,128,.08);
    border: 1px solid rgba(74,222,128,.3);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    margin-top: 1rem;
    color: #166534;
    font-weight: 500;
}
.nv-cf__error {
    background: rgba(239,68,68,.07);
    border: 1px solid rgba(239,68,68,.25);
    border-radius: var(--radius-sm);
    padding: .875rem 1.25rem;
    margin-top: 1rem;
    color: #991b1b;
    font-size: .9rem;
}

/* Audit nudge below form */
.nv-contact-audit-nudge {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.25rem;
    padding: 1.25rem 1.5rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
}
.nv-contact-audit-nudge p {
    font-size: .9rem;
    color: var(--gray-600);
    margin: 0;
}

/* Mobile */
@media (max-width: 767px) {
    .nv-contact-body { padding: 3rem 0; }
    .nv-contact-form-card { padding: 1.5rem; }
    .nv-contact-audit-nudge { flex-direction: column; align-items: flex-start; }
    .nv-contact-audit-nudge .nv-btn { width: 100%; justify-content: center; }
}
