/* ============================================
   HOME — BASE
   Tokens, global type, buttons, reveal-on-scroll,
   the .sec-light framework, and small components
   that are reused across more than one section
   (stat-card, why-figure, dealer-pill).
   Load this file FIRST on every page that uses .nh-body.
   ============================================ */
:root {
    --obsidian: #0A0B0D;
    --surface: #15181C;
    --surface-2: #1D2126;
    --surface-3: #262B31;
    --hairline: #2C3238;
    --steel: #9AA6AE;
    --steel-dim: #5C666D;
    --white: #F3F6F7;
    --teal: #d91c1c;
    --teal-dim: #a01515;
    --ember: #d91c1c;
    --ember-dim: #8e1212;
    --font-display: 'Barlow', sans-serif;
    --font-body: 'Barlow', sans-serif;
    --font-mono: 'Barlow', monospace;
    --radius: 6px;
    --ease: .25s ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.nh-body {
    background: var(--obsidian) !important;
    color: var(--white) !important;
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
}

.nh-body ::selection {
    background: var(--teal);
    color: #fff;
}

/* ── Global text ── */
.nh-body h1,
.nh-body .section-title,
.nh-body h2 {
    font-weight: 700 !important;
    margin: 0;
    color: #fff !important;
    text-transform: uppercase;
}

.nh-body h1 {
    font-size: 40px;
}

.nh-body h2 {
    font-size: 35px;
}

@media(max-width:991px) {
    .nh-body h1 {
        font-size: 32px;
    }

    .nh-body h2 {
        font-size: 30px;
    }
}

@media(max-width:480px) {
    .nh-body h1 {
        font-size: 25px;
    }

    .nh-body h2 {
        font-size: 23px;
    }
}

.nh-body h3 {
    font-weight: 700 !important;
    margin: 0;
    color: var(--teal) !important;
    text-transform: uppercase;
}

.nh-body h4 {
    font-weight: 700 !important;
    margin: 0;
    color: #fff !important;
    text-transform: uppercase;
}

/* Default body-copy color. Section files opt specific components
   out of this by adding their class to the :not() list here only
   if the component needs its own color (kept minimal on purpose). */


.nh-body p {
    font-size: 17px !important;
}

@media(max-width:480px) {
    .nh-body p {
        font-size: 15px !important;
    }
}

.nh-body .eyebrow {
    font-size: 17px;
    text-transform: uppercase;
    color: var(--teal) !important;
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-weight: 700;
}

.nh-body .eyebrow::before {
    content: "";
    width: 22px;
    height: 1px;
    background: var(--teal);
    display: inline-block;
}

.nh-body .eyebrow--tag {
    background: var(--teal) !important;
    color: #fff !important;
    padding: .3rem .7rem;
    border-radius: 3px;
}

.nh-body .eyebrow--tag::before {
    background: #fff;
}

.nh-body .text-steel {
    color: var(--steel) !important;
}

.nh-body .mono {
    font-weight: 700;
}

.nh-body .container-xl {
    max-width: 1320px;
}

.nh-body section {
    position: relative;
    padding: 50px 10px;
}

@media(max-width:768px) {
  .nh-body section {
    position: relative;
    padding: 40px 10px;
}
}

/* ── Buttons (shared across hero, why, precut, products, franchise, contact) ── */
.nh-body .btn-ember,
.nh-body .btn-outline-steel {
    font-weight: 700;
    padding: .85rem 1.7rem;
    border-radius: 4px;
    transition: var(--ease);
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    font-size: 15px;
    -webkit-tap-highlight-color: transparent;
}

.nh-body .btn-ember {
    background: var(--teal) !important;
    border: 1px solid var(--teal) !important;
    color: #fff !important;
    box-shadow: 0 6px 18px rgba(217, 28, 28, .22);
}

.nh-body .btn-ember:hover {
    background: transparent !important;
    color: var(--teal) !important;
    border-color: var(--teal) !important;
    box-shadow: none;
    transform: translateY(-1px);
}

.nh-body .btn-ember:active {
    transform: scale(.97);
}

.nh-body .btn-outline-steel {
    background: transparent !important;
    border: 1px solid #3a4148 !important;
    color: #fff !important;
}

.nh-body .btn-outline-steel:hover {
    border-color: var(--teal) !important;
    color: var(--teal) !important;
    transform: translateY(-1px);
}

.nh-body .btn-outline-steel:active {
    transform: scale(.97);
    border-color: var(--teal) !important;
    color: var(--teal) !important;
}

/* ── Reveal-on-scroll ── */
.nh-body .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}

.nh-body .reveal.in {
    opacity: 1;
    transform: none;
}

