/* ============================================================
   New York Publish Center — Custom Design System
   Theme:  #003884 (Primary Blue)  ·  #B31942 (Accent Red)  ·  #0e0e0e (Dark)
   Font:   Poppins
   Prefix: npc-  (namespaced — avoids conflicts with theme CSS)
   ============================================================ */

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
    --npc-blue: #003884;
    --npc-blue-dark: #002563;
    --npc-blue-mid: #00429e;
    --npc-red: #B31942;
    --npc-red-dark: #8c1333;
    --npc-red-light: #d4204e;
    --npc-dark: #0e0e0e;
    --npc-dark2: #181828;
    --npc-white: #ffffff;
    --npc-gray-50: #f8f9fc;
    --npc-gray-100: #f1f3f7;
    --npc-gray-200: #e2e6ef;
    --npc-gray-400: #9ca3af;
    --npc-gray-500: #6b7280;
    --npc-gray-700: #374151;
    --npc-font: 'Poppins', 'Segoe UI', sans-serif;
    --npc-r-sm: 6px;
    --npc-r: 12px;
    --npc-r-lg: 20px;
    --npc-r-xl: 32px;
    --npc-shadow: 0 4px 24px rgba(0, 0, 0, .09);
    --npc-shadow-lg: 0 8px 40px rgba(0, 0, 0, .14);
    --npc-shadow-xl: 0 20px 60px rgba(0, 0, 0, .20);
    --npc-t: 0.28s ease;
    --npc-pad: 96px 0;
}

/* ── Global Reset ──────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--npc-font);
    font-size: 16px;
    font-weight: 400;
    color: #4a4e6a;
    background: var(--npc-white);
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body.popup-open,
body.drawer-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--npc-t);
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: var(--npc-font);
}

/* ── Global Typography ──────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--npc-font);
    color: var(--npc-dark);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    letter-spacing: -0.03em;
    line-height: 1.1;
}

h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    line-height: 1.15;
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.7rem);
    font-weight: 700;
    line-height: 1.25;
}

h4 {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    font-weight: 700;
    line-height: 1.3;
}

h5 {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.4;
}

h6 {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0;
}

p {
    font-size: 1rem;
    line-height: 1.78;
    color: #4a4e6a;
    margin: 0;
}

strong, b {
    font-weight: 700;
}

/* ── Utilities ──────────────────────────────────────────────── */
.text-accent {
    color: var(--npc-red);
}

.text-white {
    color: var(--npc-white) !important;
}

.text-muted-light {
    color: rgba(255, 255, 255, .55) !important;
}

.bg-light {
    background: var(--npc-gray-50) !important;
}

.bg-dark-alt {
    background: var(--npc-dark2) !important;
}

.mt-32 {
    margin-top: 32px;
}

.gy-48>*+* {
    margin-top: 48px;
}

.nav-logo, .footer-logo {
    background: #ffffff;
    border-radius: 5px;
    padding: 6px 12px;
}

/* fallback for older Bootstrap */

.npc-kicker {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--npc-red);
    background: rgba(179, 25, 66, .09);
    border: 1px solid rgba(179, 25, 66, .18);
    padding: 5px 15px;
    border-radius: 50px;
    margin-bottom: 16px;
    line-height: 1.5;
}

.npc-kicker.light {
    color: rgba(255, 255, 255, .80);
    background: rgba(255, 255, 255, .12);
}

.npc-lead {
    font-size: 1.05rem;
    color: var(--npc-gray-500);
    max-width: 520px;
}

.npc-section {
    padding: var(--npc-pad);
}

.npc-section-head {
    margin-bottom: 52px;
}

.npc-section-head h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    color: var(--npc-dark);
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 14px;
}

.npc-section-head p {
    font-size: 1.025rem;
    font-weight: 400;
    color: var(--npc-gray-500);
    max-width: 620px;
    line-height: 1.78;
}

.npc-section-head.text-center p {
    margin: 0 auto;
}

/* ── Buttons ────────────────────────────────────────────────── */
.npc-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--npc-red);
    color: var(--npc-white);
    padding: 14px 28px;
    border-radius: var(--npc-r-sm);
    font-size: 14.5px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(179, 25, 66, .28);
    transition: background var(--npc-t), transform var(--npc-t), box-shadow var(--npc-t);
    border: none;
    cursor: pointer;
    font-family: var(--npc-font);
    text-decoration: none;
}

.npc-btn-primary:hover {
    background: var(--npc-red-dark);
    color: var(--npc-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(179, 25, 66, .38);
}

.npc-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: transparent;
    color: var(--npc-white);
    padding: 13px 26px;
    border-radius: var(--npc-r-sm);
    font-size: 14.5px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, .35);
    transition: all var(--npc-t);
}

.npc-btn-outline:hover {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .75);
    color: var(--npc-white);
}

/* ── Scroll-to-Top ──────────────────────────────────────────── */
.scroll-top-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 44px;
    height: 44px;
    background: var(--npc-blue);
    color: var(--npc-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: var(--npc-shadow);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--npc-t), transform var(--npc-t), background var(--npc-t);
    transform: translateY(12px);
}

.scroll-top-btn.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: var(--npc-red);
    color: var(--npc-white);
}

/* ============================================================
   HEADER
   ============================================================ */
.header-topbar {
    background: var(--npc-blue-dark);
    padding: 7px 0;
    font-size: 12.5px;
    color: rgba(255, 255, 255, .75);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.topbar-left span,
.topbar-right span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.topbar-left i,
.topbar-right>span i {
    color: var(--npc-red-light);
    font-size: 11px;
}

.topbar-social {
    display: flex;
    gap: 8px;
}

.topbar-social a {
    color: rgba(255, 255, 255, .60);
    font-size: 12px;
    transition: color var(--npc-t);
}

.topbar-social a:hover {
    color: var(--npc-white);
}

/* Main Nav */
.main-nav {
    background: var(--npc-blue);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background var(--npc-t), box-shadow var(--npc-t);
}

.main-nav.scrolled {
    background: rgba(0, 37, 99, .97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 4px 32px rgba(0, 0, 0, .22);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    height: 70px;
}

.nav-logo a {
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.logo-scrolled {
    display: none;
}

.main-nav.scrolled .logo-default {
    display: none;
}

.main-nav.scrolled .logo-scrolled {
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, .88);
    font-size: 14.5px;
    font-weight: 600;
    padding: 8px 13px;
    border-radius: var(--npc-r-sm);
    transition: color var(--npc-t), background var(--npc-t);
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.nav-link:hover,
.nav-link.active {
    color: var(--npc-white);
    background: rgba(255, 255, 255, .10);
}

.nav-link .fa-angle-down {
    font-size: 10px;
    transition: transform var(--npc-t);
}

.nav-item.has-dropdown:hover .nav-link .fa-angle-down {
    transform: rotate(180deg);
}

/* Dropdown */
.dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--npc-white);
    border-radius: var(--npc-r);
    min-width: 220px;
    box-shadow: var(--npc-shadow-lg);
    /* padding-top bridges the visual gap without breaking hover */
    padding: 10px 8px 8px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: all .22s ease;
    z-index: 200;
}

/* Invisible bridge above the dropdown so moving the mouse
   from the nav-link to the dropdown items doesn't lose hover */
.dropdown-menu-custom::before {
    content: '';
    position: absolute;
    top: -14px;
    left: 0;
    right: 0;
    height: 14px;
}

.nav-item.has-dropdown:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.dropdown-menu-custom li a {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--npc-gray-700);
    padding: 9px 13px;
    border-radius: var(--npc-r-sm);
    font-size: 13.5px;
    transition: background var(--npc-t), color var(--npc-t);
}

.dropdown-menu-custom li a i {
    color: var(--npc-red);
    font-size: 12px;
    width: 16px;
}

.dropdown-menu-custom li a:hover {
    background: var(--npc-gray-50);
    color: var(--npc-blue);
}

.view-all-li {
    border-top: 1px solid var(--npc-gray-200);
    margin-top: 4px;
    padding-top: 4px;
}

.view-all-link {
    color: var(--npc-red) !important;
    font-weight: 600;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .78);
    font-size: 13.5px;
    font-weight: 500;
}

.nav-phone-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, .12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--npc-white);
    font-size: 12px;
}

.nav-phone:hover {
    color: var(--npc-white);
}

.btn-header {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--npc-red);
    color: var(--npc-white);
    padding: 9px 20px;
    border-radius: var(--npc-r-sm);
    font-size: 13.5px;
    font-weight: 600;
    white-space: nowrap;
    transition: background var(--npc-t), transform var(--npc-t);
    border: none;
    cursor: pointer;
    font-family: var(--npc-font);
    text-decoration: none;
}

.btn-header:hover {
    background: var(--npc-red-dark);
    color: var(--npc-white);
    transform: translateY(-1px);
}

.btn-header.w-100 {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 7px;
    background: rgba(255, 255, 255, .12);
    border-radius: var(--npc-r-sm);
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

.nav-hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--npc-white);
    border-radius: 2px;
    transition: all var(--npc-t);
}

.nav-hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 2000;
    pointer-events: none;
}

.mobile-drawer.open {
    pointer-events: auto;
}

.drawer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    opacity: 0;
    transition: opacity var(--npc-t);
}

.mobile-drawer.open .drawer-overlay {
    opacity: 1;
}

.drawer-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(340px, 90vw);
    background: var(--npc-white);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform .34s cubic-bezier(.4, 0, .2, 1);
    overflow-y: auto;
}

.mobile-drawer.open .drawer-panel {
    transform: translateX(0);
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background: var(--npc-blue);
    border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.drawer-close {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, .12);
    border-radius: 50%;
    color: var(--npc-white);
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--npc-t);
}

.drawer-close:hover {
    background: var(--npc-red);
}

.drawer-menu {
    padding: 10px;
    flex: 1;
}

.drawer-menu li a,
.drawer-sub-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    color: var(--npc-dark);
    font-size: 14.5px;
    font-weight: 500;
    border-radius: var(--npc-r-sm);
    width: 100%;
    text-align: left;
    transition: background var(--npc-t), color var(--npc-t);
}

.drawer-menu li a:hover,
.drawer-sub-toggle:hover {
    background: var(--npc-gray-100);
    color: var(--npc-blue);
}

.drawer-menu li a i {
    color: var(--npc-red);
    width: 16px;
}

.drawer-sub-toggle {
    justify-content: space-between;
}

.drawer-sub-toggle .fa-angle-down {
    font-size: 11px;
    transition: transform var(--npc-t);
}

.drawer-has-sub.open .drawer-sub-toggle .fa-angle-down {
    transform: rotate(180deg);
}

.drawer-submenu {
    display: none;
    padding: 2px 0 2px 28px;
}

.drawer-has-sub.open .drawer-submenu {
    display: block;
}

.drawer-submenu li a {
    font-size: 13.5px;
    color: var(--npc-gray-500);
    padding: 7px 12px;
}

.drawer-submenu li a:hover {
    color: var(--npc-blue);
}

.drawer-footer {
    padding: 18px 20px;
    border-top: 1px solid var(--npc-gray-200);
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.drawer-contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: var(--npc-gray-500);
}

.drawer-contact-link i {
    color: var(--npc-red);
}

.drawer-contact-link:hover {
    color: var(--npc-blue);
}

/* ============================================================
   HERO / BANNER  — background via CSS, not inline style
   ============================================================ */
.npc-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 0 60px;
    overflow: hidden;
}

.npc-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('../images/banner/banner.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

/* layered overlay: deep blue → accent red tint */
.npc-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(135deg,
            rgba(0, 37, 99, .93) 0%,
            rgba(0, 56, 132, .84) 55%,
            rgba(140, 19, 51, .60) 100%);
}

.npc-hero-container {
    position: relative;
    z-index: 2;
}

/* ── Services Bar ───────────────────────────────────────────── */
.npc-svcbar {
    display: flex;
    align-items: stretch;
    flex-wrap: nowrap;
    background: var(--npc-white);
    border-radius: var(--npc-r-xl);
    box-shadow: 0 6px 32px rgba(0, 0, 0, .18);
    overflow: visible;
    margin-bottom: 48px;
}

.npc-svcbar-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: var(--npc-dark);
    font-size: 13px;
    font-weight: 600;
    padding: 15px 10px;
    white-space: nowrap;
    border-right: 1px solid var(--npc-gray-200);
    transition: color var(--npc-t), background var(--npc-t);
}

.npc-svcbar-item:first-child {
    border-radius: var(--npc-r-xl) 0 0 var(--npc-r-xl);
}

.npc-svcbar-item i {
    color: var(--npc-red);
    font-size: 14px;
}

.npc-svcbar-item:hover {
    color: var(--npc-blue);
    background: var(--npc-gray-50);
}

.npc-svcbar-more {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 14px;
}

.npc-svcbar-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--npc-dark);
    font-size: 13px;
    font-weight: 600;
    background: var(--npc-gray-100);
    padding: 8px 14px;
    border-radius: var(--npc-r-sm);
    white-space: nowrap;
    transition: background var(--npc-t), color var(--npc-t);
}

.npc-svcbar-toggle i {
    font-size: 11px;
}

.npc-svcbar-toggle:hover,
.npc-svcbar-more.open .npc-svcbar-toggle {
    background: var(--npc-blue);
    color: var(--npc-white);
}

.npc-svcbar-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--npc-white);
    border-radius: var(--npc-r);
    min-width: 210px;
    box-shadow: var(--npc-shadow-lg);
    padding: 8px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: all .22s ease;
    z-index: 100;
}

.npc-svcbar-more.open .npc-svcbar-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.npc-svcbar-dropdown li a {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--npc-gray-700);
    padding: 9px 12px;
    border-radius: var(--npc-r-sm);
    font-size: 13.5px;
    transition: background var(--npc-t), color var(--npc-t);
}

.npc-svcbar-dropdown li a i {
    color: var(--npc-red);
    width: 15px;
}

.npc-svcbar-dropdown li a:hover {
    background: var(--npc-gray-50);
    color: var(--npc-blue);
}

/* ── Hero Content ───────────────────────────────────────────── */
/* .npc-hero-row  { gap: 40px 24px; } */
.npc-hero-copy {
    color: var(--npc-white);
}

.npc-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .22);
    color: rgba(255, 255, 255, .88);
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
}

.npc-hero-tag i {
    color: #fbbf24;
}

/* Title: 700 weight — prominent but not overly heavy */
.npc-hero-title {
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 700;
    line-height: 1.22;
    letter-spacing: -1.5px;
    color: var(--npc-white);
    margin-bottom: 18px;
}

/* Gradient accent on the key phrase */
.npc-hero-accent {
    background: linear-gradient(90deg, #f87171, var(--npc-red-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.npc-hero-text {
    font-size: 1.01rem;
    font-weight: 400;
    color: rgba(255, 255, 255, .72);
    max-width: 500px;
    line-height: 1.76;
    margin-bottom: 30px;
}

.npc-hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

/* Stat strip */
.npc-hero-stats {
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, .14);
    padding-top: 26px;
}

.npc-stat {
    padding: 0 24px;
    text-align: center;
}

.npc-stat:first-child {
    padding-left: 0;
}

.npc-stat strong {
    display: block;
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--npc-white);
    line-height: 1;
}

.npc-stat span {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, .52);
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.npc-stat-divider {
    width: 1px;
    height: 38px;
    background: rgba(255, 255, 255, .17);
}

/* Hero Form Card */
.npc-hero-form {
    background: var(--npc-white);
    border-radius: var(--npc-r-lg);
    padding: 32px 28px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, .22);
}

.npc-hero-form-head {
    margin-bottom: 20px;
}

.npc-hero-form-head h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--npc-blue);
    margin-bottom: 4px;
}

.npc-hero-form-head p {
    font-size: 12.5px;
    color: var(--npc-gray-500);
}

.npc-alert-success {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 56, 132, .07);
    border: 1px solid rgba(0, 56, 132, .18);
    color: var(--npc-blue);
    padding: 11px 14px;
    border-radius: var(--npc-r-sm);
    font-size: 13.5px;
    margin-bottom: 16px;
}

/* Fields */
.npc-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
}

.npc-field {
    position: relative;
    display: flex;
    align-items: flex-start;
    background: var(--npc-gray-50);
    border: 1.5px solid var(--npc-gray-200);
    border-radius: var(--npc-r-sm);
    overflow: hidden;
    transition: border-color var(--npc-t);
    margin-bottom: 10px;
}

.npc-field-row .npc-field {
    margin-bottom: 0;
}

.npc-field:focus-within {
    border-color: var(--npc-blue);
    background: var(--npc-white);
}

.npc-field>i {
    position: absolute;
    left: 12px;
    top: 12px;
    color: var(--npc-gray-400);
    font-size: 13px;
    pointer-events: none;
    z-index: 1;
}

.npc-field input,
.npc-field textarea {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    padding: 11px 12px 11px 34px;
    font-size: 13px;
    font-family: var(--npc-font);
    color: var(--npc-dark);
    width: 100%;
}

.npc-field.npc-field-ta>i {
    top: 12px;
}

.npc-field textarea {
    min-height: 70px;
    resize: vertical;
}

.npc-field input::placeholder,
.npc-field textarea::placeholder {
    color: var(--npc-gray-400);
}

/* Checkboxes */
.npc-services-check {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    margin-bottom: 10px;
}

.npc-check-label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    color: var(--npc-gray-700);
    padding: 7px 9px;
    background: var(--npc-gray-50);
    border: 1.5px solid var(--npc-gray-200);
    border-radius: var(--npc-r-sm);
    cursor: pointer;
    transition: border-color var(--npc-t), background var(--npc-t);
    user-select: none;
}

.npc-check-label input[type="checkbox"] {
    display: none;
}

.npc-check-box {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    border: 1.5px solid var(--npc-gray-400);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    color: transparent;
    transition: all var(--npc-t);
}

.npc-check-label:has(input:checked) {
    border-color: var(--npc-red);
    background: rgba(179, 25, 66, .05);
    color: var(--npc-red);
}

.npc-check-label:has(input:checked) .npc-check-box {
    background: var(--npc-red);
    border-color: var(--npc-red);
    color: var(--npc-white);
}

.npc-field-error {
    font-size: 11px;
    color: var(--npc-red);
    display: block;
    margin-top: -6px;
    margin-bottom: 8px;
}

.npc-form-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    background: linear-gradient(135deg, var(--npc-red) 0%, var(--npc-red-dark) 100%);
    color: var(--npc-white);
    padding: 13px 20px;
    border-radius: var(--npc-r-sm);
    font-size: 14px;
    font-weight: 700;
    font-family: var(--npc-font);
    box-shadow: 0 4px 18px rgba(179, 25, 66, .28);
    transition: opacity var(--npc-t), transform var(--npc-t);
}

.npc-form-submit:hover {
    opacity: .88;
    transform: translateY(-1px);
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.npc-services {
    padding: var(--npc-pad);
}

.npc-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
    gap: 22px;
}

.npc-svc-card {
    background: var(--npc-white);
    border-radius: var(--npc-r-lg);
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .07);
    transition: transform var(--npc-t), box-shadow var(--npc-t);
    opacity: 0;
    transform: translateY(20px);
}

.npc-svc-card.revealed {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .5s ease, transform .5s ease;
}

.npc-svc-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--npc-shadow-lg);
}

.npc-svc-img {
    position: relative;
    height: 195px;
    overflow: hidden;
}

.npc-svc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.npc-svc-card:hover .npc-svc-img img {
    transform: scale(1.07);
}

.npc-svc-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 56, 132, .88) 0%, rgba(179, 25, 66, .82) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--npc-t);
}

.npc-svc-card:hover .npc-svc-img-overlay {
    opacity: 1;
}

.npc-svc-img-overlay a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--npc-white);
    color: var(--npc-blue);
    padding: 10px 20px;
    border-radius: var(--npc-r-sm);
    font-size: 13.5px;
    font-weight: 600;
    transition: background var(--npc-t), color var(--npc-t);
}

.npc-svc-img-overlay a:hover {
    background: var(--npc-red);
    color: var(--npc-white);
}

.npc-svc-body {
    padding: 20px;
}

.npc-svc-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--npc-blue), var(--npc-red));
    border-radius: var(--npc-r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--npc-white);
    font-size: 19px;
}

.npc-svc-body h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 7px;
}

.npc-svc-body h3 a {
    color: var(--npc-dark);
    transition: color var(--npc-t);
}

.npc-svc-body h3 a:hover {
    color: var(--npc-blue);
}

.npc-svc-body p {
    font-size: 13px;
    color: var(--npc-gray-500);
    line-height: 1.65;
    margin-bottom: 14px;
}

.npc-svc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--npc-red);
    font-size: 13px;
    font-weight: 600;
    transition: gap var(--npc-t);
}

.npc-svc-link:hover {
    gap: 10px;
    color: var(--npc-red-dark);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.npc-why {
    padding: var(--npc-pad);
    background: var(--npc-white);
}

.npc-why-imgbox {
    position: relative;
    padding-bottom: 20px;
    padding-right: 20px;
}

.npc-why-main-img {
    width: 100%;
    border-radius: var(--npc-r-lg);
    box-shadow: var(--npc-shadow-xl);
}

.npc-why-accent-img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 46%;
    border-radius: var(--npc-r);
    box-shadow: var(--npc-shadow-lg);
    border: 4px solid var(--npc-white);
}

.npc-why-badge {
    position: absolute;
    top: 24px;
    left: -18px;
    background: linear-gradient(135deg, var(--npc-red), var(--npc-red-dark));
    color: var(--npc-white);
    padding: 18px 20px;
    border-radius: var(--npc-r);
    text-align: center;
    box-shadow: var(--npc-shadow-lg);
    min-width: 110px;
}

.npc-why-badge-num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.npc-why-badge-txt {
    font-size: 11.5px;
    font-weight: 500;
    opacity: .85;
    white-space: nowrap;
}

.npc-why-features {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-top: 22px;
}

.npc-why-feat {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 15px;
    border: 1.5px solid var(--npc-gray-200);
    border-radius: var(--npc-r);
    transition: border-color var(--npc-t), box-shadow var(--npc-t);
    opacity: 0;
    transform: translateX(20px);
}

.npc-why-feat.revealed {
    opacity: 1;
    transform: translateX(0);
    transition: opacity .5s ease, transform .5s ease;
}

.npc-why-feat:hover {
    border-color: var(--npc-blue);
    box-shadow: var(--npc-shadow);
}

.npc-why-feat-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(0, 56, 132, .07);
    border-radius: var(--npc-r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--npc-blue);
    font-size: 17px;
}

.npc-why-feat h4 {
    font-size: .95rem;
    color: var(--npc-dark);
    margin-bottom: 3px;
}

.npc-why-feat p {
    font-size: 13px;
    color: var(--npc-gray-500);
    line-height: 1.6;
    margin: 0;
}

/* ============================================================
   PORTFOLIO
   ============================================================ */
.npc-portfolio {
    padding: var(--npc-pad);
}

.npc-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 18px;
}

.npc-port-card {
    border-radius: var(--npc-r-lg);
    overflow: hidden;
    box-shadow: var(--npc-shadow);
    opacity: 0;
    transform: translateY(20px);
}

.npc-port-card.revealed {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .5s ease, transform .5s ease;
}

.npc-port-img {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.npc-port-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.npc-port-card:hover .npc-port-img img {
    transform: scale(1.06);
}

.npc-port-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(0, 37, 99, .96) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity var(--npc-t);
}

.npc-port-card:hover .npc-port-overlay {
    opacity: 1;
}

.npc-port-cat {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--npc-red-light);
    display: block;
    margin-bottom: 5px;
}

.npc-port-overlay h4 {
    font-size: .97rem;
    color: var(--npc-white);
    margin-bottom: 10px;
}

.npc-port-zoom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    background: var(--npc-red);
    color: var(--npc-white);
    border-radius: 50%;
    font-size: 14px;
    box-shadow: var(--npc-shadow);
    transform: scale(0);
    transition: transform var(--npc-t);
}

.npc-port-card:hover .npc-port-zoom {
    transform: scale(1);
}

.npc-port-zoom:hover {
    background: var(--npc-blue);
    color: var(--npc-white);
}

/* ============================================================
   PROCESS
   ============================================================ */
