/* ==========================================================================
   COLOR PPF PAGE — color-ppf.css
   Updates in this pass:
   1) All font-weight values set to 700 (uniform weight across the page)
   2) font-family removed everywhere (page now inherits font from global/theme css)
   3) Section backgrounds re-ordered so the page alternates
      BLACK → WHITE → BLACK → WHITE ... instead of stacking dark sections back to back
   4) Global typography override: all section headings standardized to
      32px (desktop) / 27px (tablet) / 22px (phone), all section intro
      paragraphs standardized to 15px across every breakpoint
   ========================================================================== */

/* ============ ROOT TOKENS + BASE ============ */
:root {
    --ink: #101214;
    --black: #0A0B0D;
    --charcoal: #17191C;
    --line: #E3E6E9;
    --line-d: #2C3238;
    --gray: #6B7280;
    --off: #F6F7F8;
    --red: #D91C1C;
    --red-dk: #A81515;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body.cp-page {
    background: #fff !important;
    color: var(--ink) !important;
    line-height: 1.6;
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

.cp-page ::selection {
    background: var(--red);
    color: #fff;
}

.cp-page h1,
.cp-page h2,
.cp-page h3,
.cp-page h4 {
    font-weight: 700 !important;
    letter-spacing: -.01em;
    margin: 0;
}

.cp-page section {
    position: relative;
    padding: 40px 0;
}

@media(max-width:768px) {
    .cp-page section {
        padding: 3.5rem 0;
    }
}

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

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

.eyebrow {
   
    text-transform: uppercase;
    color: var(--red) !important;
    -webkit-text-fill-color: var(--red) !important;
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-weight: 700;
}

.eyebrow::before {
    content: '';
    width: 22px;
    height: 2px;
    background: var(--red);
    display: inline-block;
}

.eyebrow--light {
    color: var(--red) !important;
    -webkit-text-fill-color: var(--red) !important;
    font-size: 17px;
}

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

.btn-cp--red {
    background: var(--red);
    border-color: var(--red);
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

.btn-cp--red:hover {
    background: var(--red-dk);
    border-color: var(--red-dk);
}

.btn-cp--dark {
    background: var(--ink);
    border-color: var(--ink);
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

.btn-cp--dark:hover {
    background: #000;
}

.btn-cp--outline-dark {
    background: transparent;
    border-color: var(--ink);
    color: var(--ink) !important;
    -webkit-text-fill-color: var(--ink) !important;
}

.btn-cp--outline-dark:hover {
    background: var(--ink);
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

.btn-cp--outline-light {
    background: transparent;
    border-color: rgba(255, 255, 255, .35);
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

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

/* =====================================================
   SECTION 1 — HERO (.pg-hero)
===================================================== */
.pg-hero {
    position: relative;
    width: 100%;
    min-height: 550px;
    background: var(--obsidian);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

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

.pg-hero .hero-title {
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
}

/* H1 (.pg-hero .hero-title): 40px desktop / 32px tablet / 25px phone */
@media (max-width: 768px) {
    .pg-hero .hero-title {
        font-size: 32px;
    }
}

.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;
}


.desktop{
    display: block;
}
.phone{
    display: none;
}

/* Hero — tablet & mobile */
@media (max-width: 768px) {

    .pg-hero,
    .pg-hero .hero-body {
        min-height: auto;
    }

    .pg-hero .hero-body {
        padding: 2rem 0 3rem;
    }

    .pg-hero .hero-tagline {
        font-size: 15px;
    }

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

    .pg-hero .hero-badges {
        gap: .45rem;
        margin-bottom: 1.5rem;
    }

    .pg-hero .badge-pill {
        font-size: 15px;
        padding: .26rem .7rem;
    }

    .pg-hero .hero-actions {
        gap: .55rem;
    }

    .pg-hero .hero-actions a {
        padding: .72rem 1.15rem;
        font-size: 15px;
    }
}

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

     .phone{
    display: block;
}
.desktop{
    display: none;
}
}

/* =====================================================
   SECTION 2 — STATS BAR (.pg-stat-bar)
===================================================== */
.pg-stat-bar {
    background: #1A1D22;
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
}

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

.pg-stat-bar .pg-stat-cell {
    padding: 1.4rem 1.5rem;
    text-align: center;
    border-right: 1px solid var(--hairline);
}

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

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

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

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

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

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

    .pg-stat-bar .pg-stat-cell:nth-child(-n+2) {
        border-bottom: 1px solid var(--hairline);
    }
}

/* Legacy stat grid (unused class left in from earlier hero layout — safe to delete if not referenced in HTML) */
@media (max-width: 992px) {
    .ppf-hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* =====================================================
   SECTION 3 — ABOUT OUR COLORS — WHITE
   (was black before; switched to light theme so it doesn't
   sit directly under the dark hero + stat bar)
===================================================== */
.cp-about {
    background: #fff;
}

/* Intro block — heading + paragraph, full width, centered */
.cp-about-intro {
    max-width: 100%;
    margin: 0px;
    text-align: start;
}

.cp-about-intro h2 {
    color: var(--ink) !important;
    -webkit-text-fill-color: var(--ink) !important;
    text-transform: uppercase;
    line-height: 1.08;
    margin: .7rem 0 1.2rem;
}

.cp-about-intro p {
    color: var(--gray) !important;
    -webkit-text-fill-color: var(--gray) !important;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.cp-about-intro .eyebrow {
    justify-content: center;
    font-size: 17px;
}

/* Feature grid — 1 row / 6 columns, icon-card style */
.cp-feat-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.1rem;
}

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

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

.cp-feat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .7rem;
    background: var(--off);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 12px;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}

.cp-feat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(16, 18, 20, .08);
    border-color: var(--red);
}

.cp-feat-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding:10px;
}

.cp-feat-card__icon i {
    color: var(--red) !important;
    font-size: 21.6px;
}

.cp-feat-card strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--ink) !important;
    -webkit-text-fill-color: var(--ink) !important;
    line-height: 1.3;
}

