/* ================================================================
   NPAV 2026 — Homepage Modernization
   ----------------------------------------------------------------
   All section-scoped visual modernization lives in THIS file only.
   Loaded AFTER style.css and custom.css (see layouts/header.blade.php)
   so scoped overrides win by source order — which keeps !important
   to a minimum.

   FULL REVERT: delete this file and remove its <link> in
   layouts/header.blade.php. Nothing else needs to change.

   Every rule is scoped to a section ancestor so no shared/global
   class is altered for unrelated pages:
     1. Product Card      -> .tabs-section .product-card
     2. Why Net Protector -> .content-section (feature cards)
     3. Testimonials      -> .testimonial-section
     4. Awards / Trust    -> .awards-section
   ================================================================ */


/* ============================================================== */
/* 1. HOMEPAGE PRODUCT CARD — scoped to .tabs-section             */
/*    (buynow / checkout / recommended carousels unaffected)      */
/* ============================================================== */
.tabs-section .product-card {
    position: relative;
    overflow: hidden;
    border: 1px solid #e6e8eb;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: box-shadow 160ms ease, border-color 160ms ease;
}
/* Hover: elevation + border only (no transform/scale) */
.tabs-section .product-card:hover {
    transform: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
    border-color: var(--npav-green-primary);
}
/* Image panel — warm tint + orbit effect behind the product box */
.tabs-section .card-img-top-wrapper {
    position: relative;
    overflow: hidden;
    background-color: #fdf6f0;
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 230px;          /* room for the image + orbit rings so nothing clips */
}
/* outer dashed ring + soft glow */
.tabs-section .card-img-top-wrapper::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1.5px dashed rgba(210, 120, 60, 0.30);
    background: radial-gradient(circle, rgba(210, 120, 60, 0.12) 0%, transparent 66%);
    pointer-events: none;
    z-index: 0;
}
/* inner dashed ring */
.tabs-section .card-img-top-wrapper::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 130px;
    height: 130px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1.5px dashed rgba(210, 120, 60, 0.22);
    pointer-events: none;
    z-index: 0;
}
/* product box sits above the orbit */
.tabs-section .card-img-top-wrapper img {
    position: relative;
    z-index: 1;
}
.tabs-section .product-card .card-body {
    padding: 28px 28px 26px;
    text-align: left;
}
/* Product name — 20px / 500 (refined, not heavy) */
.tabs-section .product-card .card-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: #1a1a1a;
    text-align: left;
    margin-bottom: 10px;
}
/* Description — 16px, fills space so all descriptions are equal height */
.tabs-section .product-card .card-text {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 18px;
}
/* Pricing — flex stack, price as the anchor */
.tabs-section .product-pricing {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px 10px;
    margin-top: 0;
    margin-bottom: 12px;
    width: 100%;
}
/* Price — 32px / 600 / NPAV green (anchored by size + colour, not heavy weight) */
.tabs-section .product-card .price-tag {
    font-size: 2rem;
    font-weight: 500;
    color: var(--npav-green-primary);
    line-height: 1;
    margin: 0;
    justify-self: auto;
}
.tabs-section .product-card .price-tag .currency-symbol {
    font-size: 1.125rem;
    font-weight: 500;
    vertical-align: super;
}
/* MRP — strikethrough, muted */
.tabs-section .product-card .mrp-tag {
    font-size: 0.875rem;
    font-weight: 400;
    color: #6c757d !important;
    text-decoration: line-through;
    margin: 0;
    padding-left: 0;
}
/* Save % — corner deal badge on the card */
.tabs-section .product-card .save-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    display: inline-block;
    background-color: var(--npav-green-primary);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 999px;
    box-shadow: 0 2px 6px rgba(0, 143, 79, 0.25);
    clip-path: none;
    margin: 0;
}
.tabs-section .product-card .product-info-text {
    width: 100%;
    font-size: 0.85rem;
    color: #6c757d !important;
    margin: 8px 0 0 !important;   /* on its own line, separated from the price */
    justify-self: auto;
}
/* Primary CTA — content-width outline pill (less green at rest, fills on hover) */
.tabs-section .product-card .btn-npav-green {
    width: auto !important;
    min-width: 150px;
    background-color: var(--npav-green-primary) !important;
    background: var(--npav-green-primary) !important;
    color: #fff !important;
    border: 1px solid var(--npav-green-primary) !important;
    border-radius: 8px;
    min-height: 46px;
    padding: 12px 34px;
    font-weight: 500;
    margin-top: 0;
}
.tabs-section .product-card .btn-npav-green:hover {
    background-color: var(--npav-green-dark) !important;
    background: var(--npav-green-dark) !important;
    color: #fff !important;
    transform: none;
}
/* CTA row — Buy Now + Know More on one line */
.tabs-section .product-card .card-cta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 4px;
}
/* Secondary CTA — text link, inline beside Buy Now */
.tabs-section .product-card .know-more-link {
    max-height: none;
    opacity: 1;
    visibility: visible;
    overflow: visible;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: color 160ms ease;
}
/* sliding arrow on hover */
.tabs-section .product-card .know-more-link::after {
    content: "\2192";          /* → */
    margin-left: 4px;
    transition: transform 160ms ease;
}
.tabs-section .product-card .know-more-link:hover {
    color: var(--npav-green-dark);
    text-decoration: none;
}
.tabs-section .product-card .know-more-link:hover::after {
    transform: translateX(4px);
}
/* Mobile responsiveness */
@media (max-width: 767px) {
    .tabs-section .product-card .card-body {
        padding: 20px;
    }
    .tabs-section .product-card .card-title {
        font-size: 1.125rem;
    }
    .tabs-section .product-card .price-tag {
        font-size: 1.75rem;
    }
}


/* ============================================================== */
/* 2. WHY NET PROTECTOR feature cards — scoped to .content-section*/
/*    .feature-card is also used on MFA/SSD pages; scope protects */
/*    them. Removes heavy hover: image swap / 3D flip / translate */
/*    / colour invert.                                            */
/* ============================================================== */
.content-section .section-title {
    font-size: 2rem;            /* 32px */
    font-weight: 500;
    color: #1a1a1a;
}
/* Card — white, 1px border, 12px radius, consistent padding, subtle shadow */
.content-section .feature-card {
    border: 1px solid #e6e8eb;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: border-color 160ms ease, box-shadow 160ms ease;
    text-align: left;          /* left-aligned enterprise card */
    align-items: flex-start;
}
/* Stable hover — border + subtle shadow only */
.content-section .feature-card:hover,
.content-section .row > div .feature-card:hover {
    background-color: #fff;
    background-image: none;
    transform: none;
    border-color: #e6e8eb;
    /* green top accent bar (inset) + soft elevation */
    box-shadow: inset 0 3px 0 0 var(--npav-green-primary), 0 8px 24px rgba(0, 0, 0, 0.08);
}
/* Keep text readable on hover (card stays white) */
.content-section .feature-card:hover h3 {
    color: #1a1a1a;
}
.content-section .feature-card:hover p {
    color: #4a4a4a;
}
/* Icon area — consistent sizing, no 3D flip */
.content-section .feature-icon-wrapper {
    width: 56px;
    height: 56px;
    margin: 0 0 20px;          /* left-aligned, rounded-square icon tile */
    border-radius: 12px;
    background-color: var(--npav-buy-button-light-green);
    perspective: none;
}
.content-section .feature-card:hover .feature-icon-wrapper {
    background-color: var(--npav-buy-button-light-green);
}
.content-section .feature-card img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    transition: none;
}
.content-section .feature-card:hover img {
    transform: none;
}
/* Text — NPAV scale, refined weight */
.content-section .feature-card h3 {
    font-size: 1.25rem;         /* 20px */
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.35;
}
.content-section .feature-card p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 0;
}
/* Mobile */
@media (max-width: 767px) {
    .content-section .feature-card {
        padding: 24px;
    }
    .content-section .section-title {
        font-size: 1.625rem;
    }
}


