/* =============================================================================
   PPF CATEGORY — SHARED STYLESHEET
   Used by every page in the PPF main category (paint-protection-film,
   tpu-prime-ppf, tpu-proshield-ppf, and any future Clear/Matte/Black/
   Instant-Healing/Specialty PPF page). One file per category, per the
   category CSS rule — do not create a new per-page CSS file inside this
   category; extend this one instead.

   Merged from: paint-protection-film.css + ppf-service.css
   (ppf-service.css's rules that exactly duplicated paint-protection-film.css
   were dropped: 19 duplicate rule(s) removed, 122 unique rule/media block(s) kept.)
   ========================================================================== */

/* =====================================================
   SECTION 0 — GLOBAL / DESIGN TOKENS
   (base typography + colors shared by every section)
===================================================== */
:root {
    --obsidian: #0A0B0D;
    --surface: #15181C;
    --surface-2: #1D2126;
    --surface-3: #262B31;
    --hairline: #2C3238;
    --steel: #9AA6AE;
    --white: #F3F6F7;
    --red: #D91C1C;
    --red-dim: #A81515;
    --font: 'Barlow', sans-serif;
}
 
main.nh-body {
    display: block;
    background: var(--obsidian);
    color: var(--white);
    line-height: 1.6;
}
 
main.nh-body ::selection {
    background: var(--red);
    color: #fff;
}
 
.nh-body h1,
.nh-body h2,
.nh-body h3,
.nh-body h4,
.nh-body .section-title {
    font-weight: 700;
    margin: 0;
    color: #fff;
        text-transform: uppercase;
}

 
.nh-body h3.ppf-card-title {
    color: var(--red);
    font-size: 20px;
    text-transform: uppercase;
}
 
.nh-body section {
    position: relative;
    padding: 40px 0;
}
 
@media (max-width: 768px) {
    .nh-body section {
        padding: 2rem 0;
    }
}
 
.nh-body .eyebrow {
    font-size: 17px;
    text-transform: uppercase;
    color: var(--red);
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-weight: 700;
}
 
.nh-body .eyebrow::before {
    content: "";
    width: 22px;
    height: 1px;
    background: var(--red);
    display: inline-block;
}
 
.nh-body .text-steel {
    color: var(--steel);
}
 
/* Light section overrides (used by construction + enquiry form sections) */
.nh-body .sec-light {
    background: #fff;
    color: #1a1a1a;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}
 
.nh-body .sec-light h1,
.nh-body .sec-light h2,
.nh-body .sec-light h3,
.nh-body .sec-light h4,
.nh-body .sec-light .section-title {
    color: #0c0c0c;
}
 
.nh-body .sec-light p,
.nh-body .sec-light span,
.nh-body .sec-light li,
.nh-body .sec-light .text-steel {
    color: #555;
}
 
 
/* =====================================================
   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 — PRODUCT COLLECTION / FILTER TABS
   (.ppf-tabs-container, .ppf-tab-btn, .ppf-card-item)
===================================================== */
.ppf-tabs-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}
 
.ppf-tab-btn {
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--hairline);
    color: var(--steel);
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    padding: .75rem 1.6rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all .25s ease;
}
 
.ppf-tab-btn.active,
.ppf-tab-btn:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}
 
.ppf-card-item {
    transition: opacity .35s ease, transform .35s ease;
}
 
.ppf-card-item.hide-item {
    display: none !important;
}
 
/* Filter tabs — mobile (horizontal scroll) */
@media (max-width: 768px) {
    .ppf-tabs-container {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        scrollbar-width: none;
        margin: 0 -1rem 2.2rem;
        padding: 0 1rem .3rem;
    }
 
    .ppf-tabs-container::-webkit-scrollbar {
        display: none;
    }
 
    .ppf-tab-btn {
        flex: 0 0 auto;
        white-space: nowrap;
        font-size: 15px;
        padding: .65rem 1.15rem;
    }
}
 
 
/* =====================================================
   SECTION 3b — PRODUCT / SPEC CARDS (.ppf-card)
===================================================== */
.ppf-card {
    background: var(--surface);
    border: 1px solid var(--hairline);
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all .35s cubic-bezier(0.16, 1, 0.3, 1);
}
 
.ppf-card:hover {
    border-color: rgba(217, 28, 28, .3);
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .45);
}
 