.npc-process {
    padding: var(--npc-pad);
}

.npc-process-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.npc-process-step {
    flex: 1;
    min-width: 170px;
    max-width: 220px;
    background: var(--npc-white);
    border-radius: var(--npc-r-lg);
    box-shadow: 0 2px 16px rgba(0, 0, 0, .07);
    padding: 30px 18px;
    text-align: center;
    position: relative;
    transition: transform var(--npc-t), box-shadow var(--npc-t);
    opacity: 0;
    transform: translateY(18px);
}

.npc-process-step.revealed {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .5s ease, transform .5s ease;
}

.npc-process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--npc-shadow-lg);
}

.npc-process-num {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--npc-blue), var(--npc-red));
    color: var(--npc-white);
    font-size: 11.5px;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 50px;
}

.npc-process-icon {
    width: 56px;
    height: 56px;
    margin: 10px auto 14px;
    background: linear-gradient(135deg, rgba(0, 56, 132, .10), rgba(179, 25, 66, .10));
    border-radius: var(--npc-r);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--npc-blue);
    font-size: 22px;
}

.npc-process-step h4 {
    font-size: .97rem;
    color: var(--npc-dark);
    margin-bottom: 7px;
}

.npc-process-step p {
    font-size: 12.5px;
    color: var(--npc-gray-500);
    line-height: 1.62;
    margin: 0;
}

.npc-process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--npc-gray-400);
    font-size: 17px;
    padding: 0 6px;
    margin-top: 52px;
    flex-shrink: 0;
}

/* ============================================================
   CTA SECTION — background via CSS, not inline style
   ============================================================ */
.npc-cta {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.npc-cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('../images/banner/banner-2.jpg');
    background-size: cover;
    background-position: center;
}

.npc-cta-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg,
            rgba(0, 37, 99, .94) 0%,
            rgba(0, 56, 132, .88) 55%,
            rgba(140, 19, 51, .80) 100%);
}

.npc-cta .container {
    position: relative;
    z-index: 2;
}

.npc-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--npc-r-xl);
    padding: 48px 52px;
}

.npc-cta-left {
    flex: 1;
}

.npc-cta-left h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--npc-white);
    line-height: 1.22;
    margin-bottom: 12px;
}

.npc-cta-left h2 span {
    color: var(--npc-red-light);
}

.npc-cta-left p {
    color: rgba(255, 255, 255, .70);
    font-size: 1rem;
    margin-bottom: 20px;
    max-width: 440px;
}

.npc-cta-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.npc-cta-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, .80);
    font-size: 13.5px;
}

.npc-cta-list li i {
    color: var(--npc-red-light);
    font-size: 13px;
}

.npc-cta-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    flex-shrink: 0;
}

.npc-cta-btn-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--npc-white);
    color: var(--npc-blue);
    padding: 15px 30px;
    border-radius: var(--npc-r-sm);
    font-weight: 700;
    font-size: 15px;
    white-space: nowrap;
    transition: all var(--npc-t);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .22);
}

.npc-cta-btn-main:hover {
    background: var(--npc-red);
    color: var(--npc-white);
    transform: translateY(-2px);
}

.npc-cta-btn-sec {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: rgba(255, 255, 255, .82);
    padding: 13px 26px;
    border-radius: var(--npc-r-sm);
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    border: 1.5px solid rgba(255, 255, 255, .30);
    transition: all var(--npc-t);
}

.npc-cta-btn-sec:hover {
    border-color: var(--npc-white);
    color: var(--npc-white);
    background: rgba(255, 255, 255, .08);
}

.npc-cta-note {
    font-size: 11.5px;
    color: rgba(255, 255, 255, .40);
    margin: 0;
}

/* ============================================================
   BRANDS
   ============================================================ */
.npc-brands {
    padding: var(--npc-pad);
}

.npc-brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
    align-items: center;
}

.npc-brand-item {
    padding: 20px 14px;
    background: var(--npc-gray-50);
    border: 1.5px solid var(--npc-gray-200);
    border-radius: var(--npc-r);
    display: flex;
    align-items: center;
    justify-content: center;
    /* transition: all var(--npc-t);
    filter: grayscale(100%); opacity: .55; */
}

.npc-brand-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    box-shadow: var(--npc-shadow);
    transform: translateY(-4px);
    border-color: var(--npc-blue);
}

.npc-brand-item img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

/* ============================================================
   STATS
   ============================================================ */
.npc-stats {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--npc-blue-dark) 0%, var(--npc-blue) 100%);
}

.npc-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.npc-stat-box {
    text-align: center;
    padding: 30px 20px;
    border-right: 1px solid rgba(255, 255, 255, .12);
    opacity: 0;
    transform: translateY(18px);
}

.npc-stat-box.revealed {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .5s ease, transform .5s ease;
}

.npc-stat-box:last-child {
    border-right: none;
}

.npc-stat-box>i {
    font-size: 26px;
    color: var(--npc-red-light);
    margin-bottom: 10px;
}

.npc-stat-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--npc-white);
    line-height: 1;
    margin-bottom: 7px;
}

.npc-stat-lbl {
    font-size: 12px;
    color: rgba(255, 255, 255, .55);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.npc-testimonials {
    padding: var(--npc-pad);
}

.npc-testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}

.npc-testi-card {
    background: var(--npc-white);
    border-radius: var(--npc-r-lg);
    padding: 28px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .07);
    transition: transform var(--npc-t), box-shadow var(--npc-t);
    opacity: 0;
    transform: translateY(18px);
}

.npc-testi-card.revealed {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .5s ease, transform .5s ease;
}

.npc-testi-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--npc-shadow-lg);
}

.npc-testi-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 12px;
}

.npc-testi-stars i {
    color: #f59e0b;
    font-size: 13px;
}

.npc-testi-card p {
    font-size: 14px;
    color: var(--npc-gray-500);
    line-height: 1.77;
    margin-bottom: 18px;
    font-style: italic;
}

.npc-testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.npc-testi-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--npc-gray-200);
}

.npc-testi-author strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--npc-dark);
}

.npc-testi-author span {
    font-size: 12px;
    color: var(--npc-red);
    font-weight: 500;
}

/* ============================================================
   POPUP
   ============================================================ */
.npc-overlay {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(0, 0, 0, .65);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .32s ease;
}

.npc-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.npc-popup {
    position: fixed;
    inset: 0;
    z-index: 9001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    pointer-events: none;
    opacity: 0;
    transform: scale(.94) translateY(16px);
    transition: opacity .32s ease, transform .32s ease;
}

.npc-popup.open {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: auto;
}

.npc-popup-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 10;
    width: 34px;
    height: 34px;
    background: var(--npc-gray-100);
    border-radius: 50%;
    color: var(--npc-gray-500);
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--npc-t), color var(--npc-t);
}

.npc-popup-close:hover {
    background: var(--npc-red);
    color: var(--npc-white);
}

.npc-popup-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--npc-white);
    border-radius: var(--npc-r-xl);
    overflow: hidden;
    max-width: 780px;
    width: 100%;
    max-height: 92vh;
    overflow-y: auto;
    box-shadow: var(--npc-shadow-xl);
    position: relative;
}

.npc-popup-left {
    background: linear-gradient(160deg, var(--npc-blue-dark) 0%, var(--npc-blue) 100%);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.npc-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .14);
    color: rgba(255, 255, 255, .85);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.npc-popup-left h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--npc-white);
    line-height: 1.25;
    margin-bottom: 10px;
}

.npc-popup-left h3 span {
    color: var(--npc-red-light);
}

.npc-popup-left p {
    font-size: 13px;
    color: rgba(255, 255, 255, .65);
    line-height: 1.7;
    margin-bottom: 20px;
}

.npc-popup-perks {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.npc-popup-perks li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    color: rgba(255, 255, 255, .80);
}

.npc-popup-perks li i {
    color: var(--npc-red-light);
    font-size: 13px;
}

.npc-popup-right {
    padding: 40px 30px;
}

.npc-popup-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.npc-popup-form label {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--npc-gray-700);
}

.npc-popup-form input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--npc-gray-200);
    border-radius: var(--npc-r-sm);
    font-size: 13.5px;
    font-family: var(--npc-font);
    color: var(--npc-dark);
    outline: none;
    background: var(--npc-gray-50);
    transition: border-color var(--npc-t), background var(--npc-t);
}

.npc-popup-form input:focus {
    border-color: var(--npc-blue);
    background: var(--npc-white);
}

.npc-popup-form input::placeholder {
    color: var(--npc-gray-400);
}

.npc-popup-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--npc-red), var(--npc-red-dark));
    color: var(--npc-white);
    padding: 13px 20px;
    border-radius: var(--npc-r-sm);
    font-size: 14px;
    font-weight: 700;
    font-family: var(--npc-font);
    box-shadow: 0 4px 16px rgba(179, 25, 66, .28);
    transition: opacity var(--npc-t), transform var(--npc-t);
}

.npc-popup-submit:hover {
    opacity: .88;
    transform: translateY(-1px);
}

.npc-popup-note {
    font-size: 11px;
    color: var(--npc-gray-400);
    text-align: center;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* ============================================================
   FOOTER
   ============================================================ */
/* ============================================================
   FOOTER — Light Mode Redesign
   ============================================================ */
.site-footer {
    background: #ffffff;
    border-top: 1px solid #e8ecf0;
}

.footer-wave {
    display: none;
}

.footer-main {
    padding: 72px 0 52px;
}

/* ── Brand column ── */
.footer-brand .footer-logo {
    display: inline-block;
    margin-bottom: 16px;
}

.footer-logo img {
    height: 44px;
    width: auto;
}

.footer-desc {
    font-size: 13.5px;
    color: #6b7280;
    line-height: 1.78;
    margin-bottom: 22px;
    max-width: 295px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 22px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #4b5563;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: color var(--npc-t);
}

.footer-contact-item:hover {
    color: var(--npc-red);
}

.fci-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: rgba(179, 25, 66, .09);
    border: 1px solid rgba(179, 25, 66, .15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--npc-red);
    font-size: 12px;
    transition: background var(--npc-t), color var(--npc-t), transform var(--npc-t);
}

.footer-contact-item:hover .fci-icon {
    background: var(--npc-red);
    color: #fff;
    transform: scale(1.08);
}

/* ── Social icons ── */
.footer-social {
    display: flex;
    gap: 8px;
}

.fsocial-link {
    width: 36px;
    height: 36px;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 13px;
    transition: all var(--npc-t);
}

.fsocial-link:hover {
    background: var(--npc-red);
    border-color: var(--npc-red);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(179, 25, 66, .25);
}

/* ── Widget titles ── */
.fw-title {
    font-size: 13px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.fw-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2.5px;
    background: var(--npc-red);
    border-radius: 2px;
}

/* ── Links list ── */
.fw-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.fw-list li a {
    font-size: 13px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: color var(--npc-t), gap var(--npc-t);
}

.fw-list li a::before {
    content: '›';
    color: var(--npc-red);
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
}

.fw-list li a:hover {
    color: var(--npc-red);
    gap: 11px;
}

/* ── Newsletter ── */
.fw-text {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 16px;
    line-height: 1.75;
}

.footer-newsletter {
    margin-bottom: 20px;
}

.fn-group {
    display: flex;
    background: #f9fafb;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    transition: border-color var(--npc-t), box-shadow var(--npc-t);
}

.fn-group:focus-within {
    border-color: var(--npc-red);
    box-shadow: 0 0 0 3px rgba(179, 25, 66, .10);
}

.fn-group input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 11px 14px;
    color: #111827;
    font-size: 13.5px;
    font-family: var(--npc-font);
    outline: none;
}

.fn-group input::placeholder {
    color: #9ca3af;
}

.fn-group button {
    background: var(--npc-red);
    color: #fff;
    padding: 0 18px;
    font-size: 14px;
    flex-shrink: 0;
    transition: background var(--npc-t);
    border-radius: 0 8px 8px 0;
}

.fn-group button:hover {
    background: var(--npc-red-dark);
}

/* ── Trust badges ── */
.footer-badge-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 5px 11px;
    font-size: 11.5px;
    font-weight: 600;
    color: #4b5563;
}

.footer-badge i {
    color: var(--npc-red);
    font-size: 11px;
}

/* ── Footer bottom bar ── */
.footer-bottom {
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    padding: 16px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.fb-copy {
    font-size: 12.5px;
    color: #9ca3af;
    margin: 0;
    font-weight: 400;
}

.fb-links {
    display: flex;
    gap: 20px;
}

.fb-links a {
    font-size: 12.5px;
    color: #9ca3af;
    font-weight: 500;
    transition: color var(--npc-t);
}

.fb-links a:hover {
    color: var(--npc-red);
}

/* ============================================================
   FLOATING ACTION BUTTONS
   ============================================================ */
.floating-btns {
    position: fixed;
    bottom: 40%;
    right: 18px;
    z-index: 500;
    display: flex;
    flex-direction: column;
    gap: 9px;
    align-items: flex-end;
}

.fab-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    color: var(--npc-white);
    font-size: 18px;
    box-shadow: var(--npc-shadow-lg);
    overflow: hidden;
    white-space: nowrap;
    transition: width var(--npc-t), border-radius var(--npc-t), gap var(--npc-t), transform var(--npc-t), padding var(--npc-t);
}

.fab-label {
    max-width: 0;
    overflow: hidden;
    opacity: 0;
    font-size: 12.5px;
    font-weight: 600;
    transition: max-width .3s ease, opacity .3s ease;
}

.fab-btn:hover {
    width: auto;
    border-radius: 50px;
    gap: 8px;
    padding: 0 16px 0 12px;
    transform: translateY(-2px);
}

.fab-btn:hover .fab-label {
    max-width: 120px;
    opacity: 1;
}

.fab-whatsapp {
    background: #25d366;
}

.fab-whatsapp:hover {
    background: #1aaf55;
    color: var(--npc-white);
}

.fab-email {
    background: var(--npc-blue);
}

.fab-email:hover {
    background: var(--npc-blue-dark);
    color: var(--npc-white);
}

.fab-chat {
    background: var(--npc-red);
}

.fab-chat:hover {
    background: var(--npc-red-dark);
    color: var(--npc-white);
}

.fab-livechat {
    background: #25d366;
    border: none;
    cursor: pointer;
    color: #fff;
}

.fab-livechat:hover {
    background: #1aaf55;
    color: #fff;
}

/* Live Chat button in hero sections */
.npc-livechat-btn {
    cursor: pointer;
    border: none;
    background: transparent;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ============================================================
   TAWK.TO LIVE CHAT BAR (separate floating bar)
   ============================================================ */
.npc-tawk-bar {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9998;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #1a3c6e;
    color: #fff;
    padding: 10px 28px;
    border-radius: 12px 12px 0 0;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 -4px 20px rgba(0,0,0,.18);
    transition: background .25s, padding .25s;
    white-space: nowrap;
    user-select: none;
}

.npc-tawk-bar:hover {
    background: #003884;
    padding-bottom: 14px;
}

.npc-tawk-bar i {
    font-size: 17px;
}

.npc-tawk-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #25d366;
    display: inline-block;
    box-shadow: 0 0 0 2px rgba(37,211,102,.3);
    animation: npc-dot-pulse 1.8s infinite;
    flex-shrink: 0;
}

@keyframes npc-dot-pulse {
    0%,100% { box-shadow: 0 0 0 2px rgba(37,211,102,.3); }
    50%      { box-shadow: 0 0 0 5px rgba(37,211,102,.1); }
}

.npc-tawk-status {
    font-size: 11px;
    font-weight: 400;
    opacity: .75;
    margin-left: 2px;
}

@media (max-width: 575px) {
    .npc-tawk-bar {
        left: 0;
        right: 0;
        transform: none;
        border-radius: 0;
        justify-content: center;
        padding: 11px 20px;
    }
}

/* ============================================================
   FLOATING SOCIAL SIDEBAR (left side)
   ============================================================ */
.floating-social-sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 500;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.fsb-btn {
    display: flex;
    align-items: center;
    gap: 0;
    height: 46px;
    padding: 0 14px;
    color: var(--npc-white);
    font-size: 17px;
    overflow: hidden;
    white-space: nowrap;
    transition: padding var(--npc-t), gap var(--npc-t), transform var(--npc-t);
    text-decoration: none;
}

.fsb-label {
    max-width: 0;
    overflow: hidden;
    opacity: 0;
    font-size: 12.5px;
    font-weight: 600;
    transition: max-width .3s ease, opacity .3s ease;
}

.fsb-btn:hover {
    gap: 8px;
    padding: 0 16px;
    transform: translateX(4px);
    color: var(--npc-white);
}

.fsb-btn:hover .fsb-label {
    max-width: 100px;
    opacity: 1;
}

.fsb-facebook {
    background: #1877f2;
    border-radius: 0 6px 0 0;
}

.fsb-facebook:hover {
    background: #166fe5;
}

.fsb-instagram {
    background: #e1306c;
    border-radius: 0 0 6px 0;
}

.fsb-instagram:hover {
    background: #c62a63;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1199px) {
    .nav-link {
        padding: 7px 10px;
        font-size: 13.5px;
    }

    .npc-svcbar-item {
        font-size: 12.5px;
        padding: 14px 8px;
    }
}

@media (max-width: 991px) {
    :root {
        --npc-pad: 68px 0;
    }

    .header-topbar {
        display: none;
    }

    .nav-menu {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-phone {
        display: none !important;
    }

    .npc-hero {
        padding: 60px 0 48px;
        min-height: auto;
    }

    .npc-svcbar {
        border-radius: var(--npc-r-lg);
        overflow: hidden;
    }

    .npc-svcbar-item {
        border-right: none;
        border-bottom: 1px solid var(--npc-gray-200);
        flex: auto;
        justify-content: flex-start;
        padding: 12px 16px;
    }

    .npc-hero-title {
        font-size: clamp(1.8rem, 5vw, 2.6rem);
    }

    .npc-stat {
        padding: 0 14px;
    }

    .npc-why-badge {
        left: 8px;
    }

    .npc-why-accent-img {
        width: 42%;
    }

    .npc-cta-inner {
        flex-direction: column;
        padding: 36px 28px;
    }

    .npc-cta-right {
        width: 100%;
    }

    .npc-cta-btn-main,
    .npc-cta-btn-sec {
        width: 100%;
        justify-content: center;
    }

    .npc-process-arrow {
        display: none;
    }

    .npc-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .npc-stat-box {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .10);
    }

    .npc-stat-box:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, .10);
    }
}

@media (max-width: 767px) {
    :root {
        --npc-pad: 54px 0;
    }

    .npc-hero {
        padding: 48px 0 38px;
    }

    .npc-hero-form {
        padding: 22px 16px;
    }

    .npc-field-row {
        grid-template-columns: 1fr;
    }

    .npc-services-check {
        grid-template-columns: 1fr;
    }

    .npc-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .npc-btn-primary,
    .npc-btn-outline {
        width: 100%;
        justify-content: center;
    }

    .npc-stat {
        padding: 0 10px;
    }

    .npc-services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .npc-portfolio-grid {
        grid-template-columns: 1fr 1fr;
    }

    .npc-why-imgbox {
        padding: 0;
    }

    .npc-why-badge {
        position: static;
        display: inline-flex;
        margin-top: 12px;
    }

    .npc-why-accent-img {
        display: none;
    }

    .npc-popup-body {
        grid-template-columns: 1fr;
    }

    .npc-popup-left {
        display: none;
    }

    .npc-popup-right {
        padding: 32px 22px;
    }

    .npc-brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .npc-cta-inner {
        padding: 28px 18px;
    }

    .footer-main {
        padding: 44px 0 36px;
    }
}

@media (max-width: 480px) {
    .npc-services-grid {
        grid-template-columns: 1fr;
    }

    .npc-portfolio-grid {
        grid-template-columns: 1fr;
    }

    .npc-brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .npc-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .npc-svcbar {
        flex-wrap: wrap;
    }

    .npc-svcbar-item {
        font-size: 12px;
    }

    .npc-cta-inner {
        padding: 24px 16px;
    }
}

/* ============================================================
   TRUST STRIP  (below hero)
   ============================================================ */
.npc-trust-strip {
    background: var(--npc-white);
    border-top: 1px solid var(--npc-gray-200);
    border-bottom: 1px solid var(--npc-gray-200);
    padding: 18px 0;
}

.npc-trust-items {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.npc-trust-item {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 10px 28px;
    flex: 1;
    min-width: 180px;
}

.npc-trust-item>i {
    font-size: 22px;
    color: var(--npc-blue);
    flex-shrink: 0;
}

.nti-label {
    display: block;
    font-size: 10.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--npc-gray-400);
    margin-bottom: 2px;
}

.nti-value {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--npc-dark);
}

a.nti-value {
    color: var(--npc-blue);
    transition: color var(--npc-t);
}

a.nti-value:hover {
    color: var(--npc-red);
}

.npc-trust-sep {
    width: 1px;
    height: 44px;
    background: var(--npc-gray-200);
    flex-shrink: 0;
}

/* ============================================================
   AUTHOR CONSULTATION BANNER
   ============================================================ */
.npc-consult-banner {
    position: relative;
    background: linear-gradient(135deg, #0e0e1a 0%, #181828 55%, #0a1a38 100%);
    border-top: 3px solid var(--npc-red);
    border-bottom: 3px solid var(--npc-red);
    padding: 36px 0;
    overflow: hidden;
}

.npc-consult-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 200px;
    background: radial-gradient(ellipse, rgba(179,25,66,.18) 0%, transparent 70%);
    pointer-events: none;
}

.npc-consult-inner {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.npc-consult-icon-wrap {
    flex-shrink: 0;
    width: 68px;
    height: 68px;
    background: var(--npc-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--npc-white);
    box-shadow: 0 0 0 6px rgba(179,25,66,.18);
}

.npc-consult-body {
    flex: 1;
    min-width: 240px;
}

.npc-consult-heading {
    font-size: clamp(1.15rem, 2.2vw, 1.65rem);
    font-weight: 700;
    color: var(--npc-white);
    line-height: 1.35;
    margin: 0 0 6px;
    font-family: var(--npc-font);
}

.npc-consult-heading span {
    color: var(--npc-red-light);
}

.npc-consult-sub {
    font-size: 0.95rem;
    color: rgba(255,255,255,.65);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--npc-font);
}

.npc-consult-sub i {
    color: var(--npc-red-light);
    font-size: 13px;
}

.npc-consult-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.npc-consult-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--npc-red);
    color: var(--npc-white);
    padding: 12px 26px;
    border-radius: var(--npc-r-sm);
    font-weight: 600;
    font-size: 0.92rem;
    font-family: var(--npc-font);
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}

.npc-consult-btn:hover {
    background: var(--npc-red-dark);
    color: var(--npc-white);
    transform: translateY(-1px);
}

.npc-consult-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--npc-white);
    padding: 11px 22px;
    border-radius: var(--npc-r-sm);
    border: 1.5px solid rgba(255,255,255,.3);
    font-weight: 600;
    font-size: 0.92rem;
    font-family: var(--npc-font);
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
    white-space: nowrap;
}

.npc-consult-btn-outline:hover {
    border-color: var(--npc-red-light);
    color: var(--npc-red-light);
}

@media (max-width: 768px) {
    .npc-consult-inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .npc-consult-sub {
        justify-content: center;
    }

    .npc-consult-actions {
        justify-content: center;
    }
}

/* ============================================================
   PORTFOLIO EXTRAS  (result text + note)
   ============================================================ */
.npc-port-result {
    font-size: 11.5px;
    color: rgba(255, 255, 255, .80);
    margin: 0;
    line-height: 1.55;
}

.npc-port-note {
    font-size: 13px;
    color: var(--npc-gray-500);
    background: var(--npc-gray-50);
    border: 1px solid var(--npc-gray-200);
    border-radius: var(--npc-r-sm);
    padding: 12px 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.npc-port-note i {
    color: var(--npc-blue);
}

.npc-port-note a {
    color: var(--npc-blue);
    font-weight: 600;
    transition: color var(--npc-t);
}

.npc-port-note a:hover {
    color: var(--npc-red);
}

.mt-40 {
    margin-top: 40px;
}

/* ============================================================
   MEET THE TEAM
   ============================================================ */
.npc-team {
    padding: var(--npc-pad);
}

.npc-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 30px;
}