.cp-feat-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: var(--gray) !important;
    -webkit-text-fill-color: var(--gray) !important;
}


/* =====================================================
   SECTION 4 — VISUALIZER CTA BAND — RED (accent break)
===================================================== */
.cp-viz-band {
    background: linear-gradient(120deg, var(--red) 0%, #8f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.cp-viz-band::before {
    content: '';
    position: absolute;
    right: -8%;
    top: -40%;
    width: 55%;
    height: 180%;
    background: radial-gradient(circle, rgba(255, 255, 255, .14), transparent 60%);
}

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

.cp-viz-inner h2 {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    text-transform: uppercase;
    line-height: 1.08;
    margin: 0 0 .6rem;
}

.cp-viz-inner p {
    color: rgba(255, 255, 255, .82) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, .82) !important;
    margin: 0;
    line-height: 1.6;
}

.btn-white-cp {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: #fff;
    border: 1.5px solid #fff;
    color: var(--red) !important;
    -webkit-text-fill-color: var(--red) !important;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 1rem 2.1rem;
    border-radius: 3px;
    text-decoration: none;
    transition: .2s;
}

.btn-white-cp:hover {
    background: transparent;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}


/* =====================================================
   SECTION 5 — TECHNICAL SPECIFICATION TABLE — BLACK
===================================================== */
.cs-spec-section {
    background: var(--black);
}

.cs-spec-head {
    margin-bottom: 2.5rem;
}

.cs-spec-head h2 {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    text-transform: uppercase;
    margin: .6rem 0 .8rem;
}

.cs-spec-head p {
    color: rgba(255, 255, 255, .55) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, .55) !important;
    margin: 0 auto;
}

.cs-spec-tabs {
    display: flex;
    justify-content: center;
    gap: .6rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.cs-spec-tab {
    background: var(--charcoal);
    border: 1px solid var(--line-d);
    color: rgba(255, 255, 255, .6);
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    padding: .7rem 1.4rem;
    border-radius: 4px;
    cursor: pointer;
    transition: .2s;
}

.cs-spec-tab.active,
.cs-spec-tab:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}

.cs-spec-panel {
    display: none;
}

.cs-spec-panel.active {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 3rem;
    align-items: start;
}

@media(max-width:900px) {
    .cs-spec-panel.active {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.cs-spec-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 2px solid var(--red);
    border-radius: 8px;
    overflow: hidden;
}

.cs-spec-table tr {
    border-bottom: 1px solid var(--line-d);
}

.cs-spec-table tr:last-child {
    border-bottom: none;
}

.cs-spec-table th,
.cs-spec-table td {
    padding: .85rem 1.1rem;
    font-size: 15px;
    text-align: left;
}

.cs-spec-table thead th {
    background: var(--charcoal);
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    text-transform: uppercase;
    font-size: 15px;
    border-bottom: 1px solid var(--line-d);
}

.cs-spec-table tbody th {
    color: rgba(255, 255, 255, .55) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, .55) !important;
    font-weight: 700;
    width: 52%;
}