.ppf-card__media {
    /* aspect-ratio: 16/10; */
    overflow: hidden;
    position: relative;
    background: #111;
}
 
.ppf-card__media img {
    width: 100%;
    height: auto;
    /* object-fit: cover; */
    transition: transform .6s ease;
}
 
.ppf-card:hover .ppf-card__media img {
    transform: scale(1.06);
}
 
.ppf-card__body {
    padding: 1.6rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
 
.ppf-card__series {
    font-size: 15px;
    color: var(--red);
    font-weight: 700;
    text-transform: uppercase;
}
 
.ppf-card h3 {
    margin-top: .3rem;
}
 
.ppf-card p {
    font-size: 15px;
    line-height: 1.45;
    margin: .5rem 0 0;
}
 
.ppf-specs {
    margin: 1.2rem 0;
    border-top: 1px solid var(--hairline);
    padding-top: 1rem;
}
 
.ppf-specs-table {
    width: 100%;
    font-size: 15px;
    border-collapse: collapse;
}
 
.ppf-specs-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}
 
.ppf-specs-table tr:last-child {
    border-bottom: none;
}
 
.ppf-specs-table td {
    padding: .45rem 0;
}
 
.ppf-specs-table td.label {
    color: var(--steel);
    font-weight: 500;
    text-align: left;
    font-size: 17px;
}
 
.ppf-specs-table td.val {
    color: #fff;
    font-weight: 700;
    text-align: right;
      font-size: 17px;
}
 
.ppf-card__btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: var(--red);
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    text-decoration: none;
    margin-top: auto;
    padding-top: .5rem;
}
 
.ppf-card__btn i {
    transition: transform .25s ease;
}
 
.ppf-card:hover .ppf-card__btn i {
    transform: translateX(4px);
}
 
/* Product cards — mobile (disable hover transforms, use tap feedback) */
@media (max-width: 768px) {
    .ppf-specs-table td {
        padding: .38rem 0;
        font-size: 15px;
    }
 
    .ppf-card:active {
        transform: scale(.97);
    }
 
    .ppf-card:hover {
        transform: none;
    }
}
 
 
/* =====================================================
   SECTION 4 — 5-LAYER CONSTRUCTION (.construction-*)
===================================================== */
.construction-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}
 
.construction-stack {
    display: flex;
    flex-direction: column;
    gap: .8rem;
}
 
.construction-layer {
    background: #f8f9fa;
    border: 1px solid #e0e2e5;
    border-left: 5px solid var(--steel);
    border-radius: 6px;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all .3s ease;
}
 
.construction-layer:hover {
    transform: translateX(8px);
    border-color: var(--red);
}
 
.construction-layer.layer-red {
    border-left-color: var(--red);
}
 
.construction-layer.layer-dark {
    border-left-color: #0c0c0c;
}
 
.construction-layer.layer-glass {
    border-left-color: #abb8c3;
}
 
.layer-num {
    font-size: 24px;
    font-weight: 700;
    color: var(--red);
    flex-shrink: 0;
}
 
.layer-info {
    flex-grow: 1;
}
 
.layer-title {
    font-weight: 700;
    font-size: 16.8px;
    color: #0c0c0c;
    text-transform: uppercase;
    margin: 0;
}
 
.layer-desc {
    color: #555;
    margin-top: .15rem;
    line-height: 1.4;
}
.layer-desc strong{
    margin: 7px 0px ! IMPORTANT;
    /* padding: 10px; */
    position: relative;
    display: block;
}
 
/* Construction — tablet (stack to 1 column) & mobile */
@media (max-width: 992px) {
    .construction-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}
 
@media (max-width: 768px) {
    .construction-layer {
        padding: 1rem;
        gap: 1rem;
    }
 
    .construction-layer:hover {
        transform: none;
    }
 
    .construction-layer:active {
        transform: scale(.97);
    }
}
 
 
/* =====================================================
   SECTION 5 — FEATURE / METRIC CARDS (.ppf-feat-*)
===================================================== */
.ppf-feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
 
.ppf-feat-card {
    background: var(--surface);
    border: 1px solid var(--hairline);
    border-radius: 6px;
    padding: 2rem 1.6rem;
    height: 100%;
    transition: all .25s ease;
}
 
.ppf-feat-card:hover {
    border-color: var(--red);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(217, 28, 28, .12);
}
 