.npc-team-card {
    background: var(--npc-white);
    border-radius: var(--npc-r-lg);
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .07);
    transition: transform var(--npc-t), box-shadow var(--npc-t);
    opacity: 0;
    transform: translateY(20px);
}

.npc-team-card.revealed {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .5s ease, transform .5s ease;
}

.npc-team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--npc-shadow-lg);
}

.npc-team-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.npc-team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform .5s ease;
}

.npc-team-card:hover .npc-team-img img {
    transform: scale(1.06);
}

.npc-team-body {
    padding: 20px 22px 22px;
}

.npc-team-body h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--npc-dark);
    margin-bottom: 4px;
}

.npc-team-role {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--npc-red);
    margin-bottom: 10px;
}

.npc-team-body p {
    font-size: 13px;
    color: var(--npc-gray-500);
    line-height: 1.66;
    margin-bottom: 14px;
}

.npc-team-social {
    display: flex;
    gap: 7px;
}

.npc-team-social a {
    width: 32px;
    height: 32px;
    background: var(--npc-gray-100);
    border-radius: var(--npc-r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--npc-gray-500);
    font-size: 12.5px;
    transition: background var(--npc-t), color var(--npc-t);
}

.npc-team-social a:hover {
    background: var(--npc-blue);
    color: var(--npc-white);
}

/* ============================================================
   PROCESS TIMELINE  (week-by-week)
   ============================================================ */
.npc-timeline {
    padding: var(--npc-pad);
    background: var(--npc-white);
}

.npc-timeline-track {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
    padding-left: 48px;
}

/* vertical connector line */
.npc-timeline-track::before {
    content: '';
    position: absolute;
    top: 0;
    left: 19px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--npc-blue) 0%, var(--npc-red) 100%);
}

.npc-tl-item {
    position: relative;
    display: flex;
    gap: 22px;
    margin-bottom: 42px;
    opacity: 0;
    transform: translateX(-20px);
}

.npc-tl-item.revealed {
    opacity: 1;
    transform: translateX(0);
    transition: opacity .5s ease, transform .5s ease;
}

.npc-tl-item:last-child {
    margin-bottom: 0;
}

.npc-tl-marker {
    position: absolute;
    left: -48px;
    top: 0;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--npc-blue), var(--npc-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--npc-white);
    font-size: 15px;
    box-shadow: 0 4px 16px rgba(0, 56, 132, .28);
    z-index: 1;
}

.npc-tl-content {
    background: var(--npc-gray-50);
    border: 1px solid var(--npc-gray-200);
    border-radius: var(--npc-r);
    padding: 20px 24px;
    flex: 1;
    transition: border-color var(--npc-t), box-shadow var(--npc-t);
}

.npc-tl-item:hover .npc-tl-content {
    border-color: var(--npc-blue);
    box-shadow: var(--npc-shadow);
}

.npc-tl-week {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--npc-red);
    margin-bottom: 6px;
}

.npc-tl-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--npc-dark);
    margin-bottom: 6px;
}

.npc-tl-content p {
    font-size: 13.5px;
    color: var(--npc-gray-500);
    line-height: 1.68;
    margin: 0;
}

.npc-timeline-note {
    max-width: 820px;
    margin: 36px auto 0;
    background: rgba(0, 56, 132, .05);
    border: 1px solid rgba(0, 56, 132, .14);
    border-radius: var(--npc-r);
    padding: 14px 22px;
    font-size: 13px;
    color: var(--npc-gray-500);
    display: flex;
    align-items: center;
    gap: 9px;
    flex-wrap: wrap;
}

.npc-timeline-note i {
    color: var(--npc-blue);
    font-size: 14px;
    flex-shrink: 0;
}

.npc-timeline-note a {
    color: var(--npc-blue);
    font-weight: 600;
    transition: color var(--npc-t);
}

.npc-timeline-note a:hover {
    color: var(--npc-red);
}

/* ============================================================
   GUARANTEE SECTION
   ============================================================ */
/* ============================================================
   GUARANTEE SECTION  (.npc-guarantee-section / .npc-grs-*)
   Full redesign — hero card left + 2×2 grid right
   ============================================================ */

.npc-guarantee-section {
    position: relative;
    background: #f4f7fc;
    padding: 96px 0 80px;
    overflow: hidden;
}

.npc-grs-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}
.npc-grs-blob-1 {
    width: 460px; height: 460px;
    background: rgba(0,56,132,.07);
    top: -120px; left: -80px;
}
.npc-grs-blob-2 {
    width: 360px; height: 360px;
    background: rgba(179,25,66,.06);
    bottom: -60px; right: -60px;
}

/* ── Header ─────────────────────────────────────────────────── */
.npc-grs-header {
    text-align: center;
    margin-bottom: 56px;
    position: relative;
    z-index: 1;
}
.npc-grs-kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(0,56,132,.08);
    border: 1px solid rgba(0,56,132,.18);
    color: var(--npc-blue);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 18px;
}
.npc-grs-title {
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    color: var(--npc-dark);
    line-height: 1.15;
    margin-bottom: 14px;
    letter-spacing: -.02em;
}
.npc-grs-accent { color: var(--npc-blue); }
.npc-grs-sub {
    font-size: 1rem;
    color: var(--npc-gray-500);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ── Layout: hero + 2×2 ─────────────────────────────────────── */
.npc-grs-layout {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 24px;
    align-items: stretch;
    position: relative;
    z-index: 1;
    margin-bottom: 28px;
}

/* ── Hero card ──────────────────────────────────────────────── */
.npc-grs-hero {
    background: linear-gradient(155deg, #002563 0%, #003884 55%, #0045a8 100%);
    border-radius: 24px;
    padding: 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,56,132,.35);
    transition: transform .3s, box-shadow .3s;
}
.npc-grs-hero:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 70px rgba(0,56,132,.42);
}
.npc-grs-hero-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,.1) 0%, transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(179,25,66,.18) 0%, transparent 55%);
    pointer-events: none;
}
.npc-grs-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}
.npc-grs-hero-inner {
    position: relative;
    z-index: 1;
    padding: 44px 40px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.npc-grs-icon-hero {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 24px;
    flex-shrink: 0;
}
.npc-grs-hero-inner h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.25;
}
.npc-grs-hero-inner p {
    font-size: .9rem;
    color: rgba(255,255,255,.68);
    line-height: 1.75;
    flex-grow: 1;
    margin-bottom: 28px;
}
.npc-grs-hero-stat {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 14px;
    padding: 18px 22px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.npc-grs-hero-stat strong {
    font-size: 2.4rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    flex-shrink: 0;
}
.npc-grs-hero-stat span {
    font-size: .82rem;
    color: rgba(255,255,255,.6);
    line-height: 1.45;
}
.npc-grs-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.24);
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 50px;
    letter-spacing: .05em;
    width: fit-content;
}
.npc-grs-hero-badge i { color: #7effc0; font-size: .8rem; }

/* ── 2×2 card grid ──────────────────────────────────────────── */
.npc-grs-four {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.npc-grs-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px 26px 26px;
    box-shadow: 0 4px 24px rgba(0,0,0,.07);
    border: 1px solid rgba(0,0,0,.05);
    transition: transform .28s, box-shadow .28s, border-color .28s;
    position: relative;
    overflow: hidden;
}
.npc-grs-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--npc-blue) 0%, var(--npc-blue-mid) 100%);
    opacity: 0;
    transition: opacity .28s;
}
.npc-grs-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0,56,132,.13);
    border-color: rgba(0,56,132,.12);
}
.npc-grs-card:hover::before { opacity: 1; }

.npc-grs-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.npc-grs-card-tag {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--npc-blue);
    background: rgba(0,56,132,.07);
    border: 1px solid rgba(0,56,132,.14);
    padding: 3px 10px;
    border-radius: 50px;
}
.npc-grs-card h4 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--npc-dark);
    margin-bottom: 9px;
    line-height: 1.3;
}
.npc-grs-card p {
    font-size: .82rem;
    color: var(--npc-gray-500);
    line-height: 1.7;
    margin: 0;
}

/* shared icon */
.npc-grs-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0,56,132,.08);
    border: 1px solid rgba(0,56,132,.14);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--npc-blue);
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: background .28s, color .28s, border-color .28s;
}
.npc-grs-card:hover .npc-grs-icon {
    background: var(--npc-blue);
    color: #fff;
    border-color: var(--npc-blue);
}

/* ── Trust strip ────────────────────────────────────────────── */
.npc-grs-trust-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    background: #fff;
    border: 1px solid rgba(0,0,0,.07);
    border-radius: 16px;
    padding: 20px 32px;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(0,0,0,.05);
}
.npc-grs-ts-item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 28px;
    flex: 1 1 160px;
    justify-content: center;
}
.npc-grs-ts-item i { color: var(--npc-blue); font-size: 1.05rem; flex-shrink: 0; }
.npc-grs-ts-item span { font-size: .82rem; font-weight: 600; color: var(--npc-gray-700); white-space: nowrap; }
.npc-grs-ts-sep { width: 1px; height: 28px; background: rgba(0,0,0,.1); flex-shrink: 0; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .npc-grs-layout { grid-template-columns: 1fr 1.5fr; gap: 20px; }
    .npc-grs-hero-inner { padding: 36px 30px; }
}
@media (max-width: 840px) {
    .npc-grs-layout { grid-template-columns: 1fr; }
    .npc-grs-hero-inner { padding: 36px 28px; }
    .npc-guarantee-section { padding: 72px 0 60px; }
}
@media (max-width: 600px) {
    .npc-grs-four { grid-template-columns: 1fr; }
    .npc-grs-trust-strip { padding: 16px 20px; }
    .npc-grs-ts-sep { width: 60px; height: 1px; }
    .npc-grs-ts-item { padding: 8px 0; }
    .npc-grs-title { font-size: 1.8rem; }
}

/* ============================================================
   CTA EXTRAS  (WhatsApp button)
   ============================================================ */
.npc-cta-btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: var(--npc-white);
    padding: 13px 26px;
    border-radius: var(--npc-r-sm);
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    transition: all var(--npc-t);
}

.npc-cta-btn-wa:hover {
    background: #1aaf55;
    color: var(--npc-white);
    transform: translateY(-2px);
}

/* ============================================================
   TRUSTPILOT SECTION
   ============================================================ */
.npc-trustpilot {
    padding: var(--npc-pad);
}

.npc-tp-widget-wrap {
    max-width: 700px;
    margin: 0 auto 52px;
    background: var(--npc-gray-50);
    border: 1px solid var(--npc-gray-200);
    border-radius: var(--npc-r-lg);
    padding: 20px 24px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.npc-testi-grid-tp {
    margin-bottom: 44px;
}

.npc-testi-source {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--npc-gray-200);
    font-size: 11.5px;
    font-weight: 700;
    color: #00B67A;
    /* Trustpilot green */
}

.npc-testi-source i {
    font-size: 12px;
}

/* Trust Badges Row */
.npc-trust-badges-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    background: var(--npc-gray-50);
    border: 1px solid var(--npc-gray-200);
    border-radius: var(--npc-r-lg);
    padding: 22px 28px;
}

.npc-trust-badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    opacity: 0;
    transform: translateY(10px);
}

.npc-trust-badge-item.revealed {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .5s ease, transform .5s ease;
}

.npc-trust-badge-item>i {
    font-size: 24px;
    color: var(--npc-blue);
    flex-shrink: 0;
}

.npc-trust-badge-item>div strong {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--npc-dark);
}

.npc-trust-badge-item>div span,
.npc-trust-badge-item>div a {
    font-size: 12px;
    color: var(--npc-gray-500);
}

.npc-trust-badge-item>div a {
    transition: color var(--npc-t);
}

.npc-trust-badge-item>div a:hover {
    color: var(--npc-blue);
}

/* ============================================================
   POPUP EXTRAS  (trust note below form)
   ============================================================ */
.npc-popup-trust {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 16px;
    font-size: 12px;
    color: rgba(255, 255, 255, .60);
}

.npc-popup-trust i {
    font-size: 13px;
    color: rgba(255, 255, 255, .50);
}

/* ============================================================
   RESPONSIVE — new sections
   ============================================================ */
@media (max-width: 1199px) {
    .npc-guarantee-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .npc-guarantee-hero {
        grid-column: 1;
        grid-row: 1;
    }
}

@media (max-width: 991px) {
    .npc-trust-strip .npc-trust-item {
        padding: 8px 16px;
    }

    .npc-trust-sep {
        height: 32px;
    }

    .npc-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .npc-timeline-track {
        padding-left: 38px;
    }

    .npc-timeline-track::before {
        left: 15px;
    }

    .npc-tl-marker {
        left: -38px;
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    .npc-guarantee-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .npc-guarantee-hero {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .npc-trust-badges-row {
        padding: 16px 16px;
        gap: 6px;
    }

    .npc-trust-badge-item {
        padding: 8px 10px;
    }
}

@media (max-width: 767px) {
    .npc-trust-strip .npc-trust-sep {
        display: none;
    }

    .npc-trust-strip .npc-trust-items {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 0 16px;
    }

    .npc-trust-item {
        padding: 8px 0;
        min-width: unset;
        width: 100%;
    }

    .npc-team-grid {
        grid-template-columns: 1fr 1fr;
    }

    .npc-timeline-track {
        padding-left: 0;
    }

    .npc-timeline-track::before {
        display: none;
    }

    .npc-tl-item {
        flex-direction: column;
        gap: 0;
        margin-bottom: 20px;
    }

    .npc-tl-marker {
        position: static;
        margin-bottom: 10px;
    }

    .npc-guarantee-grid {
        grid-template-columns: 1fr;
    }

    .npc-tp-widget-wrap {
        padding: 14px 16px;
    }

    .npc-trust-badges-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 20px;
    }

    .npc-trust-badge-item {
        padding: 6px 0;
    }
}

@media (max-width: 480px) {
    .npc-team-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   PAGE HERO  (inner pages)
   ============================================================ */
.npc-page-hero {
    position: relative;
    padding: 100px 0 72px;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    align-items: center;
}

.npc-page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('../images/banner/banner.jpg');
    background-size: cover;
    background-position: center top;
}

.npc-page-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(0, 37, 99, .95) 0%, rgba(0, 56, 132, .88) 55%, rgba(140, 19, 51, .72) 100%);
}

.npc-page-hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.npc-page-hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 900;
    color: var(--npc-white);
    margin-bottom: 12px;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.npc-page-hero-title span {
    color: var(--npc-red-light);
}

.npc-page-hero-sub {
    font-size: 1.05rem;
    font-weight: 400;
    color: rgba(255, 255, 255, .72);
    max-width: 580px;
    margin: 0 auto 20px;
    line-height: 1.78;
}

.npc-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, .55);
}

.npc-breadcrumb a {
    color: rgba(255, 255, 255, .70);
    transition: color var(--npc-t);
}

.npc-breadcrumb a:hover {
    color: var(--npc-white);
}

.npc-breadcrumb i {
    font-size: 9px;
}

.npc-breadcrumb span {
    color: var(--npc-red-light);
    font-weight: 600;
}

/* ============================================================
   UPGRADED STEPS v2  (index page)
   ============================================================ */
.npc-steps-v2 {
    padding: var(--npc-pad);
    background: var(--npc-gray-50);
}

.npc-sv2-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.npc-sv2-row-rev {
    flex-direction: row-reverse;
}

.npc-sv2-card {
    flex: 1;
    max-width: 300px;
    background: var(--npc-white);
    border-radius: var(--npc-r-lg);
    padding: 28px 22px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .07);
    border: 1.5px solid var(--npc-gray-200);
    position: relative;
    overflow: hidden;
    transition: transform var(--npc-t), box-shadow var(--npc-t), border-color var(--npc-t);
    opacity: 0;
    transform: translateY(20px);
}

.npc-sv2-card.revealed {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .5s ease, transform .5s ease;
}

.npc-sv2-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--npc-shadow-lg);
    border-color: var(--npc-blue);
}

.npc-sv2-bg-num {
    position: absolute;
    top: -10px;
    right: 8px;
    font-size: 88px;
    font-weight: 800;
    line-height: 1;
    color: var(--npc-blue);
    opacity: .05;
    pointer-events: none;
    user-select: none;
}

.npc-sv2-card-accent {
    background: linear-gradient(150deg, var(--npc-blue-dark), var(--npc-blue));
    border-color: var(--npc-blue);
}

.npc-sv2-card-accent:hover {
    border-color: var(--npc-red);
}

.npc-sv2-card-accent .npc-sv2-bg-num {
    color: var(--npc-white);
    opacity: .07;
}

.npc-sv2-card-accent h4 {
    color: var(--npc-white);
}

.npc-sv2-card-accent p {
    color: rgba(255, 255, 255, .68);
}

.npc-sv2-week-pill {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: rgba(179, 25, 66, .10);
    color: var(--npc-red);
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.npc-sv2-pill-light {
    background: rgba(255, 255, 255, .15);
    color: rgba(255, 255, 255, .85);
}

.npc-sv2-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 14px;
    background: linear-gradient(135deg, rgba(0, 56, 132, .10), rgba(179, 25, 66, .10));
    border-radius: var(--npc-r);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--npc-blue);
    font-size: 20px;
}

.npc-sv2-icon-light {
    background: rgba(255, 255, 255, .15);
    color: var(--npc-white);
}

.npc-sv2-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--npc-dark);
    margin-bottom: 8px;
}

.npc-sv2-card p {
    font-size: 13px;
    color: var(--npc-gray-500);
    line-height: 1.65;
    margin-bottom: 14px;
}

.npc-sv2-highlight {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--npc-blue);
    background: rgba(0, 56, 132, .07);
    padding: 5px 11px;
    border-radius: 50px;
}

.npc-sv2-highlight i {
    font-size: 11px;
}

.npc-sv2-hl-light {
    color: rgba(255, 255, 255, .85);
    background: rgba(255, 255, 255, .12);
}

.npc-sv2-connector,
.npc-sv2-connector-rev {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    color: var(--npc-gray-400);
    font-size: 18px;
    flex-shrink: 0;
    padding-top: 52px;
}

.npc-about-lead {
    font-size: 1.08rem;
    color: var(--npc-gray-500);
    line-height: 1.75;
    margin-bottom: 16px;
}

.npc-sv2-turn {
    display: flex;
    justify-content: flex-end;
    padding: 12px 0;
}

.npc-sv2-turn-arrow {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--npc-blue), var(--npc-red));
    border-radius: 50%;
    color: var(--npc-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 4px 16px rgba(0, 56, 132, .30);
    margin-right: calc(33.333% - 21px);
}

.npc-sv2-footer-note {
    margin-top: 40px;
    text-align: center;
    font-size: 13.5px;
    color: var(--npc-gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.npc-sv2-footer-note i {
    color: var(--npc-blue);
}

.npc-sv2-footer-note a {
    color: var(--npc-blue);
    font-weight: 600;
    transition: color var(--npc-t);
}

.npc-sv2-footer-note a:hover {
    color: var(--npc-red);
}

/* ============================================================
   TEAM PAGE extras
   ============================================================ */
.npc-team-page {
    padding: var(--npc-pad);
}

.npc-team-sub-heading {
    font-size: 12px;
    font-weight: 700;
    color: var(--npc-gray-700);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-left: 3px solid var(--npc-red);
    padding-left: 12px;
    margin-bottom: 28px;
}

.npc-team-grid-lg {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 20px;
}

.npc-team-card-v2 {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: var(--npc-white);
    border-radius: var(--npc-r-lg);
    padding: 28px;
    box-shadow: var(--npc-shadow);
    border: 1.5px solid var(--npc-gray-200);
    transition: border-color var(--npc-t), box-shadow var(--npc-t);
}

.npc-team-card-v2:hover {
    border-color: var(--npc-blue);
    box-shadow: var(--npc-shadow-lg);
}

.npc-team-img-v2 {
    position: relative;
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: var(--npc-r);
    overflow: hidden;
}

.npc-team-img-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.npc-team-socials {
    position: absolute;
    inset: 0;
    background: rgba(0, 37, 99, .75);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: opacity var(--npc-t);
}

.npc-team-card-v2:hover .npc-team-socials {
    opacity: 1;
}

.npc-team-socials a {
    width: 32px;
    height: 32px;
    background: var(--npc-white);
    border-radius: 50%;
    color: var(--npc-blue);
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--npc-t), color var(--npc-t);
}

.npc-team-socials a:hover {
    background: var(--npc-red);
    color: var(--npc-white);
}

.npc-team-info {
    flex: 1;
}

.npc-team-info h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--npc-dark);
    margin-bottom: 4px;
}

.npc-team-info p {
    font-size: 13.5px;
    color: var(--npc-gray-500);
    line-height: 1.68;
    margin-bottom: 14px;
}

.npc-team-stats {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    border-top: 1px solid var(--npc-gray-200);
    padding-top: 14px;
}

.npc-team-stats div {
    text-align: center;
}

.npc-team-stats strong {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--npc-blue);
}

.npc-team-stats span {
    font-size: 10.5px;
    color: var(--npc-gray-400);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .8px;
}

.npc-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.npc-value-card {
    text-align: center;
    padding: 32px 20px;
    background: var(--npc-white);
    border-radius: var(--npc-r-lg);
    box-shadow: 0 2px 16px rgba(0, 0, 0, .06);
    border: 1.5px solid var(--npc-gray-200);
    transition: border-color var(--npc-t), transform var(--npc-t);
}

.npc-value-card:hover {
    border-color: var(--npc-blue);
    transform: translateY(-4px);
}

.npc-value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--npc-blue), var(--npc-red));
    border-radius: var(--npc-r);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--npc-white);
    font-size: 22px;
}

.npc-value-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--npc-dark);
    margin-bottom: 8px;
}

.npc-value-card p {
    font-size: 13px;
    color: var(--npc-gray-500);
    line-height: 1.65;
    margin: 0;
}

/* ============================================================
   SUCCESS STORIES PAGE
   ============================================================ */
.npc-results-strip {
    background: var(--npc-blue);
    padding: 24px 0;
}

.npc-results-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.npc-result-stat {
    text-align: center;
    padding: 8px 32px;
}

.npc-result-stat strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--npc-white);
    line-height: 1;
}

.npc-result-stat span {
    font-size: 11px;
    color: rgba(255, 255, 255, .60);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    display: block;
}

.npc-results-sep {
    width: 1px;
    height: 44px;
    background: rgba(255, 255, 255, .15);
    flex-shrink: 0;
}

.npc-story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.npc-story-card {
    background: var(--npc-white);
    border-radius: var(--npc-r-lg);
    box-shadow: 0 2px 16px rgba(0, 0, 0, .07);
    overflow: hidden;
    border: 1.5px solid var(--npc-gray-200);
    transition: transform var(--npc-t), box-shadow var(--npc-t);
}

.npc-story-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--npc-shadow-lg);
}

.npc-story-img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.npc-story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.npc-story-card:hover .npc-story-img img {
    transform: scale(1.06);
}

.npc-story-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, var(--npc-red), var(--npc-red-dark));
    color: var(--npc-white);
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(179, 25, 66, .35);
}

.npc-story-body {
    padding: 20px 22px;
}

.npc-story-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    flex-wrap: wrap;
    gap: 6px;
}

.npc-story-genre {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--npc-red);
}

.npc-story-location {
    font-size: 12px;
    color: var(--npc-gray-400);
    display: flex;
    align-items: center;
    gap: 4px;
}

.npc-story-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--npc-dark);
    margin-bottom: 8px;
}

.npc-story-detail {
    font-size: 13px;
    color: var(--npc-gray-500);
    line-height: 1.65;
    margin-bottom: 14px;
}

.npc-story-result {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    background: rgba(0, 56, 132, .06);
    border: 1px solid rgba(0, 56, 132, .12);
    border-radius: var(--npc-r-sm);
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--npc-blue);
    line-height: 1.5;
}

.npc-story-result i {
    color: var(--npc-red);
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ============================================================
   REFUND POLICY PAGE
   ============================================================ */
.npc-policy-summary-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 22px;
}