/* ============================================================== */
/* 3. TESTIMONIALS — scoped to .testimonial-section              */
/* ============================================================== */
/* Heading scale (overrides legacy .testimonial-section heading) */
.testimonial-section .section-title {
    font-size: 2rem;            /* 32px */
    font-weight: 500;
    color: #1a1a1a;
}
.testimonial-section .section-subtitle {
    font-size: 1.125rem;        /* 18px */
    color: #4a4a4a;
    line-height: 1.6;
}
/* Card — 1px border + subtle shadow (trustworthy, not decorative) */
.testimonial-section .testimonial-card {
    border: 1px solid #e6e8eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    padding: 32px;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}
/* Stable hover — border + subtle shadow only (no transform) */
.testimonial-section .testimonial-card:hover {
    border-color: var(--npav-green-primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: none;
}
/* Star rating spacing */
.testimonial-section .testimonial-card .star-rating {
    margin-bottom: 16px;
}
/* Quote — readable line length + rhythm */
.testimonial-section .testimonial-card blockquote {
    font-size: 1.0625rem;       /* 17px */
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}
/* Attribution block — avatar initial + name */
.testimonial-section .testimonial-attribution {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}
.testimonial-section .testimonial-avatar {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e0f2e0;
    color: var(--npav-green-dark);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.testimonial-section .testimonial-card .client-name {
    margin: 0;
    font-style: normal;          /* <cite> defaults to italic */
    font-weight: 500;
    font-size: 1rem;
    color: #1a1a1a;
}
/* Carousel arrows — visible over the photo; CSS-drawn chevron (no Font Awesome dependency) */
.testimonial-section .owl-nav button.owl-prev,
.testimonial-section .owl-nav button.owl-next {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #e6e8eb;
    color: var(--npav-green-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
}
.testimonial-section .owl-nav button.owl-prev:hover,
.testimonial-section .owl-nav button.owl-next:hover {
    background: var(--npav-green-primary) !important;   /* beat custom.css .owl-nav [class*="owl-"]:hover { background:#fff0 !important } */
    border-color: var(--npav-green-primary);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
/* chevron via borders — renders even if the icon font is missing */
.testimonial-section .owl-nav button.owl-prev::before,
.testimonial-section .owl-nav button.owl-next::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border: solid currentColor;
    border-width: 0;
    line-height: 0;
}
.testimonial-section .owl-nav button.owl-prev::before {
    border-width: 2px 0 0 2px;   /* top + left */
    transform: rotate(-45deg);
    margin-left: 2px;
}
.testimonial-section .owl-nav button.owl-next::before {
    border-width: 2px 2px 0 0;   /* top + right */
    transform: rotate(45deg);
    margin-right: 2px;
}
/* Mobile */
@media (max-width: 767px) {
    .testimonial-section .section-title {
        font-size: 1.625rem;
    }
    .testimonial-section .testimonial-card {
        padding: 24px;
    }
    .testimonial-section .testimonial-card blockquote {
        font-size: 1rem;
    }
}


/* ============================================================== */
/* 4. AWARDS / ACHIEVEMENTS Trust Badges — scoped .awards-section */
/* ============================================================== */
/* Subtle on-brand background effect — green radar glow + faint rings behind the wall */
.awards-section {
    position: relative;
    overflow: hidden;
}
.awards-section::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 640px;
    height: 640px;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(0, 143, 79, 0.20) 0%, rgba(0, 143, 79, 0.06) 34%, transparent 66%),
        repeating-radial-gradient(circle, transparent 0 58px, rgba(0, 143, 79, 0.08) 58px 60px);
    pointer-events: none;
    z-index: 0;
}
.awards-section .container-custom-wide {
    position: relative;
    z-index: 1;
}
/* Heading + subtitle (overrides legacy .awards-title / .lead) */
.awards-section .awards-title {
    font-size: 2rem;            /* 32px */
    font-weight: 500;
    color: #1a1a1a;
}
.awards-section .lead {
    color: #4a4a4a;
    font-size: 1.125rem;
    line-height: 1.6;
}
/* Certification list — replaces the italic run-on heading */
.awards-section .awards-cert-line {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: #5a6268;
    max-width: 820px;
    margin: 12px auto 0;
    line-height: 1.7;
}
/* Editorial layout: left intro + right certification wall */
.awards-section .awards-intro {
    text-align: left;
}
.awards-section .awards-intro .awards-title,
.awards-section .awards-intro .lead,
.awards-section .awards-intro .awards-cert-line {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}
.awards-section .awards-intro .awards-cert-line {
    max-width: none;
}
.awards-section .awards-cta {
    margin-top: 24px;
}
/* Certification wall — static grid (replaces the Owl carousel) */
.awards-section .awards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
@media (min-width: 576px) {
    .awards-section .awards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width: 992px) {
    .awards-section .awards-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
.awards-section .awards-grid .award-item {
    padding: 0;
}
/* Trust badge card — white surface, 1px border, 12px radius, 24px padding */
.awards-section .award-badge {
    width: 100%;
    background-color: #fff;
    border: 1px solid #e6e8eb;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    padding: 24px;
    overflow: visible;
    transition: border-color 160ms ease, box-shadow 160ms ease;
    height: 100%;
    min-height: 180px;
    align-items: center;
    justify-content: center;
}
/* Consistent logo sizing across all badges */
.awards-section .award-badge img {
    max-height: 90px;
    width: auto;
    padding: 0;
    flex-grow: 0;
    object-fit: contain;
}
/* Clean label (replaces the solid green bar) */
.awards-section .award-badge .award-label {
    background-color: transparent;
    color: #1a1a1a;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: none;
    margin-top: 16px;
    margin-bottom: 0;
    padding: 0;
    width: 100%;
    border-radius: 0;
    line-height: 1.3;
}
/* Stable hover — border-color + subtle shadow only (no transform) */
.awards-section .award-badge:hover {
    border-color: var(--npav-green-primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: none;
}
/* Mobile */
@media (max-width: 767px) {
    .awards-section::before {
        width: 320px;
        height: 320px;
        right: -25%;
    }
    .awards-section .awards-title {
        font-size: 1.625rem;
    }
    .awards-section .awards-grid .award-item {
        flex: 0 1 45%;
    }
    .awards-section .award-badge {
        padding: 20px;
        min-height: 160px;
    }
    .awards-section .award-badge img {
        max-height: 72px;
    }
}


/* ============================================================== */
/* 5. SECURITY FEATURES — scoped to .security-features-section    */
/*    Oval "pill" cards -> clean rounded-rectangle image cards    */
/*    (existing background images preserved). Descriptions are    */
/*    now ALWAYS visible (were opacity:0 until hover -> invisible */
/*    on touch). Removes heavy hover: sibling shrink/expand       */
/*    accordion, oval->rect morph, and blue neon glow.            */
/* ============================================================== */
.security-features-section .section-title {
    font-size: 2rem;            /* 32px */
    font-weight: 500;
    color: #1a1a1a;
}
/* Neutralize the accordion: columns never shrink/expand on hover */
.security-features-section .security-row:hover .feature-col,
.security-features-section .security-row .feature-col:hover {
    max-width: none;
    flex-basis: auto;
}
/* Card — rounded rectangle, 1px border, subtle shadow (keeps bg image) */
.security-features-section .feature-card-wrapper {
    max-width: none;
    width: 100%;
    height: 320px;
    border-radius: 12px;
    border: 1px solid #e6e8eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: box-shadow 160ms ease;
    cursor: default;
}
/* Permanent bottom gradient so overlaid text is always legible */
.security-features-section .feature-card-wrapper::after {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.20) 45%, rgba(0, 0, 0, 0) 72%);
}
/* Content anchored bottom-centre, always visible */
.security-features-section .circle-content {
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 20px;
}
.security-features-section .feature-card-wrapper .feature-title {
    font-size: 1.0625rem;       /* 17px */
    font-weight: 500;
    color: #fff;
    padding: 0 12px;
    margin-bottom: 6px !important;
}
/* Description — always shown (was max-height:0 / opacity:0) */
.security-features-section .feature-description {
    max-height: none;
    opacity: 1;
    overflow: visible;
    padding-top: 0;
    font-size: 0.8125rem;       /* 13px */
    line-height: 1.45;
    color: #f0f0f0;
    text-align: center;
}
/* Stable hover — subtle shadow only (no morph, no glow, no shift) */
.security-features-section .feature-col:hover .feature-card-wrapper {
    max-width: none;
    border-radius: 12px;
    height: 320px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding: 0;
    display: block;
}
.security-features-section .feature-col:hover .feature-card-wrapper::after {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.20) 45%, rgba(0, 0, 0, 0) 72%);
}
.security-features-section .feature-col:hover .circle-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 20px;
    margin: 0;
}
.security-features-section .feature-col:hover .feature-description {
    max-height: none;
    opacity: 1;
    padding-top: 0;
    text-align: center;
}
.security-features-section .feature-col:hover .feature-card-wrapper .feature-title {
    text-align: center;
    font-size: 1.0625rem;
    padding: 0 12px;
}
/* Desktop: even 5-up row (de-cramp 16.6% -> 20%), same for hover (no jump) */
@media (min-width: 992px) {
    .security-features-section .security-row > .feature-col,
    .security-features-section .security-row:hover .feature-col,
    .security-features-section .security-row .feature-col:hover {
        flex: 0 0 20%;
        max-width: 20%;
    }
}
/* Mobile */
@media (max-width: 767px) {
    .security-features-section .feature-card-wrapper {
        height: 260px;
    }
    .security-features-section .section-title {
        font-size: 1.625rem;
    }
}