.cs-spec-table tbody td {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    font-weight: 700;
}

.cs-spec-side {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.cs-spec-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
}

.cs-spec-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .5rem;
    flex: 1 1 90px;
    background: var(--charcoal);
    border: 1px solid var(--line-d);
    border-radius: 8px;
    padding: 1.1rem .7rem;
}
.cs-spec-badge img{
    width:25%;
}
.cs-spec-badge i {
    color: var(--red) !important;
    font-size: 20.8px;
}

.cs-spec-badge span {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .85) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, .85) !important;
    line-height: 1.3;
}

.cs-spec-icon-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .9rem;
}

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

.cs-spec-icon-item {
    display: flex;
    align-items: center;
    gap: .7rem;
    background: var(--charcoal);
    border: 1px solid var(--line-d);
    border-radius: 6px;
    padding: .75rem .9rem;
}
.cs-spec-icon-item img{
    width:15%;
}
.cs-spec-icon-item-img{
        width: 6% !important;
}

.cs-spec-icon-item i {
    color: var(--red) !important;
    font-size: 16px;
    flex-shrink: 0;
}

.cs-spec-icon-item span {
    font-size: 15px;
    font-weight: 700;
    color: rgba(255, 255, 255, .8) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, .8) !important;
}


/* =====================================================
   SECTION 6 — TPU 2-LAYER / 3-LAYER FILM STRUCTURE — WHITE
===================================================== */
.cs-layer-section {
    background: #fff;
}

.cs-layer-head {
    margin-bottom: 2.5rem;
}

.cs-layer-head h2 {
    text-transform: uppercase;
    margin: .6rem 0 .8rem;
}

.cs-layer-head p {
    color: var(--gray) !important;
    -webkit-text-fill-color: var(--gray) !important;
    margin: 0 auto;
}

.cs-layer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media(max-width:900px) {
    .cs-layer-grid {
        grid-template-columns: 1fr;
    }
}

.cs-layer-card {
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
    background: var(--off);
    transition: transform .25s, box-shadow .25s;
}

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

.cs-layer-card__tag {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.3rem;
    background: var(--ink);
}

.cs-layer-card__tag strong {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    font-size: 15px;
    text-transform: uppercase;
}

.cs-layer-card__tag span {
    background: var(--red);
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    padding: .3rem .7rem;
    border-radius: 20px;
}

.cs-layer-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    /* object-fit: cover; */
    object-position: center;
    display: block;
    background: #fff;
}

@media (max-width: 480px) {
    .cs-layer-card img {
        aspect-ratio: 4 / 3;
    }
}


/* =====================================================
   SECTION 7 — COLLECTION / SERIES TABS — LIGHT GREY
   (kept light, but a shade off pure white so it reads as
   its own block right after the white Layer section)
===================================================== */
.cp-collection {
    background: var(--off);
}

.cp-coll-head {
    text-align: center;
    margin-bottom: 3rem;
}

.cp-coll-head h2 {
    text-transform: uppercase;
    margin: .7rem 0 .9rem;
}

.cp-coll-head p {
    color: var(--gray) !important;
    -webkit-text-fill-color: var(--gray) !important;
    margin: 0 auto;
    line-height: 1.7;
}

.cp-tabs {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2.6rem;
}

.cp-tab {
    background: #fff;
    border: 1px solid var(--line);
    color: var(--gray);
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    padding: .6rem 1.15rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap;
}

.cp-tab .cnt {
    opacity: .6;
    font-weight: 700;
    margin-left: .35rem;
}

.cp-tab.active,
.cp-tab:hover {
    background: var(--ink);
    border-color: var(--ink);
    color: #fff;
}

.cp-spec-bar {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2.5rem;
    background: #fff;
}

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

.cp-spec-cell {
    padding: 1.1rem 1.3rem;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

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

@media(max-width:900px) {
    .cp-spec-cell:nth-child(2n) {
        border-right: none;
    }
}

.cp-spec-label {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--gray);
    display: block;
    margin-bottom: .25rem;
}

.cp-spec-val {
    font-size: 15.2px;
    font-weight: 700;
    color: var(--ink);
}