.ppf-feat-icon {
    width: 46px;
    height: 46px;
    background: rgba(217, 28, 28, .1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 22.4px;
    margin-bottom: 1.2rem;
}
 
.ppf-feat-card h3 {
    font-size: 18.4px;
    text-transform: uppercase;
    font-weight: 700;
}
 
.ppf-feat-card p {
    font-size: 15px;
    color: var(--steel);
    margin-top: .6rem;
    line-height: 1.5;
}
 
/* Feature cards — tablet (2 cols) & mobile (1 col) */
@media (max-width: 992px) {
    .ppf-feat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
 
@media (max-width: 768px) {
    .ppf-feat-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
 
    .ppf-feat-card {
        padding: 1.6rem 1.4rem;
    }
 
    .ppf-feat-card:active {
        transform: scale(.97);
    }
}
 
 
/* =====================================================
   SECTION 6 — ENQUIRY / DEALER FORM (.ppf-form-*, .form-ug)
===================================================== */
.ppf-form-section {
    background: linear-gradient(180deg, var(--surface) 0%, var(--obsidian) 100%);
}
 
.ppf-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
 
.ppf-form-card {
    background: var(--surface-2);
    border: 1px solid var(--hairline);
    border-radius: 8px;
    padding: 2.5rem;
}
 
.form-ug label {
    font-size: 15px;
    color: var(--steel);
    text-transform: uppercase;
    margin-bottom: .4rem;
    font-weight: 700;
    display: block;
}
 
.form-ug .form-control,
.form-ug .form-select {
    background: var(--surface-3);
    border: 1px solid var(--hairline);
    color: var(--white);
    border-radius: 3px;
    padding: .75rem .9rem;
    font-size: 15px;
    margin-bottom: 1.2rem;
}
 
.form-ug .form-control:focus,
.form-ug .form-select:focus {
    background: var(--surface-3);
    color: var(--white);
    border-color: var(--red);
    box-shadow: 0 0 0 .18rem rgba(217, 28, 28, .15);
    outline: none;
}
 
.form-ug .form-control::placeholder {
    color: #5C666D;
}
 
.form-ug .form-select option {
    background: var(--surface-2);
    color: var(--white);
}
 
.btn-ember {
    background: var(--red);
    border: 1px solid var(--red);
    color: #fff;
    font-weight: 700;
    padding: .85rem 1.7rem;
    border-radius: 4px;
    transition: .25s ease;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    font-size: 15px;
    cursor: pointer;
    width: 100%;
    margin-top: .5rem;
}
 
.btn-ember:hover {
    background: transparent;
    color: var(--red);
    border-color: var(--red);
}
 
/* Enquiry form — tablet (1 col) & mobile */
@media (max-width: 992px) {
    .ppf-form-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}
 
@media (max-width: 768px) {
    .ppf-form-card {
        padding: 1.6rem;
    }
 
    .form-ug .form-control,
    .form-ug .form-select {
        font-size: 16px;
        padding: .85rem .9rem;
    }
 
    .btn-ember {
        min-height: 52px;
    }
}
 
 
/* prodcut btn */
 
 .ppf-card__actions {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-top: 1.25rem;
      padding-top: 1rem;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
 
    .ppf-card__btn--explore {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--red);;
      font-weight: 700;
      font-size: 17px;
      text-transform: uppercase;
      text-decoration: none;
      white-space: nowrap;
      transition: color 0.2s ease;
    }
 
    .ppf-card__btn--explore i {
      font-size: 12px;
      transition: transform 0.2s ease;
    }
 
    .ppf-card__btn--explore:hover {
      color: var(--red);
    }
 
    .ppf-card__btn--explore:hover i {
      transform: translateX(4px);
    }
 
    .ppf-card__btn--enquiry {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      color: var(--red);
      font-weight: 700;
      font-size: 17px;
      text-decoration: none;
      border-radius: 6px;
      white-space: nowrap;
      transition: background 0.2s ease, transform 0.2s ease;
    }
 
    .ppf-card__btn--enquiry i {
      font-size: 14.4px;
    }

 
    @media (max-width: 400px) {
      .ppf-card__actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
      }
 
      .ppf-card__btn--enquiry {
        width: 100%;
        justify-content: center;
      }
    }
 
 
/* =====================================================
   GLOBAL TYPOGRAPHY OVERRIDE
   All section headings (.section-title): 32px desktop / 27px tablet / 22px phone
   All section intro paragraphs (.text-steel): 15px on every breakpoint
   (placed last so it overrides any earlier sizing)
===================================================== */
.ppf-card__actions {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.ppf-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--cp-red, #e02020);
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  transition: opacity .15s ease, gap .15s ease;
}

.ppf-card__btn i {
  font-size: 14px;
}

.ppf-card__btn--explore:hover {
  gap: 9px;
  opacity: .85;
}

.ppf-card__btn--enquire:hover {
  opacity: .85;
}

.ppf-card__btn--enquire i {
  font-size: 16px;
}
.nh-body .section-title {
    font-size: 32px !important;
}
 
.nh-body .text-steel {
    font-size: 17px !important;
}
 
@media (max-width: 992px) {
    .nh-body .section-title {
        font-size: 27px !important;
    }
}
 
@media (max-width: 768px) {
    .nh-body .section-title {
        font-size: 22px !important;
    }
}
 
 
/* =====================================================
   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: clamp(28.8px, 3vw, 40px) !important;
}
 
.nh-body p {
    font-size: 17px !important;
    color:#0A0B0D;
}
 
@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;
    }
}

/* ---- unique additions from the former ppf-service.css ---- */

:root {
    --c-black: #0A0B0D;
    --c-dark: #111317;
    --c-dark2: #1A1D22;
    --c-line-d: #2C3238;
    --c-white: #FFFFFF;
    --c-off: #F7F8F9;
    --c-line-l: #E4E7EB;
    --c-muted: #6B7280;
    --c-ink: #111317;
    --c-red: #D91C1C;
    --c-red-dk: #A81515;
    --ff: 'Barlow', sans-serif;
}

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

.ppf-product {
    background: var(--c-white);
    color: var(--c-ink);
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

/* ── Eyebrow ── */
.ug-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    color: #D91C1C !important;
}

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

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



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

/* section title */
.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;
    /* -webkit-text-fill-color: var(--c-ink) !important; */
}

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

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

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

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

