/* =====================================================
   PERFORMANCE AT A GLANCE TABLE (.perf-*)
===================================================== */
.perf-glance {
    max-width: 460px;
    margin: 0 auto;
}

.perf-card {
    background: #0c0c0c;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

.perf-header {
    background: var(--red, #e11c1c);
    color: #fff;
    font-weight: 800;
    letter-spacing: .5px;
    font-size: 16.8px;
    text-transform: uppercase;
    padding: 1rem 1.4rem;
}

/* Scroll wrapper — table never squishes, it slides instead */
.perf-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.perf-table {
    display: table;
    table-layout: fixed;
    width: 100%;
    min-width: 420px;
    border-collapse: collapse;
}

.perf-row {
    display: table-row;
}

.perf-row + .perf-row .perf-cell {
    border-top: 1px solid rgba(255,255,255,.06);
}

.perf-row-head .perf-cell {
    color: #9aa1ab;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: .5px;
    font-weight: 700;
    padding-top: 1.1rem;
    padding-bottom: .8rem;
}

.perf-cell {
    display: table-cell;
    width: 33.33%;
    padding: .9rem 1.2rem;
    color: #e8e9eb;
    font-size: 15px;
    vertical-align: middle;
    text-align: left;
    white-space: nowrap;
}

.perf-cell-name {
    color: #cfd3d8;
    font-weight: 700;
}

.perf-cell-red {
    color: var(--red, #e11c1c);
    font-weight: 800;
}

.perf-scroll-hint {
    display: none;
    text-align: center;
    font-size: 15px;
    color: #6b7280;
    padding: .4rem 0 .2rem;
    letter-spacing: .3px;
}

.perf-footnote {
    padding: .9rem 1.4rem 1.2rem;
    font-size: 15px;
    line-height: 1.4;
    color: #7a828c;
    border-top: 1px solid rgba(255,255,255,.06);
}

/* Badges row below the card */
.perf-badges {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
}

.perf-badge {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .6rem;
    min-width: 0;
}

.perf-badge-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(225, 28, 28, .1);
    color: var(--red, #e11c1c);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.perf-badge-icon svg {
    width: 26px;
    height: 26px;
}

.perf-badge-icon img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.perf-badge-label {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    color: #555;
    line-height: 1.3;
}

/* Mobile: table becomes a horizontally scrollable strip, badges shrink to fit in one row */
@media (max-width: 576px) {
    .perf-glance {
        max-width: 100%;
    }

    .perf-cell {
        padding: .8rem 1rem;
        font-size: 15px;
    }

    .perf-scroll-hint {
        display: block;
    }

    .perf-badges {
        gap: .5rem;
    }

    .perf-badge-icon {
        width: 44px;
        height: 44px;
    }

    .perf-badge-icon svg {
        width: 20px;
        height: 20px;
    }

    .perf-badge-label {
        font-size: 15px;
    }
}

@media (max-width: 360px) {
    .perf-badge-icon {
        width: 38px;
        height: 38px;
    }

    .perf-badge-label {
        font-size: 15px;
    }
}




/* =====================================================
   LEGAL COMPLIANCE SECTION (.legal-*)
   Uses existing global tokens: --obsidian, --surface, --surface-2,
   --hairline, --steel, --red, --white
===================================================== */
.legal-sec {
    background: var(--obsidian);
    padding: 40px 0px;
}

.legal-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: center;
}

.legal-desc {
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 1.6rem;
}

/* Badges row */
.legal-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
}

.legal-badge {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: rgba(217, 28, 28, .08);
    border: 1px solid rgba(217, 28, 28, .35);
    border-radius: 4px;
    padding: .55rem 1rem;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
    color: #111112;
}

.legal-badge-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: var(--steel);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 9.6px;
    flex-shrink: 0;
}

/* Stats boxes */
.legal-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.legal-stat-box {
    background: var(--surface);
    border: 1px solid var(--hairline);
    border-radius: 8px;
    padding: 1.8rem 1.2rem;
    text-align: center;
}

.legal-stat-value {
    font-size: 33.6px;
    font-weight: 800;
    color: var(--red);
    line-height: 1;
    margin-bottom: .6rem;
}

.legal-stat-label {
    font-size: 15px;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--steel);
    line-height: 1.4;
}

/* Info note */
.legal-note {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(217, 28, 28, .06);
    border: 1px solid rgba(217, 28, 28, .28);
    border-radius: 8px;
    padding: 1.2rem 1.3rem;
}

.legal-note-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: .1rem;
}

.legal-note p {
    font-size: 15px;
    line-height: 1.55;
    margin: 0;
    color: #6b6d6f;
}

/* Responsive: tablet — stack columns */
@media (max-width: 992px) {
    .legal-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* Responsive: mobile */
@media (max-width: 768px) {
    .legal-desc {
        font-size: 15px;
        max-width: 100%;
    }

    .legal-badge {
        font-size: 15px;
        padding: .5rem .85rem;
    }

    .legal-stats {
        gap: .7rem;
    }

    .legal-stat-box {
        padding: 1.4rem .8rem;
    }

    .legal-stat-value {
        font-size: 27.2px;
    }

    .legal-stat-label {
        font-size: 15px;
    }

    .legal-note {
        padding: 1rem;
        gap: .8rem;
    }

    .legal-note p {
        font-size: 15px;
    }
}

/* Extra-narrow phones: stack the two stat boxes */
@media (max-width: 380px) {
    .legal-stats {
        grid-template-columns: 1fr;
    }
}





/* =====================================================
   FAQ SECTION (.faq-*)
   Uses existing tokens: --obsidian, --surface, --hairline, --steel, --red
===================================================== */
.faq-sec {
    background: rgb(245, 244, 244);
    padding: 40px 0px 60px 0px;
}

.faq-header {
    margin: 0 auto 3rem;
    text-align: start;
}

.faq-desc {
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 2.5rem;
    align-items: start;
}

.faq-col {
    display: flex;
    flex-direction: column;
    gap: .9rem;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--hairline);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color .2s ease;
    border: 1px solid rgb(181 168 168);
}
.faq-item span{
    color:black;
    font-size: 18px;
}
.faq-header .faq-heading{
    text-transform: uppercase;
    margin: .7rem 0 .9rem;
    color:black;
}
.faq-header  p{
     color:black;
}

