/* ══════════════════════════════════════════
   DESIGN TOKENS
══════════════════════════════════════════ */ :root {
    --primary: #f48e30;
    --primary-dark: #d97820;
    --dark: #040e1c;
    --black: #000;
    --gray-light: #e5e7eb;
    --section-py: 80px;
    --overlay-grad: linear-gradient(to top, rgba(0, 0, 0, .80) 0%, rgba(0, 0, 0, .10) 55%, transparent 100%);
    --explore-gap: 16px;
    --explore-left: 10%;
    --explore-height: 78vh;
    --explore-min-h: 480px;
}
/* ══════════════════════════════════════════
   RESET & BASE
══════════════════════════════════════════ */
*, *::before, *::after {
    box-sizing: border-box;
}
body {
    font-family: "DM Sans", sans-serif;
    color: var(--dark);
    overflow-x: hidden;
    background: #fff;
}
a {
    text-decoration: none;
    color: inherit;
}
section {
    padding: var(--section-py) 0;
}
img {
    display: block;
    max-width: 100%;
}
/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.navbar {
    background: #fff;
    border-bottom: 1px solid var(--gray-light);
    padding: .75rem 0;
}
.navbar-brand img {
    height: 30px;
    width: auto;
}
.nav-link {
    font-size: 1.0rem;
    font-weight: 500;
    color: var(--dark);
    letter-spacing: .02em;
    padding: .6rem .95rem !important;
    transition: color .2s;
    text-transform: uppercase;
}
.nav-link:hover, .nav-link.active {
    color: var(--primary) !important;
}
.dropdown-item {
    font-size: .87rem;
    color: var(--dark);
    padding: .55rem 1.25rem;
}
/* OWN iCAUR dropdown */
.own-dropdown {
    min-width: 240px;
    padding: .5rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
    margin-top: .5rem;
}
.own-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .75rem 1rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    color: #111;
    text-transform: uppercase;
    letter-spacing: .02em;
    transition: background .2s ease, color .2s ease;
}
.own-dropdown .dropdown-item i {
    color: var(--primary);
    font-size: 1.1rem;
}
.own-dropdown .dropdown-item:hover,
.own-dropdown .dropdown-item:focus {
    background: var(--primary);
    color: #fff;
}
.own-dropdown .dropdown-item:hover i,
.own-dropdown .dropdown-item:focus i {
    color: #fff;
}
@media (max-width: 991px) {
    .own-dropdown {
        min-width: 100%;
        border: none;
        box-shadow: none;
        padding: .25rem 0;
        margin-top: .25rem;
        background: transparent;
    }
    .own-dropdown .dropdown-item {
        padding: .6rem 0;
    }
}
.dropdown-item:hover {
    background: var(--gray-light);
    color: var(--primary);
}
.dropdown-menu {
    border: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
    border-radius: 4px;
}
.btn-nav-cta {
    background: var(--primary);
    color: #fff !important;
    font-size: 1rem;
    font-weight: 500;
    padding: .5rem 1.4rem;
    border-radius: 3px;
    letter-spacing: .06em;
    border: 2px solid var(--primary);
    transition: background .2s, color .2s;
    text-transform: uppercase;
}
.btn-nav-cta:hover {
    background: transparent;
    color: var(--primary) !important;
}
/* ── Sticky navbar states ── */
#mainNavbar {
    background: rgba(255, 255, 255, .7);
    border-bottom: 1px solid transparent;
    box-shadow: none;
    padding-top: .85rem;
    padding-bottom: .85rem;
    backdrop-filter: blur(10px);
    transition: background .35s, box-shadow .35s, border-color .35s, padding .35s;
}
#mainNavbar.navbar--scrolled, .fixed-navbar.navbar--scrolled {
    background: #fff;
    border-bottom: 1px solid var(--gray-light);
    box-shadow: 0 4px 24px rgba(0, 0, 0, .09);
    padding-top: .5rem;
    padding-bottom: .5rem;
}
/* ── Fixed navbar ── */
.fixed-navbar {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1050;
    background: #fff;
    border-bottom: 1px solid transparent;
    box-shadow: none;
    padding-top: .85rem;
    padding-bottom: .85rem;
    transition: background .35s, box-shadow .35s, border-color .35s, padding .35s;
}
.fixed-navbar .navbar-brand img {
    height: 30px;
    transition: height .35s;
}
.fixed-navbar.navbar--scrolled .navbar-brand img {
    height: 24px !important;
}
@media (max-width: 991px) {
    .fixed-navbar .navbar-collapse {
        background: #fff;
        padding: 1rem 1rem 1.25rem;
        margin-top: .5rem;
        border-top: 1px solid var(--gray-light);
        /* Cap to viewport so the menu (incl. expanded Models mega) scrolls
           internally instead of overflowing off-screen. */
        max-height: calc(100vh - 65px);
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }
    .fixed-navbar .navbar-collapse .btn-nav-cta {
        display: block;
        width: 100%;
        margin-top: 1rem;
        text-align: center;
    }
    body {
        padding-top: 65px;
    }
}
/* ══════════════════════════════════════════
   CTA BUTTONS
══════════════════════════════════════════ */
.btn-cta-primary {
    background: var(--primary);
    color: #fff;
    font-weight: 500;
    font-size: 1.5rem;
    padding: .7rem 2.1rem;
    border: 2px solid var(--primary);
    border-radius: 3px;
    transition: background .2s, color .2s;
}
.btn-cta-primary:hover {
    background: transparent;
    color: var(--primary);
}
.btn-cta-ghost {
    background: transparent;
    color: #fff;
    font-weight: 500;
    font-size: 1.5rem;
    padding: .7rem 2.1rem;
    border: 2px solid rgba(255, 255, 255, .5);
    border-radius: 3px;
    transition: border-color .2s, background .2s;
}
.btn-cta-ghost:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .08);
    color: #fff;
}
.cta-nonbtn {
    background: var(--primary);
    color: #fff;
    font-weight: 500;
    font-size: 1.5rem;
    padding: .7rem 2.1rem;
    border: 2px solid var(--primary);
    border-radius: 3px;
}
@media (max-width: 575px) {
    .btn-cta-primary, .btn-cta-ghost {
        font-size: 1rem;
    }
}
/* ══════════════════════════════════════════
   HERO CAROUSEL (Home page)
══════════════════════════════════════════ */
#heroCarousel .carousel-item {
    height: 92vh;
    min-height: 520px;
    position: relative;
}
#heroCarousel .slide-link {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
}
#heroCarousel .slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(to top, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .25) 40%, transparent 70%);
}
.hero-bottom {
    position: absolute;
    bottom: 5rem;
    left: 0;
    right: 0;
    z-index: 3;
    pointer-events: none;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 2.5rem 2.5rem;
    gap: 1rem;
}
.hero-model-brand {
    color: #fff;
}
.hero-model-logo {
    height: 30px;
    width: auto;
    margin-bottom: .6rem;
    filter: brightness(0) invert(1);
}
.hero-tagline {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, .65);
    margin: 0;
    letter-spacing: .06em;
}
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-top: 1.25rem;
    font-size: 1.1rem;
    padding: .7rem 1.6rem;
    pointer-events: auto;
    position: relative;
    z-index: 4;
}
.hero-cta i {
    transition: transform .3s ease;
}
.hero-cta:hover i {
    transform: translateX(4px);
}
.hero-specs {
    display: flex;
    align-items: flex-end;
}
.spec-col {
    text-align: center;
    padding: .65rem 1.5rem;
    border-left: 1px solid rgba(255, 255, 255, .3);
    color: #fff;
}
.spec-col:first-child {
    border-left: none;
}
.spec-col .spec-val {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
}
.spec-col .spec-unit {
    font-size: 2rem;
    color: #fff;
    font-weight: 400;
}
.spec-col .spec-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    opacity: .75;
    margin-top: .25rem;
}
/* Carousel controls */
.carousel-indicators {
    bottom: 1.2rem;
    margin-bottom: 0;
}
.carousel-indicators [data-bs-target] {
    width: 32px;
    height: 3px;
    border-radius: 0;
    background: rgba(255, 255, 255, .4);
    border: none;
    margin: 0 4px;
    transition: background .3s, width .3s;
}
.carousel-indicators .active {
    background: var(--primary);
    width: 52px;
}
.carousel-control-prev, .carousel-control-next {
    width: 54px;
    z-index: 5;
    opacity: .8;
}
.carousel-control-prev:hover, .carousel-control-next:hover {
    opacity: 1;
}
@media (max-width: 767px) {
    #heroCarousel .carousel-item {
        height: 82vh;
    }
    .hero-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 1.25rem 1.5rem;
        gap: .75rem;
        top: 5rem;
        bottom: 10%;
    }
    .hero-specs {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 0;
    }
    .spec-col {
        display: block;
        padding: .6rem 0;
        border-left: none;
        border-top: none;
        width: 100%;
        text-align: left;
    }
    .spec-col:first-child, .spec-col:last-child {
        border: none;
    }
    .spec-col .spec-val, .spec-col .spec-unit {
        font-size: 1.1rem;
    }
    .spec-col .spec-label {
        font-size: .7rem;
        opacity: .75;
        margin-top: 0;
        text-transform: none !important;
    }
    .hero-model-logo {
        height: 25px;
    }
    .hero-tagline {
        font-size: .88rem;
    }
    .hero-cta {
        margin-top: .85rem;
        font-size: .9rem;
        padding: .55rem 1.1rem;
    }
}
/* ══════════════════════════════════════════
   MODEL HERO
══════════════════════════════════════════ */
.model-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 560px;
    overflow: hidden;
    background: #000;
    padding: 0;
}
.model-hero picture, .model-hero picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.model-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, .80) 0%, rgba(0, 0, 0, .20) 45%, transparent 75%);
}
.model-hero-content {
    position: absolute;
    bottom: 5rem;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 0 2.5rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}
