/* 
    Neostar Premium Web Project
    Main Stylesheet - Re-synchronized for high-end aesthetic
*/

:root {
    --primary: #E30613;
    --primary-hover: #C20511;
    --bg-dark: #0A0A0A;
    --bg-surface: #121212;
    --bg-card: #1E1E1E;
    --text-white: #FFFFFF;
    --text-gray: #B0B0B0;
    --text-muted: #707070;
    --border-color: rgba(255, 255, 255, 0.1);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --container-width: 1200px;
    --header-height: 100px;
    --shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Header */
.main-header {
    height: var(--header-height);
    background-color: transparent;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.main-header.header-scrolled {
    background-color: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
    height: 85px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 65px;
    width: auto;
}

.desktop-nav ul {
    display: flex;
    gap: 28px;
    align-items: center;
}

.desktop-nav a {
    font-weight: 600;
    font-size: 0.76rem;
    text-transform: uppercase;
    color: white;
    transition: var(--transition);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.desktop-nav a i {
    margin-left: 7px;
    font-size: 0.85em;
    opacity: 0.8;
}

.desktop-nav .has-dropdown {
    position: relative;
}

.desktop-nav .has-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    width: 190px;
    height: 28px;
    transform: translateX(-50%);
}

.desktop-nav .dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translate(-50%, 10px);
    min-width: 170px;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 10px 0;
    background-color: rgba(10, 10, 10, 0.98);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition);
}

.desktop-nav .has-dropdown:hover .dropdown-menu,
.desktop-nav .has-dropdown:focus-within .dropdown-menu {
    transform: translate(-50%, 0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.desktop-nav .dropdown-menu a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 11px 22px;
    font-size: 0.74rem;
    text-align: center;
    white-space: nowrap;
    width: 100%;
}

.desktop-nav .dropdown-menu li {
    width: 100%;
}

.desktop-nav .dropdown-menu a:hover {
    background-color: var(--primary);
    color: white;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: white;
    transition: var(--transition);
}

@media (max-width: 992px) {
    .desktop-nav { display: none; }
    .mobile-menu-btn { display: flex; }
}

.desktop-nav a:hover {
    color: var(--primary);
}

.btn-nav {
    background-color: var(--primary);
    padding: 10px 25px;
    border-radius: 4px;
    color: white !important;
}

.btn-hablemos {
    border: 1px solid white;
    padding: 10px 28px;
    border-radius: 2px;
    color: white !important;
    background-color: transparent;
    transition: var(--transition);
}

.btn-hablemos:hover {
    background-color: white;
    color: black !important;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: transparent;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    padding: 0 20px;
    animation: fadeIn 1.5s ease-out;
    position: relative;
    z-index: 10;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1;
    margin-bottom: 25px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.hero-logo-top {
    height: 50px;
    margin: 0 auto 20px;
    opacity: 0.8;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--primary);
    color: white;
    padding: 16px 40px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 2px;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: none;
    box-shadow: 0 5px 15px rgba(227, 6, 19, 0.4);
}

.hero-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.hero-dots .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.hero-dots .dot.active {
    background-color: var(--primary);
}

/* Stats Bar */
.stats-bar {
    background-color: var(--bg-dark);
    padding: 80px 0;
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
}

.stat-item h2 {
    font-size: 3.5rem;
    margin-bottom: 5px;
    color: #fff;
}

.stat-item p {
    font-size: 0.8rem;
    color: var(--text-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Brands Section */
.brands-section {
    padding: 80px 0;
    background-color: #050505;
    text-align: center;
}

.section-title-light {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 4px;
    color: white;
    margin-bottom: 50px;
    text-align: center;
    text-transform: uppercase;
}

.section-title-light strong {
    font-weight: 900;
}

.brands-grid-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.brands-row {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 15px;
}

.brand-card {
    flex: 1;
    background-color: #111;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 200px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.brand-logo-box {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.brand-card img {
    max-height: 100%;
    max-width: 140px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: var(--transition);
}

.brand-card:hover img, .brand-card.active img {
    opacity: 1;
}

.btn-brand-more {
    display: block;
    width: 100%;
    background-color: #1a1a1a;
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0;
    opacity: 1;
    transform: none;
    text-align: center;
    transition: var(--transition);
    text-decoration: none;
}

.brand-card:hover .btn-brand-more, .brand-card.active .btn-brand-more {
    background-color: var(--primary);
    border-top-color: var(--primary);
    color: white;
}

.brand-card:hover {
    background-color: #121212;
    z-index: 10;
    border-color: rgba(255, 255, 255, 0.1);
}

.brand-card:hover img {
    opacity: 1;
}

.brand-card:hover .btn-brand-more, .brand-card.active .btn-brand-more {
    opacity: 1;
    transform: translateY(0);
}

.brand-card.active {
    background-color: #121212;
}

.three-cols .brand-card {
    flex: 0 0 33.333%;
}

.four-cols .brand-card {
    flex: 0 0 25%;
}

/* Categories Split */
.categories-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 500px;
    border-top: 1px solid var(--border-color);
}

.cat-box {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0;
    background-color: #0a0a0a;
    background-size: cover;
    background-position: center;
}

.cat-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

.cat-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-bottom: 30px;
}

.cat-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-cat {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    padding: 18px 0;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.btn-cat.red, .btn-cat.dark {
    background-color: #2a2a2a;
}

.btn-cat.red:hover, .btn-cat.dark:hover {
    background-color: var(--primary);
}

/* Featured Units */
.featured-section {
    padding: 100px 0;
    background-color: #f9f9f9;
    color: #333;
}

.featured-section.dark-section {
    background-color: #0a0a0a;
    color: white;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2rem;
    color: #1a1a1a;
    letter-spacing: 1px;
}

.dark-section .section-header h2 {
    color: #fff;
    font-weight: 400;
}

.dark-section .section-header h2 strong {
    font-weight: 900;
}

.section-subtitle {
    color: #888;
    margin-top: 10px;
    font-size: 0.85rem;
}

.slider-controls {
    display: flex;
    gap: 10px;
}

.swiper-button-prev-custom, .swiper-button-next-custom {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: white;
}

.dark-section .swiper-button-prev-custom,
.dark-section .swiper-button-next-custom {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dark-section .swiper-button-prev-custom:hover,
.dark-section .swiper-button-next-custom:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}

.unit-card-dark {
    transition: var(--transition);
    height: 100%;
}

.unit-card-dark:hover {
    transform: translateY(-10px);
}

.unit-img-box {
    background-color: #fff;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 25px;
}

.unit-img-box img {
    max-height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.unit-info {
    text-align: left;
}

.unit-info h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 800;
}

.unit-info p {
    font-size: 0.85rem;
    color: #b0b0b0;
    font-weight: 400;
}

/* Brand Banners */
.brand-banners {
    display: grid;
    grid-template-columns: 1fr;
}

.banner-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
}

.large-banner {
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 40px;
}

.banner-logo {
    max-height: 100px;
    max-width: 250px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.banner-logo.nissan-logo {
    max-height: 160px;
    max-width: 300px;
}

.banner-subtitle {
    color: white;
    font-size: 1.1rem;
    font-weight: 300;
}

/* Brand Product Page */
.brand-page {
    background-color: #050505;
}

.brand-hero {
    min-height: 560px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.brand-hero-bg,
.brand-hero-overlay {
    position: absolute;
    inset: 0;
}

.brand-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-hero-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.45), rgba(0,0,0,0.35));
}

.brand-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--header-height);
}

.brand-hero-logo {
    max-width: 260px;
    max-height: 150px;
    filter: brightness(0) invert(1);
}

.brand-hero-logo.nissan-logo {
    max-width: 320px;
    max-height: 180px;
}

.brand-hero-logo.honda-logo {
    max-width: 230px;
    max-height: 170px;
}

.brand-hero-logo.subaru-logo {
    width: 300px;
    max-width: 300px;
    max-height: 170px;
    filter: none;
}

.brand-hero-logo.suzuki-logo {
    max-width: 250px;
    max-height: 170px;
}

.brand-models-section {
    padding: 100px 0 110px;
    background-color: #050505;
    color: white;
}

.brand-models-section .section-header h2 {
    color: #fff;
}

.brand-models-section .section-header h2 strong {
    color: #fff;
}

.brand-models-section .section-header {
    gap: 24px;
}

.btn-nissan-plan {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 45px;
    padding: 0 26px;
    margin-left: auto;
    background-color: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);
    border-radius: 2px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: var(--transition);
}

.btn-nissan-plan:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    color: #fff;
    box-shadow: 0 8px 20px rgba(227, 6, 19, 0.32);
}

.brand-models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 34px 8px;
    perspective: 1200px;
}

.brand-model-card {
    min-width: 0;
    position: relative;
    padding: 12px;
    border: 1px solid transparent;
    border-radius: 8px;
    transform-style: preserve-3d;
    transition: var(--transition);
}

.brand-model-card:hover {
    transform: translateY(-14px) rotateX(6deg) rotateY(-5deg);
    border-color: rgba(227, 6, 19, 0.75);
    background: linear-gradient(145deg, rgba(227, 6, 19, 0.16), rgba(255, 255, 255, 0.03) 42%, rgba(0, 0, 0, 0));
    box-shadow: 0 28px 55px rgba(0, 0, 0, 0.65), 0 0 32px rgba(227, 6, 19, 0.28);
}

.brand-model-card::after {
    content: '';
    position: absolute;
    inset: 12px;
    border-radius: 5px;
    border: 1px solid rgba(227, 6, 19, 0);
    pointer-events: none;
    transform: translateZ(18px);
    transition: var(--transition);
}

.brand-model-card:hover::after {
    border-color: rgba(227, 6, 19, 0.7);
}

.brand-model-img {
    height: 255px;
    background-color: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    border-radius: 4px;
    overflow: hidden;
    transform: translateZ(24px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
    transition: var(--transition);
}

.brand-model-card:hover .brand-model-img {
    background-color: #fff;
    box-shadow: 0 18px 38px rgba(227, 6, 19, 0.22);
}

.brand-model-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.brand-model-card:hover .brand-model-img img {
    transform: scale(1.08) translateZ(18px);
}

.brand-model-info {
    padding-top: 22px;
    text-align: left;
    transform: translateZ(34px);
}

.brand-model-info h3 {
    font-size: 1.15rem;
    color: white;
    margin-bottom: 10px;
    letter-spacing: 0;
    transition: var(--transition);
}

.brand-model-card:hover .brand-model-info h3 {
    color: var(--primary);
}

.brand-model-info p {
    color: var(--text-gray);
    font-size: 0.82rem;
    line-height: 1.6;
}

.brand-feature-banner {
    height: 540px;
    overflow: hidden;
    background-color: #050505;
}

.brand-feature-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-page-brands {
    padding-top: 90px;
    padding-bottom: 140px;
}

.brand-page-intro {
    color: var(--text-gray);
    max-width: 560px;
    margin: -25px auto 50px;
    font-size: 0.86rem;
    line-height: 1.8;
}

.brand-contact-section {
    background:
        linear-gradient(rgba(0,0,0,0.62), rgba(0,0,0,0.72)),
        url('../Assets/imagenes/hero.jpg') center/cover no-repeat;
}

.nissan-footer {
    position: relative;
    overflow: hidden;
    padding: 90px 0 54px;
    background:
        radial-gradient(circle at 82% 12%, rgba(227, 6, 19, 0.18), transparent 30%),
        linear-gradient(135deg, #0b0b0b 0%, #151515 46%, #090909 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.nissan-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 90px 100%;
    opacity: 0.16;
    pointer-events: none;
}

.nissan-footer .container {
    position: relative;
    z-index: 1;
}

.nissan-footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 48px;
}

.nissan-footer-kicker {
    display: block;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.nissan-footer-top h2 {
    color: #fff;
    font-size: 2.4rem;
    letter-spacing: 1px;
}

.nissan-footer-logo {
    width: 170px;
    filter: brightness(0) invert(1);
    opacity: 0.92;
}

.honda-footer-logo {
    width: 118px;
}

.subaru-footer-logo {
    width: 185px;
    filter: none;
}

.suzuki-footer-logo {
    width: 145px;
}

.nissan-locations {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}


.byd-locations {
    grid-template-columns: repeat(2, minmax(280px, 320px));
    justify-content: center;
    gap: 18px;
}

.byd-locations .nissan-location-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.028));
    border-color: rgba(255,255,255,0.14);
}

.nissan-location-card {
    position: relative;
    min-height: 270px;
    padding: 34px 30px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.nissan-location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
}

.nissan-location-card:hover {
    transform: translateY(-8px);
    border-color: rgba(227, 6, 19, 0.5);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.5), 0 0 28px rgba(227, 6, 19, 0.18);
}

.nissan-location-index {
    position: absolute;
    right: 22px;
    bottom: 12px;
    color: rgba(255, 255, 255, 0.04);
    font-size: 5.8rem;
    font-weight: 900;
    line-height: 1;
}

.nissan-location-content {
    position: relative;
    z-index: 1;
}

.nissan-location-content h3 {
    color: var(--primary);
    font-size: 1.55rem;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.nissan-location-content h3::after {
    content: '';
    display: block;
    width: 54px;
    height: 4px;
    margin-top: 14px;
    background: var(--primary);
}

.nissan-location-content p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.98rem;
    line-height: 1.72;
    margin-bottom: 8px;
}

.nissan-location-content strong {
    color: #fff;
    font-weight: 900;
}

.nissan-address {
    color: #fff !important;
    font-size: 1.08rem !important;
}

.nissan-address span {
    color: rgba(255, 255, 255, 0.56);
}

.nissan-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-top: 48px;
    padding-top: 34px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.nissan-footer-neostar {
    height: 34px;
    width: auto;
}

.btn-banner-bottom {
    background-color: #fff;
    color: #1a1a1a;
    text-align: center;
    padding: 20px 0;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-banner-bottom i {
    color: var(--primary);
    transition: var(--transition);
}

.btn-banner-bottom:hover {
    background-color: var(--primary);
    color: #fff;
}

.btn-banner-bottom:hover i {
    color: #fff;
}

/* Why Choose Us */
.why-choose-us {
    padding: 100px 0;
    background-color: #050505;
}

.section-title-center {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 60px;
    font-weight: 400;
    letter-spacing: 1px;
}

.section-title-center strong {
    font-weight: 900;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid rgba(255,255,255,0.08);
}

/* NEW card design matching the reference image */
.why-card-new {
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition);
}

.why-card-new:last-child {
    border-right: none;
}