/* ============================================================== */
/* 6. PRICING PLANS — scoped to .pricing-plans-section            */
/*    Price becomes the strongest element; full-width CTAs;       */
/*    recommended emphasis via border+shadow (no translate/glow); */
/*    bottom-aligned CTAs; comparison link.                       */
/* ============================================================== */
.pricing-plans-section .section-title {
    font-size: 2rem;            /* 32px */
    font-weight: 500;
    color: #1a1a1a;
}
/* Card — subtle shadow, equal-height flex column */
.pricing-plans-section .plan-card {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
}
/* Stable hover — border + subtle shadow only (no transform) */
.pricing-plans-section .plan-card:hover {
    transform: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
    border-color: var(--npav-green-primary);
}
/* Plan title — clear label, lets the price dominate */
.pricing-plans-section .plan-title {
    font-size: 1.25rem;         /* 20px */
    font-weight: 500;
    color: #1a1a1a;
}
/* Price — strongest element (size + weight) */
.pricing-plans-section .price-value {
    font-size: 2.25rem;         /* 36px */
    font-weight: 500;
    color: #1a1a1a;
}
/* Features fill the space so CTAs align across cards */
.pricing-plans-section .plan-features {
    flex-grow: 1;
}
/* CTAs — full width, >=48px, consistent radius */
.pricing-plans-section .plan-card .btn-npav-green,
.pricing-plans-section .plan-card .btn-npav-outline {
    width: 100%;
    min-height: 48px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    margin-top: auto;
}
.pricing-plans-section .plan-card .btn-npav-green {
    background-color: var(--npav-green-primary);
    border: 1px solid var(--npav-green-primary);
    color: #fff;
}
.pricing-plans-section .plan-card .btn-npav-green:hover {
    background-color: var(--npav-green-dark);
    border-color: var(--npav-green-dark);
    color: #fff;
}
.pricing-plans-section .plan-card .btn-npav-outline {
    background-color: transparent;
    border: 1px solid var(--npav-green-primary);
    color: var(--npav-green-primary);
}
.pricing-plans-section .plan-card .btn-npav-outline:hover {
    background-color: var(--npav-green-primary);
    color: #fff;
}
/* Recommended — emphasis via border + elevated shadow (no translate/glow ring) */
.pricing-plans-section .plan-card.recommended {
    border: 2px solid var(--npav-green-primary);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    background-color: #f7fdfb;
    transform: none;
}
.pricing-plans-section .plan-card.recommended:hover {
    transform: none;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.16);
}
/* Comparison — outline button (fills green on hover, arrow slides) */
.pricing-plans-section .pricing-compare-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    padding: 10px 26px;
    border: 1.5px solid var(--npav-green-primary);
    border-radius: 8px;
    color: var(--npav-green-primary);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}
/* Override the global i.bx.bx-right-arrow-alt (white/24px + orange hover box) */
.pricing-plans-section .pricing-compare-link i {
    color: var(--npav-green-primary) !important;
    background: transparent !important;
    font-size: 1.1rem;
    border-radius: 0;
    margin: 0;
    vertical-align: middle;
    transition: color 160ms ease;
}
.pricing-plans-section .pricing-compare-link:hover {
    background-color: var(--npav-green-primary);
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(0, 143, 79, 0.25);
}
.pricing-plans-section .pricing-compare-link:hover i {
    color: #ffffff !important;
    background: transparent !important;
}
/* Mobile */
@media (max-width: 767px) {
    .pricing-plans-section .section-title {
        font-size: 1.625rem;
    }
}
/* ---- SaaS-style refinements ---- */
/* Clean feature rows — no dashed dividers, more air */
.pricing-plans-section .plan-features .check-item {
    border-bottom: none;
    min-height: 0;
    padding: 9px 0;
    font-size: 0.95rem;
    color: #3f4a54;
}
.pricing-plans-section .plan-features .check-item i {
    color: var(--npav-green-primary);
    font-size: 1.15rem;
}
.pricing-plans-section .plan-features .check-item.disabled {
    opacity: 1;
    color: #b3bcc4;
}
.pricing-plans-section .plan-features .check-item.disabled i {
    color: #cfd5da;
}
/* Recommended card — green title (tint is set on the .recommended rule above) */
.pricing-plans-section .plan-card.recommended .plan-title {
    color: var(--npav-green-dark);
}
/* Centered "Recommended" pill */
.pricing-plans-section .plan-card.recommended .ribbon {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    top: -13px;
    border-radius: 999px;
    padding: 5px 18px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 143, 79, 0.30);
}
/* Price duration — muted, smaller */
.pricing-plans-section .price-duration {
    color: #6c757d;
    font-size: 0.9rem;
}