@media(prefers-reduced-motion: reduce) {
    .nh-body .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ── Shared component: stat-card (used in Why, Precut, Franchise) ── */
.nh-body .stat-card {
    background: var(--surface) !important;
    border: 1px solid var(--hairline) !important;
    border-radius: var(--radius);
    padding: 20px 10px;
}

.nh-body .stat-card .num {
    font-size: 25px;
    color: var(--teal) !important;
    font-weight: 700;
        text-transform: uppercase;
}

.nh-body .stat-card .lbl {
    font-size: 17px;
    color: var(--steel) !important;
}

.nh-body .stat-card__icon {
    display: block;
    font-size: 20.8px;
    color: var(--teal) !important;
    margin-bottom: .5rem;
}

@media(max-width:768px) {
    .nh-body .stat-card {
        padding: 1.1rem .9rem;
    }

    .nh-body .stat-card .num {
        font-size: 17px;
    }
}

/* ── Shared component: why-figure (image card used in Why, Precut, Franchise, Contact) ── */
.nh-body .why-figure {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 100%;
    -webkit-tap-highlight-color: transparent;
    transition: transform .12s ease, border-color .12s ease;
}

.nh-body .why-figure img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .6s ease;
}

.nh-body .why-figure:hover img {
    transform: scale(1.04);
}

.nh-body .why-figure:active img {
    transform: scale(1.03);
}

.nh-body .why-chip {
    position: absolute;
    left: 1.2rem;
    bottom: 1.2rem;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: .6rem;
    background: rgba(21, 24, 28, .65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius);
    padding: .6rem 1rem;
}

.nh-body .why-chip i {
    color: var(--teal) !important;
    font-size: 17.6px;
}

.nh-body .why-chip span {
    color: #fff !important;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
}

/* ── Shared component: dealer-pill (used in Precut, Franchise) ── */
.nh-body .dealer-pill {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 20px;
    padding: .4rem .9rem;
    font-size: 17px;
    font-weight: 600;
    color: #e2e6e9 !important;
}

.nh-body .dealer-pill i {
    color: var(--teal) !important;
    font-size: 12.8px;
}

/* ── sec-light framework (light sections: Why, Layers, Threats, Beyond, Process, Regions) ── */
.nh-body .sec-light {
    background: #fff !important;
    color: #1a1a1a !important;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}
#chemSpecCard img{
        width: 50%;
}

.nh-body .sec-light h1,
.nh-body .sec-light h2,
.nh-body .sec-light h3,
.nh-body .sec-light h4,
.nh-body .sec-light .section-title {
    color: #0c0c0c !important;
}

.nh-body .sec-light .eyebrow {
    color: var(--teal) !important;
}

.nh-body .sec-light .eyebrow::before {
    background: var(--teal);
}

.nh-body .sec-light p,
.nh-body .sec-light span,
.nh-body .sec-light div:not(.stat-card):not(.why-figure):not(.threat-card):not(.beyond-card):not(.product-card):not(.process-media):not(.country-card):not(.chem-plate):not(.chem-spec),
.nh-body .sec-light li,
.nh-body .sec-light .text-steel {
    color: #555 !important;
}
.country-card img{
        width: 10%;
}

.nh-body .sec-light .stat-card {
    background: #f5f6f8 !important;
    border-color: #e0e2e5 !important;
}

.nh-body .sec-light .stat-card .num {
    color: var(--teal) !important;
}

.nh-body .sec-light .stat-card .lbl {
    color: #666 !important;
}

.nh-body .sec-light .why-figure {
    border-color: #ddd !important;
}

.nh-body .sec-light .btn-ember {
    background: var(--teal) !important;
    color: #fff !important;
}

.nh-body .sec-light .btn-ember:hover {
    background: transparent !important;
    color: var(--teal) !important;
}

/* ── Utilities ── */
.nh-body .u-maxw-56ch {
    max-width: 56ch;
}

.nh-body .u-maxw-60ch {
    max-width: 60ch;
}

.nh-body .u-teal-link {
    color: var(--teal);
}

.footer-counter span,
.footer-counter {
    color: #fff !important;
}

/* ============================================
   HOME — HERO + TRUST STRIP
   ============================================ */
.nh-body .hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 5rem;
    overflow: hidden;
}

.nh-body .hero video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
    z-index: 0;
    background: var(--obsidian);
    /* shows while the video buffers */
}

.nh-body .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(10, 11, 13, 0) 0%, rgba(10, 11, 13, 0) 78%, var(--obsidian) 100%);
}

/* hero-content/badge/scroll are currently unused (kept for future copy) */
.nh-body .hero-content,
.nh-body .hero-badge,
.nh-body .hero-scroll {
    display: none;
}