.why-card-header {
    background-color: var(--primary);
    padding: 28px 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.why-card-icon {
    font-size: 1.6rem;
    color: #fff;
}

.why-card-header h3 {
    font-size: 0.9rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}

.why-card-body {
    background-color: #111;
    padding: 28px 30px;
    flex: 1;
    border: 1px solid rgba(255,255,255,0.06);
    border-top: none;
}

.why-card-body p {
    color: #ccc;
    font-size: 0.85rem;
    line-height: 1.75;
    margin: 0;
}

.why-card-new:hover .why-card-header {
    background-color: #b5000c;
}

.why-card-new:hover .why-card-body {
    background-color: #161616;
}

/* Dual Sections — stacked rows */
.dual-sections {
    display: flex;
    flex-direction: column;
}

.ds-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 380px;
}

.ds-row--savings {
    height: 380px;
}

.ds-img {
    height: 380px;
    min-height: 0;
    max-height: 380px;
    overflow: hidden;
    position: relative;
}

.ds-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.ds-row:hover .ds-img img {
    transform: scale(1.04);
}

.ds-content {
    height: 100%;
    box-sizing: border-box;
    padding: 60px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.ds-content--dark {
    background-color: #0d0d0d;
    transition: background-color 0.4s ease;
}

.ds-content--dark:hover {
    background-color: var(--primary);
}

.ds-content--black {
    background-color: #000;
    transition: background-color 0.4s ease;
}

.ds-content--black:hover {
    background-color: var(--primary);
}

.ds-content h2 {
    font-size: 1.9rem;
    font-weight: 900;
    color: #fff;
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.ds-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.88rem;
    line-height: 1.75;
    margin: 0;
    max-width: 420px;
}

/* Button: default = black, hover = red */
.btn-ds {
    display: inline-block;
    align-self: flex-start;
    padding: 12px 28px;
    border: 1px solid #fff;
    color: #fff;
    background-color: #000;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: background-color 0.25s ease, border-color 0.25s ease;
}

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

/* Savings plan card */
.savings-plan-content {
    padding: 24px 60px;
    gap: 6px;
}

.savings-plan-eyebrow {
    color: #fff !important;
    font-size: 0.72rem !important;
    font-weight: 800;
    letter-spacing: 1.4px;
    line-height: 1;
}

.savings-plan-content > p {
    max-width: 455px;
    line-height: 1.55;
}

.savings-plan-brands {
    width: 100%;
    margin-top: 4px;
}

.savings-plan-brands-title {
    display: flex;
    align-items: center;
    gap: 18px;
    max-width: none;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.65px;
    line-height: 1.25;
    text-align: center;
}

.savings-plan-brands-title::before,
.savings-plan-brands-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
}

.savings-plan-brand-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: calc(100% + 120px);
    margin: 34px -60px 0;
    background: #000;
}

.savings-plan-brand {
    display: flex;
    min-width: 0;
    min-height: 164px;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    gap: 0;
    padding: 0;
    overflow: hidden;
    background: #000;
    color: #fff;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-decoration: none;
    transition: transform 0.28s ease;
}

.savings-plan-brand + .savings-plan-brand {
    border-left: 1px solid rgba(255, 255, 255, 0.27);
}

.savings-plan-brand:hover {
    transform: translateY(-3px);
}

.savings-plan-brand:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 4px;
}

.savings-plan-brand > img {
    display: block;
    width: 112px;
    height: 82px;
    margin-top: 14px;
    transition: transform 0.3s ease;
}

.savings-plan-brand > img {
    object-fit: contain;
}

.savings-plan-brand--nissan > img {
    width: 170px;
    height: 102px;
    margin-top: 4px;
}

.savings-plan-cta {
    display: flex;
    width: 100%;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    box-sizing: border-box;
    padding: 8px 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: #090909;
    color: #fff;
    font-size: 0.73rem;
    font-weight: 900;
    letter-spacing: 0.8px;
    line-height: 1;
    text-align: center;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    transition: background-color 0.28s ease, border-color 0.28s ease;
}

.savings-plan-cta i {
    font-size: 0.62rem;
}

.savings-plan-brand:hover .savings-plan-cta,
.savings-plan-brand:focus-visible .savings-plan-cta {
    border-color: var(--primary);
    background-color: var(--primary);
}

.savings-plan-brand:hover > img {
    transform: scale(1.13);
}

/* Steps Section */
.steps-section {
    padding: 100px 0;
    background-color: #0a0a0a;
}

.steps-header {
    text-align: center;
    margin-bottom: 70px;
}

.steps-title {
    font-size: 2rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: 1px;
    margin: 0 0 18px 0;
    text-transform: uppercase;
}

.steps-title strong {
    font-weight: 900;
}

.steps-subtitle {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.steps-list {
    max-width: 900px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.step-item:first-child {
    border-top: 1px solid rgba(255,255,255,0.1);
}

.step-left {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    flex: 1;
}

.step-num {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary);
    min-width: 55px;
    line-height: 1;
    padding-top: 2px;
}

.step-text h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.step-text p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    line-height: 1.6;
    max-width: 450px;
}

.btn-step-more {
    color: #fff;
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 12px 24px;
    border: 1px solid rgba(255,255,255,0.25);
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-step-more:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}

/* Parts Banner */
.parts-banner {
    display: flex;
    flex-direction: column;
}

.parts-banner-img {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.parts-banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.parts-banner-bar {
    background-color: var(--primary);
    padding: 22px 0;
}

.parts-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.parts-banner-bar h2 {
    font-size: 1.2rem;
    font-weight: 400;
    color: #fff;
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.parts-banner-bar h2 strong {
    font-weight: 900;
}

.btn-parts {
    color: #fff;
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 12px 24px;
    border: 1px solid rgba(255,255,255,0.5);
    transition: var(--transition);
    white-space: nowrap;
    text-decoration: none;
}

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

/* Contact Section */
.contact-section-dark {
    padding: 120px 0;
    background-color: #050505;
    display: flex;
    justify-content: center;
}

.contact-form-premium {
    max-width: 640px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    border: 1px solid var(--primary);
    padding: 50px 40px;
    background-color: #000;
}

.contact-form-premium h3 {
    margin-bottom: 30px;
    font-size: 1.5rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: 1px;
}

.contact-form-premium h3 strong {
    font-weight: 900;
}

.form-white-box {
    background: transparent;
    padding: 0;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-tabs {
    width: 100%;
}

.contact-tab-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 6px;
    margin-bottom: 22px;
    background: #151515;
    border: 1px solid rgba(255,255,255,0.12);
}

.contact-tab-btn {
    min-height: 48px;
    border: 0;
    background: transparent;
    color: rgba(255,255,255,0.72);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.contact-tab-btn.active {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 14px 28px rgba(227,6,19,0.26);
}

.contact-tab-panel {
    display: none;
}

.contact-tab-panel.active {
    display: flex;
}

.form-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
}

.form-white-box input, .form-white-box textarea {
    padding: 16px;
    background: #fff;
    border: none;
    color: #333;
    border-radius: 0;
    font-family: inherit;
    font-size: 0.85rem;
}

.form-white-box input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.form-white-box textarea {
    height: 120px;
    resize: none;
}

.cv-upload-field {
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: #fff;
    color: #111;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.cv-upload-field:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 24px rgba(0,0,0,0.24);
}

.cv-upload-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    background: var(--primary);
    color: #fff;
}

.cv-upload-copy {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.cv-upload-copy strong {
    font-size: 0.86rem;
    font-weight: 900;
    text-transform: uppercase;
}

.cv-upload-copy small {
    color: #666;
    font-size: 0.76rem;
}

.btn-form-submit {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.8rem;
    margin-top: 5px;
}

.btn-form-submit:hover {
    background-color: var(--primary-hover);
}

/* Footer */
.main-footer-premium {
    padding: 60px 0 40px;
    background-color: #161616;
}

.footer-premium-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-premium-logo {
    height: 35px;
}

.social-links-premium {
    display: flex;
    gap: 12px;
}

.social-links-premium a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid var(--primary);
    border-radius: 4px;
    color: var(--primary);
    font-size: 0.9rem;
    transition: var(--transition);
}

.social-links-premium a:hover {
    background-color: var(--primary);
    color: #fff;
}

.footer-premium-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.15);
    margin: 40px 0;
}

.footer-premium-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-premium-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-premium-links li a {
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.footer-premium-links li a:hover {
    color: var(--primary);
}

.footer-premium-terms a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    transition: var(--transition);
}

.footer-premium-terms a:hover {
    color: #fff;
}

/* Floating WhatsApp CTA */
.whatsapp-float {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 1800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 22px;
    background-color: var(--primary);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45), 0 0 22px rgba(227, 6, 19, 0.35);
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: var(--transition);
}

.whatsapp-float i {
    color: #fff;
    font-size: 1.35rem;
}

.whatsapp-float:hover {
    background-color: var(--primary-hover);
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.55), 0 0 30px rgba(227, 6, 19, 0.45);
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 9999;
}

.toast-notification {
    background: rgba(13, 13, 13, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    padding: 20px 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    animation: slideIn 0.5s ease forwards;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero-content h1 { font-size: 3rem; }
    .brands-grid-modern { grid-template-columns: repeat(2, 1fr); }
    .brand-hero { min-height: 440px; }
    .brand-models-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 14px; }
    .brand-feature-banner { height: 380px; }
    .nissan-locations { grid-template-columns: 1fr; }
    .nissan-location-card { min-height: auto; }
    .categories-split { height: auto; }
    .cat-box { height: 340px; }
    .why-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .why-card-new { border-bottom: none; }
    .ds-row { grid-template-columns: 1fr; height: auto; }
    .ds-row--savings { height: auto; }
    .ds-img { height: 260px; }
    .ds-content { padding: 50px 30px; }
    .savings-plan-brand-links {
        width: calc(100% + 60px);
        margin-inline: -30px;
    }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .main-header,
    .main-header.header-scrolled {
        height: 76px;
    }

    .logo img {
        height: 50px;
    }

    .hero {
        height: auto;
        min-height: 620px;
        padding: 120px 0 56px;
        align-items: flex-end;
    }

    .hero-bg img {
        object-position: center;
    }

    .hero-bg::after {
        background: linear-gradient(to bottom, rgba(0,0,0,0.34) 0%, rgba(0,0,0,0.72) 100%);
    }

    .hero-content h1 {
        font-size: 2.45rem;
        line-height: 1.02;
        margin-bottom: 14px;
        letter-spacing: -0.5px;
    }

    .hero-content p {
        font-size: 0.92rem;
        line-height: 1.55;
        margin-bottom: 22px;
    }

    .btn-primary {
        padding: 13px 24px;
        font-size: 0.76rem;
    }

    .hero-dots {
        margin-top: 26px;
    }

    .stats-bar {
        padding: 38px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }

    .stat-item h2 {
        font-size: 1.75rem;
        margin-bottom: 2px;
    }

    .stat-item p {
        font-size: 0.58rem;
        line-height: 1.25;
        letter-spacing: 0.8px;
    }

    .brands-section {
        padding: 52px 0;
    }

    .section-title-light,
    .section-title-center {
        font-size: 1.34rem;
        line-height: 1.18;
        letter-spacing: 1.4px;
        margin-bottom: 28px;
    }

    .brands-grid-wrapper,
    .brands-row {
        gap: 10px;
    }

    .brand-models-section .section-header { flex-direction: column; align-items: flex-start; }
    .btn-nissan-plan { margin-left: 0; }
    .brand-models-section { padding: 70px 0; }
    .brand-models-grid { grid-template-columns: 1fr; }
    .brand-model-img { height: 230px; }
    .brand-feature-banner { height: 280px; }
    .brand-page-brands { padding-bottom: 90px; }
    .nissan-footer { padding: 70px 0 44px; }
    .nissan-footer-top,
    .nissan-footer-bottom { flex-direction: column; align-items: flex-start; }
    .nissan-footer-top h2 { font-size: 2rem; }
    .nissan-location-card { padding: 30px 24px; }
    .nissan-location-content h3 { font-size: 1.35rem; }
    .nissan-address { font-size: 1rem !important; }
    .brands-row {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .three-cols .brand-card,
    .four-cols .brand-card {
        flex: initial;
    }

    .brand-card {
        min-height: 118px;
    }

    .brand-logo-box {
        padding: 22px 12px 18px;
    }

    .brand-card img {
        max-width: 92px;
        max-height: 48px;
    }

    .btn-brand-more {
        padding: 10px 0;
        font-size: 0.62rem;
        letter-spacing: 0.7px;
    }

    .categories-split {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cat-box {
        height: 230px;
    }

    .cat-content {
        padding-bottom: 18px;
    }

    .cat-content h2 {
        font-size: 1.8rem;
    }

    .btn-cat {
        padding: 13px 8px;
        font-size: 0.64rem;
        line-height: 1.25;
    }

    .featured-section,
    .why-choose-us,
    .steps-section {
        padding: 64px 0;
    }

    .section-header {
        align-items: flex-end;
        gap: 18px;
        margin-bottom: 34px;
    }

    .section-header h2,
    .steps-title {
        font-size: 1.45rem;
        line-height: 1.15;
    }

    .section-subtitle,
    .steps-subtitle {
        font-size: 0.78rem;
        line-height: 1.55;
    }

    .slider-controls {
        flex: 0 0 auto;
    }

    .swiper-button-prev-custom,
    .swiper-button-next-custom {
        width: 38px;
        height: 38px;
    }

    .unit-img-box {
        height: 210px;
        margin-bottom: 18px;
    }

    .large-banner {
        height: 280px;
    }

    .banner-overlay {
        padding: 24px;
    }

    .banner-logo {
        max-height: 72px;
        max-width: 180px;
    }

    .banner-logo.nissan-logo {
        max-height: 105px;
        max-width: 220px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card-new {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .why-card-new:last-child {
        border-bottom: none;
    }

    .why-card-header {
        flex-direction: row;
        align-items: center;
        gap: 12px;
        padding: 16px 18px;
    }

    .why-card-icon {
        flex: 0 0 34px;
        width: 34px;
        height: 34px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        border: 1px solid rgba(255,255,255,0.35);
        border-radius: 50%;
    }

    .why-card-header h3 {
        font-size: 0.78rem;
        line-height: 1.25;
    }

    .why-card-body {
        padding: 16px 18px 18px;
    }

    .why-card-body p {
        font-size: 0.78rem;
        line-height: 1.55;
    }

    .ds-img {
        height: 210px;
    }

    /* Mobile narrative: image first, then its corresponding card. */
    .ds-row--savings .ds-img {
        order: -1;
    }

    .ds-row:nth-child(2) .ds-img {
        order: -1;
    }

    .ds-content {
        padding: 34px 22px;
        gap: 14px;
    }

    .ds-content h2 {
        font-size: 1.38rem;
    }

    .ds-content p {
        font-size: 0.8rem;
        line-height: 1.55;
    }

    .ds-row:not(.ds-row--savings) .ds-content--dark {
        border-top: 4px solid var(--primary);
        background: linear-gradient(135deg, #0d0d0d 0%, #0d0d0d 72%, #210608 100%);
    }

    .ds-row:not(.ds-row--savings) .btn-ds {
        background-color: var(--primary);
        border-color: var(--primary);
    }

    .savings-plan-brand-links {
        width: calc(100% + 44px);
        margin: 20px -22px 0;
    }

    .savings-plan-brand {
        min-height: 132px;
        gap: 0;
        padding: 0;
        font-size: 0.66rem;
    }

    .savings-plan-brand > img {
        width: 64px;
        height: 56px;
        margin-top: 10px;
    }

    .savings-plan-brand--nissan > img {
        width: 116px;
        height: 74px;
        margin-top: 3px;
    }

    .savings-plan-cta {
        width: 100%;
        min-height: 38px;
        box-sizing: border-box;
        justify-content: center;
        gap: 5px;
        padding: 7px 3px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        background-color: #090909;
        font-size: 0.58rem;
        letter-spacing: 0.45px;
    }

    .savings-plan-brands-title {
        gap: 10px;
        font-size: 0.61rem;
    }

    .steps-header {
        margin-bottom: 32px;
    }

    .steps-list {
        display: grid;
        gap: 12px;
    }

    .step-item {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding: 18px;
        text-align: left;
        background-color: #111;
        border: 1px solid rgba(255,255,255,0.08);
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .step-item:first-child {
        border-top: 1px solid rgba(255,255,255,0.08);
    }

    .step-left {
        display: block;
        width: 100%;
    }

    .step-num {
        display: block;
        min-width: 0;
        margin-bottom: 8px;
        font-size: 1.2rem;
        padding-top: 0;
    }

    .step-text h3 {
        font-size: 0.66rem;
        line-height: 1.2;
        letter-spacing: 0;
        margin-bottom: 6px;
        white-space: nowrap;
    }

    .step-text p {
        max-width: 100%;
        font-size: 0.76rem;
        line-height: 1.45;
    }

    .btn-step-more {
        align-self: flex-start;
        margin-left: 0;
        padding: 10px 18px;
        font-size: 0.62rem;
    }

    .parts-banner .container { flex-direction: column; gap: 30px; }
    .whatsapp-float {
        right: 18px;
        bottom: 18px;
        min-height: 50px;
        padding: 0 18px;
        font-size: 0.72rem;
    }
}

/* Post venta page */
.after-sales-page {
    background: #050505;
    color: #fff;
    overflow: hidden;
}

.panel-cta {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    background: #050505;
    overflow: hidden;
}

.after-sales-hero {
    min-height: 100vh;
    padding-top: var(--header-height);
}

.panel-cta-bg,
.panel-cta-bg::after {
    position: absolute;
    inset: 0;
}

.panel-cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(0.15) contrast(1.12) brightness(0.72);
    transform: scale(1.01);
}

.panel-cta-bg::after {
    content: '';
    background:
        linear-gradient(90deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.74) 31%, rgba(0,0,0,0.22) 63%, rgba(0,0,0,0.5) 100%),
        linear-gradient(180deg, rgba(0,0,0,0.08), rgba(5,5,5,0.55) 100%);
}

.panel-cta-content {
    position: relative;
    z-index: 2;
    max-width: var(--container-width);
}

.panel-cta-content h1,
.panel-cta-content h2 {
    max-width: 690px;
    margin-top: 22px;
    color: #fff;
    font-size: clamp(3rem, 6.5vw, 5.6rem);
    line-height: 0.92;
    letter-spacing: 0;
    text-transform: uppercase;
    text-shadow: 0 18px 44px rgba(0,0,0,0.62);
}

.panel-cta-content p {
    max-width: 600px;
    margin-top: 22px;
    color: rgba(255,255,255,0.82);
    font-size: clamp(1rem, 1.45vw, 1.22rem);
    line-height: 1.7;
}

.panel-cta-button {
    min-width: min(100%, 360px);
    min-height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 44px;
    padding: 0 34px;
    color: #fff;
    border: 1px solid var(--primary);
    border-radius: 3px;
    background: rgba(0,0,0,0.32);
    font-size: 0.88rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
    transition: var(--transition);
}

.panel-cta-button:hover {
    background: var(--primary);
    box-shadow: 0 18px 40px rgba(227,6,19,0.28);
}

.panel-cta-parts .panel-cta-bg img {
    object-position: center right;
}

.panel-cta-accessories .panel-cta-bg img {
    object-position: center;
}

.after-sales-dual {
    display: flex;
    flex-direction: column;
    background: #050505;
}

.after-sales-dual-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 440px;
    background: #050505;
}

.after-sales-dual-image {
    position: relative;
    overflow: hidden;
    min-height: 440px;
}

.after-sales-dual-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.18), rgba(0,0,0,0.02)),
        linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.28));
    pointer-events: none;
}