/* ============================================================== */
/* 7. STATISTICS / MILESTONES — scoped to .ms-wrapper             */
/*    Brand-aligns the rainbow SB-Admin colours to NPAV green,    */
/*    consistent card framing, stable hover. (Container alignment */
/*    handled in the Blade: .container -> .container-custom-wide.) */
/* ============================================================== */
.ms-wrapper .ms-main-title {
    font-size: 2rem;            /* 32px */
    font-weight: 500;
    color: #1a1a1a;
}
.ms-wrapper .ms-subtitle {
    font-size: 1.125rem;
    color: #4a4a4a;
    line-height: 1.6;
}
.ms-wrapper .ms-divider {
    background: var(--npav-green-primary);
}
/* Card — 12px radius, 1px border, subtle shadow */
.ms-wrapper .ms-stat-card {
    border: 1px solid #e6e8eb;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: border-color 160ms ease, box-shadow 160ms ease;
}
/* Stable hover — border + subtle shadow only (no transform) */
.ms-wrapper .ms-stat-card:hover {
    transform: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: var(--npav-green-primary);
}
/* Unify icon holders to brand green (was blue/orange/blue/red gradients) */
.ms-wrapper .ms-bg-green,
.ms-wrapper .ms-bg-orange,
.ms-wrapper .ms-bg-blue,
.ms-wrapper .ms-bg-red {
    background: var(--npav-green-primary);
}
/* Counter — brand-coloured focal figure */
.ms-wrapper .ms-counter-val {
    font-size: 2.25rem;         /* 36px */
    font-weight: 500;
    color: #1a1a1a;             /* dark ink — green stays as the icon/divider accent only */
}
/* "+" suffix via ::after so the counter JS (which rewrites .text()) can't erase it */
.ms-wrapper .ms-counter-val::after {
    content: "+";
    color: var(--npav-green-primary);
}
.ms-wrapper .ms-card-label {
    color: #1a1a1a;
    font-size: 1.0625rem;
}
@media (max-width: 767px) {
    .ms-wrapper .ms-main-title {
        font-size: 1.625rem;
    }
    .ms-wrapper .ms-counter-val {
        font-size: 1.875rem;
    }
}


/* ============================================================== */
/* 7b. USERS SECURED — trust band, scoped to .users-secured       */
/*     Defined panel on a faint security-grid backdrop + icon     */
/*     stat tiles (was a flat counter floating in white space).   */
/* ============================================================== */
.users-secured {
    position: relative;
    overflow: hidden;
    background-color: #f7f9fa;
    padding: 64px 0;
}
/* Ambient "AI waves" backdrop — REUSABLE. Host section needs
   position:relative + overflow:hidden, and its inner content lifted above. */