.model-hero-logo {
    height: 42px;
    width: auto;
    filter: brightness(0) invert(1);
}
.model-hero-tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, .85);
    letter-spacing: .14em;
    text-transform: uppercase;
    margin: 0;
}
.model-hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
@media (max-width: 767px) {
    .model-hero {
        height: 70vh;
    }
    .model-hero-content {
        padding: 0 1.25rem 2rem;
    }
    .model-hero-logo {
        height: 30px;
    }
}
/* ══════════════════════════════════════════
   SCROLL INDICATOR
══════════════════════════════════════════ */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    cursor: pointer;
    text-decoration: none;
}
.scroll-arrow {
    display: block;
    width: 18px;
    height: 18px;
    border-right: 3px solid rgba(255, 255, 255, .9);
    border-bottom: 3px solid rgba(255, 255, 255, .9);
    transform: rotate(45deg);
    animation: scrollBounce 1.4s ease-in-out infinite;
}
.scroll-arrow:nth-child(1) {
    animation-delay: 0s;
    opacity: .3;
}
.scroll-arrow:nth-child(2) {
    animation-delay: .2s;
    opacity: .6;
}
.scroll-arrow:nth-child(3) {
    animation-delay: .4s;
    opacity: 1;
}
@keyframes scrollBounce {
    0%, 100% {
        transform: rotate(45deg) translate(-4px, -4px);
        opacity: .2;
    }
    50% {
        transform: rotate(45deg) translate(0, 0);
        opacity: 1;
    }
}
@media (max-height: 500px) {
    .scroll-indicator {
        display: none;
    }
}
/* ══════════════════════════════════════════
   KEY SPECS STRIP
══════════════════════════════════════════ */
.specs-strip {
    background: var(--dark);
    color: #fff;
    padding: 0;
}
.specs-strip-inner {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
}
.spec-item {
    flex: 1 1 0;
    min-width: 140px;
    text-align: center;
    padding: 2rem 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, .12);
    transition: background .2s;
}
.spec-item:last-child {
    border-right: none;
}
.spec-item:hover {
    background: rgba(255, 255, 255, .05);
}
.spec-item .s-val {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    display: block;
}
.spec-item .s-unit {
    font-size: .85rem;
    color: rgba(255, 255, 255, .7);
    font-weight: 400;
}
.spec-item .s-label {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: rgba(255, 255, 255, .55);
    margin-top: .4rem;
    display: block;
}
@media (max-width: 575px) {
    .spec-item {
        flex: 1 1 45%;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }
    .spec-item .s-val {
        font-size: 1.6rem;
    }
}
/* ══════════════════════════════════════════
   FULL-WIDTH VIDEO / IMAGE SECTIONS
══════════════════════════════════════════ */
/* Shared wrap pattern */
.fullwidth-video-section {
    padding: 0;
    margin: 0;
    width: 100%;
    display: block;
    background: #000;
}
.brand-image-section, .brand-video-section {
    padding: 0;
}
.fullwidth-video-wrap, .brand-image-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.fullwidth-video-wrap {
    height: 100vh;
    min-height: 400px;
}
.brand-image-wrap {
    height: 100vh;
    min-height: 500px;
}
.brand-video-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16/6;
    overflow: hidden;
    background: #000;
}
/* Media layers */
.fullwidth-video-fallback, .brand-image-wrap > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    z-index: 0;
}
.fullwidth-video-wrap video, .brand-video-wrap video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    z-index: 1;
}
/* Overlays */
.brand-image-overlay, .brand-video-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(120deg, rgba(0, 0, 0, .65) 0%, rgba(0, 0, 0, .20) 65%, transparent 100%);
    display: flex;
    align-items: center;
}
.brand-image-text, .brand-video-text {
    color: #fff;
    padding: 3rem 4rem;
    max-width: 640px;
    position: relative;
    z-index: 3;
}
.brand-image-text .eyebrow, .brand-video-text .eyebrow {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: .7rem;
}
.brand-image-text h2, .brand-video-text h2 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1rem;
}
.brand-image-text p {
    font-size: 1.6rem;
    opacity: .85;
    margin: 0;
    line-height: 1.8;
    letter-spacing: .02em;
}
.brand-video-text p {
    font-size: 1.05rem;
    opacity: .85;
    margin: 0;
    line-height: 1.7;
}
@media (max-width: 767px) {
    .brand-image-wrap {
        height: 60vh;
        min-height: 360px;
    }
    .brand-video-wrap {
        aspect-ratio: 4/3;
    }
    .brand-image-text, .brand-video-text {
        padding: 2rem 1.75rem;
        max-width: 100%;
    }
    .brand-image-text h2 {
        font-size: 1.8rem !important;
    }
    .brand-image-text p {
        font-size: 1.05rem;
        line-height: 1.55;
    }
}
@media (max-width: 991px) {
    .fullwidth-video-wrap {
        height: 70vh;
    }
}
@media (max-width: 575px) {
    .fullwidth-video-wrap {
        height: 50vh;
    }
    .brand-image-wrap {
        height: 50vh;
        min-height: 280px;
    }
    .brand-image-text, .brand-video-text {
        padding: 1.75rem 1.25rem;
    }
    .brand-image-text h2 {
        font-size: 1.5rem;
    }
    .brand-image-text p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    .brand-video-text h2 {
        font-size: 1.65rem;
    }
}
/* ══════════════════════════════════════════
   TWO-COLUMN VIDEO
══════════════════════════════════════════ */
.video-section {
    background: var(--black);
}
.video-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #000;
    cursor: pointer;
}
.video-poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 1;
    transition: opacity .4s ease;
}
.video-card video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 2;
    opacity: 0;
    transition: opacity .4s ease;
}
.video-card:hover video {
    opacity: 1;
}
.video-card:hover .video-poster {
    opacity: 0;
}
.video-card::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .45) 0%, rgba(0, 0, 0, .10) 40%, rgba(0, 0, 0, .10) 60%, rgba(0, 0, 0, .45) 100%);
}
.video-top-bar {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    padding: 1.5rem;
}
.video-top-bar img, .video-top-bar a {
    pointer-events: auto;
}
.video-model-logo-img {
    height: 48px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    display: block;
    transition: transform .3s;
}
.video-card:hover .video-model-logo-img {
    transform: scale(1.05);
}
.video-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(255, 255, 255, .12);
    border: 1.5px solid rgba(255, 255, 255, .85);
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    padding: .5rem 1.4rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
    border-radius: 2px;
    text-decoration: none;
    transition: background .25s, border-color .25s, transform .25s;
}
.video-cta-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}
@media (max-width: 575px) {
    .video-model-logo-img {
        height: 36px;
    }
    .video-cta-btn {
        font-size: .76rem;
        padding: .42rem 1.1rem;
    }
}
@media (max-width: 480px) {
    .video-card {
        aspect-ratio: 3/4;
    }
}
@media (max-width: 767px) {
    .video-model-logo-img {
        height: 20px;
    }
}
/* ══════════════════════════════════════════
   INNOVATION SECTION
══════════════════════════════════════════ */
.innovation-section {
    background: #fff;
    padding: var(--section-py) 0;
}
.section-eyebrow {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: .4rem;
}
.section-heading {
    font-size: 3rem;
    font-weight: bold;
    color: var(--dark);
    line-height: 1.2;
}
.inno-grid {
    display: flex;
    gap: 12px;
}
.inno-col-left {
    flex: 2;
}
.inno-col-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.inno-card {
    position: relative;
    overflow: hidden;
    display: block;
    background: #000;
}
.inno-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s;
}
.inno-card:hover img {
    transform: scale(1.04);
}
.inno-card-overlay {
    position: absolute;
    inset: 0;
    background: var(--overlay-grad);
}
.inno-card-text {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 1.4rem 1.6rem;
    color: #fff;
}
.inno-card-text h3 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: .3rem;
    line-height: 1.3;
}
.inno-card-text p {
    font-size: .84rem;
    opacity: .85;
    margin: 0;
    line-height: 1.5;
}
.inno-tall {
    height: 620px;
}
.inno-half {
    height: 304px;
}
@media (max-width: 991px) {
    .inno-grid {
        flex-direction: column;
    }
    .inno-tall {
        height: 380px;
    }
    .inno-half {
        height: 220px;
    }
}
/* ══════════════════════════════════════════
   CONTACT CTA SECTION
══════════════════════════════════════════ */
.contact-section {
    position: relative;
    color: #fff;
    text-align: center;
    padding: 10rem 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.contact-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(0, 0, 0, .75) 0%, rgba(42, 42, 42, .65) 100%);
}
.contact-section .eyebrow {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: .6rem;
}
.contact-section h2 {
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: .02em;
}
.contact-section p {
    font-size: 1.1rem;
    opacity: .80;
    max-width: 520px;
    margin: 0 auto 2.2rem;
    line-height: 1.8;
}
@media (max-width: 767px) {
    .contact-section {
        background-attachment: scroll;
    }
    .contact-section h2 {
        font-size: 1.75rem;
    }
}
@media (max-width: 575px) {
    .contact-section h2 {
        font-size: 1.5rem;
    }
}
/* ══════════════════════════════════════════
   PR / NEWS
══════════════════════════════════════════ */
.pr-section {
    background: #fff;
    padding: var(--section-py) 0;
}
.pr-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}
.pr-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}
.pr-pagination {
    display: flex;
    align-items: center;
    gap: .3rem;
}
.pg-btn, .pg-arrow {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--gray-light);
    border-radius: 3px;
    cursor: pointer;
    padding: 0;
    transition: .2s;
}
.pg-btn {
    background: #fff;
    color: var(--dark);
    font-size: .85rem;
    font-weight: 600;
}
.pg-arrow {
    background: #fff;
    color: var(--dark);
    font-size: 1rem;
}
.pg-btn:hover, .pg-arrow:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.pg-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}
.news-card {
    border: none;
    border-radius: 0;
}
.news-img-wrap {
    display: block;
    overflow: hidden;
    aspect-ratio: 3/2;
    background: var(--gray-light);
}
.news-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}
.news-card:hover .news-img-wrap img {
    transform: scale(1.04);
}
.news-date {
    font-size: .9rem;
    color: #999;
    text-transform: uppercase;
    margin: .85rem 0 .35rem;
}
.news-title {
    display: block;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--dark);
    line-height: 1.45;
    transition: color .2s;
}
.news-title:hover {
    color: var(--primary);
}
@media (max-width: 767px) {
    .pr-header h2 {
        font-size: 2rem;
    }
}
/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
    background: #fff;
    border-top: 1px solid var(--gray-light);
}
.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.25rem 0;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1.6rem;
}
.footer-nav a {
    font-size: 1.1rem;
    color: #555;
    font-weight: 500;
    transition: color .2s;
}
.footer-nav a:hover {
    color: var(--primary);
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.footer-logo img {
    height: 25px;
    width: auto;
}
.footer-am-logo {
    display: inline-flex;
    align-items: center;
    padding-left: 1rem;
    border-left: 1px solid var(--gray-light);
}
.footer-am-logo img {
    height: 32px;
    width: auto;
}
/* Asian Motors logo in navbar (right of CONTACT US) */
.navbar-am-logo {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    flex-shrink: 0;
}
.navbar-am-logo img {
    height: 30px;
    width: auto;
    transition: height .35s;
}
.fixed-navbar.navbar--scrolled .navbar-am-logo img {
    height: 26px;
}
/* Keep everything on a single line at lg+ so the AM logo doesn't push the
   nav links onto a second row when the navbar isn't in its scrolled state. */
@media (min-width: 992px) {
    .fixed-navbar .navbar-collapse {
        flex-wrap: nowrap;
    }
    .fixed-navbar .navbar-nav { flex-wrap: nowrap; }
    .fixed-navbar .nav-link {
        padding: .6rem .7rem !important;
        white-space: nowrap;
    }
    .fixed-navbar .btn-nav-cta {
        padding: .45rem 1rem;
        white-space: nowrap;
    }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .fixed-navbar .nav-link { font-size: .9rem; }
    .navbar-am-logo img { height: 26px; }
}
@media (max-width: 991px) {
    .fixed-navbar .navbar-collapse .navbar-am-logo {
        display: flex;
        justify-content: center;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--gray-light);
    }
    .fixed-navbar .navbar-collapse .navbar-am-logo img {
        height: 32px;
    }
}
.footer-divider {
    border-color: var(--gray-light);
    margin: 0;
}
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    flex-wrap: wrap;
    gap: .75rem;
}
.footer-policy {
    display: flex;
    flex-wrap: wrap;
    gap: 1.3rem;
    align-items: center;
}
.footer-policy a {
    font-size: 1rem;
    color: #888;
    transition: color .2s;
}
.footer-policy a:hover {
    color: var(--primary);
}
.footer-copy {
    font-size: .8rem;
    color: #bbb;
}
.footer-social {
    display: flex;
    gap: .6rem;
}
.footer-social a {
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--gray-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 1rem;
    transition: background .2s, border-color .2s, color .2s;
}
.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}
/* ══════════════════════════════════════════
   MODEL PAGE — SHARED
══════════════════════════════════════════ */
.model-section {
    padding: 80px 0;
}
.model-eyebrow {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: .5rem;
}
.model-section-title {
    font-size: 3rem !important;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    color: var(--dark) !important;
    text-align: left !important;
}
.model-section-lead {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}
.lead {
    font-size: 2rem;
    font-weight: 500;
    color: #555;
}
.overview-section {
    background: var(--black);
}
.overview-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}
.overview-img-wrap img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    transition: transform .5s;
}
.overview-img-wrap:hover img {
    transform: scale(1.03);
}
/* Gallery carousel */
.gallery-section {
    background: var(--gray-light);
}
#modelGallery .carousel-item {
    height: 55vh;
    min-height: 340px;
}
#modelGallery .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#modelGallery .carousel-indicators [data-bs-target] {
    width: 28px;
    height: 3px;
    border-radius: 0;
    background: rgba(0, 0, 0, .3);
    border: none;
}
#modelGallery .carousel-indicators .active {
    background: var(--primary);
    width: 44px;
}
.gallery-control-icon {
    background: rgba(0, 0, 0, .35);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Feature cards */
.features-section {
    background: #fff;
}
.feature-card {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    background: #000;
}
.feature-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    transition: transform .5s;
    opacity: .88;
}
.feature-card:hover img {
    transform: scale(1.04);
    opacity: 1;
}
.feature-card-body {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .78) 0%, transparent 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    color: #fff;
}
.feature-card-icon {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: .5rem;
}
.feature-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: .3rem;
    letter-spacing: .03em;
}
.feature-card-text {
    font-size: .84rem;
    opacity: .82;
    line-height: 1.55;
    margin: 0;
}
/* Performance section */
.performance-section {
    background: var(--dark);
    color: #fff;
    padding: 0;
}
.perf-stat {
    text-align: center;
    padding: 2rem 1rem;
    border-right: 1px solid rgba(255, 255, 255, .1);
}
.perf-stat:last-child {
    border-right: none;
}
.perf-stat .p-num {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}
.perf-stat .p-unit {
    font-size: 1rem;
    font-weight: 400;
}
.perf-stat .p-label {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    opacity: .55;
    margin-top: .5rem;
}
.perf-visual {
    width: 100%;
    aspect-ratio: 16/7;
    object-fit: cover;
    display: block;
}
@media (max-width: 575px) {
    .perf-stat {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }
    .perf-stat .p-num {
        font-size: 2.2rem;
    }
}
/* Tech cards */
.tech-section {
    background: #f9f9f9;
}
.tech-card {
    background: #fff;
    border: 1px solid var(--gray-light);
    border-radius: 2px;
    padding: 2rem 1.75rem;
    height: 100%;
    transition: box-shadow .25s, transform .25s;
}
.tech-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, .08);
    transform: translateY(-3px);
}
.tech-card-icon {
    width: 52px;
    height: 52px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
}
.tech-card h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .5rem;
}
.tech-card p {
    font-size: .88rem;
    color: #666;
    line-height: 1.65;
    margin: 0;
}
/* Model banner */
.model-banner {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 360px;
    overflow: hidden;
}
.model-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.model-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, .6) 0%, rgba(0, 0, 0, .15) 70%, transparent 100%);
    display: flex;
    align-items: center;
}
.model-banner-text {
    color: #fff;
    padding: 2.5rem 3.5rem;
    max-width: 580px;
}
.model-banner-text h2 {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: .85rem;
}
.model-banner-text p {
    font-size: 1rem;
    opacity: .85;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}