.after-sales-dual-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.08) contrast(1.06) brightness(0.86);
    transition: transform 0.65s ease, filter 0.65s ease;
}

.after-sales-dual-row:hover .after-sales-dual-image img {
    transform: scale(1.045);
    filter: grayscale(0) contrast(1.08) brightness(0.94);
}

.after-sales-dual-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 18px;
    padding: 74px 8vw;
    background: #0b0b0b;
    transition: var(--transition);
}

.after-sales-dual-row:hover .after-sales-dual-copy {
    background: var(--primary);
}

.after-sales-parts-row .after-sales-dual-copy {
    background: var(--primary);
}

.after-sales-parts-row {
    scroll-margin-top: 76px;
}

.after-sales-dual-copy .about-kicker {
    color: rgba(255,255,255,0.72);
}

.after-sales-dual-copy .about-kicker::before {
    background: rgba(255,255,255,0.72);
}

.after-sales-dual-copy h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.8rem, 3.5vw, 3.25rem);
    line-height: 0.98;
    letter-spacing: 0;
    text-transform: uppercase;
}

.after-sales-dual-copy p {
    max-width: 460px;
    margin: 0;
    color: rgba(255,255,255,0.76);
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.75;
}

.after-sales-dual-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 48px;
    margin-top: 4px;
    padding: 0 30px;
    border: 1px solid #fff;
    color: #fff;
    background: #050505;
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 1.35px;
    text-transform: uppercase;
    transition: var(--transition);
}

.after-sales-dual-button:hover {
    background: #fff;
    color: #050505;
}

/* Original parts brand selector */
.after-sales-parts-brands {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 6px;
    padding: 6px;
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.after-sales-parts-brand {
    display: flex;
    min-width: 0;
    min-height: 202px;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    background: linear-gradient(145deg, #181818, #101010);
    color: #fff;
    text-decoration: none;
    transition: background-color 0.28s ease, transform 0.28s ease;
}

.after-sales-parts-brand-logo {
    display: flex;
    flex: 1;
    min-height: 142px;
    align-items: center;
    justify-content: center;
    padding: 28px 18px;
}

.after-sales-parts-brand-logo img {
    display: block;
    width: 100%;
    max-width: 132px;
    max-height: 64px;
    object-fit: contain;
    filter: grayscale(1) brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.after-sales-parts-brand-action {
    display: flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: #090909;
    color: #fff;
    font-size: 0.73rem;
    font-weight: 900;
    letter-spacing: 0.8px;
    line-height: 1.25;
    text-align: center;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    transition: background-color 0.28s ease, border-color 0.28s ease;
}

.after-sales-parts-brand:hover {
    transform: translateY(-3px);
}

.after-sales-parts-brand:hover .after-sales-parts-brand-logo img {
    transform: scale(1.13);
}

.after-sales-parts-brand:hover .after-sales-parts-brand-action {
    border-color: var(--primary);
    background-color: var(--primary);
}

.after-sales-parts-brand:focus-visible {
    outline: 2px solid #fff;
    outline-offset: -4px;
}

.workshop-locations {
    position: relative;
    padding: 112px 0 120px;
    background:
        radial-gradient(circle at 18% 12%, rgba(227,6,19,0.18), transparent 32%),
        #070707;
    overflow: hidden;
}

.workshop-locations-bg,
.workshop-locations-bg::after {
    position: absolute;
    inset: 0;
}

.workshop-locations-bg {
    opacity: 0.28;
}

.workshop-locations-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(1.08);
}

.workshop-locations-bg::after {
    content: '';
    background:
        linear-gradient(90deg, #070707 0%, rgba(7,7,7,0.76) 48%, #070707 100%),
        linear-gradient(180deg, #070707 0%, rgba(7,7,7,0.7) 42%, #070707 100%);
}

.workshop-locations .container {
    position: relative;
    z-index: 1;
    max-width: 1640px;
    padding: 0 32px;
}

.workshop-section-head {
    max-width: 780px;
    margin-bottom: 42px;
}

.workshop-section-head h2 {
    margin-top: 16px;
    font-size: clamp(2rem, 4vw, 3.8rem);
    line-height: 1.02;
    letter-spacing: 0;
}

.workshop-section-head p {
    max-width: 600px;
    margin-top: 16px;
    color: rgba(255,255,255,0.68);
    line-height: 1.7;
}

.workshop-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.workshop-card {
    position: relative;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025));
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 28px 68px rgba(0,0,0,0.34);
    transition: var(--transition);
}

.workshop-card a {
    text-decoration: none;
}

.workshop-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid transparent;
    border-radius: inherit;
    pointer-events: none;
    transition: var(--transition);
}

.workshop-card:hover,
.workshop-card:focus-visible {
    transform: translateY(-6px);
    border-color: rgba(227,6,19,0.62);
    box-shadow: 0 34px 82px rgba(0,0,0,0.5), 0 0 38px rgba(227,6,19,0.12);
}

.workshop-card:hover::before,
.workshop-card:focus-visible::before {
    border-color: rgba(227,6,19,0.4);
}

.workshop-card-top {
    position: relative;
    z-index: 2;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
}

.workshop-logo {
    max-width: 92px;
    max-height: 38px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.workshop-mini-map {
    position: relative;
    height: 142px;
    margin: 22px -6px 20px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    background: rgba(0,0,0,0.34);
    overflow: hidden;
}

.workshop-mini-map iframe {
    position: absolute;
    inset: -70px -12px -58px -12px;
    width: calc(100% + 24px);
    height: calc(100% + 128px);
    border: 0;
    filter: grayscale(1) invert(0.92) contrast(0.95) brightness(0.58);
    opacity: 0.78;
    pointer-events: none;
    transition: filter 0.5s ease, opacity 0.5s ease, transform 0.5s ease;
}

.workshop-map-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 50%, rgba(227,6,19,0.24), transparent 28%),
        linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.46));
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
    pointer-events: none;
    transition: var(--transition);
}

.workshop-card:hover .workshop-mini-map,
.workshop-card:focus-visible .workshop-mini-map,
.workshop-card:focus-within .workshop-mini-map {
    border-color: rgba(227,6,19,0.72);
    box-shadow: 0 0 34px rgba(227,6,19,0.18);
}

.workshop-card:hover .workshop-mini-map iframe,
.workshop-card:focus-visible .workshop-mini-map iframe,
.workshop-card:focus-within .workshop-mini-map iframe {
    filter: grayscale(0.25) invert(0) contrast(1.04) brightness(0.84);
    opacity: 0.95;
    transform: scale(1.025);
}

.workshop-card:hover .workshop-map-overlay,
.workshop-card:focus-visible .workshop-map-overlay,
.workshop-card:focus-within .workshop-map-overlay {
    background:
        radial-gradient(circle at 50% 50%, rgba(227,6,19,0.18), transparent 33%),
        linear-gradient(180deg, rgba(0,0,0,0.03), rgba(0,0,0,0.22));
}

.workshop-card-copy {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 9px;
}

.workshop-city {
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.workshop-card-copy h3 {
    font-size: 1.45rem;
    line-height: 1;
    letter-spacing: 0;
}

.workshop-card-copy p {
    display: flex;
    gap: 10px;
    color: rgba(255,255,255,0.66);
    font-size: 0.82rem;
    line-height: 1.45;
}

.workshop-card-copy p i {
    width: 15px;
    flex: 0 0 15px;
    margin-top: 4px;
    color: rgba(255,255,255,0.46);
    transition: var(--transition);
}

.workshop-address {
    color: rgba(255,255,255,0.88) !important;
    font-weight: 700;
    transition: var(--transition);
}

.workshop-card:hover .workshop-address,
.workshop-card:focus-visible .workshop-address,
.workshop-card:hover .workshop-address i,
.workshop-card:focus-visible .workshop-address i {
    color: #ff2530 !important;
}

.workshop-link {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 20px;
    color: #fff;
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.workshop-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.48fr);
    gap: 26px;
    align-items: start;
}

.workshop-main {
    min-width: 0;
}

.workshop-brand-filters {
    display: grid;
    grid-template-columns: repeat(9, minmax(78px, 1fr));
    gap: 10px;
    margin-bottom: 18px;
}

.workshop-filter {
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 18px;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 6px;
    background: rgba(7,7,7,0.76);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
    cursor: pointer;
    transition: var(--transition);
}

.workshop-filter img {
    max-width: 78px;
    max-height: 28px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    pointer-events: none;
}

.workshop-filter span {
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    pointer-events: none;
}

.workshop-filter i {
    color: var(--primary);
    pointer-events: none;
}

.workshop-filter:hover,
.workshop-filter.active {
    border-color: var(--primary);
    background: rgba(227,6,19,0.08);
    box-shadow: 0 14px 34px rgba(0,0,0,0.32), inset 0 0 0 1px rgba(227,6,19,0.18);
}

.workshop-map-board {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255,255,255,0.03) 1px, transparent 1px),
        radial-gradient(circle at 68% 34%, rgba(227,6,19,0.17), transparent 8%),
        radial-gradient(circle at 54% 58%, rgba(255,255,255,0.08), transparent 20%),
        linear-gradient(130deg, #101010 0%, #050505 55%, #111 100%);
    background-size: 34px 34px, 34px 34px, auto, auto, auto;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.025), 0 28px 70px rgba(0,0,0,0.44);
}

.workshop-real-map {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: none;
    min-height: inherit;
    background: #080808;
}

.workshop-map-board.has-real-map .workshop-real-map {
    display: block;
}