.npc-policy-summary-card {
    background: var(--npc-white);
    border-radius: var(--npc-r-lg);
    padding: 30px 24px;
    box-shadow: var(--npc-shadow);
    border: 1.5px solid var(--npc-gray-200);
}

.npc-policy-summary-card.npc-psc-primary {
    background: linear-gradient(160deg, var(--npc-blue-dark), var(--npc-blue));
    border-color: transparent;
}

.npc-policy-summary-card.npc-psc-primary h3 {
    color: var(--npc-white);
}

.npc-policy-summary-card.npc-psc-primary p {
    color: rgba(255, 255, 255, .72);
}

.npc-policy-summary-card.npc-psc-primary .npc-psc-icon {
    background: rgba(255, 255, 255, .15);
    color: var(--npc-white);
}

.npc-policy-summary-card.npc-psc-primary .npc-psc-tag {
    background: rgba(255, 255, 255, .14);
    color: rgba(255, 255, 255, .85);
    border-color: rgba(255, 255, 255, .20);
}

.npc-psc-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 16px;
    background: rgba(0, 56, 132, .08);
    border-radius: var(--npc-r);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--npc-blue);
    font-size: 22px;
}

.npc-policy-summary-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--npc-dark);
    margin-bottom: 10px;
}

.npc-policy-summary-card p {
    font-size: 13.5px;
    color: var(--npc-gray-500);
    line-height: 1.68;
    margin-bottom: 16px;
}

.npc-psc-tag {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 700;
    background: rgba(0, 56, 132, .07);
    color: var(--npc-blue);
    border: 1px solid rgba(0, 56, 132, .14);
    padding: 4px 12px;
    border-radius: 50px;
}

.npc-policy-doc {
    max-width: 860px;
    margin: 0 auto;
}

.npc-policy-section {
    margin-bottom: 44px;
}

.npc-policy-section:last-child {
    margin-bottom: 0;
}

.npc-policy-sec-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.npc-policy-sec-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--npc-blue), var(--npc-red));
    border-radius: var(--npc-r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--npc-white);
    font-size: 17px;
}

.npc-policy-sec-header h3 {
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--npc-dark);
    margin: 0;
}

.npc-policy-section p {
    font-size: 14px;
    color: var(--npc-gray-500);
    line-height: 1.75;
    margin-bottom: 14px;
}

.npc-policy-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 14px;
}

.npc-policy-list li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13.5px;
    color: var(--npc-gray-700);
}

.npc-policy-list li i {
    color: var(--npc-blue);
    font-size: 13px;
    flex-shrink: 0;
}

.npc-policy-table {
    border-radius: var(--npc-r);
    overflow: hidden;
    border: 1px solid var(--npc-gray-200);
    margin-top: 14px;
}

.npc-pt-row {
    display: grid;
    grid-template-columns: 1fr auto;
}

.npc-pt-row+.npc-pt-row {
    border-top: 1px solid var(--npc-gray-200);
}

.npc-pt-row>div {
    padding: 13px 16px;
    font-size: 13.5px;
    color: var(--npc-gray-700);
}

.npc-pt-header {
    background: var(--npc-blue);
}

.npc-pt-header>div {
    color: var(--npc-white);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .8px;
}

.npc-pt-row:nth-child(even) {
    background: var(--npc-gray-50);
}

.npc-pt-yes {
    color: var(--npc-blue) !important;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.npc-pt-yes i {
    color: #16a34a;
}

.npc-pt-no {
    color: var(--npc-gray-500) !important;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.npc-pt-no i {
    color: var(--npc-red);
}

.npc-policy-contact-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.npc-policy-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--npc-white);
    border: 1.5px solid var(--npc-gray-200);
    border-radius: var(--npc-r);
    padding: 14px 18px;
    flex: 1;
    min-width: 200px;
    transition: border-color var(--npc-t);
}

.npc-policy-contact-item:hover {
    border-color: var(--npc-blue);
}

.npc-policy-contact-item>i {
    font-size: 18px;
    color: var(--npc-blue);
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: rgba(0, 56, 132, .08);
    border-radius: var(--npc-r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.npc-policy-contact-item>div strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--npc-dark);
}

.npc-policy-contact-item>div span {
    font-size: 12.5px;
    color: var(--npc-gray-500);
}

/* ============================================================
   FAQ ACCORDION (shared)
   ============================================================ */
.npc-faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.npc-faq-item {
    background: var(--npc-white);
    border: 1.5px solid var(--npc-gray-200);
    border-radius: var(--npc-r);
    overflow: hidden;
    transition: border-color var(--npc-t);
}

.npc-faq-item.open {
    border-color: var(--npc-blue);
}

.npc-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 20px;
    text-align: left;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--npc-dark);
    font-family: var(--npc-font);
    transition: color var(--npc-t);
}

.npc-faq-q:hover {
    color: var(--npc-blue);
}

.npc-faq-icon {
    font-size: 13px;
    color: var(--npc-red);
    flex-shrink: 0;
    transition: transform var(--npc-t);
}

.npc-faq-item.open .npc-faq-icon {
    transform: rotate(45deg);
}

.npc-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .36s ease;
}

.npc-faq-item.open .npc-faq-a {
    max-height: 400px;
}

.npc-faq-a p {
    padding: 0 20px 18px;
    font-size: 13.5px;
    color: var(--npc-gray-500);
    line-height: 1.75;
    margin: 0;
}

/* ============================================================
   HOW IT WORKS PAGE
   ============================================================ */
.npc-process-overview-strip {
    background: var(--npc-blue);
    padding: 20px 0;
}

.npc-po-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.npc-po-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--npc-white);
    font-size: 13.5px;
    font-weight: 600;
    padding: 6px 20px;
}

.npc-po-item i {
    font-size: 16px;
    color: rgba(255, 255, 255, .65);
}

.npc-po-arrow {
    color: rgba(255, 255, 255, .30);
    font-size: 11px;
    padding: 0 4px;
}

.npc-hiw-steps {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.npc-hiw-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
}

.npc-hiw-step-alt {
    direction: rtl;
}

.npc-hiw-step-alt>* {
    direction: ltr;
}

.npc-hiw-step-img {
    position: relative;
    border-radius: var(--npc-r-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.npc-hiw-step-img img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
}

.npc-hiw-step-num {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: linear-gradient(135deg, var(--npc-blue), var(--npc-red));
    color: var(--npc-white);
    font-size: 2rem;
    font-weight: 800;
    width: 64px;
    height: 64px;
    border-radius: var(--npc-r);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .28);
}

.npc-hiw-step-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.npc-hiw-step-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--npc-blue), var(--npc-red));
    border-radius: var(--npc-r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--npc-white);
    font-size: 18px;
}

.npc-hiw-week {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: rgba(179, 25, 66, .09);
    color: var(--npc-red);
    padding: 4px 12px;
    border-radius: 50px;
}

.npc-hiw-step-body h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--npc-dark);
    margin-bottom: 10px;
}

.npc-hiw-summary {
    font-size: 14.5px;
    color: var(--npc-gray-500);
    line-height: 1.72;
    margin-bottom: 16px;
}

.npc-hiw-details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.npc-hiw-details li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13.5px;
    color: var(--npc-gray-700);
}

.npc-hiw-details li i {
    color: var(--npc-blue);
    font-size: 12px;
    flex-shrink: 0;
}

.npc-includes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.npc-inc-card {
    background: var(--npc-white);
    border-radius: var(--npc-r-lg);
    padding: 26px 22px;
    box-shadow: 0 2px 14px rgba(0, 0, 0, .06);
    border: 1.5px solid var(--npc-gray-200);
    transition: border-color var(--npc-t), transform var(--npc-t);
}

.npc-inc-card:hover {
    border-color: var(--npc-blue);
    transform: translateY(-4px);
}

.npc-inc-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 14px;
    background: linear-gradient(135deg, rgba(0, 56, 132, .10), rgba(179, 25, 66, .10));
    border-radius: var(--npc-r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--npc-blue);
    font-size: 18px;
}

.npc-inc-card h4 {
    font-size: .97rem;
    font-weight: 700;
    color: var(--npc-dark);
    margin-bottom: 7px;
}

.npc-inc-card p {
    font-size: 13px;
    color: var(--npc-gray-500);
    line-height: 1.65;
    margin: 0;
}

/* ============================================================
   PRESS PAGE
   ============================================================ */
.npc-press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 22px;
}

.npc-press-card {
    background: var(--npc-white);
    border-radius: var(--npc-r-lg);
    padding: 24px;
    box-shadow: 0 2px 14px rgba(0, 0, 0, .06);
    border: 1.5px solid var(--npc-gray-200);
    transition: border-color var(--npc-t), transform var(--npc-t);
}

.npc-press-card:hover {
    border-color: var(--npc-blue);
    transform: translateY(-4px);
}

.npc-press-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.npc-press-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: var(--npc-r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.npc-press-outlet {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--npc-dark);
}

.npc-press-type {
    display: block;
    font-size: 11px;
    color: var(--npc-gray-400);
    text-transform: uppercase;
    letter-spacing: .8px;
    font-weight: 600;
}

.npc-press-date {
    margin-left: auto;
    font-size: 12px;
    color: var(--npc-gray-400);
    white-space: nowrap;
    font-weight: 600;
}

.npc-press-headline {
    font-size: .97rem;
    font-weight: 700;
    color: var(--npc-dark);
    margin-bottom: 10px;
    line-height: 1.45;
}

.npc-press-excerpt {
    font-size: 13px;
    color: var(--npc-gray-500);
    line-height: 1.68;
    margin: 0;
}

.npc-press-quote-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.npc-press-quote {
    background: var(--npc-white);
    border-radius: var(--npc-r-lg);
    padding: 28px;
    border: 1.5px solid var(--npc-gray-200);
}

.npc-pq-marks {
    font-size: 5rem;
    line-height: .8;
    font-weight: 800;
    color: var(--npc-blue);
    opacity: .12;
    margin-bottom: 8px;
    font-family: Georgia, serif;
}

.npc-press-quote p {
    font-size: 13.5px;
    color: var(--npc-gray-700);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 14px;
}

.npc-pq-source {
    font-size: 12px;
    font-weight: 700;
    color: var(--npc-red);
}

.npc-media-contact-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    background: var(--npc-gray-50);
    border: 1.5px solid var(--npc-gray-200);
    border-radius: var(--npc-r-xl);
    padding: 48px 52px;
}

.npc-mc-left h2 {
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--npc-dark);
    margin-bottom: 12px;
}

.npc-mc-left p {
    font-size: 14px;
    color: var(--npc-gray-500);
    line-height: 1.72;
    margin-bottom: 20px;
}

.npc-mc-contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.npc-mc-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--npc-white);
    border: 1.5px solid var(--npc-gray-200);
    border-radius: var(--npc-r);
    padding: 14px 18px;
    transition: border-color var(--npc-t);
}

.npc-mc-item:hover {
    border-color: var(--npc-blue);
}

.npc-mc-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--npc-blue), var(--npc-red));
    border-radius: var(--npc-r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--npc-white);
    font-size: 16px;
}

.npc-mc-item>div strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--npc-dark);
}

.npc-mc-item>div span {
    font-size: 12.5px;
    color: var(--npc-gray-500);
}

/* ============================================================
   CAREERS PAGE
   ============================================================ */
.npc-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.npc-benefit-card {
    background: var(--npc-white);
    border-radius: var(--npc-r-lg);
    padding: 28px 22px;
    box-shadow: 0 2px 14px rgba(0, 0, 0, .06);
    border: 1.5px solid var(--npc-gray-200);
    transition: border-color var(--npc-t), transform var(--npc-t);
}

.npc-benefit-card:hover {
    border-color: var(--npc-blue);
    transform: translateY(-4px);
}

.npc-benefit-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 14px;
    background: linear-gradient(135deg, rgba(0, 56, 132, .10), rgba(179, 25, 66, .10));
    border-radius: var(--npc-r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--npc-blue);
    font-size: 20px;
}

.npc-benefit-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--npc-dark);
    margin-bottom: 8px;
}

.npc-benefit-card p {
    font-size: 13px;
    color: var(--npc-gray-500);
    line-height: 1.65;
    margin: 0;
}

.npc-jobs-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.npc-job-card {
    background: var(--npc-white);
    border-radius: var(--npc-r-lg);
    padding: 28px 30px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .07);
    border: 1.5px solid var(--npc-gray-200);
    transition: border-color var(--npc-t);
}

.npc-job-card.npc-job-urgent {
    border-left: 4px solid var(--npc-red);
}

.npc-job-card:hover {
    border-color: var(--npc-blue);
}

.npc-job-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.npc-job-title-block h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--npc-dark);
    margin-bottom: 8px;
}

.npc-job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.npc-job-dept,
.npc-job-type,
.npc-job-loc {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12.5px;
    color: var(--npc-gray-500);
}

.npc-job-dept i,
.npc-job-type i,
.npc-job-loc i {
    color: var(--npc-red);
}

.npc-job-badge {
    background: linear-gradient(135deg, var(--npc-red), var(--npc-red-dark));
    color: var(--npc-white);
    font-size: 11px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    white-space: nowrap;
}

.npc-job-desc {
    font-size: 13.5px;
    color: var(--npc-gray-500);
    line-height: 1.72;
    margin-bottom: 16px;
}

.npc-job-reqs strong {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--npc-dark);
    display: block;
    margin-bottom: 8px;
}

.npc-job-reqs ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.npc-job-reqs li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: var(--npc-gray-700);
}

.npc-job-reqs li i {
    color: var(--npc-blue);
    font-size: 12px;
    flex-shrink: 0;
}

.npc-job-footer {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
    flex-wrap: wrap;
    border-top: 1px solid var(--npc-gray-200);
    padding-top: 18px;
}

.npc-job-note {
    font-size: 12.5px;
    color: var(--npc-gray-400);
}

.npc-apply-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
    background: var(--npc-gray-50);
    border: 1.5px solid var(--npc-gray-200);
    border-radius: var(--npc-r-xl);
    padding: 48px 52px;
}

.npc-apply-left h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--npc-dark);
    margin-bottom: 12px;
}

.npc-apply-left h2 span {
    color: var(--npc-red);
}

.npc-apply-left p {
    font-size: 14px;
    color: var(--npc-gray-500);
    line-height: 1.72;
    margin-bottom: 18px;
}

.npc-apply-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ============================================================
   RESPONSIVE — inner pages + steps upgrade
   ============================================================ */
@media (max-width: 1199px) {
    .npc-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .npc-includes-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .npc-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .npc-press-quote-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .npc-team-grid-lg {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .npc-page-hero {
        padding: 80px 0 56px;
    }

    .npc-sv2-row {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .npc-sv2-row-rev {
        flex-direction: column;
    }

    .npc-sv2-card {
        max-width: 100%;
        width: 100%;
    }

    .npc-sv2-connector,
    .npc-sv2-connector-rev {
        display: none;
    }

    .npc-sv2-turn {
        display: none;
    }

    .npc-hiw-step {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .npc-hiw-step-alt {
        direction: ltr;
    }

    .npc-policy-summary-grid {
        grid-template-columns: 1fr;
    }

    .npc-media-contact-box {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 36px 28px;
    }

    .npc-apply-box {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 36px 28px;
    }

    .npc-includes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .npc-po-arrow {
        display: none;
    }

    .npc-team-card-v2 {
        flex-direction: column;
    }

    .npc-team-img-v2 {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 767px) {
    .npc-page-hero {
        padding: 60px 0 44px;
        min-height: auto;
    }

    .npc-page-hero-title {
        font-size: clamp(1.7rem, 6vw, 2.4rem);
    }

    .npc-values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .npc-benefits-grid {
        grid-template-columns: 1fr 1fr;
    }

    .npc-story-grid {
        grid-template-columns: 1fr;
    }

    .npc-press-grid {
        grid-template-columns: 1fr;
    }

    .npc-press-quote-grid {
        grid-template-columns: 1fr;
    }

    .npc-includes-grid {
        grid-template-columns: 1fr 1fr;
    }

    .npc-results-inner {
        flex-direction: column;
        gap: 4px;
    }

    .npc-results-sep {
        width: 44px;
        height: 1px;
    }

    .npc-pt-row {
        grid-template-columns: 1fr;
    }

    .npc-policy-contact-row {
        flex-direction: column;
    }

    .npc-job-header {
        flex-direction: column;
    }

    .npc-job-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .npc-media-contact-box,
    .npc-apply-box {
        padding: 28px 20px;
    }
}

@media (max-width: 480px) {
    .npc-values-grid {
        grid-template-columns: 1fr;
    }

    .npc-benefits-grid {
        grid-template-columns: 1fr;
    }

    .npc-includes-grid {
        grid-template-columns: 1fr;
    }

    .npc-media-contact-box,
    .npc-apply-box {
        padding: 22px 16px;
    }
}

/* ============================================================
   BUTTON VARIANTS — dark outline for light backgrounds
   ============================================================ */
.npc-btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: transparent;
    color: var(--npc-blue);
    padding: 13px 26px;
    border-radius: var(--npc-r-sm);
    font-size: 14.5px;
    font-weight: 600;
    border: 2px solid var(--npc-blue);
    transition: all var(--npc-t);
}

.npc-btn-outline-dark:hover {
    background: var(--npc-blue);
    color: var(--npc-white);
}

/* ============================================================
   ABOUT PAGE — Intro Grid
   ============================================================ */
.npc-about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: center;
}

.npc-about-img-block {
    position: relative;
    padding-bottom: 32px;
    padding-right: 24px;
}

.npc-about-img-main {
    width: 100%;
    border-radius: var(--npc-r-lg);
    /* box-shadow: var(--npc-shadow-xl); */
    display: block;
}

.npc-about-img-badge {
    position: absolute;
    bottom: 0;
    left: 20px;
    background: linear-gradient(135deg, var(--npc-blue-dark), var(--npc-blue));
    color: var(--npc-white);
    border-radius: var(--npc-r-lg);
    padding: 18px 22px;
    min-width: 160px;
    text-align: center;
    box-shadow: var(--npc-shadow-lg);
}

.npc-aib-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.npc-aib-num {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--npc-white);
    line-height: 1;
    margin-bottom: 4px;
}

.npc-aib-lbl {
    font-size: 11.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, .75);
    line-height: 1.35;
    text-align: center;
}

.npc-about-img-secondary {
    position: absolute;
    top: 20px;
    right: 0;
    width: 42%;
    border-radius: var(--npc-r);
    box-shadow: var(--npc-shadow-lg);
    border: 4px solid var(--npc-white);
}

.npc-about-checks {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
}

.npc-about-check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--npc-gray-700);
}

.npc-about-check i {
    color: var(--npc-blue);
    font-size: 14px;
    flex-shrink: 0;
}

.npc-about-cta-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

/* About Stats Strip */
.npc-about-stats-strip {
    background: linear-gradient(135deg, var(--npc-blue-dark) 0%, var(--npc-blue) 60%, var(--npc-red-dark) 100%);
    padding: 36px 0;
}

.npc-about-stats-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.npc-about-stat {
    padding: 10px 36px;
    text-align: center;
}

.npc-about-stat strong {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--npc-white);
    line-height: 1;
}

.npc-about-stat span {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, .60);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.npc-about-stat-sep {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, .18);
    flex-shrink: 0;
}

/* Story Timeline */
.npc-story-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.npc-story-timeline::before {
    content: '';
    position: absolute;
    left: 90px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--npc-blue) 0%, var(--npc-red) 100%);
}

.npc-stl-item {
    display: grid;
    grid-template-columns: 90px auto 1fr;
    gap: 0 24px;
    align-items: flex-start;
    padding-bottom: 40px;
    position: relative;
}

.npc-stl-item:last-child {
    padding-bottom: 0;
}

.npc-stl-year {
    text-align: right;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--npc-blue);
    padding-top: 14px;
    padding-right: 12px;
    line-height: 1;
}

.npc-stl-item-alt .npc-stl-year {
    color: var(--npc-red);
}

.npc-stl-connector {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--npc-blue), var(--npc-red));
    border-radius: 50%;
    margin-top: 16px;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 4px rgba(0, 56, 132, .15);
}

.npc-stl-card {
    background: var(--npc-white);
    border-radius: var(--npc-r-lg);
    border: 1.5px solid var(--npc-gray-200);
    padding: 22px 26px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .06);
    transition: border-color var(--npc-t), box-shadow var(--npc-t);
}

.npc-stl-card:hover {
    border-color: var(--npc-blue);
    box-shadow: var(--npc-shadow);
}

.npc-stl-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--npc-dark);
    margin-bottom: 8px;
}

.npc-stl-card p {
    font-size: 13.5px;
    color: var(--npc-gray-500);
    line-height: 1.7;
    margin: 0;
}

.npc-stl-card-accent {
    background: linear-gradient(135deg, var(--npc-blue-dark), var(--npc-blue));
    border-color: transparent;
}

.npc-stl-card-accent h4 {
    color: var(--npc-white);
}

.npc-stl-card-accent p {
    color: rgba(255, 255, 255, .72);
}

/* Mission & Values */
.npc-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: flex-start;
}

.npc-mission-left h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 700;
    color: var(--npc-dark);
    margin-bottom: 16px;
}

.npc-mission-left p {
    font-size: 14px;
    color: var(--npc-gray-500);
    line-height: 1.75;
    margin-bottom: 16px;
}

.npc-mission-quote {
    background: var(--npc-gray-50);
    border-left: 4px solid var(--npc-red);
    border-radius: 0 var(--npc-r) var(--npc-r) 0;
    padding: 20px 22px;
    margin-top: 24px;
}

.npc-mission-quote p {
    font-size: 15px;
    font-style: italic;
    color: var(--npc-dark);
    line-height: 1.65;
    margin: 0 0 8px;
}

.npc-mission-quote cite {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--npc-gray-500);
    font-style: normal;
}

.npc-values-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.npc-value-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--npc-white);
    border: 1.5px solid var(--npc-gray-200);
    border-radius: var(--npc-r-lg);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
    transition: border-color var(--npc-t), box-shadow var(--npc-t);
}

.npc-value-item:hover {
    border-color: var(--npc-blue);
    box-shadow: var(--npc-shadow);
}

.npc-vi-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--npc-blue), var(--npc-red));
    border-radius: var(--npc-r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--npc-white);
    font-size: 18px;
}

.npc-vi-text h4 {
    font-size: .97rem;
    font-weight: 700;
    color: var(--npc-dark);
    margin-bottom: 5px;
}

.npc-vi-text p {
    font-size: 13px;
    color: var(--npc-gray-500);
    line-height: 1.65;
    margin: 0;
}

/* Why Choose Us Grid (About Page) */
.npc-why-grid-about {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.npc-wga-card {
    background: var(--npc-white);
    border-radius: var(--npc-r-lg);
    padding: 30px 24px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .07);
    border: 1.5px solid var(--npc-gray-200);
    transition: border-color var(--npc-t), transform var(--npc-t), box-shadow var(--npc-t);
}

.npc-wga-card:hover {
    border-color: var(--npc-blue);
    transform: translateY(-5px);
    box-shadow: var(--npc-shadow-lg);
}

.npc-wga-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, rgba(0, 56, 132, .10), rgba(179, 25, 66, .08));
    border-radius: var(--npc-r);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--npc-blue);
    font-size: 22px;
}

.npc-wga-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--npc-dark);
    margin-bottom: 9px;
}

.npc-wga-card p {
    font-size: 13px;
    color: var(--npc-gray-500);
    line-height: 1.68;
    margin: 0;
}

/* Leadership Cards */
.npc-about-leaders {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.npc-al-card {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    background: var(--npc-white);
    border-radius: var(--npc-r-lg);
    padding: 30px;
    box-shadow: var(--npc-shadow);
    border: 1.5px solid var(--npc-gray-200);
    transition: border-color var(--npc-t), box-shadow var(--npc-t);
}

.npc-al-card:hover {
    border-color: var(--npc-blue);
    box-shadow: var(--npc-shadow-lg);
}

.npc-al-img {
    flex-shrink: 0;
    width: 130px;
    height: 130px;
    border-radius: var(--npc-r-lg);
    overflow: hidden;
}

.npc-al-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.npc-al-body {
    flex: 1;
}

.npc-al-body h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--npc-dark);
    margin-bottom: 4px;
}