.pg-hero .hero-label {
    display: inline-block;
    background: rgba(217, 28, 28, .18);
    border: 1px solid rgba(217, 28, 28, .4);
    color: var(--red);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    padding: .28rem .75rem;
    border-radius: 3px;
    margin-bottom: 1rem;
}

.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-tagline {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
    margin: 1rem 0 1.3rem;
}

.pg-hero .btn-red-ug,
.pg-hero .btn-ghost-ug {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    padding: .82rem 1.7rem;
    border-radius: 4px;
    transition: .2s ease;
    cursor: pointer;
    text-decoration: 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;
    }
}

/* Badges row */
.hero-badges {
    display: flex;
    gap: .65rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 20px;
    padding: .32rem .85rem;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, .82) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, .82) !important;
}

.badge-pill i {
    color: var(--c-red) !important;
    font-size: 13.12px;
}

/* Buttons */
.hero-actions {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap;
}

.btn-red-ug {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--c-red);
    border: 1.5px solid var(--c-red);
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    padding: .82rem 1.7rem;
    border-radius: 4px;
    transition: .2s ease;
    cursor: pointer;
    text-decoration: none;
}

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

.btn-ghost-ug {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, .22);
    color: rgba(255, 255, 255, .85) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, .85) !important;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    padding: .82rem 1.7rem;
    border-radius: 4px;
    transition: .2s ease;
    cursor: pointer;
    text-decoration: none;
}

.btn-ghost-ug:hover {
    border-color: rgba(255, 255, 255, .55);
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

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

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* ── Stat Bar (dark) ── */
.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: 28.8px;
    font-weight: 700;
    line-height: 1;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

.stat-num span {
    color: var(--c-red) !important;
    -webkit-text-fill-color: var(--c-red) !important;
    font-size: 17.6px;
}

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

/* ═══════════════════════════════════════
   SECTION 2 — OVERVIEW SPLIT (WHITE)
═══════════════════════════════════════ */
.overview-section {
    background: var(--c-white);
    padding: 6rem 0;
}

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

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

.overview-content h2 {
    font-size: clamp(28.8px, 3vw, 40px) !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    line-height: 1.05;
    color: var(--c-ink) !important;
    -webkit-text-fill-color: var(--c-ink) !important;
    margin-bottom: 1.1rem;
}

.overview-content p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--c-muted) !important;
    -webkit-text-fill-color: var(--c-muted) !important;
    margin-bottom: 1rem;
}

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