@media (max-width: 575px) {
    .model-banner {
        height: 50vh;
    }
    .model-banner-text {
        padding: 1.5rem;
    }
    .model-banner-text h2 {
        font-size: 1.55rem;
    }
}
/* Model CTA */
.model-cta-section {
    position: relative;
    overflow: hidden;
}
.model-cta-section img.cta-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.model-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .68);
    z-index: 1;
}
.model-cta-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    padding: 100px 1.5rem;
}
.model-cta-content h2 {
    font-size: 3.8rem;
    font-weight: 500;
    padding-bottom: 1rem;
}
.model-cta-content p {
    font-size: 1.6rem;
    max-width: 75%;
    margin: 0 auto 4rem;
    color: #d1d5db;
}
@media (max-width: 767px) {
    .model-cta-content p {
        font-size: 1rem;
        max-width: 100%;
    }
}
@media (max-width: 575px) {
    .model-cta-content {
        padding: 70px 1rem;
    }
    .model-cta-content h2 {
        font-size: 1.7rem;
    }
}
/* Technology overrides */
.technology h2.model-section-title {
    color: #fff !important;
    font-size: 5.5rem !important;
    text-align: center !important;
    font-weight: 500 !important;
}
h4.sub-title {
    color: var(--primary);
    text-align: center;
    font-size: 2.5rem;
}
.model-section h3 {
    color: #fff;
    font-size: 3rem;
    padding-bottom: 2rem;
}
.model-description h4.sub-title {
    color: #d1d5db;
    font-size: 2rem;
    max-width: 100%;
}
p.model-section-lead {
    color: #d1d5db;
    font-size: 1.5rem;
    line-height: 2.2rem;
}
/* Spec blocks */
.spec-value {
    color: var(--primary);
    font-size: 2.6rem;
}
.spec-block {
    background: #1a1a1a;
    padding: 1rem;
    width: 300px;
    border-radius: .5rem;
}
.spec-text {
    color: #9ca3af;
    font-size: 1.3rem;
}
.spec-blocks-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.spec-blocks-row::-webkit-scrollbar {
    display: none;
}
.spec-blocks-row .spec-block {
    flex: 1 0 auto;
    min-width: 120px;
}
@media (min-width: 768px) {
    .spec-blocks-row {
        flex-wrap: nowrap;
        justify-content: center;
        overflow-x: visible;
    }
    .spec-blocks-row .spec-block {
        flex: 1 1 0;
        min-width: 0;
    }
}
/* Performance blocks */
.container.perform-section {
    background: #1a1a1a;
    border-radius: 1rem;
    margin-top: 7rem;
    padding: 5rem;
}
.performance-block {
    flex: 0 0 30%;
    padding: 1rem 2rem;
    text-align: center;
    border-radius: 1rem;
    cursor: pointer;
    transition: transform .3s, box-shadow .3s, background .2s;
}
.performance-block:hover {
    background: rgba(244, 142, 48, .1);
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
}
.performance-block .spec-value {
    color: var(--primary);
    font-size: 5rem;
    font-weight: 500;
}
.performance-block .spec-value span {
    font-size: 3rem;
    padding-left: .5rem;
}
.performance-block .spec-title {
    color: #d1d5db;
    font-size: 1.5rem;
}
.performance-block .spec-text {
    color: #6b7280;
    font-size: 1.2rem;
}
.perform-section h2.model-section-title {
    font-size: 4rem;
}
/*section.overview-section.model-section.technology { padding: 1rem; }*/
@media (max-width: 767px) {
    .performance-block {
        flex: 0 0 auto;
        width: 100%;
        max-width: 280px;
    }
    .container.perform-section {
        padding: 2rem 1rem;
    }
    .performance-block .spec-value {
        font-size: 3rem;
    }
    .performance-block .spec-value span {
        font-size: 2rem;
    }
    .performance-block .spec-title {
        font-size: 1rem;
    }
    .performance-block .spec-text {
        font-size: .9rem;
    }
    .technology h2.model-section-title {
        font-size: 3rem !important;
    }
    h4.sub-title {
        font-size: 1.5rem;
    }
    .model-section h3 {
        font-size: 2rem;
    }
    p.model-section-lead {
        font-size: 1rem;
        line-height: 1.5rem;
    }
    .spec-value {
        font-size: 1.2rem;
    }
    .spec-block {
        width: 200px;
    }
    .spec-text {
        font-size: 1rem;
    }
}
@media (max-width: 575px) {
    :root {
        --section-py: 52px;
    }
    .model-section {
        padding: 52px 0;
    }
    .model-section-title {
        font-size: 1.55rem;
    }
    .section-heading {
        font-size: 1.6rem;
    }
    .lead {
        font-size: 1.5rem;
    }
}
/* ══════════════════════════════════════════
   MODEL DESCRIPTION
══════════════════════════════════════════ */
.model-description.bg-black {
    background: #000;
    padding: 10rem 0;
    color: #fff;
}
.model-description .model-section-title {
    color: #fff !important;
    margin-bottom: .75rem;
    text-align: center !important;
    font-weight: 500;
}
.model-description .sub-title {
    font-size: 1.05rem;
    font-weight: 400;
    color: rgba(255, 255, 255, .55);
    line-height: 1.7;
    max-width: 640px;
    margin: 0;
}
.model-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.mt-grid {
    margin-top: 3px;
}
.model-img-block {
    position: relative;
    overflow: hidden;
    background: #111;
    padding-bottom: 2rem;
    border-radius: 1rem;
}
.model-img-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .6s;
}
.model-img-block:hover img {
    transform: scale(1.04);
}
.model-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.75rem 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, .80) 0%, rgba(0, 0, 0, .30) 55%, transparent 100%);
    z-index: 2;
}
.model-img-title {
    font-size: 2.5rem;
    color: #fff;
    margin: 0 0 .3rem;
    letter-spacing: .04em;
}
.model-img-sub {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, .65);
    margin: 0;
    line-height: 1.5;
    padding-bottom: 1rem;
}
.model-spec-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}
.model-spec-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.5rem;
    background: #1a1a1a;
    border-radius: .5rem;
    transition: background .25s;
}
.model-spec-col:hover {
    background: rgba(255, 255, 255, .03);
}
.model-spec-val {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--primary);
    line-height: 1;
    margin-bottom: .5rem;
}
.model-spec-unit {
    font-size: 1.5rem;
    font-weight: 400;
    color: rgba(255, 255, 255, .5);
}
.model-spec-label {
    font-size: 1.2rem;
    font-weight: 500;
    color: #9ca3af;
    margin-bottom: .3rem;
}
@media (max-width: 991px) {
    .model-spec-row {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .model-img-grid {
        grid-template-columns: 1fr;
    }
    .model-img-block {
        aspect-ratio: 4/3;
    }
    .model-spec-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .model-spec-val {
        font-size: 1.5rem;
    }
    .model-description h4.sub-title {
        font-size: 1.5rem;
        line-height: 1.8rem;
    }
    .model-img-title {
        font-size: 1.5rem;
    }
    .model-img-sub {
        font-size: .9rem;
    }
}
@media (max-width: 480px) {
    .model-spec-row {
        grid-template-columns: 1fr 1fr;
    }
    .model-spec-col {
        padding: 1.25rem 1rem;
    }
}
/* ══════════════════════════════════════════
   SAFETY SECTION
══════════════════════════════════════════ */
.safety-section {
    background: #000;
    color: #fff;
    padding: var(--section-py) 0;
    overflow: hidden;
}
.safety-heading-block {
    max-width: 100%;
    margin-bottom: 4rem;
}
.safety-eyebrow {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: .6rem;
}
.safety-main-title {
    font-size: 5.2rem;
    font-weight: 500;
    color: #fff;
    text-align: center;
    margin-bottom: .6rem;
    letter-spacing: .03em;
}
.safety-sub-title {
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 1.2rem;
    letter-spacing: .04em;
}
.safety-description {
    font-size: 1.6rem;
    color: #d1d5db;
    margin: 0;
}
.safety-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}
.safety-img-block {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: #111;
    border-radius: .5rem;
}
.safety-img-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s;
}
.safety-img-block:hover img {
    transform: scale(1.04);
}
.safety-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.75rem 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .25) 55%, transparent 100%);
    z-index: 2;
}
.safety-img-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 .3rem;
    text-transform: uppercase;
}
.safety-img-sub {
    font-size: .8rem;
    color: rgba(255, 255, 255, .6);
    margin: 0;
    line-height: 1.5;
}
.safety-gap {
    height: 5rem;
    border-top: 1px solid rgba(255, 255, 255, .07);
    margin-top: 5rem;
}
.safety-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}
.safety-feature-col {
    display: flex;
    align-items: flex-start;
    gap: 1.4rem;
    padding: 2rem;
    background: #1a1a1a;
    border-radius: .5rem;
    transition: background .2s;
}
.safety-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(244, 142, 48, .12);
    border: 1px solid rgba(244, 142, 48, .25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    transition: background .25s, border-color .25s;
}
.safety-feature-col:hover .safety-feature-icon {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}
.safety-feature-body {
    flex: 1;
}
.safety-feature-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: .45rem;
    line-height: 1;
}
.safety-feature-text {
    font-size: 1.3rem;
    color: #9ca3af;
    line-height: 1.4;
    margin: 0;
    padding-top: .5rem;
}
.safety-cta-content .model-cta-content {
    color: #fff;
    text-align: center;
    padding: 70px 1.5rem;
    background: #2a2a2a;
    border-radius: .5rem;
}
@media (max-width: 991px) {
    .safety-main-title {
        font-size: 2.2rem;
    }
}
@media (max-width: 767px) {
    .safety-main-title {
        font-size: 1.8rem;
    }
    .safety-img-grid, .safety-features-grid {
        grid-template-columns: 1fr;
    }
    .safety-img-block {
        aspect-ratio: 4/3;
    }
    .safety-feature-col {
        padding: 1.5rem 0 !important;
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, .07) !important;
    }
    .safety-feature-col:last-child {
        border-bottom: none !important;
    }
    .safety-sub-title {
        font-size: 1.5rem;
    }
    .safety-description {
        line-height: 1.9rem;
    }
    .safety-feature-title {
        font-size: 1.5rem;
    }
}
@media (max-width: 480px) {
    .safety-section {
        padding: 52px 15px;
    }
    .safety-main-title {
        font-size: 1.5rem;
    }
    .safety-gap {
        height: 3rem;
        margin-top: 3rem;
    }
}
/* ══════════════════════════════════════════
   COLOUR GALLERY
══════════════════════════════════════════ */
.color-gallery-section {
    padding: 0;
    margin: 0;
    background: #000;
    overflow: hidden;
}
.color-gallery-stage {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 520px;
    overflow: hidden;
}
.color-panel {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .6s;
    z-index: 0;
}
.color-panel.active {
    opacity: 1;
    z-index: 1;
}
.color-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.color-gallery-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(to top, rgba(0, 0, 0, .75) 0%, rgba(0, 0, 0, .15) 40%, transparent 70%);
}
.color-gallery-label {
    position: absolute;
    top: 2.5rem;
    left: 2.5rem;
    z-index: 4;
    color: #fff;
}
.color-gallery-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin: .3rem 0 0;
    color: #fff;
    letter-spacing: .04em;
}
.color-swatches {
    position: absolute;
    bottom: 2.5rem;
    left: 10%;
    z-index: 5;
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    flex-wrap: wrap;
}
.swatch {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    outline: none;
    transition: transform .25s;
}
.swatch:hover {
    transform: translateY(-4px);
}
.swatch:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
    border-radius: 4px;
}
.swatch-img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 3px solid rgba(255, 255, 255, .4);
    transition: border-color .25s, width .25s, height .25s;
}
.swatch:hover .swatch-img {
    border-color: rgba(255, 255, 255, .9);
}
.swatch.active .swatch-img {
    width: 62px;
    height: 62px;
    border-color: var(--primary);
}
.swatch-label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-top: .5rem;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity .25s, transform .25s;
    text-shadow: 0 1px 4px rgba(0, 0, 0, .6);
}
.swatch.active .swatch-label {
    opacity: 1;
    transform: translateY(0);
}
.swatch.active::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}
@media (max-width: 991px) {
    .color-gallery-stage {
        height: 80vh;
    }
    .color-swatches {
        gap: .75rem;
    }
}
@media (max-width: 767px) {
    .color-gallery-stage {
        height: 70vh;
    }
    .color-panel img {
        height: 60%;
    }
    .color-swatches {
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
        justify-content: center;
        width: 100%;
        padding: 0 1rem;
    }
    .color-gallery-label {
        left: 1.25rem;
        top: 1.5rem;
    }
    .color-gallery-title {
        font-size: 1.25rem;
    }
    .swatch-img {
        width: 44px;
        height: 44px;
    }
    .swatch.active .swatch-img {
        width: 54px;
        height: 54px;
    }
}
@media (max-width: 480px) {
    .color-swatches {
        gap: .5rem;
    }
    .swatch-img {
        width: 38px;
        height: 38px;
    }
    .swatch.active .swatch-img {
        width: 48px;
        height: 48px;
    }
}
/* ══════════════════════════════════════════
   EXPLORE BLOCKS
══════════════════════════════════════════ */
.explore-section {
    position: relative;
}
.explore-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 80px;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, .5));
    pointer-events: none;
    z-index: 10;
}
.title-block {
    margin-left: 10%;
}
.explore-track {
    display: flex;
    align-items: stretch;
    gap: var(--explore-gap);
    padding-left: var(--explore-left);
    padding-right: var(--explore-left);
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    cursor: grab;
    user-select: none;
    scroll-behavior: auto !important;
    margin-left: 10%;
}
.explore-track::-webkit-scrollbar {
    display: none;
}
.explore-track.is-dragging {
    cursor: grabbing;
}
/* Arrow-driven slider mode (opt-in via .arrows-mode on .explore-section) */
.explore-section.arrows-mode {
    overflow: hidden;
}
.explore-section.arrows-mode::after {
    display: none;
}
.explore-section.arrows-mode .explore-track {
    overflow: visible !important;
    cursor: default !important;
    scroll-snap-type: none !important;
    scroll-behavior: auto !important;
    transform: translate3d(0, 0, 0);
    transition: transform .7s cubic-bezier(.22, .61, .36, 1);
    will-change: transform;
}
.explore-section.arrows-mode .explore-bg {
    transition: transform .9s cubic-bezier(.22, .61, .36, 1) !important;
}
.iv-slide-arrow {
    position: absolute;
    bottom: 24px;
    z-index: 50;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: #111;
    font-size: 1.4rem;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: background .25s, color .25s, opacity .25s;
}
.explore-section.arrows-mode {
    padding-bottom: 90px;
}
.explore-section.arrows-mode .iv-slide-arrow {
    display: inline-flex;
}
.iv-slide-arrow:hover {
    background: var(--primary);
    color: #fff;
}
.iv-slide-arrow.is-end {
    opacity: .3;
}
.iv-slide-arrow.is-end:hover {
    background: transparent;
    color: #111;
}
.iv-slide-prev {
    left: 10%;
}
.iv-slide-next {
    left: calc(10% + 60px);
}
@media (max-width: 767px) {
    .explore-section.arrows-mode {
        padding-bottom: 70px;
    }
    .iv-slide-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        bottom: 16px;
    }
    .iv-slide-prev {
        left: 1.25rem;
    }
    .iv-slide-next {
        left: calc(1.25rem + 50px);
    }
}
.explore-block {
    position: relative;
    flex: 0 0 auto;
    isolation: isolate;
    overflow: hidden;
    width: calc((100vw - var(--explore-left) * 2 - var(--explore-gap) * 2) / 2.2);
    height: var(--explore-height);
    min-height: var(--explore-min-h);
    border-radius: 4px;
    scroll-snap-align: start;
    transition: width .5s;
}
.explore-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    z-index: 0;
    transform: scale(1.15) translateX(0);
    transform-origin: center;
    transition: none !important;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}