.faq-item.active {
    border-color: rgba(217, 28, 28, .4);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: transparent;
    border: none;
    text-align: left;
    padding: 10px;
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    cursor: pointer;
    background-color: white;
    
}

.faq-item.active .faq-question {
    color: var(--red);
}

/* Plus/minus icon built from two bars */
.faq-icon {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(217, 28, 28, .1);
}

.faq-icon span {
    position: absolute;
    background: var(--red);
    border-radius: 1px;
    top: 50%;
    left: 50%;
    transition: transform .25s ease;
}

.faq-icon span:first-child {
    width: 10px;
    height: 2px;
    transform: translate(-50%, -50%);
}

.faq-icon span:last-child {
    width: 2px;
    height: 10px;
    transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon span:last-child {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

/* Answer panel */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.faq-answer-inner {
    padding: 0 1.3rem 1.2rem;
    line-height: 1.6;
    color: #464747;
    background-color: white;
}

/* Responsive: tablet — reduce gap */
@media (max-width: 992px) {
    .faq-grid {
        gap: 0 1.5rem;
    }
}

/* Responsive: mobile — single column, all 10 stacked */
@media (max-width: 768px) {
    .faq-header {
        margin-bottom: 2rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: .8rem;
    }

    .faq-col {
        gap: .8rem;
    }

    .faq-question {
        padding: 1rem 1.1rem;
        font-size: 15px;
    }

    .faq-answer-inner {
        padding: 0 1.1rem 1rem;
    }
    .faq-item span {
        font-size: 17px;
    }
}

/* =====================================================
   PAGE H1 (.pg-hero .hero-title) — window-film only defines the size
   here; the rest of the .pg-hero scaffold comes from the shared
   page-hero.css loaded on every page via layout/header.blade.php.
   40px desktop / 32px tablet / 25px phone
===================================================== */
.pg-hero .hero-title {
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
}

@media (max-width: 768px) {
    .pg-hero .hero-title {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .pg-hero .hero-title {
        font-size: 25px;
    }
}

/* =====================================================
   GLOBAL TYPOGRAPHY OVERRIDE — H1 / H2 / P
   h1: 40px desktop / 32px tablet / 25px phone
   h2: 35px desktop / 30px tablet / 23px phone
   p : 17px desktop / 15px phone
   (kept last so it wins over earlier sizing)
===================================================== */
.nh-body h1 {
    font-size: 40px !important;
}

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

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

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

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

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

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

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

/* =====================================================
   CORE SCAFFOLD — shared by every Window Film category
   sub-page (both the automotive "product" template and the
   architectural "af-" template below reuse these).
===================================================== */
:root {
    --c-black: #0A0B0D;
    --c-dark: #111317;
    --c-dark2: #1A1D22;
    --c-line-d: #2C3238;
    --c-line-l: #E4E7EB;
    --c-muted: #6B7280;
    --c-ink: #111317;
    --af-ink: #101214;
    --af-charcoal: #17191C;
    --af-line: #E3E6E9;
    --af-line-dark: #2A2D31;
    --af-gray: #6B7280;
    --af-off: #F6F7F8;
    --red-dark: #b71414;
}

.container-xl {
    width: min(100% - 40px, 1280px);
    margin-inline: auto;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .55s ease, transform .55s ease;
}

.reveal.in {
    opacity: 1;
    transform: none;
}

.ug-eyebrow,
.af-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--red);
}

.ug-eyebrow::before,
.af-eyebrow::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--red);
    display: block;
    flex-shrink: 0;
}

.ug-eyebrow--light,
.af-eyebrow--light {
    color: rgba(255, 255, 255, .6);
}

.ug-eyebrow--light::before,
.af-eyebrow--light::before {
    background: rgba(255, 255, 255, .4);
}

.sec-title {
    font-weight: 700 !important;
    text-transform: uppercase;
    line-height: 1.05;
    margin: .5rem 0 0;
}

.sec-title--dark {
    color: var(--c-ink) !important;
}

.sec-title--light {
    color: #fff !important;
}

/* .pg-hero box itself (position/height/background) — the shared
   ".pg-hero ..." content rules already come from page-hero.css on
   every page, but that file never sets the box's own geometry, so
   category CSS is expected to supply it (see window-film.css header
   note above). */
.pg-hero {
    position: relative;
    width: 100%;
    min-height: 550px;
    background: var(--c-black);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pg-hero .hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
    z-index: 0;
}

.pg-hero .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,11,13,.35) 0%, rgba(10,11,13,.65) 65%, rgba(10,11,13,.9) 100%);
}

.pg-hero .hero-bg.phone {
    display: none;
}

@media (max-width: 768px) {
    .pg-hero .hero-bg.desktop {
        display: none;
    }

    .pg-hero .hero-bg.phone {
        display: block;
    }
}

.pg-hero .hero-desc {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .62);
    max-width: 58ch;
    margin: 0 0 1.8rem;
}

.hero-breadcrumb .sep {
    color: rgba(255, 255, 255, .22);
}

.hero-breadcrumb .current {
    color: rgba(255, 255, 255, .78);
    font-weight: 600;
    font-size: 15px;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 255, 255, .35);
    font-size: 22px;
    animation: ug-scroll-bounce 1.6s ease-in-out infinite;
    cursor: pointer;
    text-decoration: none;
}

@keyframes ug-scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

@media (max-width: 768px) {
    .pg-hero {
        min-height: auto;
    }

    .pg-hero .hero-desc {
        font-size: 15px;
        line-height: 1.6;
    }
}