.npc-al-role {
    display: block;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--npc-red);
    margin-bottom: 10px;
}

.npc-al-body p {
    font-size: 13.5px;
    color: var(--npc-gray-500);
    line-height: 1.7;
    margin-bottom: 16px;
}

.npc-al-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    border-top: 1px solid var(--npc-gray-200);
    padding-top: 14px;
    margin-bottom: 14px;
}

.npc-al-stats div {
    text-align: center;
}

.npc-al-stats strong {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--npc-blue);
    line-height: 1;
}

.npc-al-stats span {
    font-size: 10px;
    color: var(--npc-gray-400);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-top: 3px;
    display: block;
}

.npc-al-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--npc-blue);
    transition: gap var(--npc-t), color var(--npc-t);
}

.npc-al-link:hover {
    gap: 10px;
    color: var(--npc-red);
}

/* About Testimonials */
.npc-about-testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.npc-testi-text {
    font-size: 14px;
    color: var(--npc-gray-500);
    line-height: 1.77;
    margin-bottom: 18px;
    font-style: italic;
}

/* About Contact Strip */
.npc-about-contact-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    background: linear-gradient(135deg, var(--npc-blue-dark), var(--npc-blue));
    border-radius: var(--npc-r-xl);
    padding: 32px 40px;
}

.npc-acs-item {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 200px;
    padding: 10px 28px;
}

.npc-acs-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, .14);
    border-radius: var(--npc-r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--npc-white);
    font-size: 18px;
}

.npc-acs-item>div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.npc-acs-item>div strong {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, .65);
    text-transform: uppercase;
    letter-spacing: .8px;
}

.npc-acs-item>div span,
.npc-acs-item>div a {
    font-size: 14px;
    font-weight: 600;
    color: var(--npc-white);
}

.npc-acs-item>div a:hover {
    color: var(--npc-red-light);
}

.npc-acs-sep {
    width: 1px;
    height: 52px;
    background: rgba(255, 255, 255, .18);
    flex-shrink: 0;
}

/* ============================================================
   CONTACT PAGE STYLES
   ============================================================ */
.npc-contact-quick-strip {
    background: var(--npc-white);
    border-top: 1px solid var(--npc-gray-200);
    border-bottom: 1px solid var(--npc-gray-200);
    padding: 20px 0;
}

.npc-cqs-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.npc-cqs-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    flex: 1;
    min-width: 200px;
    text-decoration: none;
    transition: background var(--npc-t);
}

.npc-cqs-item:hover {
    background: var(--npc-gray-50);
}

.npc-cqs-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--npc-blue), var(--npc-red));
    border-radius: var(--npc-r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--npc-white);
    font-size: 18px;
}

.npc-cqs-label {
    display: block;
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--npc-gray-400);
    margin-bottom: 2px;
}

.npc-cqs-value {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--npc-dark);
}

.npc-cqs-sep {
    width: 1px;
    height: 48px;
    background: var(--npc-gray-200);
    flex-shrink: 0;
}

.npc-contact-main {
    padding: var(--npc-pad);
}

.npc-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 56px;
    align-items: flex-start;
}

.npc-contact-left h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 700;
    color: var(--npc-dark);
    margin-bottom: 14px;
}

.npc-contact-intro {
    font-size: 14.5px;
    color: var(--npc-gray-500);
    line-height: 1.75;
    margin-bottom: 28px;
}

.npc-contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.npc-cic-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    background: var(--npc-gray-50);
    border: 1.5px solid var(--npc-gray-200);
    border-radius: var(--npc-r);
    transition: border-color var(--npc-t), box-shadow var(--npc-t);
}

.npc-cic-card:hover {
    border-color: var(--npc-blue);
    box-shadow: var(--npc-shadow);
}

.npc-cic-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--npc-blue), var(--npc-red));
    border-radius: var(--npc-r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--npc-white);
    font-size: 17px;
}

.npc-cic-card>div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.npc-cic-card strong {
    font-size: 12px;
    font-weight: 700;
    color: var(--npc-gray-400);
    text-transform: uppercase;
    letter-spacing: .8px;
}

.npc-cic-card a,
.npc-cic-card>div>span {
    font-size: 14px;
    font-weight: 600;
    color: var(--npc-dark);
}

.npc-cic-card a:hover {
    color: var(--npc-blue);
}

.npc-cic-card>div span:last-child {
    font-size: 12px;
    color: var(--npc-gray-400);
    font-weight: 400;
}

.npc-contact-socials {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    font-size: 12px;
    font-weight: 700;
    color: var(--npc-gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.npc-contact-socials a {
    width: 36px;
    height: 36px;
    border-radius: var(--npc-r-sm);
    background: var(--npc-gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--npc-gray-500);
    font-size: 13px;
    transition: background var(--npc-t), color var(--npc-t);
}

.npc-contact-socials a:hover {
    background: var(--npc-blue);
    color: var(--npc-white);
}

.npc-contact-img-wrap {
    position: relative;
    border-radius: var(--npc-r-lg);
    overflow: hidden;
    box-shadow: var(--npc-shadow-xl);
}

.npc-contact-img-wrap img {
    width: 100%;
    display: block;
    object-fit: cover;
    max-height: 280px;
}

.npc-contact-img-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    background: rgba(0, 37, 99, .88);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--npc-r);
    padding: 12px 16px;
    color: var(--npc-white);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
}

.npc-contact-img-badge i {
    color: var(--npc-red-light);
    font-size: 16px;
}

.npc-contact-form-card {
    background: var(--npc-white);
    border-radius: var(--npc-r-xl);
    padding: 38px 36px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, .12);
    border: 1.5px solid var(--npc-gray-200);
}

.npc-cfcard-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 26px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--npc-gray-200);
}

.npc-cfcard-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--npc-blue), var(--npc-red));
    border-radius: var(--npc-r);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--npc-white);
    font-size: 20px;
}

.npc-cfcard-head h3 {
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--npc-dark);
    margin-bottom: 3px;
}

.npc-cfcard-head p {
    font-size: 13px;
    color: var(--npc-gray-500);
    margin: 0;
}

.npc-contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.npc-cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.npc-cf-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.npc-cf-field>label {
    font-size: 12px;
    font-weight: 700;
    color: var(--npc-gray-700);
    text-transform: uppercase;
    letter-spacing: .7px;
}

.npc-cf-field>label span {
    color: var(--npc-red);
}

.npc-cf-input-wrap {
    position: relative;
    display: flex;
    align-items: flex-start;
    background: var(--npc-gray-50);
    border: 1.5px solid var(--npc-gray-200);
    border-radius: var(--npc-r-sm);
    overflow: hidden;
    transition: border-color var(--npc-t), background var(--npc-t);
}

.npc-cf-input-wrap:focus-within {
    border-color: var(--npc-blue);
    background: var(--npc-white);
}

.npc-cf-input-wrap>i {
    position: absolute;
    left: 13px;
    top: 13px;
    color: var(--npc-gray-400);
    font-size: 13px;
    pointer-events: none;
    z-index: 1;
}

.npc-cf-input-wrap input,
.npc-cf-input-wrap textarea {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    padding: 12px 12px 12px 38px;
    font-size: 14px;
    font-family: var(--npc-font);
    color: var(--npc-dark);
    width: 100%;
}

.npc-cf-textarea-wrap>i {
    top: 14px;
}

.npc-cf-input-wrap textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.65;
}

.npc-cf-input-wrap input::placeholder,
.npc-cf-input-wrap textarea::placeholder {
    color: var(--npc-gray-400);
}

.npc-cf-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.npc-cf-privacy {
    font-size: 12px;
    color: var(--npc-gray-400);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 0;
}

.npc-cf-privacy i {
    color: var(--npc-blue);
}

.npc-contact-steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.npc-cstep {
    flex: 1;
    max-width: 300px;
    background: var(--npc-white);
    border-radius: var(--npc-r-lg);
    padding: 32px 24px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .07);
    border: 1.5px solid var(--npc-gray-200);
    position: relative;
    text-align: center;
    transition: transform var(--npc-t), box-shadow var(--npc-t), border-color var(--npc-t);
}

.npc-cstep:hover {
    transform: translateY(-6px);
    box-shadow: var(--npc-shadow-lg);
    border-color: var(--npc-blue);
}

.npc-cstep-num {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--npc-blue), var(--npc-red));
    color: var(--npc-white);
    font-size: 11.5px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 50px;
}

.npc-cstep-icon {
    width: 60px;
    height: 60px;
    margin: 10px auto 16px;
    background: linear-gradient(135deg, rgba(0, 56, 132, .10), rgba(179, 25, 66, .10));
    border-radius: var(--npc-r);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--npc-blue);
    font-size: 22px;
}

.npc-cstep h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--npc-dark);
    margin-bottom: 8px;
}

.npc-cstep p {
    font-size: 13px;
    color: var(--npc-gray-500);
    line-height: 1.65;
    margin: 0;
}

.npc-cstep-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--npc-gray-300);
    font-size: 18px;
    padding: 0 12px;
    flex-shrink: 0;
    margin-top: 48px;
}

.npc-map-section {
    padding: var(--npc-pad);
    padding-bottom: 0;
}

.npc-map-frame {
    margin: 28px 0 0;
    border-radius: var(--npc-r-xl) var(--npc-r-xl) 0 0;
    overflow: hidden;
    box-shadow: var(--npc-shadow-xl);
}

.npc-map-frame iframe {
    display: block;
    width: 100%;
    height: 480px;
    border: 0;
}

.npc-map-info-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--npc-blue);
}

.npc-map-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 24px;
    border-right: 1px solid rgba(255, 255, 255, .12);
}

.npc-map-info-item:last-child {
    border-right: none;
}

.npc-map-info-item>i {
    font-size: 24px;
    color: rgba(255, 255, 255, .55);
    flex-shrink: 0;
}

.npc-map-info-item>div strong {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 3px;
}

.npc-map-info-item>div span,
.npc-map-info-item>div a {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--npc-white);
}

.npc-map-info-item>div a:hover {
    color: var(--npc-red-light);
}

/* ============================================================
   RESPONSIVE — About + Contact
   ============================================================ */
@media (max-width: 1199px) {
    .npc-about-intro-grid {
        gap: 44px;
    }

    .npc-mission-grid {
        gap: 44px;
    }

    .npc-why-grid-about {
        grid-template-columns: repeat(2, 1fr);
    }

    .npc-about-leaders {
        grid-template-columns: 1fr;
    }

    .npc-about-testi-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .npc-contact-grid {
        gap: 40px;
    }

    .npc-map-info-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .npc-map-info-item:nth-child(2) {
        border-right: none;
    }

    .npc-map-info-item:nth-child(3) {
        border-top: 1px solid rgba(255, 255, 255, .12);
    }
}

@media (max-width: 991px) {
    .npc-about-intro-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .npc-about-img-block {
        padding: 0;
    }

    .npc-about-img-secondary {
        display: none;
    }

    .npc-about-img-badge {
        position: static;
        display: inline-flex;
        margin-top: 16px;
    }

    .npc-story-timeline::before {
        left: 56px;
    }

    .npc-stl-item {
        grid-template-columns: 56px auto 1fr;
        gap: 0 16px;
    }

    .npc-stl-year {
        font-size: 1rem;
        padding-right: 8px;
    }

    .npc-mission-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .npc-why-grid-about {
        grid-template-columns: 1fr 1fr;
    }

    .npc-about-testi-grid {
        grid-template-columns: 1fr 1fr;
    }

    .npc-about-contact-strip {
        border-radius: var(--npc-r-lg);
        padding: 22px 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .npc-acs-sep {
        display: none;
    }

    .npc-acs-item {
        padding: 10px 0;
        min-width: unset;
    }

    .npc-contact-grid {
        grid-template-columns: 1fr;
    }

    .npc-contact-form-card {
        padding: 28px 22px;
    }

    .npc-cqs-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 16px;
    }

    .npc-cqs-sep {
        display: none;
    }

    .npc-cqs-item {
        padding: 10px 0;
    }

    .npc-contact-steps-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .npc-cstep {
        max-width: 100%;
        width: 100%;
    }

    .npc-cstep-arrow {
        transform: rotate(90deg);
        padding: 0;
        margin-top: 0;
    }

    .npc-map-info-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .npc-story-timeline::before {
        display: none;
    }

    .npc-stl-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .npc-stl-year {
        text-align: left;
        padding: 0;
    }

    .npc-stl-connector {
        display: none;
    }

    .npc-why-grid-about {
        grid-template-columns: 1fr;
    }

    .npc-al-card {
        flex-direction: column;
    }

    .npc-al-img {
        width: 100%;
        height: 220px;
        border-radius: var(--npc-r);
    }

    .npc-about-testi-grid {
        grid-template-columns: 1fr;
    }

    .npc-cf-row {
        grid-template-columns: 1fr;
    }

    .npc-cf-services-grid {
        grid-template-columns: 1fr;
    }

    .npc-contact-form-card {
        padding: 22px 16px;
    }

    .npc-map-info-row {
        grid-template-columns: 1fr;
    }

    .npc-map-info-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .12);
    }

    .npc-map-info-item:last-child {
        border-bottom: none;
    }

    .npc-map-frame iframe {
        height: 320px;
    }

    .npc-about-stat-sep {
        height: 32px;
    }
}

@media (max-width: 480px) {
    .npc-about-stat-sep {
        display: none;
    }

    .npc-about-stats-inner {
        flex-direction: column;
        gap: 2px;
    }

    .npc-about-stat {
        padding: 6px 16px;
    }
}

/* ============================================================
   SERVICES LISTING PAGE
   ============================================================ */

/* ── Intro strip ─────────────────────────────────────────── */
.npc-svc-intro-strip {
    background: var(--npc-blue);
    padding: 0;
}

.npc-sis-inner {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
}

.npc-sis-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 40px;
    color: #fff;
}

.npc-sis-item i {
    font-size: 1.7rem;
    color: var(--npc-gold, #e8a919);
    flex-shrink: 0;
}

.npc-sis-item strong {
    display: block;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.npc-sis-item span {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, .75);
}

.npc-sis-sep {
    width: 1px;
    background: rgba(255, 255, 255, .2);
    margin: 14px 0;
    flex-shrink: 0;
}

/* ── Services listing grid ───────────────────────────────── */
.npc-svc-listing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

/* ── Service card (used on listing + related) ────────────── */
.npc-svl-card {
    background: var(--npc-white);
    border-radius: var(--npc-r-lg);
    box-shadow: 0 4px 24px rgba(0, 56, 132, .08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .25s, box-shadow .25s;
    position: relative;
}

.npc-svl-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0, 56, 132, .14);
}

/* Image wrap */
.npc-svl-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.npc-svl-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.npc-svl-card:hover .npc-svl-img-wrap img {
    transform: scale(1.06);
}

/* Overlay on image */
.npc-svl-img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 56, 132, .7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s;
}

.npc-svl-card:hover .npc-svl-img-overlay {
    opacity: 1;
}

.npc-svl-overlay-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--npc-white);
    color: var(--npc-blue);
    font-size: .85rem;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: background .2s, color .2s;
}

.npc-svl-overlay-btn:hover {
    background: var(--npc-gold, #e8a919);
    color: var(--npc-white);
}

/* Featured badge */
.npc-svl-featured-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--npc-red);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
    letter-spacing: .03em;
}

/* Card body */
.npc-svl-body {
    padding: 24px 22px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.npc-svl-icon {
    width: 46px;
    height: 46px;
    border-radius: var(--npc-r);
    background: rgba(0, 56, 132, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    flex-shrink: 0;
}

.npc-svl-icon i {
    font-size: 1.1rem;
    color: var(--npc-blue);
}

.npc-svl-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--npc-dark);
    margin-bottom: 8px;
    line-height: 1.35;
}

.npc-svl-body h3 a {
    color: inherit;
    text-decoration: none;
    transition: color .2s;
}

.npc-svl-body h3 a:hover {
    color: var(--npc-blue);
}

.npc-svl-body>p {
    font-size: .9rem;
    color: var(--npc-gray-500);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 14px;
}

.npc-svl-price {
    font-size: .83rem;
    color: var(--npc-gray-500);
    margin-bottom: 14px;
}

.npc-svl-price strong {
    color: var(--npc-blue);
    font-weight: 700;
    font-size: .95rem;
}

/* Card footer */
.npc-svl-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--npc-gray-100);
}

.npc-svl-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .83rem;
    font-weight: 700;
    color: var(--npc-blue);
    text-decoration: none;
    transition: gap .2s, color .2s;
}

.npc-svl-link:hover {
    gap: 10px;
    color: var(--npc-red);
}

.npc-svl-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--npc-blue);
    color: #fff;
    font-size: .8rem;
    font-weight: 700;
    padding: 7px 16px;
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s;
}

.npc-svl-cta-btn:hover {
    background: var(--npc-red);
    color: #fff;
}

/* ── Services listing process row ────────────────────────── */
.npc-svc-process-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    margin-top: 40px;
}

.npc-spr-step {
    flex: 1;
    min-width: 180px;
    max-width: 240px;
    text-align: center;
    padding: 0 16px;
}

.npc-spr-num {
    display: inline-block;
    width: 48px;
    height: 48px;
    line-height: 48px;
    border-radius: 50%;
    background: var(--npc-blue);
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.npc-spr-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(0, 56, 132, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.npc-spr-icon i {
    font-size: 1.3rem;
    color: var(--npc-blue);
}

.npc-spr-step h4 {
    font-size: .97rem;
    font-weight: 700;
    color: var(--npc-dark);
    margin-bottom: 8px;
}

.npc-spr-step p {
    font-size: .85rem;
    color: var(--npc-gray-500);
    line-height: 1.6;
}

.npc-spr-arrow {
    display: flex;
    align-items: center;
    padding: 0 4px;
    margin-top: 22px;
    color: var(--npc-blue);
    font-size: .85rem;
    opacity: .45;
    flex-shrink: 0;
}

/* ── Guarantees grid ─────────────────────────────────────── */
.npc-sgs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.npc-sgs-card {
    background: var(--npc-white);
    border-radius: var(--npc-r-lg);
    border: 1px solid var(--npc-gray-100);
    padding: 28px 24px;
    text-align: center;
    transition: box-shadow .25s, transform .25s;
}

.npc-sgs-card:hover {
    box-shadow: 0 8px 28px rgba(0, 56, 132, .1);
    transform: translateY(-4px);
}

.npc-sgs-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 56, 132, .07);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.npc-sgs-icon i {
    font-size: 1.4rem;
    color: var(--npc-blue);
}

.npc-sgs-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--npc-dark);
    margin-bottom: 8px;
}

.npc-sgs-card p {
    font-size: .87rem;
    color: var(--npc-gray-500);
    line-height: 1.65;
    margin: 0;
}


/* ============================================================
   SERVICE DETAIL PAGE
   ============================================================ */

/* ── Hero extras ─────────────────────────────────────────── */
.npc-sd-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .25);
    color: rgba(255, 255, 255, .9);
    font-size: .8rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.npc-sd-hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.npc-sd-hero-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .88);
    font-size: .92rem;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid rgba(255, 255, 255, .3);
    border-radius: 50px;
    transition: background .2s, color .2s, border-color .2s;
}

.npc-sd-hero-phone:hover {
    background: rgba(255, 255, 255, .15);
    color: #fff;
    border-color: rgba(255, 255, 255, .6);
}

/* ── Trust bar ───────────────────────────────────────────── */
.npc-sd-trust-bar {
    background: var(--npc-white);
    border-bottom: 1px solid var(--npc-gray-100);
    box-shadow: 0 2px 12px rgba(0, 56, 132, .06);
    padding: 0;
}

.npc-sdtb-inner {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
}

.npc-sdtb-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 32px;
    font-size: .86rem;
    font-weight: 600;
    color: var(--npc-dark);
}

.npc-sdtb-item i {
    color: var(--npc-blue);
    font-size: 1rem;
    flex-shrink: 0;
}

.npc-sdtb-sep {
    width: 1px;
    background: var(--npc-gray-100);
    margin: 12px 0;
    flex-shrink: 0;
}

/* ── Overview grid ───────────────────────────────────────── */
.npc-sd-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

/* Image block */
.npc-sd-ov-img-wrap {
    position: relative;
}

.npc-sd-ov-main-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--npc-r-lg);
    display: block;
}

.npc-sd-ov-badge {
    position: absolute;
    bottom: -20px;
    left: 24px;
    background: var(--npc-blue);
    border-radius: var(--npc-r);
    padding: 12px 18px;
    box-shadow: 0 6px 20px rgba(0, 56, 132, .25);
}

.npc-sd-ov-badge-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: .88rem;
    font-weight: 700;
}

.npc-sd-ov-badge-inner i {
    font-size: 1.1rem;
}

.npc-sd-ov-price-tag {
    position: absolute;
    top: 20px;
    right: -16px;
    background: var(--npc-red);
    color: #fff;
    border-radius: var(--npc-r);
    padding: 10px 16px;
    box-shadow: 0 6px 20px rgba(179, 25, 66, .3);
    text-align: center;
}

.npc-sdpt-from {
    display: block;
    font-size: .72rem;
    font-weight: 600;
    opacity: .85;
    line-height: 1;
    margin-bottom: 2px;
}

.npc-sdpt-price {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1;
}

/* Content block */
.npc-sd-ov-content {
    padding-top: 8px;
}

.npc-sd-ov-desc {
    font-size: .97rem;
    color: var(--npc-gray-500);
    line-height: 1.75;
    margin-bottom: 20px;
}

.npc-sd-ov-checks {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.npc-sd-ov-check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .93rem;
    color: var(--npc-dark);
    font-weight: 500;
}

.npc-sd-ov-check i {
    color: var(--npc-blue);
    font-size: 1rem;
    flex-shrink: 0;
}

.npc-sd-ov-ctas {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.npc-sd-ov-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .83rem;
    color: var(--npc-gray-500);
    background: rgba(0, 56, 132, .05);
    border-radius: var(--npc-r);
    padding: 10px 14px;
}

.npc-sd-ov-note i {
    color: var(--npc-blue);
    flex-shrink: 0;
}

/* ── Features grid ───────────────────────────────────────── */
.npc-sd-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.npc-sdf-card {
    background: var(--npc-white);
    border-radius: var(--npc-r-lg);
    border: 1px solid var(--npc-gray-100);
    padding: 28px 22px;
    transition: box-shadow .25s, transform .25s;
}

.npc-sdf-card:hover {
    box-shadow: 0 8px 28px rgba(0, 56, 132, .1);
    transform: translateY(-4px);
}

.npc-sdf-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(0, 56, 132, .07);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.npc-sdf-icon i {
    font-size: 1.3rem;
    color: var(--npc-blue);
}

.npc-sdf-card h4 {
    font-size: .97rem;
    font-weight: 700;
    color: var(--npc-dark);
    margin-bottom: 8px;
}

.npc-sdf-card>p {
    font-size: .87rem;
    color: var(--npc-gray-500);
    line-height: 1.65;
    margin: 0;
}

/* ── Process timeline ────────────────────────────────────── */
.npc-sdp-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 40px;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.npc-sdp-step {
    display: grid;
    grid-template-columns: 100px 40px 1fr;
    align-items: start;
    gap: 0;
    padding-bottom: 0;
}

.npc-sdp-step-left {
    text-align: right;
    padding-right: 20px;
    padding-top: 6px;
}

.npc-sdp-num {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--npc-blue);
    line-height: 1;
    display: block;
}

.npc-sdp-week {
    font-size: .75rem;
    color: var(--npc-gray-500);
    font-weight: 600;
    display: block;
    margin-top: 3px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.npc-sdp-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.npc-sdp-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--npc-blue);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 4px rgba(0, 56, 132, .12);
    margin-top: 4px;
}

.npc-sdp-line {
    width: 2px;
    flex: 1;
    min-height: 60px;
    background: linear-gradient(to bottom, var(--npc-blue), rgba(0, 56, 132, .15));
    margin: 4px 0;
}

.npc-sdp-content {
    padding-left: 20px;
    padding-bottom: 40px;
}

.npc-sdp-step:last-child .npc-sdp-content {
    padding-bottom: 0;
}