.explore-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(to top, rgba(0, 0, 0, .88) 0%, rgba(0, 0, 0, .30) 45%, rgba(0, 0, 0, .08) 100%);
    transition: background .4s;
}
.explore-block.is-open .explore-overlay {
    background: rgba(0, 0, 0, .72);
}
.explore-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 1.5rem 1.75rem 1.75rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .65rem;
}
.explore-title {
    font-size: 2rem;
    font-weight: 500;
    color: #fff;
    margin: 0;
    letter-spacing: .03em;
    line-height: 1.25;
}
.explore-toggle {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    position: relative;
    z-index: 5;
    background: rgba(255, 255, 255, .10);
    border: 1.5px solid rgba(255, 255, 255, .65);
    color: #fff;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .42rem 1.1rem;
    border-radius: 2px;
    cursor: pointer;
    transition: background .25s, border-color .25s;
}
.explore-toggle:hover, .explore-block.is-open .explore-toggle {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}
.explore-arrow {
    display: inline-flex;
    align-items: center;
    transition: transform .4s;
    line-height: 1;
}
.explore-block.is-open .explore-arrow {
    transform: rotate(180deg);
}
.explore-panel {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background: rgba(15, 15, 15, .90);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transform: translateY(100%);
    transition: transform .5s cubic-bezier(.4, 0, .2, 1);
    max-height: 68%;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) transparent;
}
.explore-panel::-webkit-scrollbar {
    width: 4px;
}
.explore-panel::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 2px;
}
.explore-block.is-open .explore-panel {
    transform: translateY(0);
}
.explore-panel-inner {
    padding: 1.75rem 1.75rem 5.5rem;
    color: #fff;
}
.explore-panel-inner h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: .75rem;
}
.explore-panel-inner p {
    font-size: 1.2rem;
    opacity: .85;
    margin-bottom: 3rem;
}
.explore-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.4rem;
    display: flex;
    flex-direction: column;
    gap: .45rem;
}
.explore-list li {
    font-size: .84rem;
    color: rgba(255, 255, 255, .82);
    display: flex;
    align-items: center;
    gap: .55rem;
}
.explore-list li i {
    color: var(--primary);
    font-size: .95rem;
    flex-shrink: 0;
}
.explore-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: var(--primary);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid rgba(244, 142, 48, .4);
    padding-bottom: 2px;
    transition: border-color .2s;
}
.explore-link:hover {
    border-color: var(--primary);
}
@media (max-width: 1199px) {
    .explore-block {
        width: calc((100vw - var(--explore-left) - 2rem - var(--explore-gap)) / 1.8);
    }
}
@media (max-width: 767px) {
    :root {
        --explore-left: 1.25rem;
        --explore-gap: 12px;
        --explore-height: 110vw;
        --explore-min-h: 420px;
    }
    .explore-block {
        width: calc(100vw - var(--explore-left) * 2 - var(--explore-gap));
    }
    .explore-title {
        font-size: 1rem;
    }
    .explore-section::after {
        width: 40px;
    }
    .explore-panel-inner p {
        font-size: .9rem;
        margin-bottom: 1rem;
    }
}
/* ══════════════════════════════════════════
   INTERIOR SECTION
══════════════════════════════════════════ */
.interior-section {
    background: var(--dark);
    padding: 5rem 0 5rem 5rem;
    overflow: hidden;
}
.interior-wrap {
    display: flex;
    align-items: stretch;
    min-height: 70vh;
}
.interior-tabs {
    flex: 0 0 38%;
    max-width: 38%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3rem 4rem 4rem;
    gap: 0;
    position: relative;
    z-index: 2;
}
.interior-tabs-header {
    margin-bottom: 2.5rem;
}
.interior-tabs-header .model-eyebrow {
    color: var(--primary);
    margin-bottom: .4rem;
}
.interior-main-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin: 0;
    padding-bottom: 2rem;
}
.interior-tab {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    position: relative;
    width: 100%;
    background: none;
    border: none;
    border-left: 2px solid rgba(255, 255, 255, .1);
    padding: 1.2rem 1rem 1.2rem 1.5rem;
    cursor: pointer;
    text-align: left;
    transition: border-color .3s, background .3s;
}
.interior-tab::before {
    content: '';
    position: absolute;
    left: -2px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .35s;
}
.interior-tab:hover::before, .interior-tab.active::before {
    transform: scaleY(1);
}
.interior-tab:hover, .interior-tab.active {
    background: rgba(255, 255, 255, .04);
    border-color: transparent;
}
.tab-number {
    font-size: .92rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: .12em;
    opacity: .6;
    flex-shrink: 0;
    transition: opacity .3s;
}
.interior-tab.active .tab-number, .interior-tab:hover .tab-number {
    opacity: 1;
}
.tab-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .2rem;
}
.tab-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .5);
    letter-spacing: .04em;
    transition: color .3s;
    line-height: 1.3;
}
.interior-tab.active .tab-title, .interior-tab:hover .tab-title {
    color: #fff;
}
.tab-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, .35);
    line-height: 1.5;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .4s, opacity .35s, color .3s;
}
.interior-tab.active .tab-desc, .interior-tab:hover .tab-desc {
    max-height: 65px;
    opacity: 1;
    color: rgba(255, 255, 255, .6);
}
.tab-arrow {
    flex-shrink: 0;
    color: var(--primary);
    font-size: 1rem;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity .3s, transform .3s;
}
.interior-tab.active .tab-arrow, .interior-tab:hover .tab-arrow {
    opacity: 1;
    transform: translateX(0);
}
.interior-images {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
}
.interior-panel {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity .6s cubic-bezier(.4, 0, .2, 1), transform .6s cubic-bezier(.4, 0, .2, 1);
    z-index: 0;
    pointer-events: none;
}
.interior-panel.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
    pointer-events: auto;
}
.interior-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    z-index: 2;
    border-top-left-radius: 2rem;
    border-bottom-left-radius: 2rem;
    border-top: 5px solid var(--primary);
    border-left: 5px solid var(--primary);
    border-bottom: 5px solid var(--primary);
}
.interior-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 2rem 1.75rem;
    background: linear-gradient(to top, rgba(0, 0, 0, .65) 0%, transparent 100%);
}
.interior-img-label {
    font-size: .78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .7);
    text-transform: uppercase;
    letter-spacing: .18em;
}
@media (max-width: 991px) {
    .interior-tabs {
        flex: 0 0 42%;
        max-width: 42%;
        padding: 3rem 1.75rem 3rem 2.5rem;
    }
    .interior-main-title {
        font-size: 1.4rem;
    }
    .tab-title {
        font-size: .9rem;
    }
}
@media (max-width: 767px) {
    .interior-section {
        padding: 0 0 0 1rem;
    }
    .interior-wrap {
        flex-direction: column;
    }
    .interior-tabs {
        flex: none;
        max-width: 100%;
        width: 100%;
        padding: 2.5rem 1.25rem 1.5rem;
    }
    .interior-images {
        min-height: 55vw;
        width: 100%;
    }
    .interior-main-title {
        font-size: 1.3rem;
    }
    .interior-tab {
        padding: .9rem .75rem .9rem 1.1rem;
    }
    .tab-desc {
        font-size: .9rem;
    }
}
/* ══════════════════════════════════════════
   FULL WIDTH IMAGE BANNER
══════════════════════════════════════════ */
.fw-banner-section {
    padding: 0;
    margin: 0;
    width: 100%;
    background: #000;
}
.fw-banner-wrap {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 440px;
    overflow: hidden;
}
.fw-banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    z-index: 0;
}
.fw-banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(0, 0, 0, .65) 0%, rgba(0, 0, 0, .15) 60%, transparent 100%);
}
.fw-banner-content {
    position: absolute;
    top: 20%;
    left: 10%;
    z-index: 2;
    color: #fff;
    max-width: 560px;
}
.fw-banner-title {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: .85rem;
    letter-spacing: .03em;
    color: #fff;
    opacity: 0;
    transform: translateY(22px);
    animation: bannerFadeUp .9s cubic-bezier(.4, 0, .2, 1) .45s forwards;
}
.fw-banner-sub {
    font-size: 2.3rem;
    color: #fff;
    margin: 0;
    letter-spacing: .04em;
    opacity: 0;
    transform: translateY(18px);
    animation: bannerFadeUp .8s cubic-bezier(.4, 0, .2, 1) .7s forwards;
}
.fw-banner-eyebrow {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: .65rem;
    opacity: 0;
    transform: translateY(18px);
    animation: bannerFadeUp .8s cubic-bezier(.4, 0, .2, 1) .2s forwards;
}
@keyframes bannerFadeUp {
    0% {
        opacity: 0;
        transform: translateY(22px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Animation re-trigger states */
.fw-banner-content.animate-reset .fw-banner-eyebrow, .fw-banner-content.animate-reset .fw-banner-title, .fw-banner-content.animate-reset .fw-banner-sub {
    opacity: 0;
    transform: translateY(22px);
    animation: none;
}
.fw-banner-content.animate-play .fw-banner-eyebrow {
    animation: bannerFadeUp .8s cubic-bezier(.4, 0, .2, 1) .2s forwards;
}
.fw-banner-content.animate-play .fw-banner-title {
    animation: bannerFadeUp .9s cubic-bezier(.4, 0, .2, 1) .45s forwards;
}
.fw-banner-content.animate-play .fw-banner-sub {
    animation: bannerFadeUp .8s cubic-bezier(.4, 0, .2, 1) .7s forwards;
}
@media (max-width: 991px) {
    .fw-banner-wrap {
        height: 65vh;
    }
    .fw-banner-title {
        font-size: 2.2rem;
    }
}
@media (max-width: 767px) {
    .fw-banner-wrap {
        height: 55vh;
    }
    .fw-banner-title {
        font-size: 1.7rem;
    }
    .fw-banner-content {
        left: 6%;
        top: 8%;
        max-width: 85%;
    }
}
@media (max-width: 480px) {
    .fw-banner-wrap {
        height: 100vh;
        min-height: 320px;
    }
    .fw-banner-title {
        font-size: 1.4rem;
    }
    .fw-banner-sub {
        font-size: .88rem;
    }
}
/* ══════════════════════════════════════════
   SPECIFICATION TABLE
══════════════════════════════════════════ */
.spec-section {
    background: #000;
    color: #fff;
    padding: var(--section-py) 0;
}
.spec-heading {
    margin-bottom: 3rem;
}
.spec-eyebrow {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: .5rem;
}
.spec-main-title {
    font-size: 5.2rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: .5rem;
    letter-spacing: .04em;
}
.spec-subtitle {
    font-size: 2rem;
    color: #9ca3af;
    margin: 0;
}
.spec-variant-toggle {
    display: flex;
    justify-content: center;
    border: 1px solid #fff;
    border-radius: 3px;
    width: fit-content;
    margin: 0 auto 2.5rem;
    overflow: hidden;
}
.spec-variant-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .15rem;
    padding: .85rem 2.5rem;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, .45);
    cursor: pointer;
    transition: background .25s, color .25s;
    border-right: 1px solid rgba(255, 255, 255, .12);
    min-width: 180px;
}
.spec-variant-btn:last-child {
    border-right: none;
}
.spec-variant-btn:hover {
    background: rgba(255, 255, 255, .05);
    color: #fff;
}
.spec-variant-btn.active {
    background: var(--primary);
    color: #fff;
}
.variant-btn-label {
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.variant-btn-sub {
    font-size: .7rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    opacity: .75;
}
.spec-variant-btn.active .variant-btn-sub {
    opacity: .9;
}
.spec-table-wrap {
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 4px;
    overflow: hidden;
}
.spec-table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
    table-layout: fixed;
    border: 1px solid #fff;
}
.spec-table thead tr {
    background: #1a1a1a;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.spec-table thead th {
    padding: .9rem 1rem;
    font-size: 1.5rem;
    font-weight: 500;
    border: 1px solid #fff;
    vertical-align: middle;
}
.spec-table thead .col-category {
    color: var(--primary);
    width: 14%;
}
.spec-table thead .col-feature {
    color: rgba(255, 255, 255, .55);
    width: 24%;
    background: #111;
}
.spec-table thead .col-awd, .spec-table thead .col-rwd, .spec-table thead .col-perf {
    color: #fff;
    text-align: center;
    width: 31%;
    background: #111;
}
.spec-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    transition: background .2s;
}
.spec-table tbody tr:hover {
    background: #1a1a1a;
}
.spec-table tbody tr:last-child {
    border-bottom: none;
}
.spec-table .cat-label {
    padding: .85rem 1rem;
    font-size: 1.2rem;
    font-weight: 700 !important;
    color: var(--primary) !important;
    vertical-align: top;
    line-height: 1.5;
    border: 1px solid #fff;
    background: #000;
}
.spec-table .feat-label {
    padding: .8rem 1rem;
    font-size: 1.2rem;
    color: #374151 !important;
    background: #fff;
    vertical-align: middle;
    text-transform: capitalize;
    border: 1px solid #e5e5e5 !important;
    line-height: 1.5;
}
.spec-table .spec-val-awd, .spec-table .spec-val-rwd, .spec-table .spec-val-perf {
    padding: .8rem 1rem;
    font-size: 1.2rem;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    border: 1px solid #fff;
    line-height: 1.5;
}
.spec-table .spec-col-awd {
    background: rgba(244, 142, 48, .04);
}
.spec-table .spec-col-rwd {
    background: transparent;
}
.spec-table .spec-col-perf {
    background: rgba(244, 142, 48, .02);
}
.spec-section.show-awd .spec-col-awd {
    background: rgba(244, 142, 48, .04);
}
.spec-section.show-awd .spec-col-rwd {
    background: transparent;
}
.spec-section.show-rwd .spec-col-awd {
    background: transparent;
}
.spec-section.show-rwd .spec-col-rwd {
    background: rgba(244, 142, 48, .04);
}
.spec-col-awd, .spec-col-rwd, .spec-col-perf {
    display: table-cell;
}
.dot-yes {
    color: var(--primary);
    font-size: 1rem;
    font-weight: 700;
}
.dot-no {
    color: rgba(255, 255, 255, .2);
    font-size: 1rem;
}
@media (max-width: 767px) {
    .spec-main-title {
        font-size: 2.7rem;
    }
    .spec-subtitle {
        font-size: 1.5rem;
    }
    .spec-variant-btn {
        min-width: 140px;
        padding: .75rem 1.25rem;
    }
    .spec-table {
        table-layout: auto;
    }
    .spec-table .cat-label, .spec-table .feat-label {
        font-size: .75rem;
        padding: .65rem .75rem;
    }
    .spec-table .spec-val-awd, .spec-table .spec-val-rwd, .spec-table .spec-val-perf {
        font-size: .78rem;
        padding: .65rem .75rem;
    }
    .spec-table thead th {
        padding: .5rem;
        font-size: .7rem;
    }
}
@media (max-width: 480px) {
    .spec-section {
        padding: 52px 0;
    }
    .spec-variant-btn {
        min-width: 120px;
        padding: .65rem 1rem;
    }
    .variant-btn-label {
        font-size: .72rem;
    }
}
/* ══════════════════════════════════════════
   HERO BANNER SECTION
══════════════════════════════════════════ */
.hero-banner-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    overflow: hidden;
    background: #000;
    padding: 0;
}
/* ── Background image ── */
.hero-banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    z-index: 0;
}
/* ── Gradient overlay — darker at bottom for text legibility ── */
.hero-banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.80) 0%, rgba(0, 0, 0, 0.25) 40%, rgba(0, 0, 0, 0.05) 100%);
    pointer-events: none;
}
/* ── Text content — bottom left ── */
.hero-banner-content {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    padding: 0 4rem 3.5rem;
    max-width: 680px;
}
/* ── Eyebrow label ── */
.hero-banner-eyebrow {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .22em;
    color: var(--primary, #f48e30);
    font-weight: 600;
    margin-bottom: .65rem;
    /* Initial hidden state */
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s cubic-bezier(.4, 0, .2, 1), transform .7s cubic-bezier(.4, 0, .2, 1);
    transition-delay: 0s;
}
/* ── Main title ── */
.hero-banner-title {
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin-bottom: .9rem;
    letter-spacing: .02em;
    /* Initial hidden state */
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .75s cubic-bezier(.4, 0, .2, 1), transform .75s cubic-bezier(.4, 0, .2, 1);
    transition-delay: .15s;
}
/* ── Subtitle ── */
.hero-banner-sub {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, .75);
    margin: 0;
    letter-spacing: .05em;
    line-height: 1.6;
    /* Initial hidden state */
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s cubic-bezier(.4, 0, .2, 1), transform .7s cubic-bezier(.4, 0, .2, 1);
    transition-delay: .3s;
}
/* ── Visible state — added by IntersectionObserver ── */
.hero-banner-content.is-visible .hero-banner-eyebrow, .hero-banner-content.is-visible .hero-banner-title, .hero-banner-content.is-visible .hero-banner-sub {
    opacity: 1;
    transform: translateY(0);
}
/* ── Responsive ── */
@media (max-width: 991px) {
    .hero-banner-section {
        height: 80vh;
    }
    .hero-banner-title {
        font-size: 2.8rem;
    }
    .hero-banner-content {
        padding: 0 2.5rem 3rem;
    }
}
@media (max-width: 767px) {
    .hero-banner-section {
        height: 75vh;
    }
    .hero-banner-title {
        font-size: 2rem;
    }
    .hero-banner-sub {
        font-size: 1rem;
    }
    .hero-banner-content {
        padding: 0 1.5rem 2.5rem;
        max-width: 100%;
    }
}
@media (max-width: 480px) {
    .hero-banner-section {
        height: 65vh;
        min-height: 400px;
    }
    .hero-banner-title {
        font-size: 1.65rem;
    }
    .hero-banner-eyebrow {
        font-size: .7rem;
    }
}
/* ══════════════════════════════════════════
   SPEC HERO SECTION
══════════════════════════════════════════ */
.spec-hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: #000;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
/* ── Background image ── */
.spec-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    z-index: 0;
}
/* ── Overlay — dark top + dark bottom, lighter middle ── */
.spec-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, .75) 0%, rgba(0, 0, 0, .10) 35%, rgba(0, 0, 0, .10) 60%, rgba(0, 0, 0, .85) 100%);
}
/* ══════════════════════════════════════════
   TOP — Title block (center)
══════════════════════════════════════════ */
.spec-hero-top {
    position: absolute; /* take out of flex flow */
    top: 5rem;
    left: 50%;
    transform: translateX(-50%); /* horizontal center */
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 3.5rem 2rem 0;
    /* Animation initial state — slides down from top */
    opacity: 0;
    transform: translateX(-50%) translateY(-28px);
    transition:
        opacity .75s cubic-bezier(.4, 0, .2, 1), transform .75s cubic-bezier(.4, 0, .2, 1);
}
/* Visible state */
.spec-hero-section.is-visible .spec-hero-top {
    opacity: 1;
    transform: translateX(-50%) translateY(0); /* keep horizontal center */
}
.spec-hero-eyebrow {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .22em;
    color: var(--primary, #f48e30);
    font-weight: 600;
    margin-bottom: .6rem;
}
.spec-hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: .65rem;
    letter-spacing: .02em;
}
.spec-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, .65);
    margin: 0;
    letter-spacing: .05em;
    font-weight: 500;
}
/* ══════════════════════════════════════════
   BOTTOM — Two columns, both center aligned
══════════════════════════════════════════ */
.spec-hero-bottom {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr; /* two equal columns */
    gap: 1px; /* hairline divider between columns */
    /* Animation initial state */
    opacity: 0;
    transform: translateY(32px);
    transition:
        opacity .75s cubic-bezier(.4, 0, .2, 1) .2s, transform .75s cubic-bezier(.4, 0, .2, 1) .2s;
    margin-bottom: 2rem;
}
.spec-hero-section.is-visible .spec-hero-bottom {
    opacity: 1;
    transform: translateY(0);
}
/* ── Each column ── */
.spec-hero-col {
    display: flex;
    flex-direction: column;
    align-items: center; /* center horizontally */
    justify-content: center; /* center vertically */
    text-align: center; /* center text */
    color: #fff;
    padding: 2.5rem 2rem;
    gap: 0;
}
/* ── Spec value ── */
.spec-hero-val {
    font-size: 6.4rem;
    font-weight: 200;
    color: var(--primary, #f48e30);
    line-height: 1;
    letter-spacing: .1em;
    display: block;
}
.spec-hero-unit {
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, .65);
}
/* ── Spec label ── */
.spec-hero-label {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, .55);
    margin-top: .35rem;
    display: block;
}
/* ── Item wrapper ── */
.spec-hero-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: .85rem 0;
}
/* ── Divider between items inside a column ── */
.spec-hero-divider {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, .2);
    margin: .2rem auto;
}
/* Thin horizontal divider between items */
.spec-hero-divider {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, .2);
    margin: .1rem 0;
}
.spec-hero-col--right .spec-hero-divider {
    align-self: flex-end;
}
/* ── Centre: hero number ── */
.spec-hero-centre {
    flex: 0 0 auto;
    text-align: center;
    color: #fff;
    padding: 0 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .3rem;
}
/* Orange circle behind the number */
.spec-hero-centre::before {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 142, 48, .18) 0%, transparent 70%);
    transform: translateY(-30%);
    pointer-events: none;
}
.spec-hero-centre-val {
    font-size: 6rem;
    font-weight: 700;
    line-height: 1;
    color: var(--primary, #f48e30);
    letter-spacing: -.02em;
    position: relative;
}
.spec-hero-centre-unit {
    font-size: 2.8rem;
    font-weight: 400;
    color: rgba(255, 255, 255, .8);
    vertical-align: super;
}
.spec-hero-centre-label {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .12em;
}
.spec-hero-centre-sub {
    font-size: .72rem;
    color: rgba(255, 255, 255, .5);
    text-transform: uppercase;
    letter-spacing: .1em;
}
/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 991px) {
    .spec-hero-section {
        height: 85vh;
    }
    .spec-hero-title {
        font-size: 2.4rem;
    }
    .spec-hero-centre-val {
        font-size: 4.5rem;
    }
    .spec-hero-centre-unit {
        font-size: 2.2rem;
    }
    .spec-hero-val {
        font-size: 1.9rem;
    }
}
@media (max-width: 767px) {
    .spec-hero-section {
        height: auto;
        min-height: 100vh;
    }
    .spec-hero-top {
        left: 50%;
        transform: translateX(-50%); /* centers it */
        top:1rem;
    }
    .spec-hero-label {
        font-size: 1.1rem;
    }
    .is-visible .spec-hero-top {
        transform: translateY(0); /* removes the -50% — breaks centering */
    }
    .spec-hero-title {
        font-size: 1.9rem;
    }
    .spec-hero-subtitle {
        font-size: .9rem;
    }
    /* Stack bottom vertically on mobile */
    .spec-hero-bottom {
        grid-template-columns: 1fr 1fr; /* keep 2 cols on mobile */
    }
    .spec-hero-col {
        padding: 1.75rem 1rem;
    }
    .spec-hero-col--right {
        align-items: center !important;
    }
    .spec-hero-divider {
        align-self: center !important;
    }
    .spec-hero-centre {
        padding: 0;
    }
    .spec-hero-centre-val {
        font-size: 5rem;
    }
    .spec-hero-val {
        font-size: 2rem;
    }
    .spec-hero-unit {
        font-size: 1rem;
    }
    .safety-highlights-section .model-section-title {
        font-size: 4rem !important;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.3rem;
        margin-top: 2rem;
    }
    .safety-hl-eyebrow {    
        padding-bottom: 1rem;
    }
    .safety-hl-row .safety-hl-card {
        padding: 3rem !important;
    }
}
@media (max-width: 480px) {
    .spec-hero-title {
        font-size: 1.6rem;
    }
    .spec-hero-centre-val {
        font-size: 4rem;
    }
    .spec-hero-centre-unit {
        font-size: 3rem;
    }
    .spec-hero-val {
        font-size: 1.6rem;
    }
    .spec-hero-bottom {
        padding-bottom: 2rem;
    }
    .spec-hero-col {
        padding: 1.5rem .75rem;
    }
}
.spec-hero-val--gradient {
    background: linear-gradient(91deg, #412409 2%, #f48e30 78%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block; /* required for background-clip to work correctly */
}
/* ══════════════════════════════════════════
   SAFETY HIGHLIGHTS SECTION
══════════════════════════════════════════ */
.safety-highlights-section {
    background: #fff;
    padding: var(--section-py, 80px) 0;
}
/* ── Heading ── */
.safety-highlights-section .model-section-title {
    text-align: center !important;
    font-size: 5rem !important;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    margin-top: 5rem;
}
.safety-hl-eyebrow {
    font-size: 2rem;
    text-transform: none !important;
    letter-spacing: normal !important;
    color: var(--primary, #f48e30);
    font-weight: 600;
    margin-bottom: .5rem;
    text-align: center;
    padding-bottom: 5rem;
}
.safety-hl-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--dark, #040e1c);
    line-height: 1.2;
    margin-bottom: .75rem;
}
.safety-hl-subtitle {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}
/* ── Row 1: 3-column grid ── */
.safety-hl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}
/* ── Each card ── */
.safety-hl-card {
    background: #f8f8f8;
    border: none;
    border-radius: .75rem;
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: box-shadow .25s, transform .25s, border-color .25s;
    text-align: center;
    align-items: center;
}
.safety-hl-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, .08);
    transform: translateY(-4px);
    border-color: var(--primary, #f48e30);
}
/* Icon */
.safety-hl-icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: rgba(244, 142, 48, .10);
    border: 1.5px solid rgba(244, 142, 48, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary, #f48e30);
    font-size: 2.4rem;
    flex-shrink: 0;
    transition: background .25s, border-color .25s;
}
.safety-hl-card:hover .safety-hl-icon {
    background: var(--primary, #f48e30);
    border-color: var(--primary, #f48e30);
    color: #fff;
}
/* Card text */
.safety-hl-card-title {
    font-size: 2.05rem;
    font-weight: 600;
    color: var(--dark, #040e1c);
    margin: 0;
    line-height: 1.3;
}
.safety-hl-card-text {
    font-size: 1.3rem;
    color: #4b5563;
    line-height: unset;
    margin: 0;
}
.safety-hl-row .safety-hl-card {
    padding: 5rem ;
}
/* ── Row 2: single full-width column ── */
.safety-hl-row2 {
    background: var(--dark, #040e1c);
    border-radius: .75rem;
    padding: 3rem 3.5rem;
    display: flex;
    align-items: center;
    gap: 3rem;
}
.safety-hl-row2-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary, #f48e30);
    margin: 0;
    line-height: 1.25;
    flex: 0 0 auto;
    max-width: 260px;
}
.safety-hl-row2-text {
    font-size: .92rem;
    color: rgba(255, 255, 255, .65);
    line-height: 1.8;
    margin: 0;
    flex: 1;
}
/* Vertical divider between title and text */
.safety-hl-row2::before {
    content: '';
    display: block;
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, .15);
    flex-shrink: 0;
    order: 1;
}
.safety-hl-row2-title {
    order: 0;
}
.safety-hl-row2-text {
    order: 2;
}
/* ── Responsive ── */
@media (max-width: 991px) {
    .safety-hl-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
    .safety-hl-row2 {
        gap: 2rem;
        padding: 2.5rem 2rem;
    }
    .safety-hl-row2-title {
        font-size: 1.35rem;
        max-width: 220px;
    }
}
@media (max-width: 767px) {
    .safety-hl-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .safety-hl-title {
        font-size: 1.8rem;
    }
    .safety-hl-row2 {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
        padding: 2rem 1.5rem;
    }
    .safety-hl-row2-title {
        max-width: 100%;
        font-size: 1.25rem;
        order: 0;
    }
    .safety-hl-row2-text {
        order: 1;
    }
    .safety-hl-row2::before {
        display: none;
    } /* hide divider on mobile */
}
@media (max-width: 480px) {
    .safety-highlights-section {
        padding: 52px 0;
    }
    .safety-hl-heading {
        margin-bottom: 2.5rem;
    }
    .safety-hl-card {
        padding: 1.75rem 1.5rem;
    }
    .safety-hl-title {
        font-size: 1.55rem;
    }
}
/* ── Single variant table override ── */
.spec-table thead .col-awd[colspan="2"] {
    width: 62%; /* takes the space of both old value columns */
    text-align: center;
}
.spec-table .spec-val-awd[colspan="2"] {
    text-align: center;
    background: rgba(244, 142, 48, .04);
}
/* Hide the col-rwd header when not used */
/*.spec-table thead .col-rwd {
    display: none;
}*/
/* ── Page Hero Content — left center ── */
.page-hero-content {
  position: absolute;
  top: 50%;
  left: 6%;
  transform: translateY(-50%);
  z-index: 2;
  color: #fff;
  max-width: 50%;
}

.page-hero-eyebrow {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--primary, #f48e30);
  font-weight: 600;
  margin-bottom: .75rem;
}

.page-hero-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.1rem;
}

.page-hero-desc {
  font-size: 1.5rem;
  color: rgba(255,255,255,.72);
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .page-hero-title   { font-size: 2.8rem; }
  .page-hero-content { max-width: 460px; }
}

@media (max-width: 767px) {
  .page-hero-content {
    top: 30%;
    left: 5%;
    right: 5%;
    max-width: 100%;
  }
  .page-hero-title { font-size: 2rem; }
  .page-hero-desc  { font-size: .92rem; }
    section.about-description {
        padding: 1rem !important;
    }
    h2.about-section-title {
    font-size: 2rem !important;
    padding-top: 2rem !important;
}
    p.about-tag {
    font-size: 1.2rem !important;
}
    p.about-row-desc {
    color: #666666;
    font-size: 1.0rem !important;
    font-weight: 500 !important;
}
}

@media (max-width: 480px) {
  .page-hero-title { font-size: 1.4rem; }
}
h2.about-section-title {
    text-align: center;
    font-size: 3.5rem;
    padding-top: 3rem;
}
p.about-tag {
    text-align: center;
    font-size: 1.5rem;
    color: #666666;
}
h2.about-row-title {
    color: #222222;
}
p.about-row-desc {
    color: #666666;
    font-size: 1.2rem;
    font-weight: 500;
}
section.about-description {
    padding: 6rem;
}
.about-row-img-wrap img {
    border-radius: 1rem;
}
section.about-description.about-car {
    background: #f7f7f9;
}
p.about-row-subtitle {
    font-size: 1.5rem;
    color: #666666;
    font-weight: 500;
    padding-bottom: 1rem;
}
/* ══════════════════════════════════════════
   SHOWROOM SECTION
══════════════════════════════════════════ */
.showroom-section {
  background: #fff;
  padding: 0;
  overflow: hidden;
}

/* ── Two-column grid ── */
.showroom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}