.nh-body .hero h1 {
    font-size: clamp(38.4px, 6vw, 80px) !important;
    line-height: .98;
    text-transform: uppercase;
    max-width: 14ch;
    color: #fff !important;
}

.nh-body .hero h1 em {
    font-style: normal;
    color: var(--teal) !important;
}

.nh-body .hero p.lead-ug {
    max-width: 44ch;
    color: var(--steel) !important;
    font-size: 16.8px;
    margin-top: 1.4rem;
}

/* Mobile: the video keeps playing (muted + playsinline already set in the
   markup so autoplay is allowed on iOS/Android). Only the height and the
   hidden text block change at this size — no more static-image fallback. */
@media(max-width:991px) {
    .nh-body .hero {
        min-height: 25vh;
        padding-bottom: 3.2rem;
    }

    .nh-body .hero h1 {
        font-size: clamp(32px, 9vw, 44.8px) !important;
        max-width: 12ch;
    }

    .nh-body .hero p.lead-ug {
        font-size: 15.04px;
        max-width: 38ch;
    }

    .nh-body .hero .eyebrow {
        font-size: 15px;
    }

    .nh-body .hero .d-flex.flex-wrap.gap-3 {
        gap: .7rem !important;
    }

    .nh-body .hero .btn-ember,
    .nh-body .hero .btn-outline-steel {
        flex: 1 1 auto;
        text-align: center;
        justify-content: center;
        padding: .85rem 1.1rem;
        font-size: 15px;
    }
}

@media(max-width:480px) {
    .nh-body .hero {
        min-height: 25vh;
    }

    .nh-body .hero h1 {
        font-size: 29.6px !important;
        max-width: 11ch;
    }
}

/* ── Trust marquee ── */
.nh-body .strip {
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
    background: var(--surface) !important;
    padding: 1.6rem 0;
    overflow: hidden;
    white-space: nowrap;
}

.nh-body .strip-track {
    display: inline-flex;
    gap: 3.5rem;
    animation: marquee 32s linear infinite;
}

.nh-body .strip-track span {
    font-size: 17px;
    color: var(--steel) !important;
    font-weight: 500;
}