/* =====================================================
   HERO INNER SCAFFOLD — breadcrumb bar, label, tagline,
   badge pills and CTA buttons used on window-film.blade.php.
   (these were missing, which is why the hero looked unstyled)
===================================================== */
.hero-crumb-bar {
    position: relative;
    z-index: 2;
    padding: 1.6rem 0 0;
}

.hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: 14px;
}

.hero-breadcrumb a {
    color: rgba(255, 255, 255, .55);
    text-decoration: none;
    font-weight: 600;
    transition: color .2s ease;
}

.hero-breadcrumb a:hover {
    color: #fff;
}

.hero-body {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 0 4.5rem;
}

.hero-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: .9rem;
}

.pg-hero .hero-title .accent {
    color: var(--red);
}

.hero-tagline {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, .82);
    margin: .9rem 0 1.2rem;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    margin: 1.4rem 0 2.1rem;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .16);
    color: rgba(255, 255, 255, .85);
    font-size: 14px;
    font-weight: 600;
    padding: .55rem 1.05rem;
    border-radius: 30px;
}

.badge-pill i {
    color: var(--red);
    font-size: 14px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-red-ug {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: var(--red);
    border: 1.5px solid var(--red);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: .9rem 1.9rem;
    border-radius: 4px;
    text-decoration: none;
    transition: .2s ease;
}

.btn-red-ug:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    color: #fff;
}

.btn-ghost-ug {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, .38);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: .9rem 1.9rem;
    border-radius: 4px;
    text-decoration: none;
    transition: .2s ease;
}

.btn-ghost-ug:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .08);
}

@media (max-width: 768px) {
    .hero-tagline {
        font-size: 16px;
    }

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

    .hero-badges {
        gap: .5rem;
    }
}

/* =====================================================
   PAGE-LEVEL STAT BAR (.pg-stat-*) — the dark strip directly
   under the hero. Distinct from ".stat-bar" (product template).
===================================================== */
.pg-stat-bar {
    background: var(--c-ink);
    border-bottom: 1px solid var(--c-line-d);
}

.pg-stat-bar-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.pg-stat-cell {
    padding: 1.9rem 1.5rem;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, .08);
}

.pg-stat-cell:last-child {
    border-right: none;
}

.pg-stat-num {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    color: #fff;
}

.pg-stat-num span {
    color: var(--red);
    font-size: 20px;
}

.pg-stat-label {
    font-size: 13px;
    letter-spacing: .09em;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: .5rem;
    color: rgba(255, 255, 255, .48);
}

@media (max-width: 768px) {
    .pg-stat-bar-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .pg-stat-cell {
        padding: 1.4rem 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .pg-stat-cell:nth-child(2n) {
        border-right: none;
    }

    .pg-stat-cell:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .pg-stat-num {
        font-size: 26px;
    }
}

/* =====================================================
   GENERIC EYEBROW + SECTION TITLE ALIASES
   The blade template uses plain ".eyebrow" / ".section-title"
   (not the ".ug-eyebrow" / ".sec-title" names above) — add
   matching rules so both naming conventions work.
===================================================== */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--red);
}

.eyebrow::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--red);
    display: block;
    flex-shrink: 0;
}

.section-title {
    font-weight: 700 !important;
    text-transform: uppercase;
    line-height: 1.15;
    margin: .5rem 0 0;
    color: var(--c-ink);
}

.legal-sec .section-title,
.legal-sec .eyebrow {
    color: #fff;
}

.legal-sec .eyebrow {
    color: var(--red);
}

/* generic muted paragraph helper used throughout the page */
.text-steel {
    color: var(--steel, var(--c-muted, #6B7280));
}

/* plain light section wrapper (white background + standard vertical rhythm) */
.sec-light {
    background: var(--white, #fff);
    padding: 40px 0px;
}

@media (max-width: 768px) {
    .sec-light {
        padding: 4rem 0;
    }
}

/* =====================================================
   PRODUCT SHOWROOM — filter tabs + product cards (.ppf-*)
   Section: #collection on window-film.blade.php
===================================================== */
.ppf-tabs-container {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    margin-bottom: 2.6rem;
}

.ppf-tab-btn {
    background: #fff;
    border: 1.5px solid var(--c-line-l);
    color: var(--c-muted);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .02em;
    padding: .7rem 1.4rem;
    border-radius: 5px;
    cursor: pointer;
    transition: .2s ease;
}

.ppf-tab-btn:hover {
    border-color: var(--red);
    color: var(--red);
}

.ppf-tab-btn.active {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}

.ppf-card-item.ppf-hidden {
    display: none;
}

.ppf-card {
    background: #fff;
    border: 1px solid var(--c-line-l);
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow .25s ease, transform .25s ease;
}

.ppf-card:hover {
    box-shadow: 0 20px 45px rgba(16, 18, 20, .1);
    transform: translateY(-4px);
}

.ppf-card__media {
    /* aspect-ratio: 4 / 3; */
    overflow: hidden;
    background: #f5f5f5;
}

.ppf-card__media img {
    width: 100%;
    height: auto;
    /* object-fit: cover; */
    display: block;
    transition: transform .5s ease;
}

.ppf-card:hover .ppf-card__media img {
    transform: scale(1.06);
}

.ppf-card__body {
    padding: 1.6rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.ppf-card__series {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--red);
}

.ppf-card-title {
    font-size: 20px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    color: var(--c-ink);
    margin: .4rem 0 .7rem;
}

.ppf-card__body p.text-steel {
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 1.1rem;
}

.ppf-specs {
    border-top: 1px solid var(--c-line-l);
    padding-top: 1rem;
    margin-bottom: 1.3rem;
}

.ppf-specs-table {
    width: 100%;
    border-collapse: collapse;
}

.ppf-specs-table tr:not(:last-child) td {
    border-bottom: 1px solid var(--c-line-l);
}

.ppf-specs-table td {
    padding: .5rem 0;
    font-size: 14px;
}

.ppf-specs-table td.label {
    color: var(--c-muted);
    font-weight: 600;
}

.ppf-specs-table td.val {
    color: var(--c-ink);
    font-weight: 700;
    text-align: right;
}

.ppf-card__actions {
    display: flex;
    flex-direction: column;
    gap: .6rem;
    margin-top: auto;
}

.ppf-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: uppercase;
    padding: 10px;
    border-radius: 5px;
    text-decoration: none;
    transition: .2s ease;
}

.ppf-card__btn--explore {
    background: transparent;
    border: 1.5px solid var(--c-line-l);
    color: var(--c-ink);
}

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

.ppf-card__btn--enquiry {
    background: var(--red);
    border: 1.5px solid var(--red);
    color: #fff;
}

.ppf-card__btn--enquiry:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
}

/* =====================================================
   "OUR FILMS" CONSTRUCTION LAYOUT (.construction-*)
   Two-column white section: layer list + performance card
===================================================== */
.construction-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 992px) {
    .construction-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.construction-stack {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.construction-layer {
    display: flex;
    gap: 1.2rem;
    padding: 1.4rem 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--c-line-l);
    background: #fff;
    transition: box-shadow .2s ease;
}

.construction-layer:hover {
    box-shadow: 0 14px 34px rgba(16, 18, 20, .08);
}

.construction-layer.layer-dark {
    background: var(--c-ink);
    border-color: var(--c-ink);
}

.construction-layer.layer-dark .layer-title {
    color: #fff;
}

.construction-layer.layer-dark .layer-desc,
.construction-layer.layer-dark .layer-desc strong {
    color: rgba(255, 255, 255, .68);
}

.construction-layer.layer-glass {
    background: var(--af-off);
}

.layer-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    color: var(--red);
    flex-shrink: 0;
}