/* ══════════════════════════════════════════
   LEFT — Details column
══════════════════════════════════════════ */
.showroom-details {
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f7f7f9;
    border-radius: 1rem;
}

/* Eyebrow */
.showroom-eyebrow {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--primary, #f48e30);
  font-weight: 600;
  margin-bottom: .5rem;
}

/* Title */
.showroom-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark, #040e1c);
  line-height: 1.2;
  margin-bottom: 0;
}

/* Divider */
.showroom-divider {
    width: 48px;
    height: 3px;
    background: var(--primary, #f48e30);
    border-radius: 2px;
    margin: 1.5rem 0;
}

/* ── Info items ── */
.showroom-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.showroom-info-item:last-of-type { margin-bottom: 2rem; }

/* Icon circle */
.showroom-info-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(244,142,48,.10);
  border: 1.5px solid rgba(244,142,48,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary, #f48e30);
  font-size: 1rem;
  margin-top: 2px;
  transition: background .25s, border-color .25s;
}
.showroom-info-item:hover .showroom-info-icon {
  background: var(--primary, #f48e30);
  border-color: var(--primary, #f48e30);
  color: #fff;
}

/* Text body */
.showroom-info-body {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.showroom-info-label {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #9ca3af;
  font-weight: 600;
}
.showroom-info-value {
    font-size: 1.2rem;
    color: #666666;
    line-height: 1.6;
    font-weight: 500;
}
.showroom-info-link {
  text-decoration: none;
  color: #666666;
  transition: color .2s;
}
.showroom-info-link:hover { color: var(--primary, #f48e30); }

/* ── Opening hours ── */
.showroom-hours {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  margin-top: .15rem;
}
.showroom-hours-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.showroom-hours-day {
    font-size: 1.2rem;
    color: #666666;
    min-width: 100px;
}
.showroom-hours-time {
  color: #666666;
  font-weight: 600;
}

/* ── Get Directions button ── */
.showroom-directions-btn {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: var(--primary, #f48e30);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: unset;
    text-transform: uppercase;
    padding: .8rem 1.8rem;
    border-radius: 10px;
    text-decoration: none;
    border: 2px solid var(--primary, #f48e30);
    align-self: flex-start;
    transition: background .2s, color .2s;
}
.showroom-directions-btn:hover {
  background: transparent;
  color: var(--primary, #f48e30);
}
.showroom-directions-btn i { font-size: 1rem; }

/* ══════════════════════════════════════════
   RIGHT — Map column
══════════════════════════════════════════ */
.showroom-map {
  position: relative;
  min-height: 500px;
}
.showroom-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
    border-radius: 1rem;
}
.about-description .showroom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr !important;
  min-height: 640px;
  column-gap: 3rem;    /* ← horizontal gap only */
    margin-top: 3rem;
}
.showroom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
  column-gap: 3rem;    /* ← horizontal gap only */
    margin-top: 3rem;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1199px) {
  .showroom-details { padding: 4rem 3rem; }
  .showroom-title   { font-size: 1.9rem; }
}

@media (max-width: 991px) {
  .showroom-details { padding: 3rem 2rem; }
  .showroom-title   { font-size: 1.7rem; }
}

@media (max-width: 767px) {
  /* Stack: details on top, map below */
  .showroom-grid {
    grid-template-columns: 1fr;
  }
  .showroom-details { padding: 3rem 1.5rem; }
  .showroom-map     { min-height: 380px; position: relative; }
  .showroom-title   { font-size: 1.5rem; }
  .showroom-hours-day { min-width: 80px; }
}

@media (max-width: 480px) {
  .showroom-title { font-size: 1.3rem; }
  .showroom-details { padding: 2.5rem 1.25rem; }
}
.contact .page-hero-content {
    position: absolute;
    bottom: 10%;
    transform: translateY(-50%);
    z-index: 2;
    color: #fff;
    margin: auto;
    text-align: center;
    width: 100%;
    max-width: 100%;
    top: unset;
    left: unset;
}
.contact .page-hero-title {
    font-size: 5rem;
    font-weight: 500;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.1rem;
}
.contact .page-hero-desc {
    font-size: 2rem;
    color: rgb(255 255 255);
    margin: 0;
}
.contact .model-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, .80) 0%, rgb(0 0 0 / 50%) 45%, transparent 75%);
}
/* ══════════════════════════════════════════
   CONTACT INFO SECTION
══════════════════════════════════════════ */
.contact-info-section {
  background: #fff;
  padding: var(--section-py, 80px) 0;
}

/* ── 3-column equal grid ── */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 0 5%;        /* left/right breathing room */
}

/* ── Each card ── */
.contact-info-card {
    background: #f9fafb;
    border: none;
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow .25s, transform .25s, border-color .25s;
}
.contact-info-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,.08);
  transform: translateY(-4px);
  border-color: var(--primary, #f48e30);
}

/* ── Icon ── */
.contact-info-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(244,142,48,.10);
  border: 1.5px solid rgba(244,142,48,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary, #f48e30);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
  transition: background .25s, border-color .25s;
}
.contact-info-card:hover .contact-info-icon {
  background: var(--primary, #f48e30);
  border-color: var(--primary, #f48e30);
  color: #fff;
}

/* ── Card title ── */
.contact-info-title {
  font-size: 2rem;
  font-weight: 500;
  color: #000000;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

/* ── Label ── */
.contact-info-label {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: #9ca3af;
  font-weight: 600;
  margin-bottom: .3rem;
}

/* ── Value text ── */
.contact-info-value {
  font-size: 1.3rem;
  color: #666666;
  line-height: 1.65;
  margin-bottom: 0;
  font-weight: 500;    
    text-align: center;
}

/* ── Tel / email links ── */
.contact-info-tel {
  font-size: 1.3rem;
  color: #666666;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s;
}
.contact-info-tel:hover { color: var(--primary, #f48e30); }

/* ── Directions link ── */
.contact-info-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--primary, #f48e30);
  text-decoration: none;
  margin-top: 1.25rem;
  border-bottom: 1px solid rgba(244,142,48,.35);
  padding-bottom: 2px;
  transition: border-color .2s;
}
.contact-info-link:hover {
  color: var(--primary, #f48e30);
  border-color: var(--primary, #f48e30);
}

/* ── Hours list ── */
.contact-hours-list {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  width: 100%;
  margin-bottom: 1.5rem;
}
.contact-hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: .55rem;
  border-bottom: 1px solid var(--gray-light, #e5e7eb);
}
.contact-hours-row:last-child { border-bottom: none; padding-bottom: 0; }
.contact-hours-day {
  font-size: .88rem;
  color: #6b7280;
  font-weight: 400;
}
.contact-hours-time {
  font-size: .88rem;
  color: var(--dark, #040e1c);
  font-weight: 600;
}

/* ── Open now indicator ── */
.contact-status {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: auto;
}
.contact-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;         /* green = open */
  box-shadow: 0 0 0 3px rgba(34,197,94,.2);
  animation: statusPulse 2s ease-in-out infinite;
}
.contact-status-text {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #22c55e;
}

@keyframes statusPulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(34,197,94,.2); }
  50%      { box-shadow: 0 0 0 6px rgba(34,197,94,.08); }
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1199px) {
  .contact-info-grid { margin: 0 3%; gap: 1.5rem; }
}

@media (max-width: 991px) {
  .contact-info-grid { grid-template-columns: repeat(2, 1fr); margin: 0 3%; }
}

@media (max-width: 575px) {
  .contact-info-grid { grid-template-columns: 1fr; margin: 0 1.25rem; }
  .contact-info-card { padding: 2rem 1.5rem; }
}
/* ── Right: map column ── */
.map-container {
  display: flex;
  flex-direction: column;
  padding: 4rem 0;
}
.showroom-map {
  flex: 1;                  /* takes all remaining space after title/subtitle */
  position: relative;
  min-height: 400px;        /* safety floor */
  border-radius: .75rem;
  overflow: hidden;
  margin-top: 1.25rem;      /* gap between subtitle and map */
}
/* ── Map iframe fills wrapper fully ── */
.showroom-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.showroom-grid {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 640px;
    column-gap: 3rem;
    margin-top: 3rem;
    width: 100%;
}
.form-details {
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f7f7f9;
    border-radius: 1rem;
    margin: auto;
    width: 80%;
}
section.content-privacy {
    width: 80%;
    padding: 8rem 3rem;
    margin: auto;
}
section.content-privacy tbody, td, tfoot, th, thead, tr {
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    border: 1px solid #ccc;
    padding: 10px;
    padding-bottom: 3rem;
    font-size: 0.9rem;
}
.icau-life-content {
    color: #fff;
}
.icau-life-content h2.about-section-title {
    text-align: center;
    font-size: 4rem;
    padding-top: 5rem;
    font-weight: 600;
    line-height: 7rem;
    color: #FFFFFF;
}

/* ── Accessories image grid ── */
.acces-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;              /* ← same gap on all sides — change to taste */
  padding: 0 1rem 1rem;   /* matches horizontal breathing room */
}

/* Full-width top image spans all 3 columns */
.acces-img-block.acces-full {
  grid-column: 1 / -1;   /* span from first to last column */
}

/* Each image block */
.acces-img-block {
  overflow: hidden;
  border-radius: .25rem;
  background: #111;
}
.acces-img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .5s ease;
}
.acces-img-block:hover img {
  transform: scale(1.03);
}

/* Consistent aspect ratios */
.acces-img-block.acces-full img {
  aspect-ratio: 21 / 9;  /* wide banner */
}
.acces-img-block:not(.acces-full) img {
  aspect-ratio: 4 / 3;   /* square-ish cards below */
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .acces-grid { grid-template-columns: 1fr; gap: .75rem; padding:0;  }
  .acces-img-block.acces-full { grid-column: 1; }
  .acces-img-block.acces-full img { aspect-ratio: 16 / 9; }
}
/* ══════════════════════════════════════════
   FULL WIDTH IMAGE — BOTTOM RIGHT TITLE
══════════════════════════════════════════ */
.fw-title-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 520px;
  overflow: hidden;
  background: #000;
  padding: 0;
}

/* ── Picture element fills section ── */
.fw-title-section picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
}

/* ── Background image ── */
.fw-title-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 0;
}