.npc-sdp-content h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--npc-dark);
    margin-bottom: 8px;
    margin-top: 2px;
}

.npc-sdp-content p {
    font-size: .9rem;
    color: var(--npc-gray-500);
    line-height: 1.7;
    margin: 0;
}

.npc-sdp-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(0, 56, 132, .05);
    border-left: 3px solid var(--npc-blue);
    border-radius: 0 var(--npc-r) var(--npc-r) 0;
    padding: 14px 18px;
    font-size: .87rem;
    color: var(--npc-gray-500);
    margin-top: 32px;
    line-height: 1.6;
}

.npc-sdp-note i {
    color: var(--npc-blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.npc-sdp-note a {
    color: var(--npc-blue);
    font-weight: 600;
    text-decoration: none;
}

.npc-sdp-note a:hover {
    text-decoration: underline;
}

/* ── Why choose us ───────────────────────────────────────── */
.npc-sd-why-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 56px;
    align-items: start;
}

.npc-sd-why-left>p {
    font-size: .97rem;
    color: var(--npc-gray-500);
    line-height: 1.75;
    margin-bottom: 28px;
}

.npc-sd-why-feats {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.npc-sd-why-feat {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.npc-sdwf-icon {
    width: 46px;
    height: 46px;
    border-radius: var(--npc-r);
    background: rgba(0, 56, 132, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.npc-sdwf-icon i {
    font-size: 1.05rem;
    color: var(--npc-blue);
}

.npc-sd-why-feat h4 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--npc-dark);
    margin-bottom: 4px;
}

.npc-sd-why-feat p {
    font-size: .87rem;
    color: var(--npc-gray-500);
    line-height: 1.6;
    margin: 0;
}

/* Stats card */
.npc-sd-why-stats-card {
    background: var(--npc-blue);
    border-radius: var(--npc-r-lg);
    padding: 30px 28px;
    color: #fff;
    box-shadow: 0 12px 40px rgba(0, 56, 132, .25);
}

.npc-sdws-header {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.npc-sdws-header i {
    font-size: 1.3rem;
    color: var(--npc-gold, #e8a919);
}

.npc-sdws-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 22px;
}

.npc-sdws-stat {
    text-align: center;
    background: rgba(255, 255, 255, .1);
    border-radius: var(--npc-r);
    padding: 14px 8px;
}

.npc-sdws-stat strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--npc-gold, #e8a919);
    line-height: 1.1;
}

.npc-sdws-stat span {
    font-size: .75rem;
    color: rgba(255, 255, 255, .75);
    font-weight: 500;
}

.npc-sdws-guarantees {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 4px;
    border-top: 1px solid rgba(255, 255, 255, .18);
    padding-top: 18px;
    margin-bottom: 4px;
}

.npc-sdwsg-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .86rem;
    color: rgba(255, 255, 255, .88);
}

.npc-sdwsg-item i {
    color: var(--npc-gold, #e8a919);
    font-size: .85rem;
    flex-shrink: 0;
}

/* ── FAQ (shared with contact, extended here) ────────────── */
.npc-sd-faq .npc-faq-list {
    max-width: 800px;
    margin: 40px auto 0;
}

/* ── Quote section ───────────────────────────────────────── */
.npc-sd-quote-grid {
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 56px;
    align-items: start;
}

.npc-sdq-left>p {
    font-size: .97rem;
    color: var(--npc-gray-500);
    line-height: 1.75;
    margin-bottom: 22px;
}

.npc-sdq-promise {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.npc-sdq-promise li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .93rem;
    color: var(--npc-dark);
    font-weight: 500;
}

.npc-sdq-promise li i {
    color: var(--npc-blue);
    font-size: .9rem;
    flex-shrink: 0;
}

.npc-sdq-contact-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.npc-sdq-ci {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--npc-white);
    border: 1px solid var(--npc-gray-100);
    border-radius: var(--npc-r);
    text-decoration: none;
    transition: border-color .2s, box-shadow .2s;
}

.npc-sdq-ci:hover {
    border-color: var(--npc-blue);
    box-shadow: 0 4px 14px rgba(0, 56, 132, .1);
}

.npc-sdqci-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--npc-r);
    background: rgba(0, 56, 132, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.npc-sdqci-icon i {
    font-size: 1.1rem;
    color: var(--npc-blue);
}

.npc-sdq-ci-wa .npc-sdqci-icon {
    background: rgba(37, 211, 102, .12);
}

.npc-sdq-ci-wa .npc-sdqci-icon i {
    color: #25d366;
}

.npc-sdq-ci strong {
    display: block;
    font-size: .85rem;
    font-weight: 700;
    color: var(--npc-dark);
    line-height: 1.3;
}

.npc-sdq-ci span {
    display: block;
    font-size: .8rem;
    color: var(--npc-gray-500);
    line-height: 1.3;
}

/* Form card */
.npc-sd-form-card {
    background: var(--npc-white);
    border-radius: var(--npc-r-lg);
    box-shadow: 0 8px 40px rgba(0, 56, 132, .1);
    padding: 36px 32px;
}

.npc-sdf-card-head {
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--npc-gray-100);
}

.npc-sdf-card-head h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--npc-blue);
    margin-bottom: 4px;
}

.npc-sdf-card-head p {
    font-size: .87rem;
    color: var(--npc-gray-500);
    margin: 0;
}

/* ── Related services grid ───────────────────────────────── */
.npc-sd-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}


/* ============================================================
   RESPONSIVE — SERVICES PAGES
   ============================================================ */

@media (max-width: 1199px) {
    .npc-svc-listing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .npc-sd-overview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .npc-sd-ov-img-wrap {
        max-width: 560px;
    }

    .npc-sd-ov-price-tag {
        right: 0;
    }

    .npc-sd-why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .npc-sd-why-stats-card {
        max-width: 480px;
    }

    .npc-sd-quote-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .npc-sd-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .npc-sis-item {
        padding: 18px 24px;
    }

    .npc-svc-process-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .npc-spr-step {
        max-width: 320px;
        min-width: unset;
        width: 100%;
    }

    .npc-spr-arrow {
        transform: rotate(90deg);
        padding: 0;
        margin: 0 auto;
    }

    .npc-sgs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .npc-sd-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .npc-sdp-timeline {
        max-width: 100%;
    }

    .npc-sdp-step {
        grid-template-columns: 80px 32px 1fr;
    }

    .npc-sdws-stats {
        grid-template-columns: repeat(4, 1fr);
    }

    .npc-sdq-left {
        order: 2;
    }

    .npc-sdq-right {
        order: 1;
    }

    .npc-sd-form-card {
        padding: 28px 22px;
    }
}

@media (max-width: 767px) {
    .npc-sis-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 16px;
    }

    .npc-sis-sep {
        display: none;
    }

    .npc-sis-item {
        padding: 12px 0;
    }

    .npc-svc-listing-grid {
        grid-template-columns: 1fr;
    }

    .npc-svl-img-wrap {
        height: 200px;
    }

    .npc-sgs-grid {
        grid-template-columns: 1fr;
    }

    .npc-sd-features-grid {
        grid-template-columns: 1fr;
    }

    .npc-sdp-step {
        grid-template-columns: 64px 28px 1fr;
    }

    .npc-sdp-step-left {
        padding-right: 12px;
    }

    .npc-sdp-num {
        font-size: 1.2rem;
    }

    .npc-sdp-content {
        padding-left: 12px;
    }

    .npc-sdtb-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 16px;
    }

    .npc-sdtb-sep {
        display: none;
    }

    .npc-sdtb-item {
        padding: 12px 0;
    }

    .npc-sd-hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .npc-sdws-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .npc-sd-related-grid {
        grid-template-columns: 1fr;
    }

    .npc-sd-form-card {
        padding: 22px 16px;
    }
}

@media (max-width: 480px) {
    .npc-sdws-stats {
        grid-template-columns: 1fr 1fr;
    }

    .npc-sd-ov-main-img {
        height: 260px;
    }

    .npc-sd-ov-badge {
        left: 12px;
        bottom: -16px;
        padding: 10px 14px;
    }

    .npc-sd-quote-grid {
        gap: 28px;
    }

    .npc-sdq-contact-items {
        gap: 8px;
    }
}

/* ============================================================
   LEGAL PAGES  (Privacy Policy / Terms of Service / Legal)
   ============================================================ */

/* ── Meta strip ──────────────────────────────────────────── */
.npc-legal-meta-strip {
    background: var(--npc-blue);
    padding: 0;
}

.npc-lms-inner {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
}

.npc-lms-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    color: rgba(255, 255, 255, .9);
    font-size: .88rem;
}

.npc-lms-item i {
    color: var(--npc-gold, #e8a919);
    font-size: 1rem;
    flex-shrink: 0;
}

.npc-lms-item strong {
    color: #fff;
}

.npc-lms-sep {
    width: 1px;
    background: rgba(255, 255, 255, .2);
    margin: 12px 0;
    flex-shrink: 0;
}

/* ── Quick-link cards (Legal index page) ─────────────────── */
.npc-legal-quicklinks {
    background: var(--npc-gray-50, #f8f9fb);
    padding: 48px 0;
    border-bottom: 1px solid var(--npc-gray-100);
}

.npc-lql-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.npc-lql-card {
    background: var(--npc-white);
    border-radius: var(--npc-r-lg);
    border: 1px solid var(--npc-gray-100);
    padding: 32px 26px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    transition: box-shadow .25s, transform .25s, border-color .25s;
}

.npc-lql-card:hover {
    box-shadow: 0 10px 32px rgba(0, 56, 132, .1);
    transform: translateY(-4px);
    border-color: var(--npc-blue);
}

.npc-lql-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(0, 56, 132, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.npc-lql-icon i {
    font-size: 1.4rem;
    color: var(--npc-blue);
}

.npc-lql-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--npc-dark);
    margin-bottom: 8px;
}

.npc-lql-card p {
    font-size: .88rem;
    color: var(--npc-gray-500);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.npc-lql-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .83rem;
    font-weight: 700;
    color: var(--npc-blue);
    transition: gap .2s;
}

.npc-lql-card:hover .npc-lql-link {
    gap: 10px;
}

/* ── Main page layout ────────────────────────────────────── */
.npc-legal-page {
    background: var(--npc-white);
}

.npc-legal-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 48px;
    align-items: start;
}

/* ── Sidebar TOC ─────────────────────────────────────────── */
.npc-legal-toc {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.npc-ltoc-card {
    background: var(--npc-white);
    border: 1px solid var(--npc-gray-100);
    border-radius: var(--npc-r-lg);
    padding: 24px 20px;
    box-shadow: 0 4px 18px rgba(0, 56, 132, .06);
}

.npc-ltoc-card h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .92rem;
    font-weight: 800;
    color: var(--npc-blue);
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--npc-gray-100);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.npc-ltoc-card h4 i {
    font-size: .9rem;
}

.npc-ltoc-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.npc-ltoc-card ul li a {
    display: block;
    padding: 7px 10px;
    font-size: .85rem;
    color: var(--npc-gray-500);
    text-decoration: none;
    border-radius: var(--npc-r);
    transition: background .18s, color .18s;
    line-height: 1.4;
}

.npc-ltoc-card ul li a:hover {
    background: rgba(0, 56, 132, .06);
    color: var(--npc-blue);
}

.npc-ltoc-cta {
    background: var(--npc-blue);
    border-radius: var(--npc-r-lg);
    padding: 22px 20px;
    text-align: center;
    color: #fff;
}

.npc-ltoc-cta i {
    font-size: 1.6rem;
    color: var(--npc-gold, #e8a919);
    display: block;
    margin-bottom: 10px;
}

.npc-ltoc-cta p {
    font-size: .87rem;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 14px;
    line-height: 1.5;
}

.npc-ltoc-cta .npc-btn-primary {
    display: inline-flex;
    font-size: .85rem;
    padding: 9px 20px;
}

/* ── Body sections ───────────────────────────────────────── */
.npc-legal-body {
    min-width: 0;
}

.npc-legal-section {
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--npc-gray-100);
}

.npc-legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.npc-legal-section h2 {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--npc-dark);
    margin-bottom: 18px;
}

.npc-legal-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--npc-blue);
    color: #fff;
    font-size: .78rem;
    font-weight: 800;
    flex-shrink: 0;
    letter-spacing: .02em;
}

.npc-legal-section h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--npc-dark);
    margin: 20px 0 10px;
}

.npc-legal-section p {
    font-size: .95rem;
    color: var(--npc-gray-500);
    line-height: 1.8;
    margin-bottom: 14px;
}

.npc-legal-section p:last-child {
    margin-bottom: 0;
}

.npc-legal-section a {
    color: var(--npc-blue);
    font-weight: 600;
    text-decoration: none;
}

.npc-legal-section a:hover {
    text-decoration: underline;
}

/* Bullet list */
.npc-legal-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.npc-legal-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .93rem;
    color: var(--npc-gray-500);
    line-height: 1.65;
    padding-left: 4px;
}

.npc-legal-list li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--npc-blue);
    flex-shrink: 0;
    margin-top: 8px;
}

.npc-legal-list li strong {
    color: var(--npc-dark);
}

/* Highlight box */
.npc-legal-highlight {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(0, 56, 132, .06);
    border-left: 3px solid var(--npc-blue);
    border-radius: 0 var(--npc-r) var(--npc-r) 0;
    padding: 16px 18px;
    margin: 18px 0;
}

.npc-legal-highlight i {
    color: var(--npc-blue);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.npc-legal-highlight p {
    font-size: .9rem;
    color: var(--npc-dark);
    margin: 0;
    line-height: 1.65;
}

.npc-legal-highlight-green {
    background: rgba(21, 128, 61, .06);
    border-left-color: #15803d;
}

.npc-legal-highlight-green i {
    color: #15803d;
}

/* Table */
.npc-legal-table-wrap {
    overflow-x: auto;
    margin: 18px 0;
    border-radius: var(--npc-r);
    border: 1px solid var(--npc-gray-100);
}

.npc-legal-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .88rem;
}

.npc-legal-table thead tr {
    background: var(--npc-blue);
    color: #fff;
}

.npc-legal-table th {
    padding: 12px 16px;
    font-weight: 700;
    text-align: left;
    white-space: nowrap;
}

.npc-legal-table td {
    padding: 11px 16px;
    color: var(--npc-gray-500);
    border-bottom: 1px solid var(--npc-gray-100);
    line-height: 1.55;
}

.npc-legal-table tbody tr:last-child td {
    border-bottom: none;
}

.npc-legal-table tbody tr:nth-child(even) td {
    background: rgba(0, 56, 132, .025);
}

/* Company info grid */
.npc-legal-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--npc-gray-100);
    border-radius: var(--npc-r-lg);
    overflow: hidden;
    margin-top: 18px;
}

.npc-lig-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--npc-gray-100);
    border-right: 1px solid var(--npc-gray-100);
}

.npc-lig-item:nth-child(even) {
    border-right: none;
}

.npc-lig-item:nth-last-child(-n+2) {
    border-bottom: none;
}

.npc-lig-label {
    font-size: .75rem;
    font-weight: 700;
    color: var(--npc-blue);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.npc-lig-value {
    font-size: .9rem;
    color: var(--npc-dark);
    font-weight: 500;
}

.npc-lig-value a {
    color: var(--npc-blue);
    text-decoration: none;
}

.npc-lig-value a:hover {
    text-decoration: underline;
}

/* Contact row at bottom of sections */
.npc-legal-contact-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.npc-lcr-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--npc-white);
    border: 1px solid var(--npc-gray-100);
    border-radius: var(--npc-r);
    text-decoration: none;
    transition: border-color .2s, box-shadow .2s;
    color: inherit;
}

a.npc-lcr-item:hover {
    border-color: var(--npc-blue);
    box-shadow: 0 4px 14px rgba(0, 56, 132, .09);
}

.npc-lcr-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--npc-r);
    background: rgba(0, 56, 132, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.npc-lcr-icon i {
    font-size: 1.1rem;
    color: var(--npc-blue);
}

.npc-lcr-item strong {
    display: block;
    font-size: .85rem;
    font-weight: 700;
    color: var(--npc-dark);
    line-height: 1.3;
}

.npc-lcr-item span {
    display: block;
    font-size: .82rem;
    color: var(--npc-gray-500);
    line-height: 1.4;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1199px) {
    .npc-legal-layout {
        grid-template-columns: 220px 1fr;
        gap: 36px;
    }
}

@media (max-width: 991px) {
    .npc-legal-layout {
        grid-template-columns: 1fr;
    }

    .npc-legal-toc {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .npc-ltoc-card {
        flex: 1;
        min-width: 240px;
    }

    .npc-ltoc-cta {
        flex: 0 0 auto;
        min-width: 200px;
    }

    .npc-lql-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .npc-legal-info-grid {
        grid-template-columns: 1fr;
    }

    .npc-lig-item {
        border-right: none;
    }

    .npc-lig-item:last-child {
        border-bottom: none;
    }
}

@media (max-width: 767px) {
    .npc-lms-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 16px;
    }

    .npc-lms-sep {
        display: none;
    }

    .npc-lms-item {
        padding: 10px 0;
    }

    .npc-lql-grid {
        grid-template-columns: 1fr;
    }

    .npc-legal-section h2 {
        font-size: 1.1rem;
    }

    .npc-legal-toc {
        flex-direction: column;
    }

    .npc-legal-table th,
    .npc-legal-table td {
        padding: 10px 12px;
        font-size: .82rem;
    }

    .npc-legal-layout {
        gap: 28px;
    }
}

@media (max-width: 480px) {
    .npc-legal-contact-row {
        gap: 8px;
    }

    .npc-legal-num {
        width: 30px;
        height: 30px;
        font-size: .72rem;
    }
}

/* ============================================================
   PORTFOLIO — filter tabs, card footer, featured badge, author
   ============================================================ */

/* Filter row */
.npc-port-filter-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}

.npc-port-filter-btn {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .2);
    color: rgba(255, 255, 255, .75);
    font-size: .83rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: background .2s, color .2s, border-color .2s;
    letter-spacing: .02em;
}

.npc-port-filter-btn:hover,
.npc-port-filter-btn.active {
    background: var(--npc-red);
    border-color: var(--npc-red);
    color: #fff;
}

/* Hidden state when filtering */
.npc-port-card.is-hidden {
    display: none;
}

/* Featured badge on card image */
.npc-port-featured-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--npc-red);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 3;
    letter-spacing: .03em;
}

/* Author line inside overlay */
.npc-port-author {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .8rem;
    color: rgba(255, 255, 255, .75);
    margin: 0 0 6px;
    font-style: italic;
}

.npc-port-author i {
    font-size: .75rem;
}

/* Card footer bar */
.npc-port-footer {
    background: rgba(255, 255, 255, .06);
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 8px 14px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.npc-port-footer span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    color: rgba(255, 255, 255, .55);
    font-weight: 500;
}

.npc-port-footer i {
    color: var(--npc-gold, #e8a919);
}

/* ============================================================
   CTA-PRO  — global CTA section (replaces old npc-cta)
   ============================================================ */

.npc-cta-pro {
    position: relative;
    overflow: hidden;
    padding: 80px 0 72px;
    background: var(--npc-blue);
}

/* Background layers */
.npc-ctap-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #001f5c 0%, #003884 45%, #0d4fa8 100%);
    z-index: 0;
}

.npc-ctap-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .18);
    z-index: 1;
}

.npc-ctap-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 85%, rgba(232, 169, 25, .12) 0%, transparent 50%),
        radial-gradient(circle at 85% 15%, rgba(179, 25, 66, .12) 0%, transparent 50%);
    z-index: 2;
}

.npc-ctap-container {
    position: relative;
    z-index: 3;
}

/* ── Stats bar ───────────────────────────────────────────── */
.npc-ctap-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--npc-r-lg);
    padding: 0 16px;
    margin-bottom: 56px;
}

.npc-ctaps-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 18px 40px;
    text-align: center;
}

.npc-ctaps-item strong {
    display: block;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--npc-gold, #e8a919);
    line-height: 1.1;
}

.npc-ctaps-item span {
    font-size: .78rem;
    color: rgba(255, 255, 255, .7);
    font-weight: 500;
    margin-top: 3px;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.npc-ctaps-sep {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, .18);
    flex-shrink: 0;
}

/* ── Main grid ───────────────────────────────────────────── */
.npc-ctap-grid {
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 60px;
    align-items: start;
}

/* ── Left side ───────────────────────────────────────────── */
.npc-ctap-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    color: rgba(255, 255, 255, .9);
    font-size: .8rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 18px;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.npc-ctap-kicker i {
    color: var(--npc-gold, #e8a919);
}

.npc-ctap-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 18px;
}

.npc-ctap-accent {
    color: var(--npc-gold, #e8a919);
}

.npc-ctap-lead {
    font-size: .97rem;
    color: rgba(255, 255, 255, .78);
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 520px;
}

/* Checks */
.npc-ctap-checks {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
}

.npc-ctap-check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .9rem;
    color: rgba(255, 255, 255, .88);
    font-weight: 500;
}

.npc-ctap-check i {
    color: var(--npc-gold, #e8a919);
    font-size: .9rem;
    flex-shrink: 0;
}

/* Contact row */
.npc-ctap-contact-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.npc-ctap-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--npc-r);
    padding: 12px 18px;
    text-decoration: none;
    transition: background .2s, border-color .2s;
    flex: 1;
    min-width: 180px;
}

.npc-ctap-contact-item:hover {
    background: rgba(255, 255, 255, .15);
    border-color: rgba(255, 255, 255, .35);
}

.npc-ctap-ci-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--npc-r);
    background: var(--npc-gold, #e8a919);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.npc-ctap-ci-icon i {
    font-size: 1rem;
    color: #fff;
}

.npc-ctap-contact-item strong {
    display: block;
    font-size: .82rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .7);
    line-height: 1.2;
}

.npc-ctap-contact-item span {
    display: block;
    font-size: .92rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

/* Trust badges */
.npc-ctap-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.npc-ctap-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 50px;
    padding: 6px 14px;
    font-size: .78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .8);
}

.npc-ctap-badge i {
    color: var(--npc-gold, #e8a919);
    font-size: .8rem;
}

/* ── Right: form card ────────────────────────────────────── */
.npc-ctap-form-card {
    background: #fff;
    border-radius: var(--npc-r-lg);
    padding: 36px 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
}

.npc-ctap-form-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--npc-gray-100);
}

.npc-ctap-form-head-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--npc-r);
    background: var(--npc-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.npc-ctap-form-head-icon i {
    font-size: 1.2rem;
    color: #fff;
}

.npc-ctap-form-head h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--npc-blue);
    margin-bottom: 2px;
    line-height: 1.2;
}

.npc-ctap-form-head p {
    font-size: .82rem;
    color: var(--npc-gray-500);
    margin: 0;
}

/* Form fields */
.npc-ctap-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.npc-ctap-field {
    margin-bottom: 14px;
}

.npc-ctap-field:last-of-type {
    margin-bottom: 0;
}

.npc-ctap-field>label {
    display: block;
    font-size: .8rem;
    font-weight: 700;
    color: var(--npc-dark);
    margin-bottom: 6px;
}

.npc-ctap-field>label span {
    color: var(--npc-red);
}

.npc-ctap-input-wrap {
    position: relative;
}

.npc-ctap-input-wrap>i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--npc-blue);
    font-size: .85rem;
    pointer-events: none;
    z-index: 1;
}

.npc-ctap-input-wrap input,
.npc-ctap-input-wrap textarea {
    width: 100%;
    padding: 10px 12px 10px 34px;
    border: 1.5px solid var(--npc-gray-100);
    border-radius: var(--npc-r);
    font-size: .88rem;
    color: var(--npc-dark);
    font-family: inherit;
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
}

.npc-ctap-input-wrap input:focus,
.npc-ctap-input-wrap textarea:focus {
    border-color: var(--npc-blue);
    box-shadow: 0 0 0 3px rgba(0, 56, 132, .08);
}

.npc-ctap-textarea-wrap>i {
    top: 14px;
    transform: none;
}

.npc-ctap-textarea-wrap textarea {
    resize: vertical;
    min-height: 72px;
}