.us-waves {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}
.us-wave {
    position: absolute;
    left: 0;
    top: 50%;
    width: 200%;
    height: 78%;
    fill: none;
    stroke: var(--npav-green-primary);
    stroke-width: 2;
    transform: translate(0, -50%);
    will-change: transform;
}
.us-wave-1 { opacity: 0.10; animation: usWaveFlow 22s linear infinite; }
.us-wave-2 { opacity: 0.07; animation: usWaveFlow 30s linear infinite reverse; }
.us-wave-3 { opacity: 0.05; animation: usWaveFlow 38s linear infinite; }
@keyframes usWaveFlow {
    from { transform: translate(0, -50%); }
    to   { transform: translate(-50%, -50%); }
}
@media (prefers-reduced-motion: reduce) {
    .us-wave { animation: none; }
}
/* host sections + lift their content above the waves */
.other-sites-section {
    position: relative;
    overflow: hidden;
}
.users-secured .container-custom-wide,
.other-sites-section .container-custom-wide {
    position: relative;
    z-index: 1;
}
.users-secured .us-band {
    position: relative;
    text-align: center;
    max-width: 960px;
    margin: 0 auto;
    padding: 56px 48px;
    background: #fff;
    border: 1px solid #e6e8eb;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}
.users-secured .us-eyebrow {
    display: inline-block;
    padding: 6px 16px;
    margin-bottom: 20px;
    border-radius: 999px;
    background: rgba(0, 143, 79, 0.08);
    color: var(--npav-green-primary);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.users-secured .us-figure {
    line-height: 1;
}
.users-secured .us-counter {
    font-size: 4rem;
    font-weight: 500;
    color: var(--npav-green-primary);
    letter-spacing: -0.01em;
}
/* "+" via ::after so the counter JS (.text()) can't erase it */
.users-secured .us-counter::after {
    content: "+";
    color: var(--npav-green-primary);
}
.users-secured .us-headline {
    font-size: 1.75rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-top: 12px;
}
.users-secured .us-sub {
    font-size: 1.0625rem;
    color: #5a5a5a;
    max-width: 620px;
    margin: 12px auto 0;
}
.users-secured .us-substats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 44px;
}
.users-secured .us-substat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 24px 16px;
    background: #f8fbfa;
    border: 1px solid #eceef0;
    border-radius: 16px;
    transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.users-secured .us-substat:hover {
    border-color: var(--npav-green-primary);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
    background: #fff;
}
.users-secured .us-substat-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 143, 79, 0.08);
    color: var(--npav-green-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.users-secured .us-substat-num {
    font-size: 1.5rem;
    font-weight: 500;
    color: #1a1a1a;
}
.users-secured .us-substat-plus {
    color: var(--npav-green-primary);
}
.users-secured .us-substat-lbl {
    font-size: 0.9rem;
    color: #5a5a5a;
}
@media (max-width: 767px) {
    /* beat legacy custom.css: .users-secured { padding: 0 !important } */
    .users-secured { padding: 40px 0 !important; }
    .users-secured .us-band { padding: 36px 20px; }
    .users-secured .us-counter { font-size: 2.75rem; }
    .users-secured .us-headline { font-size: 1.375rem; }
    .users-secured .us-substats { grid-template-columns: 1fr; gap: 14px; }
}

/* ============================================================== */
/* 7c. SCROLL REVEAL — gentle fade-up on viewport entry           */
/*     Applied by JS (.js-reveal added only when JS + motion OK),  */
/*     so without JS / on reduced-motion everything stays visible. */
/* ============================================================== */
.js-reveal {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.45s ease-out, transform 0.45s ease-out;
}
.js-reveal.is-visible {
    opacity: 1;
    transform: none;
}
@media (prefers-reduced-motion: reduce) {
    .js-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}


/* ============================================================== */
/* 7d. SHARED EYEBROW — consistent green pill above section titles */
/* ============================================================== */
.npav-eyebrow {
    display: inline-block;
    padding: 6px 16px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: rgba(0, 143, 79, 0.08);
    color: var(--npav-green-primary);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
/* Verified-user badge beside testimonial names */
.testimonial-section .testimonial-verified {
    color: var(--npav-green-primary);
    font-size: 1rem;
    vertical-align: middle;
    margin-left: 3px;
}
/* Conversion hierarchy — product & pricing headings outweigh informational ones */
.tabs-section .section-title,
.pricing-plans-section .section-title {
    font-size: 2.25rem;
}
@media (max-width: 767px) {
    .tabs-section .section-title,
    .pricing-plans-section .section-title {
        font-size: 1.75rem;
    }
}


/* ============================================================== */
/* 8. HOME CONTACT — "Need help choosing?" expert-help CTA        */
/*    scoped to .help-cta-section (.partner-feedback-section keeps */
/*    its tinted background from section 9). Replaced the form.    */
/* ============================================================== */
.partner-feedback-section .section-title {
    font-size: 2rem;            /* 32px */
    font-weight: 500;
    color: #1a1a1a;
}
.help-cta-section .help-cta {
    max-width: 920px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #e6e8eb;
    border-radius: 22px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    padding: 48px 40px;
}
.help-cta-section .help-cta-eyebrow {
    display: inline-block;
    padding: 6px 16px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: rgba(0, 143, 79, 0.08);
    color: var(--npav-green-primary);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.help-cta-section .help-cta-sub {
    font-size: 1.0625rem;
    color: #5a5a5a;
    max-width: 620px;
    margin: 12px auto 0;
    line-height: 1.6;
}
.help-cta-section .help-cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-top: 26px;
}
/* normalise both buttons (legacy .partner-feedback-section .btn-npav-green
   sets a smaller padding — equalise so the two CTAs match height) */
.help-cta-section .help-cta-btns .btn {
    padding: 10px 30px;
    font-size: 1rem;
    font-weight: 500;
}
/* .btn-npav-green / .btn-npav-outline are custom (not Bootstrap) variants, so
   Bootstrap's active/focus rule reads unset --bs-btn-active-* vars and blanks
   the button when pressed. Define the vars so the active state stays on-brand. */
.btn-npav-green {
    --bs-btn-active-bg: var(--npav-green-dark);
    --bs-btn-active-border-color: var(--npav-green-dark);
    --bs-btn-active-color: #fff;
}
.btn-npav-outline {
    --bs-btn-active-bg: var(--npav-green-primary);
    --bs-btn-active-border-color: var(--npav-green-primary);
    --bs-btn-active-color: #fff;
}
.btn-npav-outline:active {
    color: #fff !important;
}

/* Direct channels */
.help-cta-section .help-channels {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 36px;
    padding-top: 36px;
    border-top: 1px solid #eceef0;
}
.help-cta-section .help-channel {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border: 1px solid #e6e8eb;
    border-radius: 14px;
    text-decoration: none;
    transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.help-cta-section .help-channel:hover {
    border-color: var(--npav-green-primary);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    background: rgba(0, 143, 79, 0.02);
}
.help-cta-section .help-channel-icon {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(0, 143, 79, 0.08);
    color: var(--npav-green-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}
.help-cta-section .help-channel-text {
    display: flex;
    flex-direction: column;
}
.help-cta-section .help-channel-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: #6b7280;
}
.help-cta-section .help-channel-value {
    font-size: 1rem;
    font-weight: 500;
    color: #1a1a1a;
    transition: color 180ms ease;
}
.help-cta-section .help-channel:hover .help-channel-value {
    color: var(--npav-green-primary);
}

/* Trust strip */
.help-cta-section .help-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 36px;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid #eceef0;
}
.help-cta-section .help-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
}
.help-cta-section .help-trust-item .bx {
    color: var(--npav-green-primary);
    font-size: 1.15rem;
}

@media (max-width: 767px) {
    .partner-feedback-section .section-title {
        font-size: 1.625rem;
    }
    .help-cta-section .help-cta { padding: 32px 20px; }
    .help-cta-section .help-channels { grid-template-columns: 1fr; }
    .help-cta-section .help-cta-btns .btn { width: 100%; }
}


/* ============================================================== */
/* 9. SURFACE & SPACING RHYTHM — per-section tone + cadence       */
/*    Dark authority zone (Awards + Users), then a White<->Tint   */
/*    pulse. Scoped per section root class; no global styling.    */
/* ============================================================== */
/* --- Dark authority zone removed: Awards + Users Secured stay light --- */
/* --- Light pulse (White <-> Tint) --- */
.content-section.gray-bg {
    background-color: #ffffff;   /* Why NPAV -> White (scoped to this section) */
}
.ms-wrapper {
    background-color: #f8f9fa;   /* Statistics -> Tint */
    padding-top: 80px;           /* act break: proof climax */
}
.faq-section {
    background-color: #ffffff;   /* FAQ -> White */
}
.partner-feedback-section {
    background-color: #f8f9fa;   /* Contact -> Tint */
}
.other-sites-section {
    background-color: #ffffff;   /* Home Sites -> White */
}
/* --- Spacing rhythm: act-break (generous) vs tight (grouped) --- */
.content-section {
    padding-top: 80px;           /* act break: enter discovery story */
}
.security-features-section {
    padding-top: 56px;           /* standard */
}
.testimonial-section {
    padding-top: 32px;           /* tight: one beat with statistics */
}
.pricing-plans-section {
    padding-top: 80px;           /* act break: the offer */
}
/* --- Home Sites: modern "other products" directory --- */
.other-sites-section .site-head {
    max-width: 680px;
    margin: 0 auto 44px;
}
.other-sites-section h2 {
    font-size: 2rem;
    font-weight: 500;
    color: #1a1a1a;
}
.other-sites-section .site-subtitle {
    font-size: 1.0625rem;
    color: #5a5a5a;
    margin-top: 12px;
}
.other-sites-section .sites-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}
.other-sites-section .site-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 20px 16px;
    background: #fff;
    border: 1px solid #e6e8eb;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    text-decoration: none;
    color: inherit;
    transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.other-sites-section .site-card:hover {
    transform: none;
    border-color: var(--npav-green-primary);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.09);
    background: rgba(0, 143, 79, 0.02);
}
/* Logo in a uniform rounded tile (normalises varying logo sizes) */
.other-sites-section .site-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f7f9fb;
    border: 1px solid #eef1f4;
    border-radius: 14px;
    margin-bottom: 16px;
    transition: border-color 180ms ease;
}
.other-sites-section .site-card:hover .site-icon {
    border-color: rgba(0, 143, 79, 0.3);
}
.other-sites-section .site-icon img {
    width: 34px;
    height: 34px;
    padding: 0;
    margin: 0;
    background: none;
    border: none;
    object-fit: contain;
}
.other-sites-section .site-name {
    font-size: 1.0625rem;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 5px;
}
.other-sites-section .site-desc {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0 0 16px;
    flex: 1 1 auto;
}
.other-sites-section .site-visit {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--npav-green-primary);
}
.other-sites-section .site-visit .bx {
    font-size: 1rem;
    transition: transform 180ms ease;
}
.other-sites-section .site-card:hover .site-visit .bx {
    transform: translate(2px, -2px);
}
@media (max-width: 1199px) {
    .other-sites-section .sites-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767px) {
    .other-sites-section .sites-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 479px) {
    .other-sites-section .sites-grid { grid-template-columns: 1fr; }
}
/* Mobile: tighten act-break padding */
@media (max-width: 767px) {
    .content-section,
    .ms-wrapper,
    .pricing-plans-section {
        padding-top: 48px;
    }
}