/* ── Gradient overlay — darker at bottom right ── */
.fw-title-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    225deg,
    rgba(0,0,0,.78) 0%,
    rgba(0,0,0,.20) 45%,
    transparent 70%
  );
}

/* ── Bottom right content ── */
.fw-title-content {
  position: absolute;
  bottom: 3.5rem;
  right: 5%;
  z-index: 2;
  text-align: right;
  max-width: 100%;
  color: #fff;
}

/* ── Eyebrow ── */
.fw-title-eyebrow {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--primary, #f48e30);
  font-weight: 600;
  margin-bottom: .65rem;

  /* Initial hidden state — slides in from right */
  opacity: 0;
  transform: translateX(30px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1),
              transform .7s cubic-bezier(.4,0,.2,1);
  transition-delay: 0s;
}

/* ── Main heading ── */
.fw-title-heading {
    font-size: 3.4rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.3;
    margin-bottom: .9rem;
    letter-spacing: 0.2rem;
    opacity: 0;
    transform: translateX(40px);
    transition: opacity .8s cubic-bezier(.4,0,.2,1),
              transform .8s cubic-bezier(.4,0,.2,1);
    transition-delay: .15s;
}

/* ── Subtitle ── */
.fw-title-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.70);
  line-height: 1.7;
  margin: 0;
  letter-spacing: .04em;

  /* Initial hidden state */
  opacity: 0;
  transform: translateX(30px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1),
              transform .7s cubic-bezier(.4,0,.2,1);
  transition-delay: .3s;
}