.workshop-leaflet-marker {
    border: 0;
    background: transparent;
}

.workshop-real-map .leaflet-tile-pane {
    filter: invert(1) grayscale(1) saturate(0.72) contrast(1.15) brightness(0.72);
}

.workshop-real-map .leaflet-control-container {
    font-family: inherit;
}

.workshop-real-map .leaflet-control-zoom {
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 6px;
    background: rgba(18,18,18,0.72);
    box-shadow: none;
}

.workshop-real-map .leaflet-control-zoom a {
    width: 38px;
    height: 36px;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,0.16);
    color: #fff;
    background: transparent;
    line-height: 36px;
}

.workshop-real-map .leaflet-control-zoom a:last-child {
    border-bottom: 0;
}

.workshop-real-map .leaflet-control-attribution {
    color: rgba(255,255,255,0.5);
    background: rgba(0,0,0,0.58);
}

.workshop-real-map .leaflet-control-attribution a {
    color: rgba(255,255,255,0.78);
}

.workshop-leaflet-pin {
    position: relative;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50% 50% 50% 0;
    background: #ff1727;
    color: #fff;
    box-shadow: 0 0 0 2px rgba(255,23,39,0.32), 0 0 22px rgba(227,6,19,0.82);
    transform: rotate(-45deg);
}

.workshop-leaflet-pin span {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 900;
    line-height: 1;
    transform: rotate(45deg);
}

.workshop-leaflet-popup .leaflet-popup-content-wrapper {
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 8px;
    background: rgba(10,10,10,0.95);
    color: #fff;
    box-shadow: 0 18px 44px rgba(0,0,0,0.5);
}

.workshop-leaflet-popup .leaflet-popup-tip {
    background: rgba(10,10,10,0.95);
}

.workshop-leaflet-popup .leaflet-popup-content {
    margin: 13px 15px;
    font-family: inherit;
}

.workshop-leaflet-popup strong {
    display: block;
    margin-bottom: 4px;
    color: #fff;
    font-size: 0.96rem;
}

.workshop-leaflet-popup span {
    display: block;
    color: rgba(255,255,255,0.72);
    font-size: 0.78rem;
    line-height: 1.4;
}

.workshop-map-board.has-real-map::before,
.workshop-map-board.has-real-map::after,
.workshop-map-board.has-real-map .workshop-map-routes,
.workshop-map-board.has-real-map .workshop-map-city,
.workshop-map-board.has-real-map .workshop-map-pin,
.workshop-map-board.has-real-map .workshop-map-controls {
    display: none;
}

.workshop-map-board::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 45%, rgba(255,255,255,0.1), transparent 13%),
        radial-gradient(circle at 92% 76%, rgba(255,255,255,0.08), transparent 15%),
        linear-gradient(90deg, rgba(0,0,0,0.06), rgba(0,0,0,0.64));
    opacity: 0.75;
}

.workshop-map-board::after {
    content: '';
    position: absolute;
    inset: -20%;
    background-image:
        linear-gradient(23deg, transparent 47%, rgba(255,255,255,0.08) 48%, rgba(255,255,255,0.08) 49%, transparent 51%),
        linear-gradient(152deg, transparent 48%, rgba(255,255,255,0.065) 49%, rgba(255,255,255,0.065) 50%, transparent 52%),
        linear-gradient(96deg, transparent 48%, rgba(255,255,255,0.045) 49%, rgba(255,255,255,0.045) 50%, transparent 52%);
    background-size: 280px 210px, 340px 260px, 180px 160px;
    opacity: 0.68;
    transform: rotate(-7deg);
}

.workshop-map-routes,
.workshop-map-city,
.workshop-map-pin,
.workshop-map-status,
.workshop-map-controls {
    position: absolute;
    z-index: 2;
}

.route {
    position: absolute;
    display: block;
    height: 2px;
    border-radius: 999px;
    background: rgba(255,255,255,0.18);
    box-shadow: 0 0 14px rgba(255,255,255,0.08);
    transform-origin: left center;
}

.route-a {
    width: 72%;
    left: 7%;
    top: 61%;
    transform: rotate(-12deg);
}

.route-b {
    width: 48%;
    left: 43%;
    top: 30%;
    transform: rotate(70deg);
}

.route-c {
    width: 52%;
    left: 16%;
    top: 78%;
    transform: rotate(14deg);
}

.route-d {
    width: 32%;
    left: 52%;
    top: 45%;
    transform: rotate(-42deg);
}

.workshop-map-city {
    color: rgba(255,255,255,0.88);
    font-weight: 700;
    text-shadow: 0 8px 24px rgba(0,0,0,0.65);
}

.city-rosario {
    left: 58%;
    top: 41%;
    font-size: 1.55rem;
}

.city-santa-fe {
    left: 56%;
    top: 13%;
    font-size: 1.05rem;
}

.city-funes {
    left: 19%;
    top: 34%;
}

.city-canada {
    left: 17%;
    bottom: 24%;
    max-width: 150px;
    line-height: 1.25;
}

.workshop-map-pin {
    left: var(--pin-x);
    top: var(--pin-y);
    width: 30px;
    height: 36px;
    display: grid;
    place-items: center;
    color: #fff;
    transform: translate(-50%, -100%);
    transition: opacity 0.28s ease, transform 0.28s ease, filter 0.28s ease;
}

.workshop-map-pin i {
    position: absolute;
    inset: 0;
    color: #ff1727;
    font-size: 2.15rem;
    filter: drop-shadow(0 0 14px rgba(227,6,19,0.75));
}

.workshop-map-pin span {
    position: relative;
    z-index: 1;
    margin-top: -9px;
    font-size: 0.62rem;
    font-weight: 900;
}

.workshop-map-pin:hover {
    transform: translate(-50%, -100%) scale(1.14);
}

.workshop-map-pin.is-hidden,
.workshop-card.is-hidden {
    display: none;
}

.workshop-map-status {
    left: 22px;
    bottom: 20px;
    min-width: min(320px, calc(100% - 44px));
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2px 12px;
    align-items: center;
    padding: 14px 18px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 8px;
    background: rgba(18,18,18,0.82);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 38px rgba(0,0,0,0.36);
}

.workshop-map-status i {
    grid-row: span 2;
    color: rgba(255,255,255,0.82);
    font-size: 1.35rem;
}

.workshop-map-status span {
    color: rgba(255,255,255,0.9);
    font-size: 0.88rem;
}

.workshop-map-status strong {
    color: var(--primary);
    font-size: 0.72rem;
}

.workshop-map-controls {
    right: 18px;
    bottom: 28px;
    display: grid;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 6px;
    background: rgba(18,18,18,0.72);
}

.workshop-map-controls span {
    width: 38px;
    height: 36px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1.1rem;
}

.workshop-map-controls span + span {
    border-top: 1px solid rgba(255,255,255,0.16);
}

.workshop-results {
    min-width: 0;
    max-height: 618px;
    margin-top: 272px;
    padding: 20px 8px 20px 20px;
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025));
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.workshop-results-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 2px 10px 16px 0;
}

.workshop-results-head h3 {
    font-size: 1rem;
    letter-spacing: 0;
    text-transform: none;
}

.workshop-results-head span {
    color: rgba(255,255,255,0.72);
    font-size: 0.78rem;
}

.workshop-results-list {
    max-height: 524px;
    display: grid;
    gap: 10px;
    overflow: auto;
    padding-right: 8px;
    scrollbar-color: rgba(255,255,255,0.24) rgba(255,255,255,0.06);
}

.workshop-results-list::-webkit-scrollbar {
    width: 8px;
}

.workshop-results-list::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.06);
    border-radius: 999px;
}

.workshop-results-list::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.24);
    border-radius: 999px;
}

.workshop-results .workshop-card {
    display: grid;
    grid-template-columns: 26px 1fr auto;
    gap: 0 14px;
    min-height: 0;
    padding: 16px;
    border-radius: 7px;
    background: linear-gradient(145deg, rgba(7,7,7,0.96), rgba(20,20,20,0.88));
    box-shadow: none;
}

.workshop-results .workshop-card.is-hidden {
    display: none;
}

.workshop-results .workshop-card:hover,
.workshop-results .workshop-card:focus-visible {
    transform: none;
}

.workshop-card-pin {
    grid-row: span 2;
    position: relative;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    align-self: start;
    margin-top: 3px;
    color: var(--primary);
    line-height: 1;
}

.workshop-card-pin::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50% 50% 50% 0;
    background: var(--primary);
    box-shadow: 0 0 13px rgba(227,6,19,0.5);
    transform: rotate(-45deg);
}

.workshop-card-pin i {
    display: none;
}

.workshop-card-pin span {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 0.58rem;
    font-weight: 900;
    line-height: 1;
}

.workshop-results .workshop-logo {
    max-width: 70px;
    max-height: 28px;
    align-self: start;
    margin-top: 6px;
}

.workshop-results .workshop-card-copy {
    gap: 6px;
}

.workshop-results .workshop-city {
    font-size: 0.7rem;
    letter-spacing: 0;
    text-transform: none;
}

.workshop-results .workshop-card-copy h3 {
    font-size: 1.05rem;
    text-transform: none;
}

.workshop-results .workshop-card-copy p {
    font-size: 0.75rem;
    line-height: 1.38;
}

.workshop-card-actions {
    grid-column: 2 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 14px;
}

.workshop-card-actions a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 14px;
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 5px;
    color: #fff;
    background: rgba(255,255,255,0.06);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.workshop-card-actions a:hover {
    border-color: var(--primary);
    background: var(--primary);
}