/* ============================================================== */
/* 10. WHAT TO PROTECT — intent-based guide (.protect-section)    */
/*     Needs-led cards ("My PC", "My Data"...) that route to the   */
/*     right product. Educates & guides rather than re-listing.    */
/* ============================================================== */
.protect-section {
    background-color: #ffffff;
}
.protect-section .section-title {
    font-size: 2rem;
    font-weight: 500;
    color: #1a1a1a;
}
.protect-section .protect-subtitle {
    font-size: 1.125rem;
    color: #4a4a4a;
    max-width: 680px;
    margin: 12px auto 0;
}
.protect-section .protect-head {
    margin-bottom: 44px;
}

.protect-section .protect-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1080px;
    margin: 0 auto;
}
.protect-section .protect-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 26px;
    background: #fff;
    border: 1px solid #e6e8eb;
    border-radius: 18px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: inherit;
    transition: border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}
.protect-section .protect-card:hover,
.protect-section .protect-card:focus-visible {
    border-color: var(--npav-green-primary);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.09);
    background: rgba(0, 143, 79, 0.02);
    outline: none;
}
.protect-section .protect-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(0, 143, 79, 0.08);
    color: var(--npav-green-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    margin-bottom: 20px;
    transition: background 200ms ease, color 200ms ease;
}
.protect-section .protect-card:hover .protect-icon,
.protect-section .protect-card:focus-visible .protect-icon {
    background: var(--npav-green-primary);
    color: #fff;
}
.protect-section .protect-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 8px;
}
.protect-section .protect-desc {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.55;
    margin-bottom: 18px;
    flex: 1 1 auto;
}
.protect-section .protect-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--npav-green-primary);
}
/* override legacy custom.css: i.bx.bx-right-arrow-alt { color:#fff; bg on hover } */
.protect-section .protect-link .bx,
.protect-section .protect-link .bx:hover {
    font-size: 1.2rem;
    color: var(--npav-green-primary);
    background: transparent;
    border-radius: 0;
    transition: transform 200ms ease;
}
.protect-section .protect-card:hover .protect-link .bx {
    transform: translateX(3px);
}