/* ── Visible state — triggered by JS ── */
.fw-title-section.is-visible .fw-title-eyebrow,
.fw-title-section.is-visible .fw-title-heading,
.fw-title-section.is-visible .fw-title-sub {
  opacity: 1;
  transform: translateX(0);
}

/* ── Responsive ── */
@media (max-width: 1199px) {
  .fw-title-heading { font-size: 2.8rem; }
}

@media (max-width: 991px) {
  .fw-title-section  { height: 80vh; }
  .fw-title-heading  { font-size: 2.2rem; }
  .fw-title-content  { right: 4%; bottom: 3rem; }
}

@media (max-width: 767px) {
  .fw-title-section  { height: 70vh; }
  .fw-title-heading  { font-size: 1.8rem; }
  .fw-title-content  {
    right: 1.5rem;
    bottom: 2.5rem;
    max-width: calc(100% - 3rem);
  }
}

@media (max-width: 480px) {
  .fw-title-section  { height: 60vh; min-height: 380px; }
  .fw-title-heading  { font-size: 1.5rem; }
  .fw-title-sub      { font-size: .88rem; }
}
.acces-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 0 1rem 1rem;
}
/* 3-column collage: 2-row left, single tall center, 2-row right (5 images) */
.acces-grid-5 {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    padding: 0 1rem 1rem;
}
.acces-grid-5 .acces-img-block {
    overflow: hidden;
    position: relative;
}
.acces-grid-5 .acces-img-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.acces-grid-5-l1     { grid-column: 1; grid-row: 1; }
.acces-grid-5-l2     { grid-column: 1; grid-row: 2; }
.acces-grid-5-center { grid-column: 2; grid-row: 1 / span 2; }
.acces-grid-5-r1     { grid-column: 3; grid-row: 1; }
.acces-grid-5-r2     { grid-column: 3; grid-row: 2; }
@media (max-width: 767px) {
    .acces-grid-5 {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: 0.6rem;
    }
    .acces-grid-5-l1     { grid-column: 1; grid-row: 1; }
    .acces-grid-5-l2     { grid-column: 2; grid-row: 1; }
    .acces-grid-5-center { grid-column: 1 / span 2; grid-row: 2; }
    .acces-grid-5-r1     { grid-column: 1; grid-row: 3; }
    .acces-grid-5-r2     { grid-column: 2; grid-row: 3; }
    .acces-grid-5 .acces-img-block img { aspect-ratio: 4 / 3; }
    .acces-grid-5-center .acces-img-block img,
    .acces-grid-5-center img { aspect-ratio: 16 / 9; }
}
section.about-description.bg-white.icau-life-content h2 {
    color: #000;
    font-size: 2.8rem;
    font-weight: 300;
    letter-spacing: 0.1rem;
    padding-top: 1rem;
    padding-bottom: 2rem;
    transform: translateY(30px);
    transition: opacity .7s cubic-bezier(.4,0,.2,1),
              transform .7s cubic-bezier(.4,0,.2,1);
  transition-delay: .3s;
}
section.about-description.bg-white.icau-life-content {
    padding: 3rem 6rem 3rem 6rem;
}
/* ── About description section ── */
.about-description {
  padding: var(--section-py, 80px) 0;
  background: #fff;
}