/* ==========================================================================
   SPEC SECTION HEADER — copy left, image right, vertically centered
   ========================================================================== */
.spec-header--split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
}

.spec-header--split .ug-eyebrow {
  justify-content: flex-start;
}

.spec-header__media img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

@media (max-width: 767px) {
  .spec-header--split {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .spec-header__media { order: -1; }
}
/* END SPEC SECTION HEADER */

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

.ov-pt-icon {
        padding: 5px;
    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(--c-red) !important;
    flex-shrink: 0;
    font-size: 15px;
}

.ov-pt-text strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--c-ink) !important;
    -webkit-text-fill-color: var(--c-ink) !important;
}

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

/* ═══════════════════════════════════════
   SECTION 3 — TECH SPEC GRID (WHITE → OLD STYLE + ICONS)
═══════════════════════════════════════ */
.spec-section {
    background: var(--c-white);
    padding: 6rem 0;
    border-top: 1px solid var(--c-line-l);
    border-bottom: 1px solid var(--c-line-l);
}


.spec-header h2 {
    /* font-size: clamp(28.8px, 3vw, 40px) !important; */
    font-weight: 700 !important;
    text-transform: uppercase;
    color: var(--c-ink) !important;
    /* -webkit-text-fill-color: var(--c-ink) !important; */
    margin-bottom: 1.1rem;
}

.spec-header p {
    font-size: 15px;
    color: var(--c-muted) !important;
    -webkit-text-fill-color: var(--c-muted) !important;
    margin-bottom: 1rem;
}

/* old-style 4-column card grid */
.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;
    transition: background .2s;
    position: relative;
}

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

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

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

.spec-icon {
        padding: 5px;
    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(--c-red) !important;
    font-size: 17.6px;
    flex-shrink: 0;
}

.spec-label {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--c-muted) !important;
    -webkit-text-fill-color: var(--c-muted) !important;
    line-height: 1.3;
}

.spec-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--c-ink) !important;
    -webkit-text-fill-color: var(--c-ink) !important;
    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 !important;
    -webkit-text-fill-color: #166534 !important;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    padding: .15rem .5rem;
    border-radius: 3px;
}

/* ═══════════════════════════════════════
   SECTION 4 — FEATURES GRID (DARK)
═══════════════════════════════════════ */
.features-section {
    background: var(--c-black);
    padding: 6rem 0;
}

.features-header {
    margin-bottom: 1rem
}

.features-header h2 {
    font-weight: 700 !important;
    text-transform: uppercase;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    margin: .6rem 0 .8rem;
}

.features-header p {
    font-size: 15px;
    color: rgba(255, 255, 255, .45) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, .45) !important;
    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;
    transition: background .2s;
    position: relative;
}

.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(--c-red);
    opacity: 0;
    transition: opacity .2s;
}

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

.feat-icon {
    padding: 5px;
    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(--c-red) !important;
    font-size: 20px;
    margin-bottom: 1.1rem;
}
.Matte-Paint-Alternative{
    height: 100%;
    align-content: center;
}

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

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

/* ═══════════════════════════════════════
   SECTION 5 — WHY ULTRAGUARD (WHITE)
═══════════════════════════════════════ */
.why-section {
    background: var(--c-white);
    padding: 6rem 0;
}

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

.why-grid h2{
    font-size: clamp(28.8px, 3vw, 40px) !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    margin: .6rem 0 .8rem;
}

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

.why-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .1);
    display: block;
}

.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-content h2 {
    font-size: clamp(28.8px, 3vw, 40px) !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    line-height: 1.05;
    color: var(--c-ink) !important;
    -webkit-text-fill-color: var(--c-ink) !important;
    margin: .6rem 0 1.1rem;
}

.why-content>p {
    font-size: 15.68px;
    line-height: 1.75;
    color: var(--c-muted) !important;
    -webkit-text-fill-color: var(--c-muted) !important;
    margin-bottom: 2rem;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.why-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding-bottom: 0px;
}

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

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

.why-item-body strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--c-ink) !important;
    -webkit-text-fill-color: var(--c-ink) !important;
    margin-bottom: .2rem;
}

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