.cp-series-desc {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 2rem;
    max-width: 80ch;
}

.cp-swatch-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: .85rem;
}

@media(max-width:1100px) {
    .cp-swatch-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

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

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

.cp-swatch {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--line);
    transition: transform .2s, box-shadow .2s;
    cursor: default;
    background: #fff;
}

.cp-swatch:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(16, 18, 20, .14);
}

.cp-swatch__chip {
    /* aspect-ratio: 1/1; */
    position: relative;
}

.cp-swatch__body {
    padding: .55rem .6rem;
    background: #fff;
}

.cp-swatch__name {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--ink);
    display: block;
    text-transform: uppercase;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cp-swatch__code {
    font-size: 15px;
    color: var(--gray);
    display: block;
    margin-top: .1rem;
}

/* =====================================================
   SECTION 8 — BOTTOM CTA — BLACK (fixed layout)
===================================================== */
.cp-cta {
    background: var(--ink);
}

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

.cp-cta-inner > div:first-child {
    flex: 1 1 auto;
    min-width: 0;
}

.cp-cta-inner h2 {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    text-transform: uppercase;
    margin: 0 0 .5rem;
}

.cp-cta-inner p {
    color: rgba(255, 255, 255, .55) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, .55) !important;
    margin: 0;
    max-width: 52ch;
}

.cp-cta-actions {
    display: flex;
    flex: 0 0 auto;
    gap: .85rem;
    flex-wrap: nowrap;
}

.cp-cta-actions .btn-cp {
    white-space: nowrap;
}

/* Tablet: actions row can wrap to 2 lines if needed, still side-by-side with text */
@media (max-width: 992px) {
    .cp-cta-inner {
        gap: 1.6rem;
    }

    .cp-cta-actions {
        flex-wrap: wrap;
    }
}

/* Below this, switch to stacked/centered layout intentionally */
@media (max-width: 768px) {
    .cp-cta-inner {
        flex-direction: column;
        flex-wrap: wrap;
        text-align: center;
        justify-content: center;
    }

    .cp-cta-inner > div:first-child {
        flex: 1 1 auto;
        width: 100%;
    }

    .cp-cta-inner p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .cp-cta-actions {
        width: 100%;
        justify-content: center;
    }

    .cp-cta-actions .btn-cp {
        flex: 1 1 auto;
        justify-content: center;
    }
}

.Film-Construction{
    text-align: start !important;
}



/* =====================================================
   FAQ SECTION (.faq-*)
   Uses existing tokens: --obsidian, --surface, --hairline, --steel, --red
===================================================== */
.faq-sec {
    background: var(--obsidian);
}

.faq-header {
    margin: 0 auto 1rem;
    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 rgba(0, 0, 0, 0.386);
}
.faq-item span{
    color:black;
    font-size: 18px;
}
.faq-header .faq-heading{
    text-transform: uppercase;
    margin: .7rem 0 .9rem;
}
.faq-header  p{
    color: var(--gray) !important;
}

.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;
    font-family: inherit;
    
}

.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;
}

/* 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;
    }
}


/* =====================================================
   GLOBAL TYPOGRAPHY OVERRIDE
   All section headings: 32px desktop / 27px tablet / 22px phone
   All section intro paragraphs: 15px on every breakpoint
   (placed last so it overrides the clamp()/rem sizes set above)
===================================================== */
.cp-about-intro h2,
.cp-viz-inner h2,
.cs-spec-head h2,
.cs-layer-head h2,
.cp-coll-head h2,
.cp-cta-inner h2,
.faq-header .faq-heading {
    font-size: 32px !important;
}

.cp-about-intro p,
.cp-viz-inner p,
.cs-spec-head p,
.cs-layer-head p,
.cp-coll-head p,
.cp-cta-inner p,
.faq-header p {
    font-size: 15px !important;
}

@media (max-width: 992px) {
    .cp-about-intro h2,
    .cp-viz-inner h2,
    .cs-spec-head h2,
    .cs-layer-head h2,
    .cp-coll-head h2,
    .cp-cta-inner h2,
    .faq-header .faq-heading {
        font-size: 27px !important;
    }
}

@media (max-width: 768px) {
    .cp-about-intro h2,
    .cp-viz-inner h2,
    .cs-spec-head h2,
    .cs-layer-head h2,
    .cp-coll-head h2,
    .cp-cta-inner h2,
    .faq-header .faq-heading {
        font-size: 22px !important;
    }
}