/* Tablet: 2 columns */
@media (max-width: 991px) {
    .protect-section .protect-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 640px;
    }
}
/* Mobile: single column */
@media (max-width: 575px) {
    .protect-section .section-title { font-size: 1.625rem; }
    .protect-section .protect-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================================== */
/* 11. FAQ — scoped to .faq-section                              */
/*     Aligns tabs + accordions to the NPAV 2026 card language.   */
/* ============================================================== */
.faq-section .section-title {
    font-size: 2rem;            /* 32px */
    font-weight: 500;
    color: #1a1a1a;
}
/* Tab pills — brand-green active, lighter divider */
.faq-section .faq-tabs {
    border-color: #e6e8eb;
}
.faq-section .faq-tabs .nav-link {
    font-weight: 500;
}
.faq-section .faq-tabs .nav-link.active {
    background-color: var(--npav-green-primary);
    border-color: var(--npav-green-primary);
}
/* Accordion items — clean card language (12px radius, hairline, calm hover) */
.faq-section .faq-accordion-column .accordion-item {
    border: 1px solid #e6e8eb;
    border-radius: 12px;
    box-shadow: none;
    margin-bottom: 12px;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}
.faq-section .faq-accordion-column .accordion-item:hover {
    border-color: var(--npav-green-primary);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.faq-section .faq-accordion-column .accordion-button {
    font-weight: 500;
    color: #1a1a1a;
}
.faq-section .faq-accordion-column .accordion-button:not(.collapsed) {
    color: var(--npav-green-primary);
}
.faq-section .faq-accordion-column .accordion-body {
    color: #4a4a4a;
}
@media (max-width: 767px) {
    .faq-section .section-title {
        font-size: 1.625rem;
    }
}


/* ============================================================== */
/* 12. POLISH — consistency (less bold, less heavy green)        */
/* ============================================================== */
/* Product-discovery heading -> match the 32 / 600 section scale */
/* (was the bold 2.25rem/700 generic .section-title)             */
.tabs-section .section-title {
    font-size: 2rem;
    font-weight: 500;
    color: #1a1a1a;
}
.tabs-section .lead {
    color: #4a4a4a;
}
@media (max-width: 767px) {
    .tabs-section .section-title {
        font-size: 1.625rem;
    }
}


/* ============================================================== */
/* 13. (removed) Dot-grid texture — sections use clean solid       */
/*     surfaces from §9 (white / #f8f9fa off-white).               */
/* ============================================================== */


/* ============================================================== */
/* 14. HEADER / NAVBAR polish (global chrome)                     */
/*     Crisp hairline, animated green nav underline (box-shadow,   */
/*     so it won't clash with the dropdown carets), icon hovers.   */
/* ============================================================== */
.navbar {
    border-bottom: 1px solid #eef1f4;
}
@media (min-width: 992px) {
    .navbar-nav > .nav-item > .nav-link {
        transition: color 160ms ease, box-shadow 160ms ease;
    }
    .navbar-nav > .nav-item > .nav-link:hover,
    .navbar-nav > .nav-item > .nav-link.active {
        color: var(--npav-green-primary) !important;
        box-shadow: inset 0 -2px 0 var(--npav-green-primary);
    }
}
/* Utility icons (search / cart / account) — green on hover */
.navbar .top-search .search-icon-btn:hover i,
.navbar .cart-icon:hover i,
.navbar .right-cta-block a:hover i {
    color: var(--npav-green-primary);
}
/* Buy Now / Renewal — consistent radius with the 2026 system */
.navbar .right-cta-block .btn-npav-green,
.navbar .right-cta-block .btn-npav-outline {
    border-radius: 8px;
}


/* ============================================================== */
/* 15. TOP BAR — light theme (#F1F3F5, dark text, green accents)  */
/*     Scoped to .top-bar so the dark footer's social icons are    */
/*     unaffected.                                                 */
/* ============================================================== */
.top-bar {
    background-color: #f1f3f5;
    color: #4a4a4a;
    border-bottom: 1px solid #e6e8eb;
}
.top-bar a,
.top-bar .contact-group,
.top-bar .contact-group .contact-info {
    color: #4a4a4a;
}
.top-bar .contact-group .contact-info span[aria-hidden="true"] {
    color: var(--npav-green-primary);
}
.top-bar .contact-group .separator {
    color: rgba(0, 0, 0, 0.22);
}
/* Group alignment — items vertically centred on one line, even gaps */
.top-bar .contact-group {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
/* Neutralize global .contact-info CARD styles (from the contact page) leaking into the top bar */
/* + align the icon with its text */
.top-bar .contact-info {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}
/* icon wrapper centred with the text */
.top-bar .contact-info span[aria-hidden="true"] {
    display: inline-flex;
    align-items: center;
    line-height: 1;
}
.top-bar .contact-info:hover {
    transform: none;
    box-shadow: none;
}
/* Email / phone icons — make them visible (global rule had set them white) */
.top-bar .contact-info i {
    color: var(--npav-green-primary);
    font-size: 1rem;
    margin: 0;
    top: 0;
}
/* Social icons — clean green glyphs (no heavy square) on the light bar */
.top-bar .social-icons a {
    background-color: transparent;
    color: var(--npav-green-primary) !important;
}
.top-bar .social-icons a i {
    color: var(--npav-green-primary) !important;
}
.top-bar .social-icons a:hover {
    background-color: rgba(0, 143, 79, 0.10);
    color: var(--npav-green-dark) !important;
}
.top-bar .social-icons a:hover i {
    color: var(--npav-green-dark) !important;
}


/* ============================================================== */
/* 16. PRODUCT SECTION — subtle orbit background effect           */
/*     Dashed concentric rings + soft radial glow (brand green,    */
/*     low opacity) behind the product cards. Purely decorative.   */
/* ============================================================== */
.tabs-section {
    position: relative;
    overflow: hidden;
    background-color: #fbf3ec;   /* soft warm highlight (replaces plain off-white) */
}
/* hide the particles layer so the orbit is the only effect */
.tabs-section #particles-js,
.tabs-section .particles-layer {
    display: none;
}
/* outer ring + soft glow (warm orange) */
.tabs-section::before {
    content: "";
    position: absolute;
    top: 46%;
    left: 50%;
    width: 780px;
    height: 780px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1.5px dashed rgba(210, 120, 60, 0.32);
    background: radial-gradient(circle, rgba(210, 120, 60, 0.16) 0%, rgba(210, 120, 60, 0.05) 42%, transparent 68%);
    pointer-events: none;
    z-index: 0;
}
/* inner ring */
.tabs-section::after {
    content: "";
    position: absolute;
    top: 46%;
    left: 50%;
    width: 520px;
    height: 520px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1.5px dashed rgba(210, 120, 60, 0.26);
    pointer-events: none;
    z-index: 0;
}
/* keep content above the effect */
.tabs-section .container-custom-wide {
    position: relative;
    z-index: 1;
}
@media (max-width: 767px) {
    .tabs-section::before {
        width: 460px;
        height: 460px;
    }
    .tabs-section::after {
        width: 320px;
        height: 320px;
    }
}


/* ============================================================== */
/* 17. SECURITY ARCHITECTURE — scoped to .security-arch-section   */
/*     "One Platform. Seven Layers." pillars + ecosystem hub      */
/* ============================================================== */
.security-arch-section {
    background-color: #f8f9fa;
    background-image:
        linear-gradient(to right, rgba(0, 143, 79, 0.025) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 143, 79, 0.025) 1px, transparent 1px);
    background-size: 30px 30px;
    overflow: hidden;
}
.security-arch-section .sa-head {
    max-width: 760px;
    margin: 0 auto 3rem;
}
.sa-eyebrow {
    display: inline-block;
    padding: 6px 16px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: rgba(0, 143, 79, 0.08);
    color: var(--npav-green-primary);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.security-arch-section .sa-subtitle {
    font-size: 1.0625rem;
    margin-top: 12px;
}

/* Pillars list */
.security-arch-section .sa-pillars {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.security-arch-section .sa-pillar {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #fff;
    border: 1px solid #e6e8eb;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}
.security-arch-section .sa-pillar:hover,
.security-arch-section .sa-pillar.active {
    border-color: var(--npav-green-primary);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    background: rgba(0, 143, 79, 0.03);
}
.security-arch-section .sa-pillar-num {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(0, 143, 79, 0.08);
    color: var(--npav-green-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 1.0625rem;
    transition: background 200ms ease, color 200ms ease;
}
.security-arch-section .sa-pillar:hover .sa-pillar-num,
.security-arch-section .sa-pillar.active .sa-pillar-num {
    background: var(--npav-green-primary);
    color: #fff;
}
.security-arch-section .sa-pillar-text h4 {
    font-size: 1rem;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 2px;
}
.security-arch-section .sa-pillar-text p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

/* Ecosystem hub card */
.security-arch-section .sa-hub {
    width: 100%;
    max-width: 380px;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #e6e8eb;
    border-radius: 36px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.10);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.security-arch-section .sa-hub-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 16px;
}
.security-arch-section .sa-hub-label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #9ca3af;
}
.security-arch-section .sa-hub-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--npav-green-primary);
    box-shadow: 0 0 0 0 rgba(0, 143, 79, 0.4);
    animation: saPulse 2s infinite;
}
@keyframes saPulse {
    0%   { box-shadow: 0 0 0 0 rgba(0, 143, 79, 0.35); }
    70%  { box-shadow: 0 0 0 10px rgba(0, 143, 79, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 143, 79, 0); }
}
.security-arch-section .sa-hub-body {
    text-align: center;
    padding: 18px 6px;
}
.security-arch-section .sa-hub-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(0, 143, 79, 0.08);
    border: 1px solid rgba(0, 143, 79, 0.18);
    color: var(--npav-green-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    transition: background 300ms ease, color 300ms ease, transform 300ms ease;
}
.security-arch-section .sa-hub-icon.is-active {
    background: var(--npav-green-primary);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 10px 26px rgba(0, 143, 79, 0.30);
}
.security-arch-section .sa-hub-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 10px;
    transition: opacity 200ms ease;
}
.security-arch-section .sa-hub-desc {
    font-size: 0.9rem;
    color: #5a5a5a;
    line-height: 1.6;
    margin: 0;
    transition: opacity 200ms ease;
}
.security-arch-section .sa-hub-foot {
    border-top: 1px solid #f0f0f0;
    padding-top: 16px;
    text-align: center;
}
.security-arch-section .sa-hub-badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 999px;
    background: rgba(0, 143, 79, 0.08);
    color: var(--npav-green-primary);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}