.layer-info {
    flex: 1;
}

.layer-title {
    font-size: 16px !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: .02em;
    margin: 0 0 .4rem;
    color: var(--c-ink);
}

.layer-desc {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--c-muted);
    margin: 0;
}

.layer-desc strong {
    display: block;
    color: var(--c-ink);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
    margin-bottom: .3rem;
}

/* =====================================================
   FEATURES / BENEFITS GRID (.ppf-feat-*) — light section
   under the construction block
===================================================== */
.ppf-feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 992px) {
    .ppf-feat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .ppf-feat-grid {
        grid-template-columns: 1fr;
    }
}

.ppf-feat-card {
    background: #fff;
    border: 1px solid var(--c-line-l);
    border-radius: 10px;
    padding: 1.9rem 1.7rem;
    transition: box-shadow .25s ease, transform .25s ease;
}

.ppf-feat-card:hover {
    box-shadow: 0 18px 42px rgba(16, 18, 20, .1);
    transform: translateY(-4px);
}

.ppf-feat-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: rgba(217, 28, 28, .08);
    border: 1px solid rgba(217, 28, 28, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
}

.ppf-feat-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.ppf-feat-card h3 {
    font-size: 17px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    color: var(--c-ink);
    margin: 0 0 .5rem;
}

.ppf-feat-card p {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--c-muted);
    margin: 0;
}

/* =====================================================
   B2B ENQUIRY FORM SECTION (.ppf-form-*)
===================================================== */
.ppf-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 992px) {
    .ppf-form-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.ppf-form-card {
    background: var(--c-ink);
    border-radius: 12px;
    padding: 2.4rem;
}

.form-ug label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
    color: rgba(255, 255, 255, .6);
    margin: .9rem 0 .4rem;
}

.form-ug .form-control,
.form-ug .form-select,
.form-ug textarea {
    width: 100%;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 5px;
    padding: .75rem .9rem;
    color: #fff;
    font-size: 14.5px;
}

.form-ug .form-control::placeholder,
.form-ug textarea::placeholder {
    color: rgba(255, 255, 255, .35);
}

.form-ug .form-control:focus,
.form-ug .form-select:focus,
.form-ug textarea:focus {
    outline: none;
    border-color: var(--red);
    background: rgba(255, 255, 255, .09);
}

.form-ug select option {
    color: #111;
}

.btn-ember {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: var(--red);
    border: 1.5px solid var(--red);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: .9rem 1.6rem;
    border-radius: 5px;
    margin-top: 1.2rem;
    cursor: pointer;
    transition: .2s ease;
}

.btn-ember:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
}

/* =====================================================
   WINDOW FILM PRODUCT TEMPLATE
   Shared by: carbon-ceramic-window-film, body-ice-window-film,
   magnetron-sputtering-window-film, multilayer-optical-window-film
===================================================== */
.stat-bar {
    background: var(--c-dark2);
    border-top: 1px solid var(--c-line-d);
    border-bottom: 1px solid var(--c-line-d);
}

.stat-bar-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 768px) {
    .stat-bar-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

.stat-cell {
    padding: 1.4rem 1.5rem;
    text-align: center;
    border-right: 1px solid var(--c-line-d);
}

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

.stat-num {
    font-size: 29px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
}

.stat-num span {
    color: var(--red);
    font-size: 18px;
}

.stat-label {
    font-size: 15px;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: .3rem;
    color: rgba(255, 255, 255, .42);
}

.overview-section {
    background: var(--white);
    padding: 40px 0px;
}

.overview-grid {
    display: grid;
    grid-template-columns: 45fr 55fr;
    gap: 5rem;
    align-items: center;
}

@media (max-width: 992px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.overview-img {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .12);
    position: relative;
}

.overview-img img {
    width: 100%;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.overview-img .img-badge {
    position: absolute;
    bottom: 1.2rem;
    left: 1.2rem;
    background: var(--red);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .3rem .75rem;
    border-radius: 3px;
}

.overview-content p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--c-muted);
    margin-bottom: 1rem;
}

.overview-points,
.ov-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 1.5rem;
    margin-top: 1.8rem;
}

.ov-pt {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
}