/* Services checkboxes */
.npc-ctap-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.npc-ctap-checkbox {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .8rem;
    font-weight: 500;
    color: var(--npc-dark);
    cursor: pointer;
    padding: 6px 8px;
    border: 1.5px solid var(--npc-gray-100);
    border-radius: var(--npc-r);
    transition: border-color .18s, background .18s;
    user-select: none;
}

.npc-ctap-checkbox:hover {
    border-color: var(--npc-blue);
    background: rgba(0, 56, 132, .03);
}

.npc-ctap-checkbox input[type="checkbox"] {
    accent-color: var(--npc-blue);
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    cursor: pointer;
}

.npc-ctap-checkbox input:checked~span {
    color: var(--npc-blue);
    font-weight: 600;
}

/* Submit button */
.npc-ctap-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    background: var(--npc-blue);
    color: #fff;
    font-size: .95rem;
    font-weight: 800;
    border: none;
    border-radius: var(--npc-r);
    cursor: pointer;
    margin-top: 16px;
    transition: background .2s, transform .2s;
    letter-spacing: .02em;
}

.npc-ctap-submit:hover {
    background: var(--npc-red);
    transform: translateY(-2px);
}

/* Form footer */
.npc-ctap-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--npc-gray-100);
}

.npc-ctap-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .8rem;
    font-weight: 700;
    color: #25d366;
    text-decoration: none;
    transition: opacity .2s;
}

.npc-ctap-wa-btn:hover {
    opacity: .8;
}

.npc-ctap-availability {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .75rem;
    color: var(--npc-gray-500);
}

.npc-ctap-availability i {
    font-size: .72rem;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1199px) {
    .npc-ctap-grid {
        grid-template-columns: 1fr 460px;
        gap: 40px;
    }

    .npc-ctap-title {
        font-size: 1.9rem;
    }
}

@media (max-width: 991px) {
    .npc-ctap-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .npc-ctap-form-card {
        max-width: 580px;
        margin: 0 auto;
    }

    .npc-ctaps-item {
        padding: 16px 24px;
    }

    .npc-ctap-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 767px) {
    .npc-cta-pro {
        padding: 60px 0 52px;
    }

    .npc-ctap-stats {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 20px;
    }

    .npc-ctaps-sep {
        display: none;
    }

    .npc-ctaps-item {
        padding: 12px 0;
        flex-direction: row;
        gap: 10px;
        align-items: center;
    }

    .npc-ctaps-item strong {
        font-size: 1.3rem;
    }

    .npc-ctap-form-row {
        grid-template-columns: 1fr;
    }

    .npc-ctap-title {
        font-size: 1.5rem;
    }

    .npc-ctap-contact-row {
        flex-direction: column;
    }

    .npc-ctap-form-card {
        padding: 24px 18px;
    }

    .npc-ctap-services-grid {
        grid-template-columns: 1fr;
    }

    .npc-ctap-form-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .npc-ctap-title {
        font-size: 1.3rem;
    }

    .npc-ctap-badges {
        gap: 6px;
    }
}

/* ============================================================
   CTA-X  — "Editorial Dark" CTA Section
   ============================================================ */

.npc-ctax {
    position: relative;
    overflow: hidden;
    padding: 96px 0 80px;
}

/* ── Background layers ───────────────────────────────────── */
.npc-ctax-layer-base {
    position: absolute;
    inset: 0;
    background: #060d20;
    z-index: 0;
}

.npc-ctax-layer-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 55% at 20% 50%, rgba(0, 56, 132, .55) 0%, transparent 65%),
        radial-gradient(ellipse 50% 40% at 80% 20%, rgba(179, 25, 66, .18) 0%, transparent 60%),
        radial-gradient(ellipse 40% 35% at 75% 80%, rgba(232, 169, 25, .12) 0%, transparent 60%);
    z-index: 1;
}

.npc-ctax-layer-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 2;
}

.npc-ctax-wrap {
    position: relative;
    z-index: 3;
}

/* ── Kicker pill ─────────────────────────────────────────── */
.npc-ctax-kicker-row {
    text-align: center;
    margin-bottom: 28px;
}

.npc-ctax-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(232, 169, 25, .12);
    border: 1px solid rgba(232, 169, 25, .35);
    color: var(--npc-gold, #e8a919);
    font-size: .78rem;
    font-weight: 700;
    padding: 7px 20px;
    border-radius: 50px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.npc-ctax-pill i {
    font-size: .6rem;
}

/* ── Headline block ──────────────────────────────────────── */
.npc-ctax-headline-block {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 56px;
}

.npc-ctax-title {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.18;
    letter-spacing: -.02em;
    margin-bottom: 20px;
}

.npc-ctax-title-line {
    display: inline-block;
    position: relative;
    white-space: nowrap;
}

.npc-ctax-title-line em {
    font-style: normal;
    color: var(--npc-gold, #e8a919);
}

.npc-ctax-underline-svg {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 14px;
    overflow: visible;
}

.npc-ctax-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .65);
    line-height: 1.75;
    max-width: 620px;
    margin: 0 auto;
}

/* ── Three action cards ──────────────────────────────────── */
.npc-ctax-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 36px;
}

.npc-ctax-card {
    border-radius: 20px;
    padding: 36px 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    overflow: hidden;
    transition: transform .28s, box-shadow .28s;
}

.npc-ctax-card:hover {
    transform: translateY(-8px);
}

/* Blue card */
.npc-ctax-card--blue {
    background: rgba(0, 56, 132, .4);
    border: 1px solid rgba(0, 100, 220, .35);
    box-shadow: 0 8px 40px rgba(0, 56, 132, .3);
}

.npc-ctax-card--blue::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(0, 100, 220, .15);
}

/* Gold / featured card */
.npc-ctax-card--gold {
    background: var(--npc-gold, #e8a919);
    border: none;
    box-shadow: 0 16px 56px rgba(232, 169, 25, .35);
}

.npc-ctax-card--gold::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(255, 255, 255, .12) 0%, transparent 60%);
    pointer-events: none;
}

.npc-ctax-card--featured {
    transform: translateY(-10px);
    z-index: 2;
}

.npc-ctax-card--featured:hover {
    transform: translateY(-18px);
}

.npc-ctax-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0, 0, 0, .18);
    color: #fff;
    font-size: .68rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 50px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

/* Dark card */
.npc-ctax-card--dark {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .1);
    box-shadow: 0 8px 40px rgba(0, 0, 0, .3);
}

.npc-ctax-card--dark::before {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(37, 211, 102, .07);
}

/* Card icon */
.npc-ctax-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.npc-ctax-card--blue .npc-ctax-card-icon {
    background: rgba(255, 255, 255, .12);
}

.npc-ctax-card--blue .npc-ctax-card-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.npc-ctax-card--gold .npc-ctax-card-icon {
    background: rgba(0, 0, 0, .15);
}

.npc-ctax-card--gold .npc-ctax-card-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.npc-ctax-card--dark .npc-ctax-card-icon {
    background: rgba(37, 211, 102, .12);
}

.npc-ctax-card--dark .npc-ctax-card-icon i {
    font-size: 1.5rem;
    color: #25d366;
}

/* Card headings */
.npc-ctax-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.25;
}

.npc-ctax-card--blue h3,
.npc-ctax-card--dark h3 {
    color: #fff;
}

.npc-ctax-card--gold h3 {
    color: #fff;
}

.npc-ctax-card>p {
    font-size: .88rem;
    line-height: 1.65;
    margin-bottom: 18px;
    flex: 1;
}

.npc-ctax-card--blue>p,
.npc-ctax-card--dark>p {
    color: rgba(255, 255, 255, .65);
}

.npc-ctax-card--gold>p {
    color: rgba(255, 255, 255, .85);
}

/* Checks inside card */
.npc-ctax-card-checks {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.npc-ctax-card-checks li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    font-weight: 500;
}

.npc-ctax-card--blue .npc-ctax-card-checks li {
    color: rgba(255, 255, 255, .75);
}

.npc-ctax-card--gold .npc-ctax-card-checks li {
    color: rgba(255, 255, 255, .9);
}

.npc-ctax-card--dark .npc-ctax-card-checks li {
    color: rgba(255, 255, 255, .65);
}

.npc-ctax-card--blue .npc-ctax-card-checks li i {
    color: var(--npc-gold, #e8a919);
    font-size: .75rem;
    flex-shrink: 0;
}

.npc-ctax-card--gold .npc-ctax-card-checks li i {
    color: rgba(255, 255, 255, .9);
    font-size: .75rem;
    flex-shrink: 0;
}

.npc-ctax-card--dark .npc-ctax-card-checks li i {
    color: #25d366;
    font-size: .75rem;
    flex-shrink: 0;
}

/* Card CTA buttons */
.npc-ctax-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .85rem;
    font-weight: 800;
    padding: 12px 22px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s, background .2s;
    align-self: flex-start;
    letter-spacing: .01em;
}

.npc-ctax-card--blue .npc-ctax-card-btn {
    background: #fff;
    color: var(--npc-blue);
}

.npc-ctax-card--blue .npc-ctax-card-btn:hover {
    background: var(--npc-gold, #e8a919);
    color: #fff;
    transform: translateX(4px);
}

.npc-ctax-card-btn--gold {
    background: rgba(0, 0, 0, .2);
    color: #fff;
}

.npc-ctax-card-btn--gold:hover {
    background: rgba(0, 0, 0, .35);
    transform: translateX(4px);
}

.npc-ctax-card-btn--wa {
    background: #25d366;
    color: #fff;
}

.npc-ctax-card-btn--wa:hover {
    background: #1aaf55;
    color: #fff;
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, .35);
}

/* ── Guarantees strip ────────────────────────────────────── */
.npc-ctax-gstrip {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 14px;
    padding: 0 10px;
    margin-bottom: 56px;
}

.npc-ctax-gstrip-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    font-size: .83rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .75);
}

.npc-ctax-gstrip-item i {
    color: var(--npc-gold, #e8a919);
    font-size: .9rem;
    flex-shrink: 0;
}

.npc-ctax-gstrip-sep {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, .12);
    flex-shrink: 0;
}

/* ── Quote form section ──────────────────────────────────── */
.npc-ctax-form-section {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 24px;
    overflow: hidden;
}

.npc-ctax-form-inner {
    display: grid;
    grid-template-columns: 360px 1fr;
}

/* Left info panel */
.npc-ctax-form-left {
    background: rgba(0, 56, 132, .35);
    border-right: 1px solid rgba(255, 255, 255, .08);
    padding: 44px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.npc-ctax-form-left h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.npc-ctax-form-left>p {
    font-size: .9rem;
    color: rgba(255, 255, 255, .65);
    line-height: 1.7;
    margin-bottom: 28px;
}

.npc-ctax-form-contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.npc-ctax-fc-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    padding: 12px 16px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    transition: background .2s, border-color .2s;
}

.npc-ctax-fc-item:hover {
    background: rgba(255, 255, 255, .13);
    border-color: rgba(255, 255, 255, .22);
}

.npc-ctax-fc-item>i {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--npc-gold, #e8a919);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    flex-shrink: 0;
}

.npc-ctax-fc-item strong {
    display: block;
    font-size: .75rem;
    color: rgba(255, 255, 255, .55);
    font-weight: 600;
    line-height: 1.2;
}

.npc-ctax-fc-item span {
    display: block;
    font-size: .88rem;
    color: #fff;
    font-weight: 700;
    line-height: 1.3;
}

/* Right form panel */
.npc-ctax-form-right {
    padding: 40px 40px;
}

/* Input row */
.npc-ctax-frow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 14px;
}

.npc-ctax-ffield {
    position: relative;
}

.npc-ctax-ffield>i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, .35);
    font-size: .82rem;
    pointer-events: none;
    z-index: 1;
}

.npc-ctax-ffield input {
    width: 100%;
    background: rgba(255, 255, 255, .07);
    border: 1.5px solid rgba(255, 255, 255, .12);
    border-radius: 10px;
    padding: 11px 12px 11px 34px;
    font-size: .87rem;
    color: #fff;
    font-family: inherit;
    outline: none;
    transition: border-color .2s, background .2s;
}

.npc-ctax-ffield input::placeholder {
    color: rgba(255, 255, 255, .3);
}

.npc-ctax-ffield input:focus {
    border-color: var(--npc-gold, #e8a919);
    background: rgba(255, 255, 255, .1);
}

/* Service checkboxes */
.npc-ctax-fservices {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 18px;
}

.npc-ctax-fchk {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .7);
    cursor: pointer;
    padding: 8px 10px;
    border: 1.5px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    transition: border-color .18s, background .18s;
    user-select: none;
}

.npc-ctax-fchk:hover {
    border-color: rgba(232, 169, 25, .5);
    background: rgba(232, 169, 25, .06);
}

.npc-ctax-fchk input[type="checkbox"] {
    accent-color: var(--npc-gold, #e8a919);
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    cursor: pointer;
}

.npc-ctax-fchk input:checked~span {
    color: var(--npc-gold, #e8a919);
    font-weight: 700;
}

/* Actions row */
.npc-ctax-factions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.npc-ctax-fsub {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--npc-gold, #e8a919);
    color: #fff;
    font-size: .95rem;
    font-weight: 800;
    padding: 13px 32px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background .2s, transform .2s, box-shadow .2s;
    letter-spacing: .02em;
    box-shadow: 0 6px 24px rgba(232, 169, 25, .35);
}

.npc-ctax-fsub:hover {
    background: #d49615;
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(232, 169, 25, .45);
}

.npc-ctax-fprivacy {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    color: rgba(255, 255, 255, .4);
}

.npc-ctax-fprivacy i {
    font-size: .75rem;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1199px) {
    .npc-ctax-cards {
        gap: 16px;
    }

    .npc-ctax-form-inner {
        grid-template-columns: 300px 1fr;
    }

    .npc-ctax-frow {
        grid-template-columns: 1fr 1fr;
    }

    .npc-ctax-fservices {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .npc-ctax-cards {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }

    .npc-ctax-card--featured {
        transform: none;
    }

    .npc-ctax-card--featured:hover {
        transform: translateY(-8px);
    }

    .npc-ctax-gstrip {
        flex-wrap: wrap;
        gap: 0;
    }

    .npc-ctax-form-inner {
        grid-template-columns: 1fr;
    }

    .npc-ctax-form-left {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
        padding: 32px 28px;
    }

    .npc-ctax-form-right {
        padding: 32px 28px;
    }

    .npc-ctax-frow {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .npc-ctax {
        padding: 70px 0 60px;
    }

    .npc-ctax-title {
        font-size: 2rem;
    }

    .npc-ctax-gstrip {
        flex-direction: column;
        align-items: flex-start;
        padding: 8px 20px;
    }

    .npc-ctax-gstrip-sep {
        display: none;
    }

    .npc-ctax-gstrip-item {
        padding: 8px 0;
    }

    .npc-ctax-frow {
        grid-template-columns: 1fr;
    }

    .npc-ctax-fservices {
        grid-template-columns: 1fr 1fr;
    }

    .npc-ctax-form-left {
        padding: 24px 20px;
    }

    .npc-ctax-form-right {
        padding: 24px 20px;
    }
}

@media (max-width: 480px) {
    .npc-ctax-title {
        font-size: 1.65rem;
    }

    .npc-ctax-fservices {
        grid-template-columns: 1fr;
    }

    .npc-ctax-factions {
        flex-direction: column;
        align-items: stretch;
    }

    .npc-ctax-fsub {
        justify-content: center;
    }

    .npc-ctax-cards {
        max-width: 100%;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   NEW INDEX PAGE — HERO  (npc-hx-*)
═══════════════════════════════════════════════════════════════════ */

.npc-hx {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #060d20;
    padding: 120px 0 80px;
}

/* Background layers */
.npc-hx-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 55% at 20% 40%, rgba(0, 56, 132, .45) 0%, transparent 65%),
        radial-gradient(ellipse 50% 40% at 80% 70%, rgba(185, 28, 28, .18) 0%, transparent 60%),
        radial-gradient(ellipse 40% 35% at 65% 15%, rgba(232, 169, 25, .12) 0%, transparent 55%);
    pointer-events: none;
}

.npc-hx-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 56, 132, .25) 0%, transparent 70%);
    pointer-events: none;
}

.npc-hx-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 56px 56px;
    pointer-events: none;
}

/* Container & inner two-column layout */
.npc-hx-container {
    position: relative;
    z-index: 2;
}

.npc-hx-inner {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 56px;
    align-items: center;
}

/* ── Left copy column ── */
.npc-hx-copy {
    color: #fff;
}

.npc-hx-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 169, 25, .12);
    border: 1px solid rgba(232, 169, 25, .35);
    color: var(--npc-gold, #e8a919);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.npc-hx-badge i {
    font-size: .65rem;
}

.npc-hx-title {
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    font-weight: 900;
    line-height: 1.13;
    letter-spacing: -.02em;
    color: #fff;
    margin-bottom: 22px;
}

.npc-hx-accent {
    background: linear-gradient(90deg, var(--npc-gold, #e8a919) 0%, #f5c842 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.npc-hx-lead {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, .65);
    max-width: 560px;
    margin-bottom: 32px;
}

.npc-hx-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 36px;
}

.npc-hx-btn-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--npc-gold, #e8a919);
    color: #fff;
    font-size: .97rem;
    font-weight: 800;
    padding: 14px 34px;
    border-radius: 50px;
    text-decoration: none;
    transition: background .2s, transform .2s, box-shadow .2s;
    box-shadow: 0 8px 28px rgba(232, 169, 25, .4);
    letter-spacing: .02em;
}

.npc-hx-btn-main:hover {
    background: #d49615;
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(232, 169, 25, .5);
    color: #fff;
    text-decoration: none;
}

.npc-hx-btn-sec {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .06);
    border: 1.5px solid rgba(255, 255, 255, .18);
    color: rgba(255, 255, 255, .9);
    font-size: .95rem;
    font-weight: 700;
    padding: 13px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: background .2s, border-color .2s, color .2s;
    backdrop-filter: blur(4px);
}

.npc-hx-btn-sec:hover {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .35);
    color: #fff;
    text-decoration: none;
}

/* Stats row */
.npc-hx-stats {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 32px;
}

.npc-hx-stat {
    display: flex;
    flex-direction: column;
    padding: 0 22px;
}

.npc-hx-stat:first-child {
    padding-left: 0;
}

.npc-hx-stat strong {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--npc-gold, #e8a919);
    line-height: 1;
}

.npc-hx-stat span {
    font-size: .75rem;
    color: rgba(255, 255, 255, .5);
    margin-top: 3px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.npc-hx-stat-div {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, .15);
    flex-shrink: 0;
}

/* Service pills */
.npc-hx-svc-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.npc-hx-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .75);
    font-size: .78rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    text-decoration: none;
    transition: background .18s, border-color .18s, color .18s;
}

.npc-hx-pill:hover {
    background: rgba(232, 169, 25, .12);
    border-color: rgba(232, 169, 25, .4);
    color: var(--npc-gold, #e8a919);
    text-decoration: none;
}

.npc-hx-pill i {
    font-size: .7rem;
}

.npc-hx-pill-more {
    background: rgba(232, 169, 25, .08);
    border-color: rgba(232, 169, 25, .25);
    color: var(--npc-gold, #e8a919);
}

/* ── Right column: form card ── */
.npc-hx-form-wrap {
    display: flex;
    align-items: flex-start;
}

.npc-hx-form-card {
    width: 100%;
    background: rgba(10, 22, 50, .75);
    border: 1.5px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 24px 72px rgba(0, 0, 0, .45);
}

.npc-hx-form-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.npc-hx-fh-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--npc-blue, #003884);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    flex-shrink: 0;
}

.npc-hx-form-head h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 2px;
    line-height: 1.2;
}

.npc-hx-form-head p {
    font-size: .78rem;
    color: rgba(255, 255, 255, .45);
    margin: 0;
}

/* Form fields */
.npc-hx-frow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.npc-hx-field {
    position: relative;
    margin-bottom: 12px;
}

.npc-hx-field:last-child {
    margin-bottom: 0;
}

.npc-hx-field>i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, .35);
    font-size: .8rem;
    pointer-events: none;
    z-index: 1;
}

.npc-hx-field-ta>i {
    top: 14px;
    transform: none;
}

.npc-hx-field input,
.npc-hx-field textarea {
    width: 100%;
    background: rgba(255, 255, 255, .05);
    border: 1.5px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
    padding: 11px 14px 11px 38px;
    color: #fff;
    font-size: .88rem;
    font-family: inherit;
    transition: border-color .18s, background .18s;
    outline: none;
}

.npc-hx-field textarea {
    resize: vertical;
    min-height: 74px;
    padding-top: 12px;
}

.npc-hx-field input::placeholder,
.npc-hx-field textarea::placeholder {
    color: rgba(255, 255, 255, .3);
}

.npc-hx-field input:focus,
.npc-hx-field textarea:focus {
    border-color: var(--npc-gold, #e8a919);
    background: rgba(255, 255, 255, .07);
}

/* Service checkboxes */
.npc-hx-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    margin: 4px 0 14px;
}

.npc-hx-chk {
    display: flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .03);
    transition: border-color .16s, background .16s;
    user-select: none;
}

.npc-hx-chk:hover {
    border-color: rgba(232, 169, 25, .4);
    background: rgba(232, 169, 25, .06);
}

.npc-hx-chk input[type="checkbox"] {
    accent-color: var(--npc-gold, #e8a919);
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    cursor: pointer;
}

.npc-hx-chk span {
    font-size: .73rem;
    color: rgba(255, 255, 255, .65);
    font-weight: 500;
    line-height: 1.3;
}

.npc-hx-chk input:checked~span {
    color: var(--npc-gold, #e8a919);
    font-weight: 700;
}

/* Submit button */
.npc-hx-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--npc-blue, #003884);
    color: #fff;
    font-size: .96rem;
    font-weight: 800;
    padding: 14px 28px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background .2s, transform .2s, box-shadow .2s;
    margin-top: 6px;
    letter-spacing: .02em;
    box-shadow: 0 6px 24px rgba(0, 56, 132, .4);
}

.npc-hx-submit:hover {
    background: #002b6b;
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(0, 56, 132, .5);
}

/* Form footer row */
.npc-hx-form-foot {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, .07);
}

.npc-hx-wa {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(37, 211, 102, .12);
    border: 1px solid rgba(37, 211, 102, .3);
    color: #25d366;
    font-size: .78rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    text-decoration: none;
    transition: background .18s, border-color .18s;
}

.npc-hx-wa:hover {
    background: rgba(37, 211, 102, .2);
    color: #25d366;
    text-decoration: none;
}

.npc-hx-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, .55);
    font-size: .78rem;
    font-weight: 600;
    text-decoration: none;
    transition: color .16s;
}

.npc-hx-phone-link:hover {
    color: #fff;
    text-decoration: none;
}

.npc-hx-lock {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, .35);
    font-size: .73rem;
}

.npc-hx-lock i {
    font-size: .65rem;
}

/* Hero responsive */
@media (max-width: 1199px) {
    .npc-hx-inner {
        grid-template-columns: 1fr 420px;
        gap: 40px;
    }
}