.nh-body .strip-track span b {
    color: var(--teal) !important;
    font-weight: 800;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media(prefers-reduced-motion: reduce) {
    .nh-body .strip-track {
        animation: none;
    }
}

@media(max-width:768px) {
    .nh-body .strip {
        padding: 1.1rem 0;
    }

    .nh-body .strip-track {
        gap: 2rem;
    }

    .nh-body .strip-track span {
        font-size: 15px;
    }
}

/* ============================================
   HOME — WHY + LAYER STACK ("The Science of PPF")
   ============================================ */
/* .nh-body .stack-section { background: var(--surface) !important; } */

/* Spec card that shows the currently selected layer */
.nh-body .chem-spec {
    position: relative;
    background: var(--surface-2) !important;
    border: 1px solid var(--hairline) !important;
    border-left: 3px solid var(--teal) !important;
    border-radius: var(--radius);
    padding: 1.6rem 1.7rem;
    min-height: 150px;
    transition: .3s ease;
}

.nh-body .chem-spec__img {
    width: 60%;
    max-height: 160px;
    object-fit: contain;
    display: block;
    margin-bottom: .9rem;
    border-radius: 6px;
}

.nh-body .chem-spec .chem-spec__tag {
    font-size: 15px;
    color: var(--steel-dim) !important;
    font-weight: 700;
    text-transform: uppercase;
}

.nh-body .chem-spec h4 {
    margin: .3rem 0 .6rem;
    font-size: 18.4px;
    color: #fff !important;
}

.nh-body .chem-spec p {
    margin: 0;
    color: var(--steel) !important;
    font-size: 15px;
    line-height: 1.6;
}

.nh-body .chem-hint {
    margin-top: 1.1rem;
    font-size: 15px;
    color: var(--steel-dim) !important;
}

.nh-body .sec-light .chem-spec {
    background: #f5f6f8 !important;
    border-color: #e0e2e5 !important;
    border-left-color: var(--teal) !important;
}

.nh-body .sec-light .chem-spec h4 {
    color: #0c0c0c !important;
}

.nh-body .sec-light .chem-spec p {
    color: #555 !important;
}

/* Layer list (left column, below the spec card) */
.nh-body .chem-list {
    list-style: none;
    padding: 0;
    margin: 1.3rem 0 0;
    border-top: 1px solid var(--hairline);
}

.nh-body .sec-light .chem-list {
    border-top-color: #e0e2e5;
}

.nh-body .chem-list__item {
    display: flex;
    align-items: center;
    gap: .9rem;
    padding: .85rem .3rem;
    border-bottom: 1px solid var(--hairline);
    cursor: pointer;
    transition: .2s ease;
}

.nh-body .sec-light .chem-list__item {
    border-bottom-color: #e0e2e5;
}

.nh-body .chem-list__item:hover {
    padding-left: .6rem;
}

.nh-body .chem-list__num {
    font-weight: 800;
    font-size: 15px;
    color: var(--steel-dim) !important;
    flex-shrink: 0;
    width: 1.6rem;
}

.nh-body .chem-list__name {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    color: var(--steel) !important;
}

.nh-body .sec-light .chem-list__name {
    color: #393939 !important;
    text-transform: uppercase;
}

.nh-body .chem-list__arrow {
    font-size: 15px;
    color: var(--steel-dim) !important;
    opacity: 0;
    transition: .2s ease;
}

.nh-body .chem-list__item:hover .chem-list__arrow {
    opacity: 1;
}

.nh-body .chem-list__item.is-active {
    border-bottom-color: var(--teal);
}

.nh-body .chem-list__item.is-active .chem-list__num {
    color: var(--teal) !important;
}

.nh-body .chem-list__item.is-active .chem-list__name {
    color: #fff !important;
    font-weight: 800;
        text-transform: uppercase;
}

.nh-body .sec-light .chem-list__item.is-active .chem-list__name {
    color: #0c0c0c !important;
    
}

.nh-body .chem-list__item.is-active .chem-list__arrow {
    opacity: 1;
    color: var(--teal) !important;
}

/* FULL-WIDTH PROCESS BANNER */
.section-banner-with{
        background: white;
    padding: 0px !important;
}
.section-banner-with .desktop-with {
    width:100%;
     display: block;
}
.section-banner-with .phone-with{
    display: none;
}


@media(max-width:500px){
    .section-banner-with .desktop-with {
    width:100%;
     display: none;
}
.section-banner-with .phone-with{
    display: block;
    width:100%;
}
}
/* ── Threat grid ── */
.nh-body .threat-card {
    background: var(--surface) !important;
    border: 1px solid var(--hairline);
    border-radius: var(--radius);
    padding: 0px;
    text-align: center;
    height: 100%;
    transition: var(--ease);
    -webkit-tap-highlight-color: transparent;
}

.nh-body .threat-card:hover {
    border-color: var(--teal) !important;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(217, 28, 28, .12);
}

.nh-body .threat-card:active {
    border-color: var(--teal) !important;
    transform: scale(.96);
}

.nh-body .threat-card i {
    font-size: 27.2px;
    color: var(--teal) !important;
}

.nh-body .threat-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.nh-body .threat-card h4 {
    font-size: 19px;
    margin-top: .8rem;
    text-transform: uppercase;
    color: #fff !important;
}

.nh-body .sec-light .threat-card {
    background: white !important;
    border-color: #e0e2e5 !important;
        padding: 15px 0px;
}

.nh-body .sec-light .threat-card:hover {
    border-color: var(--teal) !important;
    box-shadow: 0 10px 25px rgba(217, 28, 28, .08) !important;
}

.nh-body .sec-light .threat-card:active {
    border-color: var(--teal) !important;
}

.nh-body .sec-light .threat-card i {
    color: var(--teal) !important;
}

.nh-body .sec-light .threat-card h4 {
    color: #1a1a1a !important;
}

@media(max-width:480px) {
    .nh-body .threat-card i {
        font-size: 22.4px;
    }

    .nh-body .threat-card h4 {
        font-size: 15px;
    }
}

/* ── Product cards ── */
.nh-body #products {
    background: var(--surface);
}

.nh-body .product-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--hairline);
    background: var(--surface) !important;
    height: 100%;
    transition: .3s ease;
    -webkit-tap-highlight-color: transparent;
}

.nh-body .product-card:hover {
    border-color: rgba(217, 28, 28, .3);
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .4);
}

.nh-body .product-card:active {
    transform: scale(.97);
    border-color: rgba(217, 28, 28, .35);
}

.nh-body .product-card img {
    width: 100%;
    transition: transform .55s ease;
}

.nh-body .product-card:hover img {
    transform: scale(1.07);
}

.nh-body .product-card .body {
    padding: 1.3rem 1.3rem 1.5rem;
}

.nh-body .product-card h3 {
    font-size: 17.6px;
    color: var(--teal) !important;
}

.nh-body .product-card p {
    color: var(--steel) !important;
    font-size: 15px;
    margin: .5rem 0 0;
}

.nh-body .product-card .go {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    margin-top: 1rem;
    color: var(--teal) !important;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
}

.nh-body .card-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    margin-top: .6rem;
    flex-wrap: wrap;
}

.nh-body .card-links .go {
    margin: 0;
}