.ov-pt-icon {
    width: 32px;
    height: 32px;
    background: rgba(217, 28, 28, .08);
    border: 1px solid rgba(217, 28, 28, .2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    flex-shrink: 0;
}

.ov-pt strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
    color: var(--c-ink);
}

.ov-pt span {
    font-size: 15px;
    color: var(--c-muted);
    line-height: 1.4;
}

.spec-section {
    background: var(--white);
    padding: 40px 0px;
    border-top: 1px solid var(--c-line-l);
    border-bottom: 1px solid var(--c-line-l);
}

.spec-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.spec-header p {
    font-size: 15px;
    color: var(--c-muted);
    margin: .7rem auto 0;
    max-width: 55ch;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--c-line-l);
    border-radius: 8px;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .spec-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .spec-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.spec-card {
    padding: 1.6rem 1.4rem;
    border-right: 1px solid var(--c-line-l);
    border-bottom: 1px solid var(--c-line-l);
    display: flex;
    flex-direction: column;
    gap: .6rem;
    position: relative;
    transition: background .2s;
}

.spec-card:hover {
    background: #fafafa;
}

.spec-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.1rem;
    bottom: 1.1rem;
    width: 3px;
    background: var(--red);
    border-radius: 0 2px 2px 0;
    opacity: 0;
    transition: opacity .2s;
}

.spec-card:hover::before {
    opacity: 1;
}

.spec-icon {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background: rgba(217, 28, 28, .06);
    border: 1px solid rgba(217, 28, 28, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    flex-shrink: 0;
}

.spec-label {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--c-muted);
    line-height: 1.3;
}

.spec-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--c-ink);
    line-height: 1.25;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.spec-value .pass-tag {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    background: rgba(22, 163, 74, .1);
    border: 1px solid rgba(22, 163, 74, .25);
    color: #166534;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: .15rem .5rem;
    border-radius: 3px;
}

.vlt-table-wrap {
    margin-top: 3rem;
    border: 1px solid var(--c-line-l);
    border-radius: 8px;
    overflow: hidden;
}

.vlt-table-head {
    background: var(--c-ink);
    padding: .9rem 1.5rem;
}

.vlt-table-head h3 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.vlt-table {
    width: 100%;
    border-collapse: collapse;
}

.vlt-table th {
    background: #f5f7f9;
    padding: .7rem 1.2rem;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--c-muted);
    border-bottom: 1px solid var(--c-line-l);
    text-align: center;
}

.vlt-table th:first-child {
    text-align: left;
}

.vlt-table td {
    padding: .65rem 1.2rem;
    font-size: 15px;
    border-bottom: 1px solid var(--c-line-l);
    color: var(--c-ink);
    text-align: center;
}

.vlt-table td:first-child {
    font-weight: 700;
    color: var(--c-muted);
    text-align: left;
}

.vlt-table tr:last-child td {
    border-bottom: none;
}

.vlt-table .vlt-hi {
    color: var(--red);
    font-weight: 700;
}

.vlt-table .aurora {
    background: rgba(217, 28, 28, .04);
}

.vlt-note {
    font-size: 15px;
    color: var(--c-muted);
    padding: .65rem 1.2rem;
    background: #fafafa;
    border-top: 1px solid var(--c-line-l);
}

.features-section {
    background: var(--c-black);
    padding: 40px 0px;
}

.features-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.features-header p {
    font-size: 15px;
    color: rgba(255, 255, 255, .45);
    max-width: 55ch;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: var(--c-line-d);
    border: 1px solid var(--c-line-d);
    border-radius: 8px;
    overflow: hidden;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feat-card {
    background: var(--c-dark);
    padding: 2rem 1.8rem;
    position: relative;
    transition: background .2s;
}

.feat-card:hover {
    background: var(--c-dark2);
}

.feat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.8rem;
    right: 1.8rem;
    height: 2px;
    background: var(--red);
    opacity: 0;
    transition: opacity .2s;
}

.feat-card:hover::after {
    opacity: 1;
}

.feat-icon {
    width: 46px;
    height: 46px;
    border-radius: 6px;
    background: rgba(217, 28, 28, .1);
    border: 1px solid rgba(217, 28, 28, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    margin-bottom: 1.1rem;
}

.feat-card h3 {
    font-size: 16px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    color: #fff !important;
    margin: 0 0 .5rem;
    letter-spacing: .02em;
}

.feat-card p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .48);
    margin: 0;
}

.why-section {
    background: var(--white);
    padding: 40px 0px;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.why-graph {
    margin-top: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--c-line-l);
}

.why-graph img {
    width: 100%;
    display: block;
}

.why-grid p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--c-muted);
    margin-bottom: 2rem;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
}

.why-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding-bottom: 1.3rem;
    border-bottom: 1px solid var(--c-line-l);
}

.why-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.why-item-num {
    width: 36px;
    height: 36px;
    border: 2px solid var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--red);
    flex-shrink: 0;
}

.why-item-body strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
    color: var(--c-ink);
    margin-bottom: .2rem;
}

.why-item-body p {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: var(--c-muted);
}

.apply-section {
    background: #F7F8F9;
    padding: 5.5rem 0;
    border-top: 1px solid var(--c-line-l);
    border-bottom: 1px solid var(--c-line-l);
}

.apply-section > .container-xl > p {
    color: var(--c-muted);
    font-size: 16px;
    max-width: 60ch;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.apply-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 992px) {
    .apply-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .apply-cards {
        grid-template-columns: 1fr;
    }
}

.apply-card {
    background: var(--white);
    border: 1px solid var(--c-line-l);
    border-radius: 8px;
    padding: 1.8rem 1.5rem;
    text-align: center;
    transition: box-shadow .2s, transform .2s;
}

.apply-card:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
    transform: translateY(-3px);
}

.apply-card-icon {
    width: 56px;
    height: 56px;
    background: rgba(217, 28, 28, .07);
    border: 1px solid rgba(217, 28, 28, .18);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    margin: 0 auto 1rem;
}