/* color card */



.cp-swatch-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

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

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

.cp-swatch {
    border: 1px solid #e7e7e9;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .06);
    transition: box-shadow .2s ease, transform .2s ease;
}

.cp-swatch:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, .1);
    transform: translateY(-2px);
}

.cp-swatch__chip {
    width: 100%;
    /* aspect-ratio: 1 / 0.85; */
        height: 140px;
}

.cp-swatch__body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 14px 16px 16px;
}

.cp-swatch__name {
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    color: #17191c;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cp-swatch__code {
    font-size: 15px;
    color: #8a8f96;
}



 
/* =====================================================
   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; letter-spacing
   removed from every rule above)
===================================================== */
.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;
    }
}
/* =====================================================
   SHARED: INDIVIDUAL COLOR SERIES PAGES (all 14 series)
   solid-color-ppf, metallic-color-ppf, liquid-metal-color-ppf,
   flip-flop-color-ppf, solid-matte-color-ppf, metallic-matte-color-ppf,
   liquid-metal-matte-color-ppf, flip-flop-matte-color-ppf,
   texture-color-ppf, 3d-aurora-storm-color-ppf, metal-chrome-color-ppf,
   matte-metal-chrome-color-ppf, super-chrome-color-ppf,
   super-chrome-matte-color-ppf.
   Scoped under .cs-series (added alongside nh-body/cp-page on <main>).
   Ported from each source page's inline <style> block — same class
   names as source (.cs-why, .cs-feat-item, .cs-app-*, .cs-warranty-*),
   so this one block serves all 14 Blade views. Swatch grid / spec /
   layer / eyebrow / button markup reuses the cp-swatch*, cs-spec-*,
   cs-layer-*, .eyebrow and .btn-cp* rules that already exist above.
===================================================== */

/* 5-cell stat bar variant used on color series pages
   (Colours / Thickness / Finish Type / Installation / Coverage) */
.pg-stat-bar.pg-stat-bar--5 .pg-stat-bar-inner {
    grid-template-columns: repeat(5, 1fr);
}

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

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

@media(max-width:900px) {
    .pg-stat-bar.pg-stat-bar--5 .pg-stat-cell:nth-child(3n) {
        border-right: none;
    }

    .pg-stat-bar.pg-stat-bar--5 .pg-stat-cell:nth-child(-n+3) {
        border-bottom: 1px solid #2C3238;
    }
}

@media(max-width:560px) {
    .pg-stat-bar.pg-stat-bar--5 .pg-stat-cell:nth-child(3n) {
        border-right: 1px solid #2C3238;
    }

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

    .pg-stat-bar.pg-stat-bar--5 .pg-stat-cell:nth-child(-n+3) {
        border-bottom: 1px solid #2C3238;
    }

    .pg-stat-bar.pg-stat-bar--5 .pg-stat-cell:nth-child(n+4) {
        border-bottom: none;
    }
}

/* WHY THIS SERIES — dark band */
.cs-series .cs-why {
    background: #F6F7F8;;
    padding: 6rem 0;
}

@media(max-width:768px) {
    .cs-series .cs-why {
        padding: 3.5rem 0;
    }
}

.cs-series .cs-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.top-reveal{
        height: 100%;
    align-content: center;
}

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

.cs-series .cs-why-grid h2 {
    color: black !important;
    text-transform: uppercase;
    line-height: 1.1;
    margin: .6rem 0 1.1rem;
}

.cs-series .cs-why-grid>div:first-child>p {
    color: #6B7280!important;
    line-height: 1.78;
}

.cs-feat-item {
    display: flex;
    gap: 1rem;
    padding: 1.1rem 0;
    border-bottom: 1px solid #2C3238;
}

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

.cs-feat-item i {
    color: #D91C1C !important;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: .15rem;
}

.cs-feat-item strong {
    display: block;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .02em;
    color: black !important;
    margin-bottom: .2rem;
}

.cs-feat-item p {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: #6B7280 !important;
}

/* FULL COLOUR SET — swatch grid section wrapper
   (grid items reuse cp-swatch-grid / cp-swatch / cp-swatch__* above) */
.cs-swatch-section {
    background: #fff;
}

.cs-swatch-head {
    margin-bottom: 3rem;
}

.cs-swatch-head h2 {
    text-transform: uppercase;
    margin: .7rem 0 .9rem;
}