.nh-body .enquire-now {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    transition: opacity .2s ease;
}

.nh-body .enquire-now i {
    font-size: 16px;
}

.nh-body .enquire-now:hover {
    opacity: .75;
}

.nh-body .products-more {
    display: none;
}

.nh-body .products-more.is-open {
    display: flex;
}

.nh-body .support-card-pad {
    padding: 1.6rem;
}

.nh-body .support-card-pad i.bi-headset {
    font-size: 32px;
    color: var(--teal);
}

@media (max-width: 480px) {
    .nh-body .card-links {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media(max-width:768px) {
    .nh-body .product-card .body {
        padding: 1.1rem 1.1rem 1.3rem;
    }
}

/* Product action row (Explore / Enquiry buttons) */
.nh-body .ppf-card__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.nh-body .ppf-card__btn--explore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--red);;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.nh-body .ppf-card__btn--explore i {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.nh-body .ppf-card__btn--explore:hover {
    color: var(--red);
}

.nh-body .ppf-card__btn--explore:hover i {
    transform: translateX(4px);
}

.nh-body .ppf-card__btn--enquiry {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--red);
    font-weight: 700;
    font-size: 17px;
    text-decoration: none;
    border-radius: 6px;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.2s ease;
}

.nh-body .ppf-card__btn--enquiry i {
    font-size: 14.4px;
}


@media (max-width: 400px) {
    .nh-body .ppf-card__actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .nh-body .ppf-card__btn--enquiry {
        width: 100%;
        justify-content: center;
    }
}

/* ── Beyond PPF — clickable panel diagram + feature cards ── */
.nh-body .panel-diagram {
    border-radius: 10px;
    overflow: hidden;
    /* box-shadow: 0 16px 40px rgba(16, 18, 20, .12); */
    background: var(--obsidian);
}

.nh-body .panel-diagram__frame {
    position: relative;
}

.nh-body .panel-diagram img {
    width: 100%;
    display: block;
}

.nh-body .panel-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.nh-body .panel-lines__ln {
    stroke: rgba(255, 255, 255, .55);
    stroke-width: .35;
    vector-effect: non-scaling-stroke;
    transition: stroke .25s ease;
}

.nh-body .panel-lines__ln.is-active {
    stroke: var(--teal);
    stroke-width: .5;
}

.nh-body .panel-dot {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--teal);
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .4);
    padding: 0;
    cursor: pointer;
    z-index: 3;
}

.nh-body .panel-dot__ping {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(217, 28, 28, .6);
    animation: panelPing 2.2s ease-out infinite;
}

.nh-body .panel-dot.is-active {
    background: #fff;
    border-color: var(--teal);
}

.nh-body .panel-dot.is-active .panel-dot__ping {
    border-color: rgba(217, 28, 28, .9);
}

@keyframes panelPing {
    0% {
        transform: scale(.6);
        opacity: .9;
    }

    100% {
        transform: scale(1.9);
        opacity: 0;
    }
}

@media(prefers-reduced-motion: reduce) {
    .nh-body .panel-dot__ping {
        animation: none;
    }
}

.nh-body .panel-label {
    position: absolute;
    z-index: 3;
    background: none;
    border: none;
    padding: 0;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.25;
    color: #fff !important;
    text-shadow: 0 2px 6px rgba(0, 0, 0, .6);
    cursor: pointer;
    transition: color .2s ease;
    white-space: nowrap;
}

.nh-body .panel-label--left {
    left: 3%;
    text-align: right;
    transform: translateY(-50%);
}

.nh-body .panel-label--right {
    right: 3%;
    text-align: left;
    transform: translateY(-50%);
}

.nh-body .panel-label--top {
    top: 3%;
    text-align: center;
    transform: translateX(-50%);
}

.nh-body .panel-label:hover,
.nh-body .panel-label.is-active {
    color: var(--teal) !important;
}

.nh-body .panel-tip {
    display: flex;
    align-items: flex-start;
    gap: .8rem;
    background: var(--surface);
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 1rem 1.2rem;
}

.nh-body .panel-tip i {
    color: var(--teal) !important;
    font-size: 20.8px;
    margin-top: .1rem;
    flex-shrink: 0;
}

.nh-body .panel-tip>div {
    display: flex;
    flex-direction: column;
    gap: .25rem;
}

.nh-body .panel-tip strong {
    display: block;
    color: #fff !important;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.2;
}

.nh-body .panel-tip span {
    display: block;
    color: var(--steel) !important;
    font-size: 15px;
    line-height: 1.5;
}

.nh-body .panel-dot[data-panel="0"] {
    left: 27%;
    top: 82%;
}

.nh-body .panel-dot[data-panel="1"] {
    left: 33%;
    top: 76%;
}