.apply-card h4 {
    font-size: 15px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    color: var(--c-ink) !important;
    margin: 0 0 .4rem;
    letter-spacing: .04em;
}

.apply-card p {
    font-size: 15px;
    line-height: 1.55;
    color: var(--c-muted);
    margin: 0;
}

.warranty-strip {
    margin-top: 3rem;
    background: var(--c-ink);
    border-radius: 8px;
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.warranty-strip-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.warranty-badge {
    width: 70px;
    height: 70px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    line-height: 1;
}

.warranty-badge .yr {
    font-size: 27px;
    font-weight: 700;
}

.warranty-badge .yr-label {
    font-size: 15px;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 700;
    opacity: .85;
}

.warranty-strip h3 {
    font-size: 17px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    color: #fff !important;
    margin: 0 0 .3rem;
}

.warranty-strip p {
    font-size: 15px;
    color: rgba(255, 255, 255, .52);
    margin: 0;
    max-width: 55ch;
    line-height: 1.55;
}

.cta-band {
    background: var(--red);
    padding: 4.5rem 0;
}

.cta-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.cta-band p {
    font-size: 16px;
    color: rgba(255, 255, 255, .78);
    margin: 0;
    max-width: 55ch;
    line-height: 1.55;
}

.cta-band-actions {
    display: flex;
    gap: .85rem;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.btn-white-ug {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #fff;
    border: 1.5px solid #fff;
    color: var(--red);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: .82rem 1.8rem;
    border-radius: 4px;
    transition: .2s ease;
    text-decoration: none;
}

.btn-white-ug:hover {
    background: transparent;
    color: #fff;
}

.btn-ghost-white {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, .42);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: .82rem 1.8rem;
    border-radius: 4px;
    transition: .2s ease;
    text-decoration: none;
}

.btn-ghost-white:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .1);
}

/* =====================================================
   ARCHITECTURAL FILM TEMPLATE (.af-*)
   Shared by: architectural-film (landing), metal-aluminum-architectural-film,
   metal-sputtering-architectural-film, one-way-vision-architectural-film
===================================================== */
.af-section {
    position: relative;
    padding: 40px 0px;
}

@media (max-width: 768px) {
    .af-section {
        padding: 4rem 0;
    }
}

.af-section-lead {
    color: var(--af-gray);
    font-size: 16px;
    line-height: 1.75;
    max-width: 60ch;
}

.af-overview h2,
.af-series-head h2,
.af-feat-head h2,
.af-section h2 {
    text-transform: uppercase;
    line-height: 1.1;
    margin: .6rem 0 .8rem;
    color: var(--af-ink);
}

.af-why h2,
.af-spec-head h2,
.af-cta h2 {
    text-transform: uppercase;
    line-height: 1.1;
    margin: .6rem 0 .8rem;
    color: #fff;
}

.af-btn {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: .85rem 1.8rem;
    border-radius: 3px;
    transition: .2s ease;
    text-decoration: none;
    cursor: pointer;
    border: 1.5px solid transparent;
}

.af-btn--red {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}

.af-btn--red:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
}

.af-btn--dark {
    background: var(--af-ink);
    border-color: var(--af-ink);
    color: #fff;
}

.af-btn--dark:hover {
    background: #000;
    border-color: #000;
}

.af-btn--outline-dark {
    background: transparent;
    border-color: var(--af-ink);
    color: var(--af-ink);
}

.af-btn--outline-dark:hover {
    background: var(--af-ink);
    color: #fff;
}

.af-btn--outline-light {
    background: transparent;
    border-color: rgba(255, 255, 255, .35);
    color: #fff;
}

.af-btn--outline-light:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .08);
}

.af-overview,
.af-apply {
    background: var(--white);
}

.af-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center;
}

@media (max-width: 992px) {
    .af-overview-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.af-overview-grid p {
    color: var(--af-gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.af-media-stack {
    position: relative;
}

.af-media-stack img {
    width: 100%;
    border-radius: 6px;
    display: block;
    box-shadow: 0 26px 60px rgba(16, 18, 20, .14);
    aspect-ratio: 4/3;
    object-fit: cover;
}

.af-media-stack .float-tag {
    position: absolute;
    bottom: -1.2rem;
    left: -1.2rem;
    background: var(--af-ink);
    color: #fff;
    padding: 1rem 1.4rem;
    border-radius: 4px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .25);
}

.af-media-stack .float-tag strong {
    display: block;
    font-size: 21px;
    font-weight: 700;
}

.af-media-stack .float-tag span {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: rgba(255, 255, 255, .6);
}

@media (max-width: 576px) {
    .af-media-stack .float-tag {
        left: .5rem;
        bottom: -1rem;
        padding: .8rem 1.1rem;
    }
}

.ov-pt strong,
.ov-pt-text strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .02em;
}

.ov-pt span,
.ov-pt-text span {
    font-size: 15px;
    color: var(--af-gray);
    line-height: 1.4;
}

.af-why {
    background: var(--c-black);
}

.af-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
}

@media (max-width: 992px) {
    .af-why-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.af-why-grid > div:first-child p {
    color: rgba(255, 255, 255, .6);
    font-size: 16px;
    line-height: 1.8;
}

.af-why-media {
    border-radius: 6px;
    overflow: hidden;
    margin-top: 1.8rem;
}

.af-why-media img {
    width: 100%;
    display: block;
}

.why-list-item {
    display: flex;
    gap: 1rem;
    padding: 1.15rem 0;
    border-bottom: 1px solid var(--af-line-dark);
}

.why-list-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.why-list-item i {
    color: var(--red);
    flex-shrink: 0;
    margin-top: .15rem;
}

.why-list-item strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .02em;
    color: #fff;
    margin-bottom: .25rem;
}

.why-list-item p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .55);
}

.af-series {
    background: var(--af-off);
    border-top: 1px solid var(--af-line);
    border-bottom: 1px solid var(--af-line);
}