@media (max-width: 991px) {
    .npc-hx {
        padding: 100px 0 70px;
        min-height: auto;
    }

    .npc-hx-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .npc-hx-copy {
        text-align: center;
    }

    .npc-hx-lead {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .npc-hx-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .npc-hx-actions {
        justify-content: center;
    }

    .npc-hx-stats {
        justify-content: center;
    }

    .npc-hx-svc-pills {
        justify-content: center;
    }

    .npc-hx-form-wrap {
        max-width: 520px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .npc-hx {
        padding: 90px 0 60px;
    }

    .npc-hx-title {
        font-size: 2.1rem;
    }

    .npc-hx-frow {
        grid-template-columns: 1fr;
    }

    .npc-hx-services {
        grid-template-columns: 1fr 1fr;
    }

    .npc-hx-form-card {
        padding: 24px 20px;
    }

    .npc-hx-stat {
        padding: 0 14px;
    }

    .npc-hx-stat strong {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .npc-hx-title {
        font-size: 1.8rem;
    }

    .npc-hx-stats {
        gap: 10px;
    }

    .npc-hx-stat-div {
        display: none;
    }

    .npc-hx-stat {
        padding: 0 10px;
    }

    .npc-hx-services {
        grid-template-columns: 1fr;
    }

    .npc-hx-btn-main,
    .npc-hx-btn-sec {
        width: 100%;
        justify-content: center;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   NEW INDEX PAGE — 4-STEP PROCESS  (npc-hix-steps / npc-hix-*)
═══════════════════════════════════════════════════════════════════ */

.npc-hix-steps {
    background: #fff;
}

.npc-hix-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: start;
    gap: 0;
    margin-top: 48px;
}

.npc-hix-step {
    background: #fff;
    border: 1.5px solid rgba(0, 56, 132, .1);
    border-radius: 18px;
    padding: 32px 24px 28px;
    text-align: center;
    position: relative;
    transition: transform .22s, box-shadow .22s, border-color .22s;
}

.npc-hix-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 56, 132, .12);
    border-color: rgba(0, 56, 132, .25);
}

.npc-hix-step-accent {
    background: var(--npc-blue, #003884);
    border-color: var(--npc-blue, #003884);
}

.npc-hix-step-accent h4,
.npc-hix-step-accent p {
    color: rgba(255, 255, 255, .85);
}

.npc-hix-step-accent h4 {
    color: #fff;
}

.npc-hix-step-accent .npc-hix-num {
    color: rgba(255, 255, 255, .3);
}

.npc-hix-step-accent .npc-hix-tag {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .2);
    color: rgba(255, 255, 255, .85);
}

.npc-hix-step-accent:hover {
    transform: translateY(-6px);
    border-color: var(--npc-blue, #003884);
}

.npc-hix-num {
    position: absolute;
    top: 16px;
    right: 18px;
    font-size: 2.4rem;
    font-weight: 900;
    color: rgba(0, 56, 132, .07);
    line-height: 1;
    user-select: none;
    letter-spacing: -.04em;
}

.npc-hix-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: rgba(0, 56, 132, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.35rem;
    color: var(--npc-blue, #003884);
    transition: background .2s, color .2s;
}

.npc-hix-step:hover .npc-hix-icon {
    background: var(--npc-blue, #003884);
    color: #fff;
}

.npc-hix-step-accent .npc-hix-icon {
    background: rgba(255, 255, 255, .15);
    color: #fff;
}

.npc-hix-step-accent:hover .npc-hix-icon {
    background: rgba(255, 255, 255, .25);
}

.npc-hix-step h4 {
    font-size: 1.05rem;
    color: #0d1b3e;
    margin-bottom: 10px;
    line-height: 1.3;
}

.npc-hix-step p {
    font-size: .85rem;
    color: #5a6478;
    line-height: 1.65;
    margin-bottom: 14px;
}

.npc-hix-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(0, 56, 132, .06);
    border: 1px solid rgba(0, 56, 132, .15);
    color: var(--npc-blue, #003884);
    font-size: .72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
}

.npc-hix-tag i {
    font-size: .65rem;
}

/* Arrow connector between steps */
.npc-hix-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    padding-top: 60px;
    color: rgba(0, 56, 132, .25);
    font-size: 1rem;
    flex-shrink: 0;
}

/* Process section responsive */
@media (max-width: 1199px) {
    .npc-hix-row {
        gap: 0;
    }

    .npc-hix-step {
        padding: 26px 18px 22px;
    }
}

@media (max-width: 991px) {
    .npc-hix-row {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .npc-hix-arrow {
        display: none;
    }
}

@media (max-width: 575px) {
    .npc-hix-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   NEW INDEX PAGE — WHY CHOOSE US  (npc-hix-why-*)
═══════════════════════════════════════════════════════════════════ */

.npc-why {
    background: #f8faff;
}

.npc-hix-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

/* ── Left: image stack ── */
.npc-hix-why-img-wrap {
    position: relative;
    padding-bottom: 60px;
    padding-right: 60px;
}

.npc-hix-why-main {
    width: 100%;
    border-radius: 18px;
    display: block;
    box-shadow: 0 20px 60px rgba(0, 56, 132, .14);
    object-fit: cover;
    aspect-ratio: 4/3;
}

.npc-hix-why-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 58%;
    border-radius: 14px;
    display: block;
    border: 4px solid #fff;
    box-shadow: 0 12px 36px rgba(0, 0, 0, .14);
    object-fit: cover;
    aspect-ratio: 4/3;
}

.npc-hix-why-badge {
    position: absolute;
    top: 24px;
    left: -20px;
    background: var(--npc-blue, #003884);
    color: #fff;
    border-radius: 14px;
    padding: 14px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 56, 132, .35);
    z-index: 2;
    min-width: 110px;
}

.npc-hix-why-badge strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
    color: var(--npc-gold, #e8a919);
}

.npc-hix-why-badge span {
    display: block;
    font-size: .72rem;
    color: rgba(255, 255, 255, .7);
    margin-top: 3px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

/* ── Right: text content ── */
.npc-hix-why-right {}

.npc-hix-feats {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 28px;
}

.npc-hix-feat {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px;
    background: #fff;
    border: 1.5px solid rgba(0, 56, 132, .08);
    border-radius: 14px;
    transition: border-color .2s, box-shadow .2s, transform .2s;
}

.npc-hix-feat:hover {
    border-color: rgba(0, 56, 132, .2);
    box-shadow: 0 8px 28px rgba(0, 56, 132, .08);
    transform: translateX(4px);
}

.npc-hix-feat-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(0, 56, 132, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    color: var(--npc-blue, #003884);
    flex-shrink: 0;
    transition: background .2s, color .2s;
}

.npc-hix-feat:hover .npc-hix-feat-icon {
    background: var(--npc-blue, #003884);
    color: #fff;
}

.npc-hix-feat h4 {
    font-size: .95rem;
    font-weight: 800;
    color: #0d1b3e;
    margin-bottom: 5px;
    line-height: 1.3;
}

.npc-hix-feat p {
    font-size: .84rem;
    color: #5a6478;
    line-height: 1.6;
    margin: 0;
}

/* Why Choose Us responsive */
@media (max-width: 1199px) {
    .npc-hix-why-grid {
        gap: 48px;
    }

    .npc-hix-why-img-wrap {
        padding-bottom: 50px;
        padding-right: 50px;
    }
}

@media (max-width: 991px) {
    .npc-hix-why-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .npc-hix-why-left {
        max-width: 500px;
        margin: 0 auto;
    }

    .npc-hix-why-img-wrap {
        padding-bottom: 44px;
        padding-right: 44px;
    }

    .npc-hix-why-badge {
        left: -10px;
    }
}

@media (max-width: 767px) {
    .npc-hix-why-img-wrap {
        padding-bottom: 36px;
        padding-right: 36px;
    }

    .npc-hix-why-badge {
        left: 0;
        top: 16px;
        padding: 10px 14px;
        min-width: 90px;
    }

    .npc-hix-why-badge strong {
        font-size: 1.4rem;
    }

    .npc-hix-feat {
        padding: 16px;
        gap: 14px;
    }

    .npc-hix-feat-icon {
        width: 40px;
        height: 40px;
        font-size: .9rem;
    }
}


/* DEMO RIGHT SIDE */
.npc-demo-wrapper {
    position: relative;
    max-width: 100%;
    margin: auto;
}

.npc-demo-main img {
    width: 100%;
    display: block;
    /* box-shadow: 0 25px 60px rgba(0, 0, 0, .15); */
    cursor: pointer;
}

/* CENTER ICON */
.npc-demo-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, .9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.npc-demo-icon img {
    width: 40px;
}

/* BADGE */
.npc-demo-badge {
    position: absolute;
    top: 20px;
    right: -10px;
    background: #f97316;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* PILLS */
.npc-demo-pills {
    position: absolute;
    right: -30px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.npc-demo-pills span {
    background: #fff;
    padding: 6px 12px;
    border-radius: 10px;
    font-size: 12px;
}

/* MODAL */
.npc-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .75);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.npc-modal.open {
    display: flex;
}

.npc-modal-box {
    width: 95%;
    max-width: 1000px;
    height: 80vh;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.npc-modal-box iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.npc-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, .2);
    color: #fff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
}

/* RESPONSIVE */
@media(max-width: 992px) {
    .npc-demo-pills {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 15px;
    }
}

/* ══════════════════════════════════════════════════════════════
   CONTACT CTA SECTION — Professional Redesign (.ncta-*)
   Dark premium  |  Two-panel card  |  Clean service grid
══════════════════════════════════════════════════════════════ */

/* ── Wrapper ───────────────────────────────────────────────── */

/* == Section wrapper == */
.ncta-section {
    position: relative;
    background: linear-gradient(160deg, #06071a 0%, #0a0d22 60%, #080d1e 100%);
    padding: 100px 0 110px;
    overflow: hidden;
    isolation: isolate;
}
.ncta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
    background-size: 56px 56px;
    pointer-events: none;
    z-index: 0;
}
.ncta-blob { position:absolute;border-radius:50%;filter:blur(90px);pointer-events:none;z-index:0; }
.ncta-blob-1 { width:600px;height:600px;background:rgba(0,56,132,.18);top:-160px;left:-140px; }
.ncta-blob-2 { width:480px;height:480px;background:rgba(179,25,66,.12);bottom:-100px;right:-100px; }
.ncta-blob-3 { width:360px;height:360px;background:rgba(78,143,255,.08);top:45%;right:18%;transform:translateY(-50%); }
.ncta-section .container { position:relative;z-index:1; }

/* Top label */
.ncta-top-label { text-align:center;margin-bottom:18px; }
.ncta-pill-label {
    display:inline-flex;align-items:center;gap:8px;
    background:rgba(78,143,255,.1);border:1px solid rgba(78,143,255,.28);
    color:#7eb3ff;font-size:.72rem;font-weight:700;
    letter-spacing:.14em;text-transform:uppercase;
    padding:8px 22px;border-radius:50px;
}
.ncta-pill-label i { color:#ffcf4b;font-size:.75rem; }

/* Headline */
.ncta-headline-block { text-align:center;margin-bottom:44px; }
.ncta-main-heading {
    font-size:clamp(2.1rem,4.2vw,3.4rem);
    color:#fff;line-height:1.18;
    margin-bottom:16px;letter-spacing:-.025em;
}
.ncta-hl {
    display:inline-block;
    background:linear-gradient(110deg,#4e8fff 0%,#a78bfa 50%,#4e8fff 100%);
    background-size:220% auto;
    -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
    animation:ncta-shimmer 3.5s linear infinite;
}
@keyframes ncta-shimmer { 0%{background-position:0% center} 100%{background-position:220% center} }
.ncta-main-sub { color:rgba(255,255,255,.46);font-size:1rem;max-width:560px;margin:0 auto;line-height:1.85; }

/* Stats row */
.ncta-stats-row {
    display:flex;align-items:center;justify-content:center;flex-wrap:wrap;gap:0;
    background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.07);
    border-radius:18px;padding:26px 48px;margin-bottom:56px;backdrop-filter:blur(8px);
}
.ncta-stat { text-align:center;padding:0 38px;flex:1 1 110px; }
.ncta-stat strong {
    display:block;font-size:2rem;line-height:1;margin-bottom:5px;
    background:linear-gradient(135deg,#4e8fff,#a78bfa);
    -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
}
.ncta-stat span { display:block;font-size:.7rem;font-weight:600;color:rgba(255,255,255,.38);letter-spacing:.07em;text-transform:uppercase; }
.ncta-stat-sep { width:1px;height:46px;background:rgba(255,255,255,.09);flex-shrink:0; }

/* Main card */
.ncta-card {
    display:grid;grid-template-columns:1fr 1.4fr;
    border-radius:28px;overflow:hidden;
    box-shadow:0 48px 120px rgba(0,0,0,.65),0 0 0 1px rgba(255,255,255,.07),inset 0 1px 0 rgba(255,255,255,.05);
}

/* Card left */
.ncta-card-left {
    background:linear-gradient(155deg,#0c1830 0%,#08102a 100%);
    border-right:1px solid rgba(255,255,255,.07);
    position:relative;overflow:hidden;padding:0;
}
.ncta-card-left::before {
    content:'';position:absolute;top:-80px;left:-80px;width:340px;height:340px;
    background:rgba(0,56,132,.22);border-radius:50%;filter:blur(70px);pointer-events:none;
}
.ncta-card-left::after {
    content:'';position:absolute;bottom:-60px;right:-40px;width:260px;height:260px;
    background:rgba(179,25,66,.1);border-radius:50%;filter:blur(60px);pointer-events:none;
}
.ncta-card-left-inner { position:relative;z-index:1;padding:52px 48px;display:flex;flex-direction:column; }
.ncta-left-badge {
    display:inline-flex;align-items:center;gap:7px;
    background:rgba(255,207,75,.1);border:1px solid rgba(255,207,75,.28);
    color:#ffcf4b;font-size:.68rem;font-weight:700;
    letter-spacing:.11em;text-transform:uppercase;
    padding:6px 14px;border-radius:50px;margin-bottom:20px;width:fit-content;
}
.ncta-left-heading { font-size:1.65rem;color:#fff;line-height:1.3;margin-bottom:12px; }
.ncta-left-sub { font-size:.9rem;color:rgba(255,255,255,.42);line-height:1.8;margin-bottom:32px; }

/* Feature list */
.ncta-feat-list { list-style:none;padding:0;margin:0 0 36px;display:flex;flex-direction:column;gap:20px; }
.ncta-feat-list li { display:flex;align-items:flex-start;gap:16px; }
.ncta-feat-icon {
    width:42px;height:42px;border-radius:12px;flex-shrink:0;margin-top:1px;
    background:rgba(78,143,255,.12);border:1px solid rgba(78,143,255,.22);
    display:flex;align-items:center;justify-content:center;
    color:#7eb3ff;font-size:.92rem;
    transition:background .25s,transform .25s;
}
.ncta-feat-list li:hover .ncta-feat-icon { background:rgba(78,143,255,.22);transform:scale(1.08); }
.ncta-feat-list li > div strong { display:block;font-size:.92rem;font-weight:700;color:#fff;margin-bottom:3px; }
.ncta-feat-list li > div span { display:block;font-size:.8rem;color:rgba(255,255,255,.38);line-height:1.6; }

/* Contact chips */
.ncta-contact-chips { display:flex;flex-direction:column;gap:12px;margin-top:36px; }
.ncta-chip {
    display:flex;align-items:center;gap:14px;
    background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);
    border-radius:14px;padding:14px 18px;text-decoration:none;
    transition:background .22s,border-color .22s,transform .22s,box-shadow .22s;
}
.ncta-chip:hover { background:rgba(0,56,132,.28);border-color:rgba(78,143,255,.4);transform:translateX(5px);box-shadow:0 6px 24px rgba(0,56,132,.25); }
.ncta-chip > i {
    width:40px;height:40px;border-radius:10px;flex-shrink:0;
    background:rgba(0,56,132,.45);display:flex;align-items:center;justify-content:center;
    color:#7eb3ff;font-size:.95rem;
}
.ncta-chip > div em { display:block;font-style:normal;font-size:.64rem;font-weight:600;letter-spacing:.09em;text-transform:uppercase;color:rgba(255,255,255,.35);margin-bottom:3px; }
.ncta-chip > div strong { display:block;font-size:.86rem;font-weight:700;color:#fff; }

/* Extra features (4 items after contact chips) */
.ncta-extra-feats {
    margin-top:28px;padding-top:24px;
    border-top:1px solid rgba(255,255,255,.07);
    display:flex;flex-direction:column;gap:16px;
}
.ncta-ef-item {
    display:flex;align-items:flex-start;gap:14px;
}
.ncta-ef-icon {
    width:36px;height:36px;border-radius:10px;flex-shrink:0;margin-top:2px;
    background:rgba(179,25,66,.12);border:1px solid rgba(179,25,66,.2);
    display:flex;align-items:center;justify-content:center;
    color:#ff8aa0;font-size:.82rem;
    transition:background .25s,transform .25s;
}
.ncta-ef-item:hover .ncta-ef-icon { background:rgba(179,25,66,.22);transform:scale(1.08); }
.ncta-ef-item > div strong { display:block;font-size:.88rem;font-weight:700;color:#fff;margin-bottom:2px; }
.ncta-ef-item > div span { display:block;font-size:.77rem;color:rgba(255,255,255,.38);line-height:1.6; }

/* Card right */
.ncta-card-right { background:#09091c;padding:52px 48px;position:relative; }
.ncta-card-right::before {
    content:'';position:absolute;bottom:0;right:0;width:280px;height:280px;
    background:rgba(78,143,255,.05);border-radius:50%;filter:blur(60px);pointer-events:none;
}

/* Alerts */
.ncta-msg { display:flex;align-items:center;gap:10px;padding:14px 18px;border-radius:12px;font-size:.86rem;font-weight:500;margin-bottom:24px; }
.ncta-msg-ok { background:rgba(34,197,94,.09);border:1px solid rgba(34,197,94,.25);color:#86efac; }
.ncta-msg-err { background:rgba(239,68,68,.09);border:1px solid rgba(239,68,68,.25);color:#fca5a5; }

/* Form header */
.ncta-form-header { margin-bottom:30px;padding-bottom:26px;border-bottom:1px solid rgba(255,255,255,.07); }
.ncta-form-header h3 { font-size:1.75rem;color:#fff;margin-bottom:7px;line-height:1.22; }
.ncta-form-header h3 span { color:#4e8fff; }
.ncta-form-header p { font-size:.86rem;color:rgba(255,255,255,.38);margin:0; }

/* Form */
.ncta-form { display:flex;flex-direction:column;gap:20px;position:relative;z-index:1; }
.ncta-row { display:grid;grid-template-columns:1fr 1fr;gap:16px; }
.ncta-field { display:flex;flex-direction:column;gap:8px; }
.ncta-field label,
.ncta-services-label {
    font-size:.72rem;font-weight:700;color:rgba(255,255,255,.45);
    letter-spacing:.07em;text-transform:uppercase;display:flex;align-items:center;gap:7px;
}
.ncta-field label i,.ncta-services-label i { color:#4e8fff;font-size:.78rem; }
.ncta-field label sup { color:#ff6b8a;margin-left:2px;font-size:.68rem; }
.ncta-field input,.ncta-field textarea {
    background:rgba(255,255,255,.05);border:1.5px solid rgba(255,255,255,.09);
    border-radius:12px;padding:14px 18px;font-size:.92rem;
    font-family:var(--npc-font);color:#fff;outline:none;width:100%;
    transition:border-color .22s,background .22s,box-shadow .22s;
}
.ncta-field textarea { resize:vertical;min-height:96px; }
.ncta-field input::placeholder,.ncta-field textarea::placeholder { color:rgba(255,255,255,.2); }
.ncta-field input:focus,.ncta-field textarea:focus {
    border-color:rgba(78,143,255,.6);background:rgba(78,143,255,.07);box-shadow:0 0 0 4px rgba(78,143,255,.1);
}
.ncta-err-field input,.ncta-err-field textarea { border-color:rgba(239,68,68,.5) !important; }
.ncta-field-err { font-size:.73rem;color:#fca5a5;margin:0; }

/* Service grid — 2 columns */
.ncta-service-grid { display:grid;grid-template-columns:repeat(2,1fr);gap:10px;margin-top:6px; }
.ncta-svc-btn { cursor:pointer;display:block;user-select:none; }
.ncta-svc-btn input[type="checkbox"] { position:absolute;opacity:0;width:0;height:0;pointer-events:none; }
.ncta-svc-inner {
    display:flex;align-items:center;gap:12px;padding:13px 16px;border-radius:12px;
    border:1.5px solid rgba(255,255,255,.09);background:rgba(255,255,255,.04);
    transition:border-color .22s,background .22s,box-shadow .2s,transform .18s;min-height:50px;
}
.ncta-svc-btn:hover .ncta-svc-inner {
    border-color:rgba(78,143,255,.45);background:rgba(78,143,255,.1);
    transform:translateY(-2px);box-shadow:0 6px 18px rgba(78,143,255,.12);
}
.ncta-svc-check {
    width:22px;height:22px;border-radius:6px;border:2px solid rgba(255,255,255,.22);
    background:transparent;flex-shrink:0;display:flex;align-items:center;justify-content:center;
    transition:background .2s,border-color .2s,transform .15s;
}
.ncta-svc-check i { font-size:.66rem;color:#fff;opacity:0;transform:scale(.4);transition:opacity .15s,transform .15s; }
.ncta-svc-text { font-size:.84rem;font-weight:600;color:rgba(255,255,255,.5);line-height:1.3;transition:color .2s; }
.ncta-svc-btn input:checked + .ncta-svc-inner { border-color:#4e8fff;background:rgba(78,143,255,.18);box-shadow:0 0 0 3px rgba(78,143,255,.15); }
.ncta-svc-btn input:checked + .ncta-svc-inner .ncta-svc-check { background:#4e8fff;border-color:#4e8fff;transform:scale(1.1); }
.ncta-svc-btn input:checked + .ncta-svc-inner .ncta-svc-check i { opacity:1;transform:scale(1); }
.ncta-svc-btn input:checked + .ncta-svc-inner .ncta-svc-text { color:#fff;font-weight:700; }

/* Submit button */
.ncta-submit-btn {
    position:relative;width:100%;display:flex;align-items:center;justify-content:center;gap:12px;
    padding:17px 32px;border:none;border-radius:14px;
    background:linear-gradient(110deg,#003884 0%,#0050c8 50%,#003884 100%);
    background-size:220% auto;color:#fff;font-family:var(--npc-font);
    font-size:1rem;letter-spacing:.03em;cursor:pointer;overflow:hidden;margin-top:6px;
    box-shadow:0 10px 32px rgba(0,56,132,.5);
    transition:background-position .4s ease,transform .22s,box-shadow .22s;
}
.ncta-submit-btn::after {
    content:'';position:absolute;inset:0;
    background:linear-gradient(110deg,transparent 40%,rgba(255,255,255,.1) 50%,transparent 60%);
    background-size:220% auto;background-position:220% center;transition:background-position .5s ease;
}
.ncta-submit-btn:hover { background-position:right center;transform:translateY(-3px);box-shadow:0 18px 44px rgba(0,56,132,.6); }
.ncta-submit-btn:hover::after { background-position:-220% center; }
.ncta-submit-btn:active { transform:translateY(0); }
.ncta-submit-btn span,.ncta-submit-btn i { position:relative;z-index:1; }
.ncta-submit-btn i { font-size:.9rem; }

/* Privacy note */
.ncta-privacy-note {
    text-align:center;font-size:.74rem;color:rgba(255,255,255,.22);
    margin:12px 0 0;display:flex;align-items:center;justify-content:center;gap:6px;
}
.ncta-privacy-note i { color:rgba(78,143,255,.5); }

/* Responsive */
@media (max-width:1100px) {
    .ncta-card { grid-template-columns:1fr 1.25fr; }
    .ncta-card-left-inner,.ncta-card-right { padding:44px 36px; }
}
@media (max-width:960px) {
    .ncta-card { grid-template-columns:1fr; }
    .ncta-card-left { border-right:none;border-bottom:1px solid rgba(255,255,255,.07); }
    .ncta-stats-row { padding:20px 24px; }
    .ncta-stat { padding:10px 20px; }
    .ncta-contact-chips { flex-direction:row;flex-wrap:wrap; }
    .ncta-chip { flex:1 1 200px; }
}
@media (max-width:640px) {
    .ncta-section { padding:70px 0 80px; }
    .ncta-card-left-inner,.ncta-card-right { padding:36px 24px; }
    .ncta-row { grid-template-columns:1fr; }
    .ncta-service-grid { grid-template-columns:1fr 1fr;gap:9px; }
    .ncta-stats-row { flex-direction:column;gap:18px;padding:26px 20px; }
    .ncta-stat-sep { width:60px;height:1px; }
    .ncta-main-heading { font-size:1.95rem; }
    .ncta-left-heading { font-size:1.35rem; }
    .ncta-contact-chips { flex-direction:column; }
}
@media (max-width:420px) {
    .ncta-service-grid { grid-template-columns:1fr; }
    .ncta-card-left-inner,.ncta-card-right { padding:28px 18px; }
}