.nh-body .panel-dot[data-panel="2"] {
    left: 44%;
    top: 76%;
}

.nh-body .panel-dot[data-panel="3"] {
    left: 46%;
    top: 71%;
}

.nh-body .panel-dot[data-panel="4"] {
    left: 59%;
    top: 77%;
}

.nh-body .panel-dot[data-panel="5"] {
    left: 67%;
    top: 80%;
}

.nh-body .panel-dot[data-panel="6"] {
    left: 73%;
    top: 83%;
}

.nh-body .beyond-card {
    background: var(--surface-2) !important;
    border: 1px solid var(--hairline);
    border-radius: var(--radius);
    padding: 2rem 1.6rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: .3s;
    -webkit-tap-highlight-color: transparent;
}

.nh-body .beyond-card:hover {
    border-color: rgba(217, 28, 28, .3);
    transform: translateY(-4px);
}

.nh-body .beyond-card:active {
    transform: scale(.97);
    border-color: rgba(217, 28, 28, .35);
}

.nh-body .beyond-card .tag {
    font-size: 15px;
    color: var(--teal) !important;
    text-transform: uppercase;
    font-weight: 800;
}

.nh-body .beyond-card h3 {
    margin-top: .6rem;
    font-size: 20.8px;
    text-transform: uppercase;
    color: #fff !important;
}

.nh-body .beyond-card ul {
    margin: 1rem 0 0;
    padding-left: 1.1rem;
    color: var(--steel) !important;
    font-size: 15px;
}

.nh-body .beyond-card ul li {
    margin-bottom: .3rem;
    color: var(--steel) !important;
}

.nh-body .sec-light .beyond-card {
    background: #f5f6f8 !important;
    border-color: #e0e2e5 !important;
}

.nh-body .sec-light .beyond-card:hover {
    border-color: rgba(217, 28, 28, .3) !important;
}

.nh-body .sec-light .beyond-card .tag {
    color: var(--teal) !important;
}

.nh-body .sec-light .beyond-card h3 {
    color: #0c0c0c !important;
}

.nh-body .sec-light .beyond-card ul,
.nh-body .sec-light .beyond-card ul li {
    color: #555 !important;
}

@media(max-width:768px) {
    .nh-body .beyond-card {
        padding: 1.6rem 1.3rem;
    }
}

/* ============================================
   HOME — PRECUT PPF (red band) + PROCESS SLIDER
   ============================================ */

/* ── Precut red band ── */
.nh-body .precut-red {
    background: linear-gradient(120deg, var(--teal-dim), var(--teal)) !important;
}

.nh-body .precut-red .eyebrow {
    color: #fff !important;
}

.nh-body .precut-red .eyebrow::before {
    background: #fff;
}

.nh-body .precut-red p,
.nh-body .precut-red .text-steel {
    color: rgba(255, 255, 255, .85) !important;
}

.nh-body .precut-red .dealer-pill {
    background: rgba(255, 255, 255, .16) !important;
    border-color: rgba(255, 255, 255, .4) !important;
}

.nh-body .precut-red .stat-card {
    background: rgba(10, 11, 13, .55) !important;
    border-color: rgba(255, 255, 255, .22) !important;
}

.nh-body .precut-red .stat-card .num {
    font-size: 15px;
    white-space: nowrap;
}

.nh-body .precut-red .btn-ember {
    background: #fff !important;
    border-color: #fff !important;
    color: var(--teal-dim) !important;
}

.nh-body .precut-red .btn-ember:hover {
    background: transparent !important;
    color: #fff !important;
}

.nh-body .precut-red .btn-outline-steel {
    border-color: rgba(255, 255, 255, .55) !important;
    color: #fff !important;
}

.nh-body .precut-red .btn-outline-steel:hover {
    border-color: #fff !important;
    background: rgba(255, 255, 255, .12) !important;
    color: #fff !important;
}

/* ── Process slider (step tabs + slides) ── */
.nh-body .sec-light .ps-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 2rem;
    border-bottom: 2px solid #e8e8e8;
}

.nh-body .sec-light .ps-tab {
    flex: 1;
    background: none !important;
    border: none;
    padding: 1rem .5rem;
    cursor: pointer;
    text-align: left;
    position: relative;
    opacity: .5;
    transition: opacity .3s;
}

.nh-body .sec-light .ps-tab.active {
    opacity: 1;
}

.nh-body .sec-light .ps-tab__num {
    font-size: 15px !important;
    font-weight: 800 !important;
    color: var(--teal) !important;
    display: block;
}

.nh-body .sec-light .ps-tab__label {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    text-transform: uppercase;
    display: block;
    margin-top: .2rem;
}