.af-series-head {
    text-align: center;
    margin-bottom: 3.5rem;
}

.af-series-head p {
    color: var(--af-gray);
    max-width: 60ch;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.7;
}

.series-card {
    background: #fff;
    border: 1px solid var(--af-line);
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all .3s cubic-bezier(.16, 1, .3, 1);
}

.series-card:hover {
    box-shadow: 0 22px 55px rgba(16, 18, 20, .12);
    transform: translateY(-6px);
    border-color: rgba(217, 28, 28, .25);
}

.series-card__media {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--af-off);
}

.series-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.series-card:hover .series-card__media img {
    transform: scale(1.06);
}

.series-card__warr {
    position: absolute;
    top: .8rem;
    right: .8rem;
    background: var(--af-ink);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .32rem .7rem;
    border-radius: 3px;
}

.series-card__body {
    padding: 1.6rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.series-card__eyebrow {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--red);
}

.series-card h3 {
    font-size: 19px !important;
    text-transform: uppercase;
    margin: .35rem 0 .6rem;
    line-height: 1.15;
}

.series-card p {
    font-size: 15px;
    line-height: 1.55;
    color: var(--af-gray);
    margin: 0 0 1.1rem;
    flex-grow: 1;
}

.series-card__specs {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin-bottom: 1.2rem;
}

.series-card__specs span {
    background: var(--af-off);
    border: 1px solid var(--af-line);
    border-radius: 3px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .02em;
    color: var(--af-ink);
    padding: .28rem .6rem;
}

.series-card__link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
    color: var(--af-ink);
    text-decoration: none;
}

.series-card__link i {
    color: var(--red);
    transition: transform .2s;
}

.series-card:hover .series-card__link i {
    transform: translateX(4px);
}

.af-spec-section {
    background: var(--c-black);
}

.af-spec-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.6rem;
}

.af-spec-head p {
    margin: .7rem 0 0;
    color: rgba(255, 255, 255, .5);
    font-size: 15px;
    max-width: 65ch;
}

.warr-chip {
    background: rgba(217, 28, 28, .15);
    border: 1px solid rgba(217, 28, 28, .4);
    color: var(--red);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .35rem .85rem;
    border-radius: 3px;
    white-space: nowrap;
}

.af-spec-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--af-line-dark);
    border-radius: 6px;
    margin-top: 1.6rem;
}

table.af-spec-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
}

table.af-spec-table th,
table.af-spec-table td {
    padding: .72rem 1.1rem;
    font-size: 15px;
    white-space: nowrap;
    border-bottom: 1px solid var(--af-line-dark);
}

table.af-spec-table thead th {
    background: var(--af-charcoal);
    color: rgba(255, 255, 255, .5);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    text-align: center;
}

table.af-spec-table thead th:first-child {
    text-align: left;
}

table.af-spec-table tbody td {
    color: #fff;
    text-align: center;
}

table.af-spec-table tbody td:first-child {
    text-align: left;
    font-weight: 700;
    color: rgba(255, 255, 255, .6);
}

table.af-spec-table tbody tr:last-child td {
    border-bottom: none;
}

table.af-spec-table tbody tr:hover td {
    background: rgba(255, 255, 255, .03);
}

.af-spec-highlight {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 1.4rem;
    border: 1px solid var(--af-line-dark);
    border-radius: 6px;
    overflow: hidden;
}

@media (max-width: 992px) {
    .af-spec-highlight {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .af-spec-highlight {
        grid-template-columns: 1fr;
    }
}

.af-spec-highlight div {
    padding: 1.1rem 1.3rem;
    border-right: 1px solid var(--af-line-dark);
    border-bottom: 1px solid var(--af-line-dark);
}

.af-spec-highlight div:nth-child(4n) {
    border-right: none;
}

@media (max-width: 992px) {
    .af-spec-highlight div:nth-child(2n) {
        border-right: none;
    }
}

.af-spec-highlight strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
    color: var(--red);
    margin-bottom: .25rem;
}

.af-spec-highlight span {
    font-size: 15px;
    color: rgba(255, 255, 255, .55);
    line-height: 1.4;
}

.af-features {
    background: var(--af-off);
    border-top: 1px solid var(--af-line);
    border-bottom: 1px solid var(--af-line);
}

.af-feat-head {
    text-align: center;
    margin-bottom: 3.2rem;
}

.af-feat-head p {
    color: var(--af-gray);
    max-width: 60ch;
    margin: 0 auto;
    font-size: 15px;
}

.af-feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 992px) {
    .af-feat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .af-feat-grid {
        grid-template-columns: 1fr;
    }
}

.af-feat-card {
    background: #fff;
    border: 1px solid var(--af-line);
    border-radius: 8px;
    padding: 1.8rem 1.6rem;
    transition: all .25s ease;
}

.af-feat-card:hover {
    box-shadow: 0 16px 40px rgba(16, 18, 20, .1);
    transform: translateY(-4px);
}

.af-feat-icon {
    width: 46px;
    height: 46px;
    border-radius: 6px;
    background: rgba(217, 28, 28, .06);
    border: 1px solid rgba(217, 28, 28, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    margin-bottom: 1rem;
}

.af-feat-card h3 {
    font-size: 16px !important;
    text-transform: uppercase;
    margin: 0 0 .5rem;
}

.af-feat-card p {
    font-size: 15px;
    line-height: 1.55;
    color: var(--af-gray);
    margin: 0;
}

.af-apply-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.af-apply-grid--3col {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 992px) {
    .af-apply-grid,
    .af-apply-grid--3col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .af-apply-grid,
    .af-apply-grid--3col {
        grid-template-columns: 1fr;
    }
}

.apply-card {
    background: var(--af-off);
    border: 1px solid var(--af-line);
    border-radius: 8px;
    padding: 1.9rem 1.6rem;
    text-align: center;
    transition: all .25s ease;
}

.apply-card:hover {
    background: #fff;
    box-shadow: 0 16px 40px rgba(16, 18, 20, .1);
    transform: translateY(-4px);
}

.apply-card-icon {
    width: 54px;
    height: 54px;
    background: #fff;
    border: 1px solid var(--af-line);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    margin: 0 auto 1rem;
}

.apply-card h4 {
    font-size: 15px !important;
    text-transform: uppercase;
    letter-spacing: .02em;
    margin: 0 0 .4rem;
}

.apply-card p {
    font-size: 15px;
    color: var(--af-gray);
    margin: 0;
    line-height: 1.5;
}

.benefit-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--af-line);
}