/* ============================================================== */
/* 18. RANSOMWARE LAYERS — scoped to .ransomware-layers-section   */
/*     Layered shield visual + 5 protection cards + trust + CTA   */
/* ============================================================== */
.ransomware-layers-section {
    background-color: #f8f9fa;
    background-image:
        linear-gradient(to right, rgba(0, 143, 79, 0.025) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 143, 79, 0.025) 1px, transparent 1px);
    background-size: 30px 30px;
    overflow: hidden;
}
.ransomware-layers-section .rl-head {
    max-width: 740px;
    margin: 0 auto 3.25rem;
}
.rl-eyebrow {
    display: inline-block;
    padding: 6px 16px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: rgba(0, 143, 79, 0.08);
    color: var(--npav-green-primary);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.ransomware-layers-section .rl-subtitle {
    font-size: 1.0625rem;
    margin-top: 12px;
}

/* ---- Layered shield visualization ---- */
.ransomware-layers-section .rl-shield-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.ransomware-layers-section .rl-shield {
    position: relative;
    width: 340px;
    height: 340px;
}
.ransomware-layers-section .rl-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid #e5e7eb;
    background: rgba(255, 255, 255, 0.45);
    transition: border-color 300ms ease, box-shadow 300ms ease, background 300ms ease;
}
.rl-ring-1 { width: 340px; height: 340px; }
.rl-ring-2 { width: 276px; height: 276px; }
.rl-ring-3 { width: 212px; height: 212px; }
.rl-ring-4 { width: 148px; height: 148px; }
.rl-ring-5 { width: 96px;  height: 96px; }
.ransomware-layers-section .rl-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--npav-green-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 8px 22px rgba(0, 143, 79, 0.30);
    z-index: 2;
}
/* ring lit by hovering its card */
.ransomware-layers-section .rl-ring.lit {
    border-color: var(--npav-green-primary);
    background: rgba(0, 143, 79, 0.05);
    box-shadow: 0 0 0 4px rgba(0, 143, 79, 0.10);
}
.ransomware-layers-section .rl-shield-caption {
    margin-top: 28px;
    text-align: center;
}
.rl-caption-eyebrow {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #9ca3af;
    font-weight: 500;
}
.rl-caption-title {
    display: block;
    font-size: 1.125rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-top: 4px;
    transition: opacity 200ms ease;
}

/* ---- Layer cards ---- */
.ransomware-layers-section .rl-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.ransomware-layers-section .rl-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid #e6e8eb;
    border-radius: 18px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}
.ransomware-layers-section .rl-card:hover {
    border-color: var(--npav-green-primary);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
    background: rgba(0, 143, 79, 0.025);
}
.ransomware-layers-section .rl-card-icon {
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(0, 143, 79, 0.08);
    color: var(--npav-green-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transition: background 220ms ease, color 220ms ease;
}
.ransomware-layers-section .rl-card:hover .rl-card-icon {
    background: var(--npav-green-primary);
    color: #fff;
}
.ransomware-layers-section .rl-card-layer {
    display: block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--npav-green-primary);
}
.ransomware-layers-section .rl-card-title {
    font-size: 1.0625rem;
    font-weight: 500;
    color: #1a1a1a;
    margin: 2px 0 3px;
}
.ransomware-layers-section .rl-card-desc {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

/* ---- Entry animations (only when JS marks the section) ---- */
/* Without JS the cards stay fully visible (no .rl-js class). */
.ransomware-layers-section.rl-js .rl-card {
    opacity: 0;
    transform: translateY(16px);
}
.ransomware-layers-section.rl-js.in-view .rl-card {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 500ms ease var(--rl-delay, 0ms),
                transform 500ms ease var(--rl-delay, 0ms),
                border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}
/* Sequential ring illumination on entry (settles back to neutral) */
.ransomware-layers-section.in-view .rl-ring {
    animation: rlRingLight 650ms ease;
}
.ransomware-layers-section.in-view .rl-ring-1 { animation-delay: 0ms; }
.ransomware-layers-section.in-view .rl-ring-2 { animation-delay: 140ms; }
.ransomware-layers-section.in-view .rl-ring-3 { animation-delay: 280ms; }
.ransomware-layers-section.in-view .rl-ring-4 { animation-delay: 420ms; }
.ransomware-layers-section.in-view .rl-ring-5 { animation-delay: 560ms; }
@keyframes rlRingLight {
    0%   { border-color: #e5e7eb; box-shadow: none; }
    45%  { border-color: var(--npav-green-primary); box-shadow: 0 0 0 6px rgba(0, 143, 79, 0.12); }
    100% { border-color: #e5e7eb; box-shadow: none; }
}

/* ---- Trust indicators ---- */
.ransomware-layers-section .rl-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 14px 40px;
    max-width: 1040px;
    margin: 3.25rem auto 0;
    padding: 22px 18px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.ransomware-layers-section .rl-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
}
.ransomware-layers-section .rl-trust-item .bx {
    color: var(--npav-green-primary);
    font-size: 1.15rem;
}

@media (max-width: 991px) {
    .ransomware-layers-section .rl-shield-wrap { margin-bottom: 1.5rem; }
}
@media (max-width: 767px) {
    .ransomware-layers-section .rl-shield { width: 280px; height: 280px; }
    .rl-ring-1 { width: 280px; height: 280px; }
    .rl-ring-2 { width: 226px; height: 226px; }
    .rl-ring-3 { width: 174px; height: 174px; }
    .rl-ring-4 { width: 122px; height: 122px; }
    .rl-ring-5 { width: 84px;  height: 84px; }
    .security-arch-section .sa-hub { max-width: 320px; }
}
@media (prefers-reduced-motion: reduce) {
    .ransomware-layers-section.rl-js .rl-card { opacity: 1; transform: none; }
    .ransomware-layers-section.in-view .rl-ring { animation: none; }
}


/* ============================================================== */
/* 19. PALETTE BALANCE — green is reserved for ACTIONS (Buy Now,   */
/*     prices, links, counters, CTAs). Decorative green (eyebrows, */
/*     icon tiles, stat holders) is neutralised to slate / a       */
/*     varied accent set so the page isn't green-saturated.        */
/*     Loaded last -> wins by source order; hover/active green     */
/*     states keep their higher specificity and still apply.       */
/* ============================================================== */

/* Eyebrow pills -> neutral slate (were green on every section) */
.npav-eyebrow,
.sa-eyebrow,
.rl-eyebrow,
.users-secured .us-eyebrow,
.help-cta-section .help-cta-eyebrow {
    background: #eef2f6;
    color: #475569;
}

/* Resting icon tiles -> slate. Where a hover/active rule fills them
   green, that still wins (higher specificity), so green appears on
   interaction rather than at rest. */
.protect-section .protect-icon,
.users-secured .us-substat-icon,
.ransomware-layers-section .rl-card-icon,
.security-arch-section .sa-pillar-num,
.security-arch-section .sa-hub-icon,
.help-cta-section .help-channel-icon {
    background: #eef2f6;
    color: #475569;
}

/* Statistics — distinct icon colours instead of all-green (adds
   tasteful variety; icons are white so contrast holds). */
.ms-wrapper .ms-bg-green  { background: var(--npav-green-primary); }
.ms-wrapper .ms-bg-orange { background: #f59e0b; }
.ms-wrapper .ms-bg-blue   { background: #3b82f6; }
.ms-wrapper .ms-bg-red    { background: #ef4444; }

/* Product cards — Buy Now stays the only green. Price -> dark ink,
   savings badge -> amber (deal colour), Know More -> slate link. */
.tabs-section .product-card .price-tag,
.tabs-section .product-card .price-tag .currency-symbol {
    color: #1a1a1a;
}
.tabs-section .product-card .save-tag {
    background-color: #f59e0b;
    box-shadow: 0 2px 6px rgba(245, 158, 11, 0.28);
}
.tabs-section .product-card .know-more-link {
    color: #475569;
}
.tabs-section .product-card .know-more-link:hover {
    color: #1a1a1a;
}
/* Active product tab -> dark slate (was a green pill). Beats the
   legacy style.css !important rule with matching specificity. */
.tabs-section .nav-pills .nav-link.active {
    background-color: #1f2a37 !important;
    border-color: #1f2a37 !important;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}