/* ── Heading ── */
.about-section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark, #040e1c);
  line-height: 1.2;
  margin-bottom: .75rem;
}
.about-tag {
  font-size: 1rem;
  color: var(--primary, #f48e30);
  font-weight: 600;
  margin: 0;
}

/* ── Text column ── */
.about-row-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark, #040e1c);
  line-height: 1.2;
  margin-bottom: 0;
}
.about-row-desc {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.85;
  margin-bottom: 0;
}

/* ── Image column ── */
.about-row-img-wrap {
  overflow: hidden;
  border-radius: .75rem;
}
.about-row-img-wrap img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .5s ease;
}
.about-row-img-wrap:hover img { transform: scale(1.03); }

/* ══════════════════════════════════════════
   MOBILE FIXES
══════════════════════════════════════════ */
@media (max-width: 991px) {
  .about-section-title { font-size: 1.8rem; }
  .about-row-title     { font-size: 1.6rem; }
}

@media (max-width: 767px) {
  .about-description   { padding: 3rem 0; }
  .about-section-title { font-size: 1.5rem; }
  .about-row-title     { font-size: 1.35rem; }
  .about-row-desc      { font-size: .95rem; line-height: 1.75; }
  .about-tag           { font-size: .92rem; }

  /* Image comes BELOW text on mobile */
  .about-row-img-wrap {
    margin-top: 0;       /* gap handled by Bootstrap g-4 */
  }
}

@media (max-width: 480px) {
  .about-section-title { font-size: 1.3rem; }
  .about-row-title     { font-size: 1.2rem; }
  .about-row-desc      { font-size: .9rem; }
}
/* ── About car section subtitle ── */
.about-row-subtitle {
  font-size: 1.1rem;
  color: var(--primary, #f48e30);
  font-weight: 600;
  margin: .5rem 0 0;
  letter-spacing: .03em;
}

/* ── Mobile fixes ── */
@media (max-width: 767px) {
  .about-car .about-row-title    { font-size: 1.35rem; }
  .about-car .about-row-subtitle { font-size: 1rem; }
  .about-car .about-row-desc     { font-size: .95rem; }

  /* Button full width on small screens */
  .about-car .btn-cta-primary {
    width: 100%;
    text-align: center;
    font-size: 1rem;
  }
  .model-hero.cta-page {
    height: 100% !important;
    min-height: unset !important;
}
}

@media (max-width: 480px) {
  .about-car .about-row-title { font-size: 1.2rem; }
}


/* ══════════════════════════════════════════
   MOBILE — stack vertically
══════════════════════════════════════════ */
@media (max-width: 991px) {
 .about-description .showroom-grid {
    grid-template-columns: 1fr 1fr !important;   /* keep 2 cols on tablet */
    gap: 2rem;
    min-height: auto;
  }
}

@media (max-width: 767px) {
  .about-description .showroom-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
    min-height: auto;
  }

  /* Details on top */
  .showroom-details {
    order: 1;
  }

  /* Map below details */
  .showroom-map {
    order: 2;
    min-height: 320px;
    border-radius: .5rem;
  }
}

@media (max-width: 480px) {
  .showroom-map { min-height: 260px; }

  /* Button full width on small screens */
  .showroom-directions-btn {
    width: 100%;
    justify-content: center;
  }
}
/* ── Tablet ── */
@media (max-width: 991px) {
  .color-gallery-stage  { height: 80vh; }
  .color-swatches       { left: 5%; gap: .75rem; }
}

/* ── Mobile ── */
@media (max-width: 767px) {
  .color-gallery-stage  { height: 70vh; }

  /* Centre swatches, spread across full width */
  .color-swatches {
    left: 0;
    right: 0;
    bottom: 5rem;
    transform: none;               /* remove any translateX */
    width: 100%;
    padding: 0 1rem;
    justify-content: center;
    align-items: flex-end;
    flex-wrap: nowrap;             /* keep all in one row */
    overflow-x: visible;              /* scroll if too many swatches */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: .65rem;
  }
  .color-swatches::-webkit-scrollbar { display: none; }

  /* Smaller swatch circles */
  .swatch-img              { width: 36px; height: 36px; }
  .swatch.active .swatch-img { width: 44px; height: 44px; }

  /* Hide label on mobile — too crowded */
  .swatch-label            { display: none; }

  /* Remove dot indicator — no label so no need */
  .swatch.active::after    { top: -6px; width: 5px; height: 5px; }
    .explore-panel {
    max-height: 85%;
}
}

/* ── Small phones ── */
@media (max-width: 400px) {
  .swatch-img              { width: 30px; height: 30px; }
  .swatch.active .swatch-img { width: 38px; height: 38px; }
  .color-swatches          { gap: .5rem; padding: 0 .75rem; }
}
/* ── REEV technology section mobile fixes ── */

/* Lead text max-width for readability */
.model-section-lead.mx-auto {
  max-width: 680px;
}

/* ── Mobile ── */
@media (max-width: 767px) {

  /* Headings */
  .model-section-title {
    font-size: 2rem !important;
  }
  h4.sub-title {
    font-size: 1.4rem !important;
  }
  .model-section h3 {
    font-size: 1.5rem !important;
    padding-bottom: 1rem;
  }

  /* Lead text */
  p.model-section-lead {
    font-size: 1rem !important;
    line-height: 1.7rem !important;
    max-width: 100%;
  }

  /* Spec blocks row — centred, no overflow */
  .spec-blocks-row {
    flex-wrap: wrap !important;     /* allow wrapping on very small screens */
    justify-content: center;
    overflow-x: visible;
    gap: 1rem !important;
  }

  /* Each spec block — fixed width on mobile */
  .spec-block {
    width: calc(50% - .5rem);       /* two per row */
    min-width: 130px;
    max-width: 180px;
  }

  .spec-value { font-size: 1.2rem !important; }
  .spec-text  { font-size: .85rem !important; }
    .contact .page-hero-title {
    font-size: 2.5rem;
}
    .form-details {
    padding: 01rem;
        width: 100%;
}
    .icau-life-content h2.about-section-title {
    font-weight: 600;
    line-height: 3rem;
    color: #ffffff;
    padding-bottom: 1rem;
}
    section.about-description.bg-white.icau-life-content h2 {
   
    font-size: 1.4rem !important;
    font-weight: 400;
    letter-spacing: 0.1rem;
    padding-top: 1rem;
    padding-bottom: 2rem;   
    line-height: 2rem;
}
    section.about-description.bg-white.icau-life-content {
    padding: 0 !important;
}
}
section.content-privacy {
    width: 80%;
    padding: 5rem 0;
    margin: auto;
}

@media (max-width: 400px) {
  .spec-block {
    width: 100%;                    /* stack on very small phones */
    max-width: 240px;
  }
}

/* ══════════════════════════════════════════
   WARRANTY PAGE
══════════════════════════════════════════ */
.warranty-hero {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 1rem 2.5rem;
    text-align: center;
    position: relative;
}
.warranty-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.75rem);
    font-weight: 700;
    letter-spacing: .04em;
    margin: 0 0 .9rem;
    color: #111;
}
.warranty-hero .warranty-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--primary);
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin: 0 0 1.75rem;
}
.warranty-divider {
    display: inline-block;
    width: 64px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}
.warranty-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    width: 80%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 2rem 1rem 7rem;
}
.warranty-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 2.4rem 1.85rem;
    display: flex;
    flex-direction: column;
    gap: .85rem;
    position: relative;
    overflow: hidden;
    transition: transform .35s ease,
                box-shadow .35s ease,
                border-color .35s ease;
}
.warranty-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
}
.warranty-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
    border-color: rgba(244, 142, 48, .3);
}
.warranty-card:hover::before {
    transform: scaleX(1);
}
.warranty-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(244, 142, 48, .12);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: .25rem;
    transition: background .35s ease, color .35s ease;
}
.warranty-card:hover .warranty-card-icon {
    background: var(--primary);
    color: #fff;
}
.warranty-card-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #111;
    margin: 0;
    letter-spacing: .02em;
    line-height: 1.4;
}
.warranty-card-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.25;
    margin: 0;
}
.warranty-card-desc {
    font-size: .92rem;
    color: #555;
    line-height: 1.65;
    margin: 0;
}
.warranty-card-featured {
    background: #111;
    border-color: #111;
}
.warranty-card-featured .warranty-card-title,
.warranty-card-featured .warranty-card-desc {
    color: #fff;
}
.warranty-card-featured .warranty-card-desc {
    color: rgba(255, 255, 255, .75);
}
.warranty-card-featured .warranty-card-icon {
    background: rgba(244, 142, 48, .18);
}
.warranty-card-featured:hover {
    border-color: var(--primary);
}
@media (max-width: 991px) {
    .warranty-grid {
        grid-template-columns: repeat(2, 1fr);
        width: 90%;
        gap: 1.25rem;
    }
}
@media (max-width: 575px) {
    .warranty-hero {
        width: 90%;
        padding: 6rem 1rem 2rem;
    }
    .warranty-grid {
        grid-template-columns: 1fr;
        width: 90%;
        padding: 1.5rem 0 4rem;
    }
    .warranty-card {
        padding: 1.85rem 1.4rem;
    }
    .warranty-card-value {
        font-size: 1.3rem;
    }
}