.nh-body .sec-light .ps-tab__bar {
    display: block;
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: transparent;
    overflow: hidden;
}

.nh-body .sec-light .ps-tab.active .ps-tab__bar {
    background: rgba(217, 28, 28, .15);
}

.nh-body .sec-light .ps-tab__fill {
    display: block;
    width: 0%;
    height: 100%;
    background: var(--teal) !important;
    transition: none;
}

.nh-body .sec-light .ps-tab.active .ps-tab__fill {
    animation: psFill 6s linear forwards;
}

@keyframes psFill {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

.nh-body .sec-light .ps-slider {
    position: relative;
    overflow: hidden;
}

.nh-body .sec-light .ps-slide {
    display: none;
    animation: psFadeIn .5s ease forwards;
}

.nh-body .sec-light .ps-slide.active {
    display: block;
}

@keyframes psFadeIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.nh-body .sec-light .ps-video-wrap {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e0e2e5;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
}

.nh-body .sec-light .ps-video-wrap video {
    width: 100%;
    display: block;
}

.nh-body .sec-light .ps-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #ddd !important;
    background: #fff !important;
    color: #1a1a1a !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: .25s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
    font-size: 16px;
}

.nh-body .sec-light .ps-arrow:hover {
    background: var(--teal) !important;
    border-color: var(--teal) !important;
    color: #fff !important;
}

.nh-body .sec-light .ps-arrow--prev {
    left: -22px;
}

.nh-body .sec-light .ps-arrow--next {
    right: -22px;
}

.nh-body .process-index {
    font-size: 17px;
    color: var(--teal) !important;
    font-weight: 800;
    text-transform: uppercase;
}

.nh-body .sec-light .process-index {
    color: var(--teal) !important;
}

.nh-body .process-outcome {
    border-left: 2px solid var(--teal);
    padding-left: 1rem;
    margin-top: 1.1rem;
    color: var(--steel) !important;
    font-size: 17px;
}

.nh-body .sec-light .process-outcome {
    border-left-color: var(--teal) !important;
    color: #555 !important;
}

.nh-body .sec-light .process-media {
    border-color: #ddd !important;
}

@media(max-width: 992px) {
    .nh-body .sec-light .ps-tabs {
        flex-wrap: wrap;
        gap: 0;
    }

    .nh-body .sec-light .ps-tab {
        flex: 1 0 50%;
    }

    .nh-body .sec-light .ps-arrow--prev {
        left: 8px;
    }

    .nh-body .sec-light .ps-arrow--next {
        right: 8px;
    }
}

@media(max-width: 768px) {
    .nh-body .sec-light .ps-video-wrap video {
        max-height: 230px;
        object-fit: cover;
    }

    .nh-body .sec-light .ps-slide h3 {
        font-size: 18.4px;
        margin-top: .9rem;
    }
}

@media(max-width: 576px) {
    .nh-body .sec-light .ps-tab__label {
        font-size: 15px !important;
    }

    .nh-body .sec-light .ps-arrow {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }
}

@media(max-width: 480px) {
    .nh-body .sec-light .ps-video-wrap video {
        max-height: 190px;
    }
}

/* ============================================
   HOME — FRANCHISE · REGIONS · CONTACT · STAT STRIPE
   ============================================ */

/* ── Franchise / dealer band ── */
.nh-body .dealer-band {
    background: linear-gradient(120deg, var(--surface-2), var(--surface)) !important;
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
}

/* ── Countries / regions ── */
.nh-body .country-card {
    background: var(--surface) !important;
    border: 1px solid var(--hairline);
    border-radius: var(--radius);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    transition: .25s;
    -webkit-tap-highlight-color: transparent;
}

.nh-body .country-card:hover {
    border-color: var(--teal) !important;
}

.nh-body .country-card:active {
    border-color: var(--teal) !important;
    transform: scale(.98);
}

.nh-body .country-card i {
    font-size: 32px;
    color: var(--teal) !important;
}

.nh-body .country-card h4 {
    color: #fff !important;
}

.nh-body .country-card p {
    color: var(--steel) !important;
}

.nh-body .country-card a {
    color: var(--teal) !important;
    text-decoration: none;
}

.nh-body .sec-light .country-card {
    background: #f5f6f8 !important;
    border-color: #e0e2e5 !important;
}

.nh-body .sec-light .country-card h4 {
    color: #0c0c0c !important;
}

.nh-body .sec-light .country-card p {
    color: #555 !important;
}

@media(max-width:768px) {
    .nh-body .country-card {
        padding: 1.5rem;
        gap: 1rem;
    }
}

/* ── Contact ── */
.nh-body #contact {
    background: var(--surface);
}

.nh-body .contact-figure {
    height: auto;
}