@media (max-width: 1100px) {
    .after-sales-parts-brands {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .after-sales-parts-brand {
        min-height: 176px;
    }

    .after-sales-parts-brand-logo {
        min-height: 118px;
        padding: 22px 16px;
    }

    .workshop-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .workshop-layout {
        grid-template-columns: 1fr;
    }

    .workshop-brand-filters {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .workshop-results {
        max-height: none;
        margin-top: 0;
    }

    .workshop-results-list {
        max-height: none;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .after-sales-dual-copy {
        padding: 58px 6vw;
    }
}

@media (max-width: 1300px) and (min-width: 1101px) {
    .workshop-layout {
        grid-template-columns: 1fr;
    }

    .workshop-brand-filters {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .workshop-results {
        max-height: none;
        margin-top: 0;
    }

    .workshop-results-list {
        max-height: none;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .panel-cta,
    .after-sales-hero {
        min-height: 620px;
        align-items: flex-end;
        padding: 120px 0 64px;
    }

    .panel-cta-bg::after {
        background:
            linear-gradient(90deg, rgba(0,0,0,0.88), rgba(0,0,0,0.54)),
            linear-gradient(180deg, rgba(0,0,0,0.1), #050505 100%);
    }

    .panel-cta-content h1,
    .panel-cta-content h2 {
        font-size: clamp(2.4rem, 13vw, 3.5rem);
    }

    .panel-cta-button {
        min-width: 0;
        width: 100%;
        min-height: 58px;
        padding: 0 20px;
    }

    .after-sales-dual-row {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .after-sales-dual-row-reverse .after-sales-dual-image {
        order: -1;
    }

    .after-sales-dual-image {
        min-height: 260px;
    }

    .after-sales-dual-copy {
        min-height: 330px;
        padding: 44px 22px;
        gap: 14px;
    }

    .after-sales-dual-copy h2 {
        font-size: clamp(1.65rem, 9vw, 2.35rem);
    }

    .after-sales-dual-copy p {
        font-size: 0.84rem;
        line-height: 1.6;
    }

    .after-sales-dual-button {
        width: 100%;
        min-height: 48px;
        padding: 0 18px;
    }

    .workshop-locations {
        padding: 78px 0 88px;
    }

    .workshop-section-head {
        margin-bottom: 28px;
    }

    .workshop-section-head h2 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .workshop-brand-filters {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .workshop-filter {
        min-height: 52px;
        padding: 0 14px;
    }

    .workshop-map-board {
        min-height: 420px;
    }

    .city-rosario {
        left: 52%;
        top: 43%;
        font-size: 1.25rem;
    }

    .city-santa-fe {
        left: 54%;
        top: 12%;
    }

    .city-funes {
        left: 16%;
        top: 35%;
    }

    .city-canada {
        left: 14%;
        bottom: 26%;
        font-size: 0.86rem;
    }

    .workshop-map-status {
        left: 14px;
        right: 14px;
        bottom: 14px;
        min-width: 0;
    }

    .workshop-map-controls {
        display: none;
    }

    .workshop-results {
        padding: 18px 10px 18px 18px;
    }

    .workshop-results-head {
        padding-right: 6px;
    }

    .workshop-results-list {
        grid-template-columns: 1fr;
    }

    .workshop-grid {
        grid-template-columns: 1fr;
    }

    .workshop-card {
        min-height: 390px;
    }
}

@media (max-width: 600px) {
    .after-sales-parts-brands {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 4px;
        padding: 4px;
    }

    .after-sales-parts-brand {
        min-height: 158px;
    }

    .after-sales-parts-brand-logo {
        min-height: 108px;
        padding: 18px;
    }

    .after-sales-parts-brand-logo img {
        max-width: 118px;
        max-height: 54px;
    }

    .after-sales-parts-brand-action {
        min-height: 50px;
        padding: 7px 8px;
        font-size: 0.72rem;
        letter-spacing: 0.5px;
    }

    .after-sales-page {
        overflow: clip;
    }

    .after-sales-hero.panel-cta {
        min-height: min(720px, 100svh);
        padding: 118px 0 46px;
        align-items: flex-end;
    }

    .after-sales-hero .panel-cta-bg img {
        object-position: 63% center;
        transform: none;
        filter: grayscale(0.08) contrast(1.08) brightness(0.68);
    }

    .after-sales-hero .panel-cta-bg::after {
        background:
            linear-gradient(90deg, rgba(0,0,0,0.93) 0%, rgba(0,0,0,0.72) 48%, rgba(0,0,0,0.34) 100%),
            linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.34) 48%, #050505 100%);
    }

    .after-sales-hero .panel-cta-content {
        width: 100%;
        padding-inline: 22px;
    }

    .after-sales-hero .about-kicker {
        font-size: 0.72rem;
        letter-spacing: 4px;
        line-height: 1.2;
    }

    .after-sales-hero .about-kicker::before {
        width: 46px;
        min-width: 46px;
    }

    .after-sales-hero .panel-cta-content h1 {
        max-width: 11ch;
        margin-top: 24px;
        font-size: clamp(3.25rem, 15.4vw, 4.15rem);
        line-height: 0.92;
        overflow-wrap: normal;
    }

    .after-sales-hero .panel-cta-content p {
        max-width: 31ch;
        margin-top: 18px;
        font-size: clamp(1rem, 4.35vw, 1.16rem);
        line-height: 1.62;
    }

    .after-sales-hero .panel-cta-button {
        min-height: 58px;
        margin-top: 34px;
        font-size: 0.78rem;
        letter-spacing: 1.15px;
    }

    .after-sales-dual-row {
        background: #080808;
    }

    .after-sales-dual-image {
        min-height: 230px;
    }

    .after-sales-dual-image img {
        object-position: center;
    }

    .after-sales-dual-copy {
        min-height: auto;
        padding: 38px 22px 42px;
    }

    .after-sales-dual-copy h2,
    .workshop-section-head h2 {
        line-height: 1.04;
    }

    .workshop-locations {
        padding: 62px 0 74px;
    }

    .workshop-section-head p {
        font-size: 0.88rem;
        line-height: 1.6;
    }

    .workshop-results .workshop-card {
        min-height: auto;
        padding: 18px;
    }

    .workshop-card-actions {
        grid-template-columns: 1fr;
    }

    .workshop-map-board {
        margin-inline: -2px;
    }

    .workshop-map-pin {
        width: 28px;
        height: 34px;
    }

    .workshop-map-pin i {
        font-size: 2rem;
    }
}

@media (max-width: 380px) {
    .after-sales-hero.panel-cta {
        min-height: 680px;
        padding-bottom: 40px;
    }

    .after-sales-hero .panel-cta-content h1 {
        font-size: clamp(2.75rem, 14.4vw, 3.2rem);
    }

    .after-sales-hero .panel-cta-content p {
        font-size: 0.95rem;
    }
}

/* Mobile Navigation Drawer */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: #0a0a0a;
    z-index: 2000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    visibility: hidden;
}

.mobile-nav.active {
    right: 0;
    visibility: visible;
}

.mobile-nav-content {
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.mobile-nav-header img {
    height: 40px;
}

.mobile-nav-header .close-menu {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav ul li {
    margin-bottom: 25px;
}

.mobile-nav ul li a {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-nav .mobile-dropdown {
    margin-bottom: 18px;
}

.mobile-nav .mobile-dropdown > a {
    margin-bottom: 14px;
}

.mobile-nav .mobile-dropdown ul {
    padding-left: 18px;
    border-left: 1px solid rgba(255,255,255,0.14);
}

.mobile-nav .mobile-dropdown ul li {
    margin-bottom: 12px;
}

.mobile-nav .mobile-dropdown ul li a {
    color: var(--text-gray);
    font-size: 0.9rem;
    letter-spacing: 1.5px;
}

.mobile-nav-footer {
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav-footer .social-links {
    display: flex;
    gap: 20px;
}

.mobile-nav-footer .social-links a {
    color: white;
    font-size: 1.5rem;
}


/* Nissan Kait product page */
.vehicle-product-page { background: #050505; color: #fff; }
.product-hero { position: relative; padding-top: var(--header-height); background: #050505; }
.product-hero-swiper, .product-hero-slide { width: 100%; min-height: 440px; }
.product-hero-slide img { width: 100%; height: 100%; min-height: 440px; object-fit: cover; }
.product-anchor-bar { position: sticky; top: 85px; z-index: 50; background: rgba(8, 8, 8, 0.9); border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.12); backdrop-filter: blur(16px); }
.product-anchor-inner { min-height: 66px; display: flex; align-items: center; justify-content: center; gap: 34px; overflow-x: auto; }
.product-anchor-inner a { color: rgba(255,255,255,0.78); font-size: 0.76rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; white-space: nowrap; }
.product-anchor-inner a:hover { color: #fff; }
.product-color-section { padding: 96px 0 110px; background: linear-gradient(180deg, #050505 0%, #111 100%); }
.product-color-grid, .product-performance-grid { display: grid; grid-template-columns: minmax(280px, 0.84fr) minmax(0, 1.36fr); gap: 54px; align-items: center; }
.product-kicker { display: block; margin-bottom: 14px; color: var(--primary); font-size: 0.76rem; font-weight: 900; letter-spacing: 2.4px; text-transform: uppercase; }
.product-section-copy h1, .product-section-copy h2, .product-section-heading h2 { color: #fff; letter-spacing: 0; line-height: 1.04; }
.product-section-copy h1 { max-width: 520px; font-size: clamp(2.2rem, 5vw, 4.6rem); }
.product-section-copy h2, .product-section-heading h2 { font-size: clamp(2rem, 3.8vw, 3.5rem); }
.product-section-copy p { max-width: 470px; margin-top: 22px; color: rgba(255,255,255,0.68); font-size: 0.98rem; line-height: 1.78; }
.product-color-stage { min-width: 0; }
.product-color-image { position: relative; min-height: 420px; display: flex; align-items: center; justify-content: center; background: radial-gradient(circle at 50% 62%, rgba(255,255,255,0.16), transparent 48%), linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; overflow: hidden; }
.vehicle-color-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: 24px; opacity: 0; transform: scale(0.985); transition: opacity 0.35s ease, transform 0.35s ease; }
.vehicle-color-photo.active { opacity: 1; transform: scale(1); }
.product-color-controls { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.vehicle-color-btn { min-height: 48px; display: inline-flex; align-items: center; gap: 10px; padding: 8px 14px 8px 10px; background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.82); border: 1px solid rgba(255,255,255,0.12); border-radius: 999px; cursor: pointer; font: inherit; font-size: 0.82rem; font-weight: 800; transition: var(--transition); }
.vehicle-color-btn.active, .vehicle-color-btn:hover { color: #fff; border-color: rgba(227,6,19,0.72); background: rgba(227,6,19,0.16); }
.vehicle-color-dot { width: 28px; height: 28px; display: block; border: 2px solid rgba(255,255,255,0.86); border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(0,0,0,0.2), 0 6px 14px rgba(0,0,0,0.35); }
.product-gallery-section { padding: 96px 0; background: #050505; overflow: hidden; }
.product-gallery-section-light { background: #f3f3f3; color: #111; }
.product-gallery-section-light .product-section-heading h2 { color: #111; }
.product-section-heading { max-width: 720px; margin-bottom: 34px; }
.product-video-section { padding: 96px 0; background: radial-gradient(circle at 82% 12%, rgba(227,6,19,0.18), transparent 28%), #0b0b0b; }
.product-video-carousel { position: relative; }
.product-video-swiper { overflow: hidden; padding-bottom: 2px; }
.product-video-card { height: 100%; overflow: hidden; background: #111; border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; box-shadow: 0 18px 34px rgba(0,0,0,0.24); }
.product-video-frame { position: relative; aspect-ratio: 16 / 9; background: #000; }
.product-video-frame::after { content: '\f04b'; position: absolute; top: 50%; left: 50%; display: grid; width: 64px; height: 64px; place-items: center; border: 1px solid rgba(255,255,255,0.35); border-radius: 50%; background: rgba(0,0,0,0.62); color: #fff; font-family: 'Font Awesome 6 Free'; font-size: 1.2rem; font-weight: 900; pointer-events: none; transform: translate(-50%, -50%); transition: opacity 0.25s ease, transform 0.25s ease; }
.product-video-card:hover .product-video-frame::after, .product-video-card.is-playing .product-video-frame::after { opacity: 0; transform: translate(-50%, -50%) scale(0.88); }
.product-video-frame video { display: block; width: 100%; height: 100%; object-fit: cover; cursor: pointer; }
.product-video-youtube, .product-video-youtube img, .product-video-youtube iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.product-video-youtube { cursor: pointer; }
.product-video-youtube img { display: block; object-fit: cover; }
.product-video-youtube iframe { border: 0; }
.product-video-copy { padding: 22px 24px 24px; }
.product-video-copy > span { display: block; margin-bottom: 8px; color: var(--primary); font-size: 0.68rem; font-weight: 900; letter-spacing: 1.5px; }
.product-video-copy h3 { margin: 0; color: #fff; font-size: 1.12rem; letter-spacing: 0; }
.product-video-copy p { margin: 9px 0 0; color: rgba(255,255,255,0.62); font-size: 0.85rem; line-height: 1.55; }
.product-video-nav { position: absolute; top: calc((100% - 74px) * 0.28); z-index: 4; display: grid; width: 46px; height: 46px; place-items: center; border: 0; border-radius: 50%; background: var(--primary); color: #fff; cursor: pointer; box-shadow: 0 10px 24px rgba(0,0,0,0.42); transform: translateY(-50%); }
.product-video-prev { left: -22px; }
.product-video-next { right: -22px; }
.product-video-pagination { position: static; margin-top: 22px; text-align: center; }
.product-video-pagination .swiper-pagination-bullet { background: rgba(255,255,255,0.74); opacity: 1; }
.product-video-pagination .swiper-pagination-bullet-active { background: var(--primary); }
.product-swiper-shell { position: relative; }
.product-gallery-slide { height: 610px; background: #111; border-radius: 8px; overflow: hidden; }
.product-gallery-section-light .product-gallery-slide { background: #fff; }
.product-gallery-slide img { width: 100%; height: 100%; object-fit: cover; }
.product-swiper-btn { position: absolute; top: 50%; z-index: 5; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; color: #fff; background: var(--primary); border: 0; border-radius: 50%; cursor: pointer; transform: translateY(-50%); box-shadow: 0 14px 28px rgba(0,0,0,0.36); }
.product-swiper-prev { left: 18px; }
.product-swiper-next { right: 18px; }
.product-gallery-pagination, .product-hero-pagination { position: static; margin-top: 22px; }
.product-gallery-pagination .swiper-pagination-bullet, .product-hero-pagination .swiper-pagination-bullet { background: rgba(255,255,255,0.74); opacity: 1; }
.product-gallery-section-light .product-gallery-pagination .swiper-pagination-bullet { background: rgba(0,0,0,0.35); }
.product-gallery-pagination .swiper-pagination-bullet-active, .product-hero-pagination .swiper-pagination-bullet-active, .product-gallery-section-light .product-gallery-pagination .swiper-pagination-bullet-active { background: var(--primary); }
.product-performance-section { background: radial-gradient(circle at 12% 12%, rgba(227,6,19,0.16), transparent 30%), linear-gradient(135deg, #0a0a0a, #141414); }
.product-download-btn { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; margin-top: 30px; padding: 0 24px; background: var(--primary); color: #fff; border: 1px solid var(--primary); border-radius: 2px; font-size: 0.82rem; font-weight: 900; letter-spacing: 1px; text-transform: uppercase; }
.product-download-btn:hover { background: var(--primary-hover); color: #fff; }
@media (max-width: 992px) { .product-anchor-bar { top: 85px; } .product-color-grid, .product-performance-grid { grid-template-columns: 1fr; } .product-gallery-slide { height: 470px; } }
@media (max-width: 768px) { .product-hero-swiper, .product-hero-slide, .product-hero-slide img { min-height: 310px; } .product-anchor-inner { justify-content: flex-start; gap: 22px; min-height: 58px; } .product-color-section, .product-gallery-section, .product-video-section { padding: 68px 0; } .product-color-image { min-height: 300px; } .vehicle-color-photo { padding: 14px; } .product-gallery-slide { height: 330px; } .product-swiper-btn { width: 42px; height: 42px; } .product-video-copy { padding: 18px; } .product-video-frame::after { width: 54px; height: 54px; font-size: 1rem; } .product-video-nav { width: 40px; height: 40px; } .product-video-prev { left: -8px; } .product-video-next { right: -8px; } }

/* Nissan Kait refinements */
.product-anchor-bar {
    background: linear-gradient(90deg, #b8040e 0%, var(--primary) 48%, #c90512 100%);
    border-top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
}

.product-anchor-inner {
    justify-content: space-between;
    gap: 18px;
}

.product-anchor-inner a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.92);
    padding: 0 2px;
}

.product-anchor-inner a:hover {
    color: #fff;
    transform: translateY(-1px);
}

.product-anchor-inner .product-anchor-plan {
    min-height: 40px;
    padding: 0 18px;
    margin-left: 8px;
    background: #fff;
    color: #111;
    border-radius: 2px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.product-anchor-inner .product-anchor-plan:hover {
    color: #111;
    background: #f3f3f3;
}

.product-section-heading {
    max-width: 900px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    margin-bottom: 38px;
}

.product-section-label {
    min-width: 142px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    padding: 0 18px;
    color: #fff;
    background: var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 2px;
    box-shadow: 0 12px 26px rgba(227, 6, 19, 0.22);
    font-size: 0.9rem;
    letter-spacing: 1.4px;
}

.product-gallery-section-light .product-section-label {
    color: #fff;
}

.product-section-heading h2 {
    font-size: clamp(1.65rem, 2.8vw, 2.7rem);
}

.product-gallery-slide img,
.product-hero-slide img,
.vehicle-color-photo.active {
    cursor: zoom-in;
}

.product-lightbox {
    position: fixed;
    inset: 0;
    z-index: 4000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    background: rgba(0, 0, 0, 0.94);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.product-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.product-lightbox img {
    max-width: 96vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.62);
}

.product-lightbox-close {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 1;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--primary);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.08rem;
}

.product-lightbox-nav {
    position: fixed;
    top: 50%;
    z-index: 1;
    width: 52px;
    height: 52px;
    display: none;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(227, 6, 19, 0.92);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50%;
    cursor: pointer;
    transform: translateY(-50%);
    box-shadow: 0 18px 36px rgba(0,0,0,0.38);
}

.product-lightbox.has-multiple .product-lightbox-nav {
    display: flex;
}

.product-lightbox-prev {
    left: 24px;
}

.product-lightbox-next {
    right: 24px;
}

@media (max-width: 992px) {
    .product-anchor-inner {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .product-section-heading {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .product-section-label {
        width: fit-content;
        min-width: 0;
    }

    .product-lightbox {
        padding: 18px;
    }

    .product-lightbox-close {
        top: 14px;
        right: 14px;
        width: 44px;
        height: 44px;
    }

    .product-lightbox img {
        max-width: 100%;
        max-height: 78vh;
    }

    .product-lightbox-nav {
        top: auto;
        bottom: 24px;
        width: 44px;
        height: 44px;
        transform: none;
    }

    .product-lightbox-prev {
        left: calc(50% - 58px);
    }

    .product-lightbox-next {
        right: calc(50% - 58px);
    }
}

.vehicle-color-photo { pointer-events: none; }
.vehicle-color-photo.active { pointer-events: auto; }
.product-section-copy .product-section-label { margin-bottom: 18px; }

@media (max-width: 768px) {
    .vehicle-product-page .product-anchor-bar {
        top: 76px;
        background: linear-gradient(90deg, #8f030b 0%, #a9040f 52%, #8f030b 100%);
    }

    .vehicle-product-page .product-anchor-inner {
        min-height: 0;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1px;
        overflow: visible;
        padding: 0;
    }

    .vehicle-product-page .product-anchor-inner a {
        min-height: 48px;
        justify-content: center;
        padding: 8px 6px;
        text-align: center;
        white-space: normal;
        font-size: 0.62rem;
        line-height: 1.15;
        letter-spacing: 0.8px;
        background: rgba(255,255,255,0.055);
    }

    .vehicle-product-page .product-hero-swiper,
    .vehicle-product-page .product-hero-slide,
    .vehicle-product-page .product-hero-slide img {
        min-height: 270px;
    }

    .vehicle-product-page .product-hero-slide img {
        object-fit: contain;
        background: #050505;
    }

    .vehicle-product-page .product-color-section,
    .vehicle-product-page .product-gallery-section {
        padding: 54px 0;
    }

    .vehicle-product-page .product-color-grid,
    .vehicle-product-page .product-performance-grid {
        gap: 28px;
    }

    .vehicle-product-page .product-section-copy h1,
    .vehicle-product-page .product-section-copy h2,
    .vehicle-product-page .product-section-heading h2 {
        font-size: 1.58rem;
        line-height: 1.08;
    }

    .vehicle-product-page .product-section-copy p {
        margin-top: 14px;
        font-size: 0.84rem;
        line-height: 1.55;
    }

    .vehicle-product-page .product-color-image {
        min-height: 255px;
    }

    .vehicle-product-page .product-color-controls {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .vehicle-product-page .vehicle-color-btn {
        min-height: 42px;
        padding: 7px 9px;
        font-size: 0.7rem;
    }

    .vehicle-product-page .vehicle-color-dot {
        width: 22px;
        height: 22px;
        flex: 0 0 auto;
    }

    .vehicle-product-page .product-section-heading {
        margin-bottom: 22px;
    }

    .vehicle-product-page .product-section-label {
        min-height: 38px;
        padding: 0 12px;
        font-size: 0.72rem;
        letter-spacing: 1px;
    }

    .vehicle-product-page .product-swiper-shell {
        width: 100%;
        min-width: 0;
    }

    .vehicle-product-page .product-gallery-slide {
        height: clamp(230px, 64vw, 310px);
        display: flex;
        align-items: center;
        justify-content: center;
        background: #101010;
    }

    .vehicle-product-page .product-gallery-section-light .product-gallery-slide {
        background: #fff;
    }

    .vehicle-product-page .product-gallery-slide img {
        object-fit: contain;
        padding: 8px;
    }

    .vehicle-product-page .product-performance-section .product-gallery-slide {
        min-height: 245px;
        background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025));
        border: 1px solid rgba(255,255,255,0.08);
    }

    .vehicle-product-page .product-performance-section .product-gallery-slide img {
        padding: 10px;
    }

    .vehicle-product-page .product-swiper-btn {
        width: 38px;
        height: 38px;
    }

    .vehicle-product-page .product-swiper-prev {
        left: 10px;
    }

    .vehicle-product-page .product-swiper-next {
        right: 10px;
    }

    .vehicle-product-page .product-download-btn {
        min-height: 46px;
        margin-top: 20px;
        padding: 0 18px;
        font-size: 0.72rem;
    }
}

/* Nissan WhatsApp footer contacts */
.nissan-whatsapp-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: -18px 0 38px;
}

.nissan-whatsapp-card {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 20px;
    color: #fff;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
    transition: var(--transition);
}

.nissan-whatsapp-card:hover {
    transform: translateY(-5px);
    border-color: rgba(37, 211, 102, 0.58);
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.18), rgba(255, 255, 255, 0.06));
    color: #fff;
}

.nissan-whatsapp-label {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.nissan-whatsapp-card i {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #25d366;
    border-radius: 50%;
    font-size: 1.34rem;
    box-shadow: 0 8px 18px rgba(37, 211, 102, 0.24);
}

.nissan-whatsapp-number {
    color: #fff;
    font-size: clamp(1.08rem, 1.8vw, 1.44rem);
    font-weight: 800;
    letter-spacing: 0;
    white-space: nowrap;
}

@media (max-width: 992px) {
    .nissan-whatsapp-strip {
        grid-template-columns: 1fr;
        margin-top: -14px;
    }

    .nissan-whatsapp-card {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .nissan-whatsapp-card {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
}

/* About page - 3D editorial experience */
.about-page {
    background: #050505;
    color: #fff;
    overflow: hidden;
}

.about-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-kicker::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--primary);
}

.about-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 150px 0 90px;
    perspective: 1300px;
    overflow: hidden;
}

.about-hero-bg,
.about-hero-bg::after,
.about-hero-depth {
    position: absolute;
    inset: 0;
}

.about-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    filter: saturate(0.95) contrast(1.08);
}

.about-hero-bg::after {
    content: '';
    background:
        linear-gradient(90deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.54) 44%, rgba(0,0,0,0.74) 100%),
        linear-gradient(180deg, rgba(0,0,0,0.3), #050505 98%);
}

.about-depth-one {
    background: linear-gradient(115deg, transparent 0 58%, rgba(227, 6, 19, 0.22) 58% 59%, transparent 59%);
    transform: translateZ(70px);
    opacity: 0.8;
}

.about-depth-two {
    inset: auto 8% 8% auto;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(227, 6, 19, 0.35);
    transform: rotateX(62deg) rotateZ(42deg) translateZ(120px);
    box-shadow: 0 0 55px rgba(227, 6, 19, 0.16);
}

.about-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.62fr);
    gap: 54px;
    align-items: end;
}

.about-hero-copy,
.about-hero-panel,
.about-service-card,
.about-principle,
.about-policy-item,
.about-history-media,
.about-slogan-card,
.about-future-card {
    transform-style: preserve-3d;
    will-change: transform;
}

.about-hero-copy {
    max-width: 760px;
    padding: 34px;
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 8px;
    box-shadow: 0 34px 90px rgba(0,0,0,0.55);
    backdrop-filter: blur(12px);
}

.about-hero-logo {
    width: 260px;
    margin: 24px 0 20px;
    filter: brightness(0) invert(1);
}

.about-hero h1 {
    max-width: 730px;
    font-size: clamp(3rem, 7vw, 6.8rem);
    line-height: 0.94;
    letter-spacing: 0;
    text-transform: uppercase;
}

.about-hero p {
    max-width: 680px;
    margin-top: 22px;
    color: rgba(255,255,255,0.78);
    font-size: 1.02rem;
    line-height: 1.8;
}

.about-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.about-ghost-btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border: 1px solid rgba(255,255,255,0.42);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-ghost-btn:hover {
    background: #fff;
    color: #111;
}

.about-hero-panel {
    position: relative;
    display: grid;
    gap: 18px;
    padding: 30px;
    background: rgba(8,8,8,0.76);
    border: 1px solid rgba(227, 6, 19, 0.5);
    border-radius: 8px;
    box-shadow: 0 32px 80px rgba(0,0,0,0.55), inset 0 0 35px rgba(227, 6, 19, 0.08);
}

.about-panel-line {
    position: absolute;
    inset: 16px auto 16px -1px;
    width: 4px;
    background: var(--primary);
}

.about-hero-panel div:not(.about-panel-line) {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.about-hero-panel div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.about-hero-panel strong {
    color: #fff;
    font-size: 2.6rem;
    line-height: 1;
}

.about-hero-panel strong::first-letter {
    color: var(--primary);
}

.about-hero-panel span {
    color: rgba(255,255,255,0.62);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-align: right;
    text-transform: uppercase;
}

.about-section-head {
    max-width: 760px;
    margin-bottom: 48px;
}

.about-section-head.centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.about-section-head.centered .about-kicker::before {
    display: none;
}

.about-section-head h2,
.about-policy-copy h2,
.about-history-content h2,
.about-slogan-card h2,
.about-future-card h2 {
    margin-top: 14px;
    color: #fff;
    font-size: clamp(2rem, 4.2vw, 4rem);
    line-height: 1.02;
    letter-spacing: 0;
}

.about-section-head p,
.about-policy-copy p,
.about-history-content > p,
.about-slogan-card p,
.about-future-card p {
    margin-top: 18px;
    color: rgba(255,255,255,0.66);
    font-size: 0.98rem;
    line-height: 1.76;
}

.about-brand-stage {
    padding: 105px 0;
    background: radial-gradient(circle at 50% 48%, rgba(227,6,19,0.14), transparent 34%), #050505;
}

.about-brand-orbit {
    position: relative;
    min-height: 500px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
    perspective: 1100px;
    overflow: hidden;
}

.about-brand-orbit::before {
    content: '';
    position: absolute;
    inset: 13%;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    transform: rotateX(67deg);
}

.about-brand-token {
    position: absolute;
    width: 160px;
    height: 104px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(255,255,255,0.94);
    border-radius: 8px;
    box-shadow: 0 26px 55px rgba(0,0,0,0.36);
}

.about-brand-token img {
    max-width: 100%;
    max-height: 54px;
}

.token-1 { left: 8%; top: 16%; transform: rotateY(-16deg) translateZ(30px); }
.token-2 { left: 38%; top: 8%; transform: translateZ(90px); }
.token-3 { right: 9%; top: 20%; transform: rotateY(16deg) translateZ(35px); }
.token-4 { left: 17%; bottom: 16%; transform: rotateY(14deg) translateZ(62px); }
.token-5 { right: 22%; bottom: 13%; transform: rotateY(-14deg) translateZ(62px); }
.token-6 { left: 46%; bottom: 30%; transform: translateZ(20px); }
.token-7 { right: 42%; top: 42%; transform: translateZ(120px); }

.about-orbit-core {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 210px;
    height: 210px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(227,6,19,0.94), rgba(130,0,8,0.95));
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 50%;
    box-shadow: 0 0 60px rgba(227,6,19,0.35);
    transform: translate(-50%, -50%);
}

.about-orbit-core span {
    font-size: 1.4rem;
    font-weight: 900;
    text-transform: uppercase;
}

.about-orbit-core small {
    color: rgba(255,255,255,0.75);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.about-services-3d,
.about-policy-section,
.about-history-section,
.about-future-section {
    padding: 105px 0;
    background: #0a0a0a;
}

.about-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    perspective: 1000px;
}

.about-service-card {
    min-height: 320px;
    padding: 34px;
    background: linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    box-shadow: 0 24px 52px rgba(0,0,0,0.34);
    transition: var(--transition);
}

.about-service-card:hover {
    border-color: rgba(227,6,19,0.55);
    box-shadow: 0 34px 70px rgba(0,0,0,0.5), 0 0 34px rgba(227,6,19,0.16);
}

.about-service-card i {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 34px;
    color: #fff;
    background: var(--primary);
    border-radius: 50%;
    font-size: 1.35rem;
}

.about-service-card h3,
.about-principle h3 {
    margin-bottom: 16px;
    color: #fff;
    font-size: 1.1rem;
}

.about-service-card p,
.about-principle p,
.about-timeline p {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    line-height: 1.75;
}

.about-philosophy {
    position: relative;
    min-height: 740px;
    display: flex;
    align-items: center;
    padding: 110px 0;
    overflow: hidden;
}

.about-philosophy-bg,
.about-philosophy-bg::after {
    position: absolute;
    inset: 0;
}

.about-philosophy-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.25) contrast(1.1);
}

.about-philosophy-bg::after {
    content: '';
    background: linear-gradient(90deg, rgba(0,0,0,0.92), rgba(0,0,0,0.35), rgba(0,0,0,0.78));
}

.about-philosophy-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.85fr);
    gap: 50px;
    align-items: center;
}

.about-principles-stack {
    display: grid;
    gap: 14px;
}

.about-principle {
    position: relative;
    padding: 28px 30px 28px 86px;
    background: rgba(8,8,8,0.72);
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.about-principle span {
    position: absolute;
    left: 26px;
    top: 28px;
    color: var(--primary);
    font-size: 1.4rem;
    font-weight: 900;
}

.about-policy-grid,
.about-history-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    gap: 70px;
    align-items: center;
}

.about-policy-list {
    display: grid;
    gap: 14px;
}

.about-policy-item {
    min-height: 70px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 22px;
    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(255,255,255,0.11);
    border-radius: 6px;
}

.about-policy-item i {
    color: var(--primary);
}

.about-policy-item span {
    color: #fff;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-history-section {
    padding-top: 0;
}

.about-history-ribbon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 96px;
    margin-bottom: 95px;
    background: var(--primary);
    color: #fff;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.about-history-media {
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 28px 70px rgba(0,0,0,0.44);
}

.about-history-media img {
    width: 100%;
    height: 560px;
    object-fit: cover;
}

.about-timeline {
    position: relative;
    display: grid;
    gap: 18px;
    margin-top: 32px;
}

.about-timeline::before {
    content: '';
    position: absolute;
    left: 46px;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: rgba(227,6,19,0.45);
}

.about-timeline article {
    position: relative;
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 20px;
}

.about-timeline strong {
    color: var(--primary);
    font-size: 1rem;
}

.about-timeline p {
    margin: 0;
}

.about-slogan-section {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-slogan-bg,
.about-slogan-bg::after {
    position: absolute;
    inset: 0;
}

.about-slogan-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.25) contrast(1.15);
}

.about-slogan-bg::after {
    content: '';
    background: radial-gradient(circle at 50% 50%, rgba(0,0,0,0.46), rgba(0,0,0,0.94));
}

.about-slogan-card,
.about-future-card {
    position: relative;
    z-index: 1;
    max-width: 760px;
    padding: 42px;
    background: rgba(7,7,7,0.75);
    border: 1px solid rgba(227,6,19,0.38);
    border-radius: 8px;
    backdrop-filter: blur(12px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.about-slogan-card {
    margin: 0 auto;
    text-align: center;
}

.about-slogan-card .about-kicker::before {
    display: none;
}

.about-future-section {
    background: linear-gradient(135deg, #0a0a0a, #151515);
}

.about-future-card {
    max-width: none;
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    gap: 34px;
    align-items: center;
}

.about-contact-section {
    background:
        linear-gradient(rgba(0,0,0,0.68), rgba(0,0,0,0.86)),
        url('../Assets/imagenes/Banner nosotros.jpg') center/cover no-repeat;
}

.dealer-network-section {
    position: relative;
    overflow: hidden;
    padding: 118px 0;
    background:
        radial-gradient(circle at 18% 18%, rgba(227,6,19,0.22), transparent 28%),
        linear-gradient(135deg, #050505 0%, #111 48%, #050505 100%);
    color: #fff;
}

.dealer-network-bg {
    position: absolute;
    inset: 0;
    opacity: 0.34;
    background-image:
        linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 44px 44px;
    transform: perspective(900px) rotateX(62deg) scale(1.35);
    transform-origin: center top;
}

.dealer-network-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.35fr) minmax(240px, 0.82fr);
    gap: 28px;
    align-items: center;
}

.dealer-network-copy h2 {
    margin: 0 0 18px;
    font-size: clamp(2rem, 4vw, 4.2rem);
    line-height: 0.92;
    font-weight: 900;
    text-transform: uppercase;
}

.dealer-network-copy p {
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
}

.dealer-network-stats {
    display: grid;
    gap: 10px;
    margin-top: 26px;
}

.dealer-network-stats span {
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
}

.dealer-network-stats strong {
    color: var(--primary);
    font-size: 1.35rem;
}

.dealer-network-stage {
    position: relative;
    min-height: 620px;
}

.dealer-network-canvas {
    width: 100%;
    height: 620px;
    display: block;
}

.dealer-map-label {
    position: absolute;
    left: 20px;
    top: 18px;
    display: grid;
    gap: 4px;
    padding: 13px 16px;
    background: rgba(0,0,0,0.58);
    border-left: 3px solid var(--primary);
    backdrop-filter: blur(10px);
}

.dealer-map-label strong {
    font-size: 0.86rem;
    font-weight: 900;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.dealer-map-label span {
    color: rgba(255,255,255,0.66);
    font-size: 0.74rem;
}

.dealer-network-panel {
    position: absolute;
    right: 18px;
    bottom: 24px;
    width: min(320px, calc(100% - 36px));
    padding: 22px;
    background: rgba(7,7,7,0.78);
    border: 1px solid rgba(227,6,19,0.7);
    box-shadow: 0 28px 56px rgba(0,0,0,0.42);
    backdrop-filter: blur(14px);
}

.dealer-panel-kicker {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.dealer-network-panel h3 {
    margin: 0 0 8px;
    font-size: 1.65rem;
    text-transform: uppercase;
}

.dealer-network-panel p {
    margin: 0 0 8px;
    color: rgba(255,255,255,0.82);
    line-height: 1.45;
}

.dealer-network-panel small {
    color: rgba(255,255,255,0.58);
}

.dealer-network-list {
    display: grid;
    gap: 10px;
}

.dealer-network-card {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 6px 14px;
    min-height: 84px;
    padding: 14px;
    color: #fff;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.dealer-network-card span {
    grid-row: span 2;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(227,6,19,0.18);
    color: var(--primary);
    font-weight: 900;
}

.dealer-network-card strong {
    align-self: end;
    font-size: 0.92rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.dealer-network-card small {
    color: rgba(255,255,255,0.58);
    line-height: 1.42;
}

.dealer-network-card.active,
.dealer-network-card:hover {
    background: rgba(227,6,19,0.18);
    border-color: rgba(227,6,19,0.8);
    transform: translateX(-6px);
}

@media (max-width: 992px) {
    .about-hero-grid,
    .about-philosophy-grid,
    .about-policy-grid,
    .about-history-grid,
    .about-future-card {
        grid-template-columns: 1fr;
    }

    .about-service-grid {
        grid-template-columns: 1fr;
    }

    .dealer-network-layout {
        grid-template-columns: 1fr;
    }

    .dealer-network-stage {
        min-height: 520px;
    }

    .dealer-network-canvas {
        height: 520px;
    }

    .about-brand-orbit {
        min-height: auto;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
        padding: 18px;
    }

    .about-brand-orbit::before,
    .about-orbit-core {
        display: none;
    }

    .about-brand-token {
        position: static;
        width: auto;
        transform: none !important;
    }
}

@media (max-width: 768px) {
    .dealer-network-section {
        padding: 86px 0;
    }

    .dealer-network-stage {
        min-height: 430px;
    }

    .dealer-network-canvas {
        height: 430px;
    }

    .dealer-network-panel {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: -86px;
    }

    .dealer-network-card:hover,
    .dealer-network-card.active {
        transform: none;
    }

    .contact-form-premium {
        padding: 34px 20px;
    }

    .contact-tab-list,
    .form-split {
        grid-template-columns: 1fr;
    }

    .about-hero {
        min-height: auto;
        padding: 130px 0 70px;
    }

    .about-hero-copy,
    .about-hero-panel,
    .about-slogan-card,
    .about-future-card {
        padding: 28px 22px;
    }

    .about-hero h1 {
        font-size: 2.7rem;
    }

    .about-hero-logo {
        width: 210px;
    }

    .about-hero-panel div:not(.about-panel-line) {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .about-hero-panel span {
        text-align: left;
    }

    .about-brand-stage,
    .about-services-3d,
    .about-policy-section,
    .about-future-section {
        padding: 72px 0;
    }

    .about-philosophy {
        min-height: auto;
        padding: 78px 0;
    }

    .about-principle {
        padding: 74px 24px 24px;
    }

    .about-principle span {
        left: 24px;
    }

    .about-history-ribbon {
        min-height: 74px;
        margin-bottom: 60px;
    }

    .about-history-media img {
        height: 320px;
    }

    .about-timeline::before {
        left: 36px;
    }

    .about-timeline article {
        grid-template-columns: 72px minmax(0, 1fr);
    }

    .about-brand-orbit {
        grid-template-columns: 1fr;
    }
}
.about-tilt-scene .about-hero-bg img,
.about-tilt-scene .about-depth-one,
.about-tilt-scene .about-depth-two {
    transition: transform 0.18s ease-out;
}

.about-tilt-scene .about-hero-bg img {
    transform: translate3d(calc(var(--about-scene-x, 0px) * -0.35), calc(var(--about-scene-y, 0px) * -0.25), 0) scale(1.08);
}

.about-tilt-scene .about-depth-one {
    transform: translate3d(calc(var(--about-scene-x, 0px) * 0.5), calc(var(--about-scene-y, 0px) * 0.35), 70px);
}

.about-tilt-scene .about-depth-two {
    transform: translate3d(calc(var(--about-scene-x, 0px) * 0.65), calc(var(--about-scene-y, 0px) * 0.55), 0) rotateX(62deg) rotateZ(42deg) translateZ(120px);
}

/* About page corrections: cleaner hero, stats, brands and services */
.about-page .about-hero {
    min-height: 620px;
    align-items: flex-end;
    padding: var(--header-height) 0 0;
    background: #050505;
}

.about-hero-slider,
.about-hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.about-hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(1.02) contrast(1.04);
}

.about-hero-slider::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.48), rgba(0,0,0,0.12) 52%, rgba(0,0,0,0.48)),
        linear-gradient(180deg, rgba(0,0,0,0.2), rgba(5,5,5,0.82) 88%, #050505 100%);
    pointer-events: none;
}

.about-hero-bg,
.about-hero-grid,
.about-hero-panel {
    display: none;
}

.about-hero-content {
    position: relative;
    z-index: 3;
    padding-bottom: 70px;
}

.about-hero-content .about-kicker {
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.42);
}

.about-hero-content .about-kicker::before {
    background: var(--primary);
}

.about-page .about-hero-logo {
    width: min(340px, 72vw);
    margin: 18px 0 16px;
}

.about-hero-content p {
    max-width: 620px;
    color: rgba(255,255,255,0.86);
    font-size: clamp(1rem, 1.6vw, 1.22rem);
    line-height: 1.65;
    text-shadow: 0 2px 18px rgba(0,0,0,0.5);
}

.about-intro-section {
    padding: 82px 0 96px;
    background:
        radial-gradient(circle at 18% 0%, rgba(227,6,19,0.16), transparent 28%),
        #050505;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.76fr);
    gap: 34px;
    align-items: stretch;
}

.about-intro-copy {
    padding: 38px;
    background: linear-gradient(135deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.11);
    border-radius: 8px;
    box-shadow: 0 28px 70px rgba(0,0,0,0.4);
}

.about-intro-copy h1 {
    max-width: 700px;
    margin-top: 18px;
    color: #fff;
    font-size: clamp(2rem, 4.4vw, 4.15rem);
    line-height: 1;
    letter-spacing: 0;
}

.about-intro-copy p {
    max-width: 680px;
    margin-top: 18px;
    color: rgba(255,255,255,0.7);
    font-size: 0.98rem;
    line-height: 1.75;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.about-stat-card {
    min-height: 124px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 24px 28px;
    background: #111;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    box-shadow: 0 20px 52px rgba(0,0,0,0.28);
}

.about-stat-card strong {
    color: #fff;
    font-size: clamp(2.1rem, 4.2vw, 3.6rem);
    line-height: 1;
}

.about-stat-card strong::first-letter {
    color: var(--primary);
}

.about-stat-card span {
    color: rgba(255,255,255,0.62);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-align: right;
    text-transform: uppercase;
}

.about-page .about-section-head h2,
.about-policy-copy h2,
.about-history-content h2,
.about-slogan-card h2,
.about-future-card h2 {
    font-size: clamp(1.75rem, 3.2vw, 3rem);
    line-height: 1.08;
}

.about-page .about-section-head {
    margin-bottom: 34px;
}

.about-brand-stage {
    padding: 88px 0;
    background: #080808;
}

.about-brand-orbit,
.about-brand-orbit::before,
.about-orbit-core {
    display: none;
}

.about-brand-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    perspective: 900px;
}

.about-brand-card {
    min-height: 168px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 18px;
    background: linear-gradient(145deg, #151515, #0d0d0d);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    box-shadow: 0 20px 46px rgba(0,0,0,0.3);
}

.about-brand-logo-box {
    min-height: 94px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #fff;
    border-radius: 6px;
}

.about-brand-logo-box img {
    max-width: 150px;
    max-height: 54px;
    object-fit: contain;
}

.about-brand-card span {
    color: rgba(255,255,255,0.78);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.about-brand-card:hover {
    border-color: rgba(227,6,19,0.56);
    box-shadow: 0 28px 64px rgba(0,0,0,0.45), 0 0 28px rgba(227,6,19,0.16);
}

.about-services-3d {
    padding: 86px 0 98px;
}

.about-service-grid-detailed {
    gap: 0;
    border: 1px solid rgba(255,255,255,0.08);
}

.about-service-card-detailed {
    min-height: 370px;
    padding: 0;
    border: 0;
    border-right: 1px solid rgba(0,0,0,0.75);
    border-radius: 0;
    background: #171717;
    box-shadow: none;
}

.about-service-card-detailed:last-child {
    border-right: 0;
}

.about-service-card-detailed header {
    min-height: 84px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 24px 28px;
    background: var(--primary);
}

.about-service-card-detailed i {
    width: auto;
    height: auto;
    margin: 0;
    background: transparent;
    border-radius: 0;
    font-size: 1.1rem;
}

.about-service-card-detailed h3 {
    margin: 0;
    color: #fff;
    font-size: 0.9rem;
    letter-spacing: 0.8px;
}

.about-service-card-detailed p {
    padding: 30px 28px 34px;
    color: rgba(255,255,255,0.72);
    font-size: 0.9rem;
    line-height: 1.82;
}

.about-service-card-detailed:hover {
    border-color: rgba(0,0,0,0.75);
    box-shadow: 0 26px 60px rgba(0,0,0,0.4);
}

@media (max-width: 992px) {
    .about-intro-grid,
    .about-brand-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-intro-grid {
        grid-template-columns: 1fr;
    }

    .about-service-grid-detailed {
        grid-template-columns: 1fr;
        border: 0;
        gap: 16px;
    }

    .about-service-card-detailed {
        border-right: 0;
        border-radius: 8px;
        overflow: hidden;
    }
}

@media (max-width: 768px) {
    .about-page .about-hero {
        min-height: 500px;
    }

    .about-hero-content {
        padding-bottom: 46px;
    }

    .about-intro-section {
        padding: 58px 0 70px;
    }

    .about-intro-copy {
        padding: 26px 22px;
    }

    .about-stats-grid,
    .about-brand-grid {
        grid-template-columns: 1fr;
    }

    .about-stat-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .about-stat-card span {
        text-align: left;
    }

    .about-service-card-detailed {
        min-height: auto;
    }
}

/* About refinements: visible brand logos, animated stats and scalable history */
.about-brand-stage .about-section-head {
    max-width: 840px;
}

.about-brand-grid {
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 12px;
}

.about-brand-card {
    min-height: 190px;
    justify-content: center;
    gap: 18px;
    padding: 18px 14px;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02)),
        #101010;
    border-color: rgba(255,255,255,0.13);
    text-align: center;
}

.about-brand-logo-box {
    min-height: 92px;
    padding: 14px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
}

.about-brand-logo-box img {
    max-width: 128px;
    max-height: 58px;
    filter: brightness(0) invert(1);
    opacity: 0.96;
}

.about-brand-card span {
    color: #fff;
}

.about-brand-card:hover .about-brand-logo-box {
    border-color: rgba(227,6,19,0.42);
    background: rgba(227,6,19,0.08);
}

.about-stat-card strong {
    min-width: 170px;
    font-variant-numeric: tabular-nums;
}

.about-history-head {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.72fr);
    gap: 46px;
    align-items: end;
    margin-bottom: 44px;
}

.about-history-head h2 {
    margin-top: 14px;
    color: #fff;
    font-size: clamp(1.75rem, 3.2vw, 3rem);
    line-height: 1.08;
    letter-spacing: 0;
}

.about-history-head p {
    color: rgba(255,255,255,0.66);
    font-size: 0.98rem;
    line-height: 1.76;
}

.about-history-board {
    display: grid;
    grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.about-history-aside {
    position: sticky;
    top: 110px;
    overflow: hidden;
    background: #121212;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.34);
}

.about-history-aside img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.about-history-aside div {
    padding: 24px;
}

.about-history-aside strong {
    display: block;
    margin-bottom: 10px;
    color: #fff;
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
}

.about-history-aside span {
    color: rgba(255,255,255,0.62);
    font-size: 0.88rem;
    line-height: 1.7;
}

.about-history-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.about-history-track::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 14px;
    bottom: 14px;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(227,6,19,0.6), transparent);
}

.about-history-milestone {
    position: relative;
    min-height: 170px;
    padding: 26px;
    background: linear-gradient(145deg, rgba(255,255,255,0.065), rgba(255,255,255,0.025));
    border: 1px solid rgba(255,255,255,0.11);
    border-radius: 8px;
    box-shadow: 0 20px 48px rgba(0,0,0,0.28);
}

.about-history-milestone:nth-child(even) {
    margin-top: 46px;
}

.about-history-milestone::before {
    content: '';
    position: absolute;
    top: 32px;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border: 3px solid #050505;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(227,6,19,0.16);
}

.about-history-milestone:nth-child(odd)::before {
    right: -23px;
}

.about-history-milestone:nth-child(even)::before {
    left: -23px;
}

.about-history-year {
    margin-bottom: 18px;
    color: var(--primary);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.about-history-milestone p {
    color: rgba(255,255,255,0.68);
    font-size: 0.9rem;
    line-height: 1.7;
}

.about-slogan-card {
    max-width: 850px;
}

.about-slogan-card p {
    margin-top: 0;
    font-size: clamp(1.25rem, 2.2vw, 2rem);
    line-height: 1.5;
}

.about-future-section {
    display: none;
}

@media (max-width: 1200px) {
    .about-brand-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .about-history-head,
    .about-history-board {
        grid-template-columns: 1fr;
    }

    .about-history-aside {
        position: relative;
        top: auto;
    }

    .about-history-track {
        grid-template-columns: 1fr;
    }

    .about-history-track::before,
    .about-history-milestone::before {
        display: none;
    }

    .about-history-milestone:nth-child(even) {
        margin-top: 0;
    }
}

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

    .about-brand-card {
        min-height: 160px;
    }

    .about-history-aside img {
        height: 220px;
    }
}

/* About history compact carousel */
.about-history-section {
    padding: 0 0 92px;
    background: #080808;
}

.about-history-slider {
    position: relative;
    height: min(58vw, 560px);
    min-height: 340px;
    overflow: hidden;
    background: #050505;
}

.about-history-slide {
    height: 100%;
}

.about-history-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.08) saturate(0.92);
}

.about-history-slider::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.58), rgba(0,0,0,0.08), rgba(0,0,0,0.5)),
        linear-gradient(180deg, transparent 55%, #080808 100%);
    pointer-events: none;
}

.about-history-pagination {
    z-index: 2;
    bottom: 24px !important;
}

.about-history-pagination .swiper-pagination-bullet {
    width: 30px;
    height: 3px;
    background: rgba(255,255,255,0.55);
    border-radius: 0;
    opacity: 1;
}

.about-history-pagination .swiper-pagination-bullet-active {
    background: var(--primary);
}

.about-history-compact {
    padding-top: 62px;
}

.about-history-head {
    align-items: start;
    margin-bottom: 34px;
}

.about-history-rail {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.about-history-chip {
    min-height: 154px;
    padding: 22px;
    background: linear-gradient(145deg, rgba(255,255,255,0.065), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.11);
    border-radius: 8px;
    box-shadow: 0 20px 46px rgba(0,0,0,0.26);
}

.about-history-chip strong {
    display: block;
    margin-bottom: 14px;
    color: var(--primary);
    font-size: 1.55rem;
    line-height: 1;
}

.about-history-chip p {
    color: rgba(255,255,255,0.68);
    font-size: 0.84rem;
    line-height: 1.62;
}

.about-history-board,
.about-history-aside,
.about-history-track,
.about-history-media,
.about-slogan-section {
    display: none !important;
}

@media (max-width: 1100px) {
    .about-history-rail {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .about-history-slider {
        min-height: 280px;
    }

    .about-history-compact {
        padding-top: 46px;
    }

    .about-history-rail {
        grid-template-columns: 1fr;
    }

    .about-history-chip {
        min-height: auto;
    }
}

/* History slogan overlay */
.about-history-slogan {
    position: absolute;
    left: max(20px, calc((100vw - var(--container-width)) / 2 + 20px));
    bottom: 78px;
    z-index: 2;
    max-width: 680px;
    padding: 30px 34px;
    background: rgba(5, 5, 5, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 4px solid var(--primary);
    border-radius: 8px;
    backdrop-filter: blur(12px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
}

.about-history-slogan h2 {
    margin-top: 12px;
    color: #fff;
    font-size: clamp(1.7rem, 3vw, 3rem);
    line-height: 1.04;
    letter-spacing: 0;
}

.about-history-slogan p {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
    line-height: 1.72;
}

@media (max-width: 768px) {
    .about-history-slogan {
        left: 20px;
        right: 20px;
        bottom: 54px;
        max-width: none;
        padding: 22px;
    }

    .about-history-slogan p {
        font-size: 0.86rem;
    }
}

/* 8-brand layout updates */
.about-brand-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

/* Disabled category link */
.btn-cat-disabled {
    cursor: default;
    opacity: 0.78;
}

.btn-cat-disabled:hover {
    background-color: #000;
    color: #fff;
}

/* BYD model grid alignment */
.byd-models-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    column-gap: 28px;
    row-gap: 42px;
}

.byd-models-grid .brand-model-card {
    grid-column: span 2;
}

.byd-models-grid .brand-model-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.byd-models-grid .brand-model-card:nth-child(5) {
    grid-column: 4 / span 2;
}

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

    .byd-models-grid .brand-model-card,
    .byd-models-grid .brand-model-card:nth-child(4),
    .byd-models-grid .brand-model-card:nth-child(5) {
        grid-column: auto;
    }
}

@media (max-width: 768px) {
    .byd-page .brand-hero {
        min-height: 300px;
    }

    .byd-page .brand-hero-bg img {
        object-fit: contain;
        object-position: center bottom;
        background: #050505;
    }

    .byd-page .brand-hero-logo {
        max-width: 130px;
    }

    .byd-page .brand-models-section {
        padding: 56px 0 62px;
    }

    .byd-models-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 10px;
        row-gap: 18px;
    }

    .byd-models-grid .brand-model-card,
    .byd-models-grid .brand-model-card:nth-child(4),
    .byd-models-grid .brand-model-card:nth-child(5) {
        grid-column: auto;
    }

    .byd-models-grid .brand-model-card {
        padding: 8px;
        border-color: rgba(255,255,255,0.08);
        background: rgba(255,255,255,0.025);
        border-radius: 6px;
        transform: none;
    }

    .byd-models-grid .brand-model-card:hover {
        transform: none;
    }

    .byd-models-grid .brand-model-img {
        height: 132px;
        padding: 12px;
        box-shadow: none;
    }

    .byd-models-grid .brand-model-info {
        padding-top: 12px;
    }

    .byd-models-grid .brand-model-info h3 {
        min-height: 2.25em;
        margin-bottom: 6px;
        font-size: 0.76rem;
        line-height: 1.12;
    }

    .byd-models-grid .brand-model-info p {
        font-size: 0.68rem;
        line-height: 1.35;
    }

    .byd-page .brand-feature-banner {
        height: auto;
        padding: 22px 0;
        background: #050505;
    }

    .byd-page .brand-feature-banner img {
        height: auto;
        max-height: 230px;
        object-fit: contain;
    }

    .byd-locations {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .byd-locations .nissan-location-card {
        min-height: auto;
        padding: 22px 20px;
        border-radius: 6px;
    }

    .byd-locations .nissan-location-index {
        right: 16px;
        bottom: 10px;
        font-size: 3.7rem;
    }

    .byd-locations .nissan-location-content h3 {
        margin-bottom: 16px;
        font-size: 1.18rem;
    }

    .byd-locations .nissan-location-content h3::after {
        width: 38px;
        height: 3px;
        margin-top: 9px;
    }

    .byd-locations .nissan-location-content p {
        margin-bottom: 6px;
        font-size: 0.78rem;
        line-height: 1.45;
    }

    .byd-locations .nissan-address {
        font-size: 0.85rem !important;
        line-height: 1.48;
    }
}

/* KIA model grid alignment */
.kia-models-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    column-gap: 28px;
    row-gap: 42px;
}

.kia-models-grid .brand-model-card {
    grid-column: span 2;
}

.kia-models-grid .brand-model-card:nth-child(7) {
    grid-column: 3 / span 2;
}

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

    .kia-models-grid .brand-model-card,
    .kia-models-grid .brand-model-card:nth-child(7) {
        grid-column: auto;
    }
}

@media (max-width: 768px) {
    .kia-models-grid {
        grid-template-columns: 1fr;
    }
}

/* KIA footer alignment */
.kia-locations {
    grid-template-columns: repeat(3, minmax(260px, 1fr));
}

@media (max-width: 992px) {
    .kia-locations {
        grid-template-columns: 1fr;
    }
}

/* Honda model grid alignment */
.honda-models-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    column-gap: 28px;
    row-gap: 42px;
}

.honda-models-grid .brand-model-card {
    grid-column: span 2;
}

.honda-models-grid .brand-model-card:nth-child(7) {
    grid-column: 3 / span 2;
}

.honda-whatsapp-strip {
    grid-template-columns: repeat(2, minmax(260px, 360px));
    justify-content: center;
}

.honda-locations {
    grid-template-columns: minmax(280px, 720px);
    justify-content: center;
}

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

    .honda-models-grid .brand-model-card,
    .honda-models-grid .brand-model-card:nth-child(7) {
        grid-column: auto;
    }

    .honda-whatsapp-strip,
    .honda-locations {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .honda-models-grid {
        grid-template-columns: 1fr;
    }
}

/* Subaru model grid alignment */
.subaru-models-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    column-gap: 28px;
    row-gap: 42px;
}

.subaru-models-grid .brand-model-card {
    grid-column: span 2;
}

.subaru-models-grid .brand-model-card:nth-child(7) {
    grid-column: 3 / span 2;
}

.subaru-whatsapp-strip {
    grid-template-columns: minmax(260px, 360px);
    justify-content: center;
}

.subaru-locations {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
}

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

    .subaru-models-grid .brand-model-card,
    .subaru-models-grid .brand-model-card:nth-child(7) {
        grid-column: auto;
    }

    .subaru-locations {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .subaru-models-grid {
        grid-template-columns: 1fr;
    }
}

/* Suzuki model grid alignment */
.suzuki-models-grid {
    grid-template-columns: repeat(3, minmax(240px, 320px));
    justify-content: center;
    column-gap: 28px;
    row-gap: 42px;
}

.suzuki-whatsapp-strip {
    grid-template-columns: minmax(260px, 360px);
    justify-content: center;
}

.suzuki-locations {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
}

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

    .suzuki-locations {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .suzuki-models-grid {
        grid-template-columns: 1fr;
    }
}

/* Brand pages mobile polish */
.nissan-footer .nissan-location-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.028));
    border-color: rgba(255,255,255,0.14);
}

@media (max-width: 768px) {
    .brand-page .brand-hero {
        min-height: 300px;
    }

    .brand-page .brand-hero-bg img {
        object-fit: contain;
        object-position: center bottom;
        background: #050505;
    }

    .brand-page .brand-hero-logo {
        max-width: 130px;
        max-height: 94px;
    }

    .brand-page .brand-models-section {
        padding: 56px 0 62px;
    }

    .brand-page .brand-models-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 10px;
        row-gap: 18px;
    }

    .brand-page .brand-model-card,
    .brand-page .brand-model-card:nth-child(4),
    .brand-page .brand-model-card:nth-child(5),
    .brand-page .brand-model-card:nth-child(7) {
        grid-column: auto;
    }

    .brand-page .brand-model-card {
        padding: 8px;
        border-color: rgba(255,255,255,0.08);
        background: rgba(255,255,255,0.025);
        border-radius: 6px;
        transform: none;
    }

    .brand-page .brand-model-card:hover {
        transform: none;
    }

    .brand-page .brand-model-img {
        height: 132px;
        padding: 12px;
        box-shadow: none;
    }

    .brand-page .brand-model-info {
        padding-top: 12px;
    }

    .brand-page .brand-model-info h3 {
        min-height: 2.25em;
        margin-bottom: 6px;
        font-size: 0.76rem;
        line-height: 1.12;
    }

    .brand-page .brand-model-info p {
        font-size: 0.68rem;
        line-height: 1.35;
    }

    .brand-page .brand-feature-banner {
        height: auto;
        padding: 22px 0;
        background: #050505;
    }

    .brand-page .brand-feature-banner img {
        height: auto;
        max-height: 230px;
        object-fit: contain;
    }

    .nissan-locations,
    .byd-locations,
    .kia-locations,
    .honda-locations,
    .subaru-locations,
    .suzuki-locations {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .nissan-footer .nissan-location-card {
        min-height: auto;
        padding: 22px 20px;
        border-radius: 6px;
    }

    .nissan-footer .nissan-location-index {
        right: 16px;
        bottom: 10px;
        font-size: 3.7rem;
    }

    .nissan-footer .nissan-location-content h3 {
        margin-bottom: 16px;
        font-size: 1.18rem;
    }

    .nissan-footer .nissan-location-content h3::after {
        width: 38px;
        height: 3px;
        margin-top: 9px;
    }

    .nissan-footer .nissan-location-content p {
        margin-bottom: 6px;
        font-size: 0.78rem;
        line-height: 1.45;
    }

    .nissan-footer .nissan-address {
        font-size: 0.85rem !important;
        line-height: 1.48;
    }
}

@media (max-width: 768px) {
    .vehicle-product-page .product-anchor-bar {
        top: 76px;
    }

    .vehicle-product-page .product-anchor-inner {
        min-height: 0;
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        justify-content: stretch;
        gap: 4px;
        overflow: visible;
        padding: 6px 8px;
    }

    .vehicle-product-page .product-anchor-inner a {
        min-height: 38px;
        justify-content: center;
        padding: 6px 3px;
        text-align: center;
        min-width: 0;
        overflow: hidden;
        white-space: normal;
        overflow-wrap: anywhere;
        font-size: 0.49rem;
        line-height: 1.05;
        letter-spacing: 0.2px;
        background: #d80714;
        border: 1px solid rgba(255,255,255,0.28);
        border-radius: 3px;
    }

    .vehicle-product-page .product-anchor-inner a[href="#performance"] {
        font-size: 0.44rem;
        letter-spacing: 0;
    }

    .vehicle-product-page .product-anchor-inner--six {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 4px;
    }

    .vehicle-product-page .product-anchor-inner--six a {
        padding-inline: 3px;
        font-size: 0.49rem;
        letter-spacing: 0.2px;
    }

    .vehicle-product-page .product-anchor-inner--videos {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .vehicle-product-page .product-anchor-inner .product-anchor-plan,
    .vehicle-product-page .product-anchor-inner--six .product-anchor-plan {
        grid-column: 2 / span 3;
        margin: 3px 0 0;
        color: var(--primary);
        background: #fff;
        border-color: rgba(255,255,255,0.88);
        box-shadow: 0 8px 18px rgba(0,0,0,0.22);
    }
}