.cs-swatch-head p {
    color: #6B7280 !important;
    -webkit-text-fill-color: #6B7280 !important;
    margin: 0 auto;
}

/* APPLICATIONS + WARRANTY — light band */
.cs-series .cs-apps-section {
    background: #F6F7F8;
    border-top: 1px solid #E3E6E9;
    border-bottom: 1px solid #E3E6E9;
    padding: 6rem 0;
}

@media(max-width:768px) {
    .cs-series .cs-apps-section {
        padding: 3.5rem 0;
    }
}

.cs-series .cs-apps-section>.container>.reveal p {
    color: #6B7280 !important;
    -webkit-text-fill-color: #6B7280 !important;
    max-width: 60ch;
}

.cs-app-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
}

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

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

.cs-app-card {
    background: #fff;
    border: 1px solid #E3E6E9;
    border-radius: 8px;
    padding: 1.8rem 1.4rem;
    text-align: center;
    transition: all .25s ease;
}

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

.cs-app-icon {
    width: 52px;
    height: 52px;
    background: #F6F7F8;
    border: 1px solid #E3E6E9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D91C1C !important;
    font-size: 22px;
    margin: 0 auto 1rem;
}

.cs-app-card h4 {
    font-size: 15px !important;
    text-transform: uppercase;
    letter-spacing: .02em;
    margin: 0;
    color: #101214;
}

.cs-warranty-strip {
    margin-top: 3rem;
    background: #101214;
    border-radius: 8px;
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.cs-warranty-badge {
    width: 68px;
    height: 68px;
    background: #D91C1C;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    line-height: 1;
}

.cs-warranty-badge .yr {
    font-size: 26px;
    font-weight: 900;
}

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

.cs-warranty-strip h3 {
    font-size: 16px !important;
    text-transform: uppercase;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    margin: 0 0 .3rem;
}

.cs-warranty-strip p {
    font-size: 15px;
    color: rgba(255, 255, 255, .52) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, .52) !important;
    margin: 0;
    max-width: 55ch;
    line-height: 1.5;
}

@media(max-width:768px) {
    .cs-warranty-strip {
        padding: 1.6rem 1.4rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .cs-warranty-strip .btn-cp {
        width: 100%;
        justify-content: center;
    }

    .cs-warranty-left {
        gap: 1rem;
    }

    .cs-app-card {
        padding: 1.4rem 1rem;
    }
}
/* END SHARED: INDIVIDUAL COLOR SERIES PAGES */

/* =====================================================
   PAGE: visualizer (3D Car Visualizer / configurator)
   Ported from source page's inline <style> block.
   Scoped to markup rendered under [data-page="visualizer"];
   class names kept identical to source so the page's inline
   <script> (querySelectorAll('.tab-btn') / '.swatch' / etc.)
   keeps working unchanged.
===================================================== */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.config-container {
    display: flex;
    height: calc(100vh - 120px);
    min-height: 600px;
    background: #f8f9fa;
    overflow: hidden;
}

.config-viewport {
    flex: 1;
    position: relative;
    background: #e9ecef;
}

.config-sidebar {
    width: 420px;
    background: #ffffff;
    border-left: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    z-index: 10;
    overflow-y: auto;
}

.swatch-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 15px;
}

.swatch {
    aspect-ratio: 1;
    border-radius: 6px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 4px;
}

.swatch:hover {
    transform: scale(1.08);
}

.swatch.active {
    border-color: var(--red);
    box-shadow: 0 0 10px rgba(217, 28, 28, 0.3);
}

.swatch-label {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8);
    text-align: center;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 2px;
}

.tab-btn {
    flex: 1;
    padding: 12px 6px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    background: #f1f2f4;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
}

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

.ctrl-btn {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--line);
    color: var(--ink);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

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

/* Technical-spec summary card in the sidebar (source used a generic
   "glass-panel" utility that doesn't exist in this codebase) */
.vz-spec-panel {
    background: var(--off);
    border: 1px solid var(--line);
}

/* Quote Modal Styling */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    align-items: center;
    justify-content: center;
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    width: min(100% - 40px, 480px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    position: relative;
}

@media (max-width: 900px) {
    .config-container {
        flex-direction: column;
        height: auto;
    }
    .config-viewport {
        height: 60vh;
        min-height: 380px;
    }
    .config-sidebar {
        width: 100%;
        border-left: none;
        border-top: 1px solid var(--line);
    }
}
/* END PAGE: visualizer */