.nh-body .form-ug label {
    font-size: 17px;
    color: var(--steel) !important;
    text-transform: uppercase;
    margin-bottom: .4rem;
    font-weight: 700;
}

.nh-body .form-ug .form-control,
.nh-body .form-ug .form-select {
    background: var(--surface-2) !important;
    border: 1px solid var(--hairline) !important;
    color: var(--white) !important;
    border-radius: 3px;
    padding: .7rem .9rem;
    font-size: 15px;
}

.nh-body .form-ug .form-control:focus,
.nh-body .form-ug .form-select:focus {
    background: var(--surface-2) !important;
    color: var(--white) !important;
    border-color: var(--teal) !important;
    box-shadow: 0 0 0 .18rem rgba(217, 28, 28, .15) !important;
}

.nh-body .form-ug .form-control::placeholder {
    color: var(--steel-dim) !important;
}

.nh-body .form-ug .form-select option {
    background: var(--surface-2);
    color: var(--white);
}

@media(max-width:768px) {

    .nh-body .form-ug .form-control,
    .nh-body .form-ug .form-select {
        font-size: 16px !important;
        min-height: 48px;
        -webkit-tap-highlight-color: transparent;
    }

    .nh-body .form-ug textarea.form-control {
        min-height: 110px;
    }

    .nh-body .form-ug button[type="submit"] {
        width: 100%;
        min-height: 52px;
        display: flex;
        align-items: center;
        justify-content: center;
        -webkit-tap-highlight-color: transparent;
    }

    .nh-body .form-ug button[type="submit"]:active {
        transform: scale(.98);
    }
}

/* ── Stat stripe (bottom counters) ── */
.nh-body .stat-stripe {
    background: linear-gradient(90deg, var(--teal), var(--teal-dim)) !important;
    padding: 2.5rem 0 !important;
}

.nh-body .stat-stripe__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.nh-body .stat-seg {
    padding: .65rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, .18);
}

.nh-body .stat-seg:last-child {
    border-right: none;
}

.nh-body .stat-seg__num {
    font-weight: 700;
    font-size: 25px;
    line-height: 1;
    color: #fff !important;
}

.nh-body .stat-seg__lbl {
    margin-top: .3rem;
    font-size: 17px;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff !important;
}

.nh-body .stat-seg--cta {
    background: rgba(0, 0, 0, .16);
    gap: .3rem;
}

.nh-body .stat-seg__join {
    font-weight: 900;
    text-transform: uppercase;
    font-size: 15px;
    line-height: 1.1;
    color: #fff !important;
}

.nh-body .stat-seg__btn {
    display: inline-block;
    background: #fff;
    color: var(--teal-dim) !important;
    font-weight: 800;
    font-size: 15px;
    text-transform: uppercase;
    padding: .3rem .9rem;
    border-radius: 4px;
    text-decoration: none;
    transition: .2s ease;
}

.nh-body .stat-seg__btn:hover {
    background: transparent;
    color: #fff !important;
    box-shadow: inset 0 0 0 1.5px #fff;
}

@media(max-width:992px) {
    .nh-body .stat-stripe__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .nh-body .stat-seg:nth-child(3n) {
        border-right: none;
    }

    .nh-body .stat-seg:nth-child(-n+3) {
        border-bottom: 1px solid rgba(255, 255, 255, .18);
    }
}

@media(max-width:576px) {
    .nh-body .stat-stripe__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nh-body .stat-seg {
        padding: 1.6rem .8rem;
    }

    .nh-body .stat-seg:nth-child(3n) {
        border-right: 1px solid rgba(255, 255, 255, .18);
    }

    .nh-body .stat-seg:nth-child(2n) {
        border-right: none;
    }

    .nh-body .stat-seg:nth-child(-n+3) {
        border-bottom: 1px solid rgba(255, 255, 255, .18);
    }

    .nh-body .stat-seg:nth-child(n+4) {
        border-bottom: 1px solid rgba(255, 255, 255, .18);
    }

    .nh-body .stat-seg:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .nh-body .stat-seg__num {
        font-size: 25.6px;
    }

    .nh-body .stat-seg__lbl {
        font-size: 15px;
    }
}


/* ============ TRUST STRIP ============ */
.strip {
  background: #1a1a1a;
  overflow: hidden;
  white-space: nowrap;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.strip-track {
  display: inline-flex;
  align-items: center;
  gap: 48px;
  animation: strip-scroll 25s linear infinite;
  width: max-content;
}

.strip-track span {
  color: #cfcfcf;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

.strip-track span b {
  color: #e02020;
  font-weight: 700;
}

@keyframes strip-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* pause on hover (optional) */
.strip:hover .strip-track {
  animation-play-state: paused;
}