/* ═══════════════════════════════════════
   SECTION 6 — APPLICATIONS + WARRANTY (OFF-WHITE)
═══════════════════════════════════════ */
.apply-section {
    background: black;
    padding: 5.5rem 0;
    border-top: 1px solid var(--c-line-l);
    border-bottom: 1px solid var(--c-line-l);
}

.apply-section h2 {
    /* font-size: clamp(27.2px, 2.8vw, 36.8px) !important; */
    font-weight: 700 !important;
    text-transform: uppercase;
    color: white !important;
    margin: .5rem 0 .8rem;
}

.apply-section>.container-xl>p {
    color: var(--c-muted) !important;
    -webkit-text-fill-color: var(--c-muted) !important;
    font-size: 15.52px;
    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(--c-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 {
    padding: 5px;
    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(--c-red) !important;
    font-size: 24px;
    margin: 0 auto 1rem;
}

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

.apply-card p {
    font-size: 15px;
    line-height: 1.55;
    color: var(--c-muted) !important;
    -webkit-text-fill-color: var(--c-muted) !important;
    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: 90px;
    height: 90px;
    background: var(--c-red);
    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;
}

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

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

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

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

/* ═══════════════════════════════════════
   SECTION 7 — CTA BAND (RED)
═══════════════════════════════════════ */
.cta-band {
    background: var(--c-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 h2 {
    font-size: 30px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    margin: 0 0 .3rem;
    line-height: 1.05;
}

@media(max-width:768px){
    .cta-band h2 {
    font-size: 25px !important;
    }
}

.cta-band p {
    font-size: 15px;
    color: rgba(255, 255, 255, .78) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, .78) !important;
    margin: 0;
    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(--c-red) !important;
    -webkit-text-fill-color: var(--c-red) !important;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    padding: .82rem 1.8rem;
    border-radius: 4px;
    transition: .2s ease;
    text-decoration: none;
}

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

.btn-ghost-white {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, .42);
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    font-size: 15px;
    font-weight: 700;
    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);
}

/* =====================================================
   PAGE: Sunroof Protection Film (sunroof-ppf)
===================================================== */
.product-tabs { display:flex; justify-content:center; gap:11px; flex-wrap:wrap; margin-bottom:45px; }
.product-tab { background:#F7F8F9; border:1px solid #E4E7EB; color:#6B7280; font-family:'Barlow',sans-serif; font-weight:700; font-size:15px: text-transform:uppercase; padding:13px 26px; border-radius:30px; cursor:pointer; transition:all .2s ease; }
.product-tab.active, .product-tab:hover { background:#D91C1C; border-color:#D91C1C; color:#fff !important; -webkit-text-fill-color:#fff !important; }
.spec-panel { display:none; }
.spec-panel.active { display:block; }
.spec-badge-row { display:flex; justify-content:center; gap:40px; flex-wrap:wrap; margin:40px 0; }
.spec-badge { text-align:center; max-width:150px; }
.spec-badge-icon { width:56px; height:56px; border-radius:50%; background:#D91C1C; display:flex; align-items:center; justify-content:center; color:#fff !important; font-size:22px; margin:0 auto 11px; }
.spec-badge strong { display:block; font-size:15px; font-weight:800; text-transform:uppercase; color:#111317 !important; -webkit-text-fill-color:#111317 !important; }
.spec-icon-strip { display:flex; justify-content:center; gap:32px; flex-wrap:wrap; margin-top:40px; padding-top:40px; border-top:1px solid #E4E7EB; }
.spec-icon-strip > div { text-align:center; width:110px; }
.spec-icon-strip i { font-size:22px; color:#D91C1C; }
.spec-icon-strip span { display:block; font-size:15px; font-weight:700; color:#111317; margin-top:8px; line-height:1.3; }
.spec-panel-desc { font-size:16px; color:#6B7280; line-height:1.7; max-width:75ch; margin:0 auto 40px; text-align:center; }
.sunroof-layer-row { display:flex; align-items:center; gap:18px; background:#111317; border:1px solid #2C3238; border-left:4px solid #D91C1C; border-radius:6px; padding:14px 21px; }
.sunroof-layer-row.is-highlight { background:rgba(217,28,28,.1); border-color:#D91C1C; }
.sunroof-layer-num { font-family:'Barlow',sans-serif; font-weight:900; color:#D91C1C; font-size:15px; flex-shrink:0; }
.sunroof-layer-title { display:block; color:#fff; font-size:15px; font-weight:800; text-transform:uppercase; }
.sunroof-layer-row.is-highlight .sunroof-layer-title { color:#D91C1C; }
.sunroof-layer-sub { color:rgba(255,255,255,.5); font-size:15px; }
.sunroof-layer-row.is-highlight .sunroof-layer-sub { color:rgba(255,255,255,.65); }
.sunroof-spotlight-desc { color:rgba(255,255,255,.5); font-size:16px; line-height:1.8; margin-top:16px; }
/* END PAGE: Sunroof Protection Film */

/* =====================================================
   PAGE: VISION Headlight PPF (headlight-ppf)
===================================================== */
.variant-row { display:flex; justify-content:center; gap:26px; flex-wrap:wrap; margin-bottom:48px; }
.variant-card { background:#F7F8F9; border:1px solid #E4E7EB; border-radius:10px; padding:21px; width:230px; text-align:center; }
.variant-card__code { font-family:'Barlow',sans-serif; font-weight:800; font-size:15px; color:#111317; text-transform:uppercase; margin-bottom:14px; }
.variant-card__code span { color:#D91C1C; }
.variant-photo { width:100%; height:90px; border-radius:6px; overflow:hidden; border:1px solid #E4E7EB; margin-bottom:0; }
.variant-photo img { width:100%; height:100%; object-fit:cover; display:block; }
.variant-tube { width:62px; height:130px; border-radius:8px; margin:0 auto 16px; border:1px solid #E4E7EB; position:relative; }
.variant-tube::before { content:''; position:absolute; top:-8px; left:50%; transform:translateX(-50%); width:20px; height:14px; background:#E4E7EB; border-radius:3px 3px 0 0; }
/* END PAGE: VISION Headlight PPF */

/* =====================================================
   PAGE: Clear PPF Collection (clear-ppf)
===================================================== */
.cl-accent { color: #D91C1C !important; -webkit-text-fill-color: #D91C1C !important; }

/* flagship ribbon badge on the tier card */
.cl-tier--flagship { border: 1px solid #D91C1C; position: relative; }
.cl-tier__ribbon { position: absolute; top: 14px; left: 14px; z-index: 2; background: #D91C1C; color: #fff !important; -webkit-text-fill-color: #fff !important; font-size: 15px; font-weight: 800; text-transform: uppercase; padding: 4px 12px; border-radius: 20px; }

/* dark comparison table section — light theme override */
.features-section--light {
  background: #fff;
}

.features-section--light .features-header h2 {
  color: #16181d !important;
  -webkit-text-fill-color: #16181d !important;
}

.features-section--light .ug-eyebrow--light {
  color: var(--cp-red, #e02020) !important;
}

/* light comparison table */
.cl-table-wrap { overflow-x: auto; }

.cl-compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #E4E7EA;
  border-radius: 10px;
  overflow: hidden;
  min-width: 640px;
  background: #fff;
}

.cl-compare-table th,
.cl-compare-table td {
  padding: 16px 20px;
  font-size: 16px;
  text-align: center;
  border-bottom: 1px solid #E4E7EA;
  color: #4A5158 !important;
  -webkit-text-fill-color: #4A5158 !important;
}

.cl-compare-table th:first-child,
.cl-compare-table td:first-child {
  text-align: left;
  font-weight: 700;
  color: #16181d !important;
  -webkit-text-fill-color: #16181d !important;
}

.cl-compare-table thead th {
  background: #F5F6F7;
  text-transform: uppercase;
  font-size: 17px;
  color: #16181d !important;
  -webkit-text-fill-color: #16181d !important;
}

.cl-compare-table tbody tr:last-child td { border-bottom: none; }
.cl-compare-table tbody tr:hover { background: rgba(217,28,28,.04); }
/* END PAGE: Clear PPF Collection */


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

.faq-header {
    margin: 0 auto 2rem;
    text-align: start;
}
.faq-header .eyebrow {
    color: #e02020;
    font-weight: 700;
    font-size: 17px;
}

.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 !important;
    font-size: 17px;
}
.faq-header .faq-heading{
    text-transform: uppercase;
    margin: .7rem 0 .9rem;
      color: black !important;
          font-weight: 700;
}
.faq-header  p{
    color: black !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;
    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;
    }
}