.benefit-row:last-child {
    border-bottom: none;
}

.benefit-row-icon {
    width: 38px;
    height: 38px;
    background: var(--af-off);
    border: 1px solid var(--af-line);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    flex-shrink: 0;
}

.benefit-row strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .02em;
    margin-bottom: .2rem;
}

.benefit-row p {
    margin: 0;
    font-size: 15px;
    color: var(--af-gray);
    line-height: 1.5;
}

.af-cta {
    background: var(--af-ink);
    position: relative;
    overflow: hidden;
}

.af-cta::before {
    content: '';
    position: absolute;
    right: -10%;
    top: -30%;
    width: 60%;
    height: 160%;
    background: linear-gradient(135deg, rgba(217, 28, 28, .18), transparent 60%);
}

.af-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.af-cta p {
    color: rgba(255, 255, 255, .6);
    margin: 0;
    max-width: 55ch;
    font-size: 15px;
    line-height: 1.6;
}

.af-cta-actions {
    display: flex;
    gap: .85rem;
    flex-wrap: wrap;
    flex-shrink: 0;
}

/* =====================================================
   THEME UPDATE — ALTERNATING BLACK / WHITE SECTION RHYTHM
   + DARK PREMIUM PRODUCT CARD (Product Showroom)

   Scroll order this creates:
   1. Hero + stat bar ......... BLACK
   2. Product Showroom ........ BLACK  (dark cards live here)
   3. "Our Films" (sec-light) . WHITE  (unchanged, original design)
   4. Key Features grid ....... BLACK
   5. Legal Compliance ........ BLACK  (unchanged, already dark)
   6. Enquiry Form ............ WHITE  (unchanged, original design)
   7. FAQ ...................... soft off-white
===================================================== */

/* ---------- 1. Product Showroom section -> BLACK ---------- */
#collection {
    background: var(--c-black, #0A0B0D);
    padding: 40px 0px;
}

#collection .eyebrow {
    color: var(--red);
}

#collection .section-title {
    color: #fff;
}

#collection .mb-5 > p {
    color: rgba(255, 255, 255, .55);
}

/* ---------- 2. Dark premium product card (.ppf-card) ---------- */
.ppf-card {
    background: #0c0c0c;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}

.ppf-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
    transform: translateY(-4px);
    border-color: rgba(217, 28, 28, .35);
}

.ppf-card-title {
    color: #fff;
}

.ppf-card .text-steel {
    color: rgba(255, 255, 255, .55);
}

/* spec rows: label left / value right, hairline divider between rows */
.ppf-specs {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: .2rem;
}

.ppf-specs-table {
    width: 100%;
}

.ppf-specs-table td {
    padding: .85rem 0;
    font-size: 14.5px;
}

.ppf-specs-table tr:not(:last-child) td {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.ppf-specs-table td.label {
    color: rgba(255, 255, 255, .45);
    font-weight: 600;
}

.ppf-specs-table td.val {
    color: #fff;
    font-weight: 700;
    text-align: right;
}

/* action row: two plain text links split by a vertical hairline */
.ppf-card__actions {
    display: flex;
    flex-direction: row;
    gap: 0;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.ppf-card__btn {
    flex: 1;
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: 10px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--red);
    background: transparent;
    border: none;
    border-radius: 0;
    transition: background .2s ease, color .2s ease;
}

.ppf-card__btn--explore {
    justify-content: flex-start;
    border-right: 1px solid rgba(255, 255, 255, .08);
}

.ppf-card__btn--enquiry {
    justify-content: flex-end;
}

.ppf-card__btn:hover {
    color: #fff;
    background: rgba(217, 28, 28, .1);
}

.ppf-card__btn--explore i {
    transition: transform .2s ease;
}

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

.ppf-card__btn--enquiry i {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(217, 28, 28, .15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
}

/* ---------- 3. Key Features / "Performance Advantages" section -> BLACK ----------
   (this is the bare <section> right after the white "Our Films" block;
   targeted by adjacent-sibling so no blade edits are needed) */
section.sec-light:not(.ppf-form-section) + section {
    background: var(--c-black, #0A0B0D);
    padding: 40px 0px;
}

section.sec-light:not(.ppf-form-section) + section .section-title {
    color: #fff;
}

section.sec-light:not(.ppf-form-section) + section .ppf-feat-card {
    background: var(--c-dark);
    border-color: var(--c-line-d);
}

section.sec-light:not(.ppf-form-section) + section .ppf-feat-card:hover {
    background: var(--c-dark2);
    box-shadow: 0 18px 42px rgba(0, 0, 0, .4);
}

section.sec-light:not(.ppf-form-section) + section .ppf-feat-icon {
    background: rgba(217, 28, 28, .12);
    border-color: rgba(217, 28, 28, .3);
}

section.sec-light:not(.ppf-form-section) + section .ppf-feat-card h3 {
    color: #fff;
}

section.sec-light:not(.ppf-form-section) + section .ppf-feat-card p {
    color: rgba(255, 255, 255, .5);
}

/* ---------- 4. perf-card: small definition boost now that its
   parent section can sit next to other dark blocks ---------- */
.perf-card {
    border: 1px solid rgba(255, 255, 255, .06);
}

/* ---------- 5. Center the filter tab buttons (matches PPF page style) ---------- */
.ppf-tabs-container {
    justify-content: center;
    text-align: center;
}
.legal-heading{
    color: black !important;
}