/* Main Styles - Lavoie Transit
   Premium Automotive Design Language */

/* ============================================
   BASE STYLES
   ============================================ */
html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-family);
    font-size: var(--text-base);
    font-weight: var(--font-regular);
    line-height: var(--leading-normal);
    color: var(--color-text-primary);
    background-color: var(--color-bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
    overflow: hidden;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-black);
    color: var(--color-white);
    padding: var(--space-3) var(--space-6);
    z-index: var(--z-modal);
    transition: top var(--duration-base) var(--ease-out);
}

.skip-link:focus {
    top: var(--space-4);
}

/* Top Bar */
.top-bar {
    width: 100%;
    height: 8px;
    background: var(--color-black);
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ============================================
   HEADER / NAVIGATION - KIA Style
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 30%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.05) 70%, transparent 100%);
    z-index: var(--z-fixed);
    transition: background var(--duration-base) var(--ease-out),
                transform var(--duration-base) var(--ease-out);
}

/* Header hidden when scrolling down, shown when scrolling up */
.header--hidden {
    transform: translateY(-100%);
}

.header--scrolled {
    background: #000000;
}

/* Header text colors - always pure white (transparent or dark bg) */
.header .logo-text {
    color: var(--color-white);
}

.header .nav__link {
    color: var(--color-white);
}

.header .nav__link:hover {
    color: var(--color-white);
}

.header .header__action-link {
    color: var(--color-white);
}

.header .header__action-link:hover {
    color: var(--color-white);
}

.header .header__cta {
    border-color: var(--color-white);
    color: var(--color-white);
}

.header .header__cta:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
}

.header .hamburger,
.header .hamburger::before,
.header .hamburger::after {
    background: var(--color-white);
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
}

@media (min-width: 1024px) {
    .header__container {
        height: 64px;
    }
}

/* Logo - Centered */
.header__logo {
    display: flex;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 1023px) {
    .header__logo {
        position: relative;
        left: auto;
        transform: none;
    }
}

.logo-icon {
    width: 32px;
    height: 32px;
    margin-right: var(--space-2);
    transition: filter var(--duration-fast);
}

.header .logo-icon {
    filter: brightness(0) invert(1);
}

@media (min-width: 768px) {
    .logo-icon {
        width: 36px;
        height: 36px;
    }
}

@media (min-width: 1024px) {
    .logo-icon {
        width: 40px;
        height: 40px;
    }
}

.logo-text {
    font-size: 0.75rem; /* 12px minimum */
    font-weight: var(--font-bold);
    letter-spacing: 0.1em;
    color: var(--color-black);
    text-transform: uppercase;
    text-align: center;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .logo-text {
        font-size: 0.8125rem; /* 13px */
    }
}

@media (min-width: 1024px) {
    .logo-text {
        font-size: 0.875rem; /* 14px */
    }
}

@media (min-width: 1440px) {
    .logo-text {
        font-size: 0.9375rem; /* 15px */
    }
}

/* Desktop Navigation - Left Side */
.header__nav {
    display: none;
}

@media (min-width: 1024px) {
    .header__nav {
        display: block;
    }
}

.nav__list {
    display: flex;
    align-items: center;
    gap: var(--space-6);
}

@media (min-width: 1280px) {
    .nav__list {
        gap: var(--space-8);
    }
}

.nav__link {
    font-size: 0.9375rem; /* 15px minimum */
    font-weight: var(--font-bold);
    letter-spacing: 0;
    transition: color var(--duration-fast) var(--ease-out);
}

@media (min-width: 1280px) {
    .nav__link {
        font-size: 1rem; /* 16px */
    }
}

@media (min-width: 1440px) {
    .nav__link {
        font-size: 1.0625rem; /* 17px */
    }
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 120px var(--container-padding) var(--space-8);
    z-index: calc(var(--z-fixed) - 1);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
}

@media (min-width: 1024px) {
    .mobile-nav {
        display: none !important;
    }
}

.mobile-nav__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.mobile-nav__list li {
    overflow: hidden;
}

.mobile-nav__link {
    display: block;
    font-size: clamp(1.75rem, 8vw, 3rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    padding: var(--space-3) 0;
    letter-spacing: -0.03em;
    text-decoration: none;
    position: relative;
    transform: translateY(100%);
    opacity: 0;
    transition: color 0.3s ease,
                transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav__link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FFAC02, #FFD700);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav__link:hover,
.mobile-nav__link:focus {
    color: #FFFFFF;
}

.mobile-nav__link:hover::before,
.mobile-nav__link:focus::before {
    width: 100%;
}

/* Staggered animation for menu items */
.mobile-nav.is-open .mobile-nav__link {
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav.is-open li:nth-child(1) .mobile-nav__link { transition-delay: 0.1s; }
.mobile-nav.is-open li:nth-child(2) .mobile-nav__link { transition-delay: 0.15s; }
.mobile-nav.is-open li:nth-child(3) .mobile-nav__link { transition-delay: 0.2s; }
.mobile-nav.is-open li:nth-child(4) .mobile-nav__link { transition-delay: 0.25s; }
.mobile-nav.is-open li:nth-child(5) .mobile-nav__link { transition-delay: 0.3s; }
.mobile-nav.is-open li:nth-child(6) .mobile-nav__link { transition-delay: 0.35s; }

/* Mobile nav footer */
.mobile-nav__footer {
    margin-top: auto;
    padding-top: var(--space-10);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    width: 100%;
    padding: var(--space-4) var(--space-6);
    background: #FFAC02;
    color: var(--color-black);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mobile-nav__cta:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 40px rgba(255, 172, 2, 0.3);
}

/* Header Actions - Right Side */
.header__actions {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

@media (min-width: 1024px) {
    .header__actions {
        gap: var(--space-6);
    }
}

.header__action-link {
    display: none;
    align-items: center;
    gap: var(--space-2);
    font-size: 0.9375rem; /* 15px minimum */
    font-weight: var(--font-bold);
    letter-spacing: 0;
    color: var(--color-text-secondary);
    transition: color var(--duration-fast);
}

@media (min-width: 1024px) {
    .header__action-link {
        display: flex;
    }
}

@media (min-width: 1280px) {
    .header__action-link {
        font-size: 1rem; /* 16px */
    }
}

@media (min-width: 1440px) {
    .header__action-link {
        font-size: 1.0625rem; /* 17px */
    }
}

.header__action-link:hover {
    color: var(--color-black);
}

.header__action-link svg,
.header__action-link i {
    width: 18px;
    height: 18px;
    font-size: 18px;
}

.header__action-text {
    display: none;
}

@media (min-width: 1280px) {
    .header__action-text {
        display: inline;
    }
}

/* Header CTA Button - Pill Style */
.header__cta {
    display: none;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-5);
    font-size: 0.9375rem; /* 15px minimum */
    font-weight: var(--font-bold);
    letter-spacing: 0;
    color: var(--color-black);
    border: 1px solid var(--color-gray-300);
    border-radius: var(--radius-full);
    transition: all var(--duration-fast);
}

@media (min-width: 1024px) {
    .header__cta {
        display: flex;
    }
}

@media (min-width: 1280px) {
    .header__cta {
        font-size: 1rem; /* 16px */
    }
}

@media (min-width: 1440px) {
    .header__cta {
        font-size: 1.0625rem; /* 17px */
    }
}

/* Header Search Button */
.header__search {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: rgba(255, 255, 255, 0.85);
    transition: color var(--duration-fast);
    cursor: pointer;
}

@media (min-width: 1024px) {
    .header__search {
        display: flex;
    }
}

.header__search:hover {
    color: var(--color-white);
}

.header__search svg,
.header__search i {
    width: 20px;
    height: 20px;
    font-size: 20px;
}

@media (min-width: 1280px) {
    .header__search svg,
    .header__search i {
        width: 22px;
        height: 22px;
        font-size: 22px;
    }
}

/* Vertical separator after search */
.header__separator {
    display: none;
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.7);
}

@media (min-width: 1024px) {
    .header__separator {
        display: block;
    }
}

.header__cta:hover {
    border-color: var(--color-black);
    background: var(--color-gray-50);
}

.header__cta svg,
.header__cta i {
    width: 16px;
    height: 16px;
    font-size: 16px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    position: relative;
    z-index: calc(var(--z-fixed) + 1);
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.hamburger {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-white);
    position: relative;
    transition: background 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    background: var(--color-white);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.3s ease;
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.mobile-menu-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger::before {
    background: var(--color-white);
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger::after {
    background: var(--color-white);
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   HERO SECTION - KIA Style with Image Background
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #ffffff;
}

/* Image Background */
.hero__image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}

@media (min-width: 1024px) {
    .hero__image {
        object-position: 70% center;
    }
}

/* Video Background */
.hero__video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #1a1a2e;
}

.hero__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: saturate(1.6) contrast(1.15);
    background: #1a1a2e;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    pointer-events: none;
}

/* Hide default video controls and play button on mobile */
.hero__video::-webkit-media-controls {
    display: none !important;
}

.hero__video::-webkit-media-controls-start-playback-button {
    display: none !important;
    -webkit-appearance: none;
}

.hero__video::-webkit-media-controls-play-button {
    display: none !important;
    -webkit-appearance: none;
}

.hero__video--active {
    opacity: 1;
}

.hero__video--next {
    opacity: 0;
}

/* Gradient overlay - diagonal from top-left to bottom-right */
.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.6) 20%,
        rgba(0, 0, 0, 0.3) 40%,
        rgba(0, 0, 0, 0.1) 60%,
        transparent 80%
    );
    z-index: 1;
}

/* Hero Content - Left aligned KIA style */
.hero {
    align-items: center;
}

.hero__content {
    position: relative;
    z-index: 3;
    text-align: left;
    padding: var(--space-16) 0;
    padding-top: 100px;
    margin-left: var(--container-padding);
    margin-right: var(--container-padding);
    max-width: 100%;
    width: auto;
}

@media (min-width: 768px) {
    .hero__content {
        padding: var(--space-12) 0;
        padding-top: 100px;
        max-width: 600px;
        margin-right: 0;
    }
}

@media (min-width: 1024px) {
    .hero__content {
        padding: var(--space-12) 0;
        padding-top: 90px;
        max-width: 700px;
    }
}

@media (min-width: 1280px) {
    .hero__content {
        padding: var(--space-16) 0;
        padding-top: 90px;
        max-width: 800px;
    }
}

/* Decorative accent line below title */
.hero__accent-line {
    width: 414px;
    max-width: 100%;
    height: 3px;
    background: var(--color-white);
    margin-bottom: var(--space-6);
    flex-shrink: 0;
    display: block;
}

.hero__accent-line--bottom {
    margin-bottom: var(--space-8);
    margin-top: var(--space-6);
}

.hero__label {
    display: none;
}

.hero__title {
    font-size: clamp(1.25rem, 5vw, 3.5rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: var(--space-2);
    white-space: nowrap;
}

.hero__title-link {
    color: var(--color-white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.hero__title-link:hover {
    opacity: 0.7;
}

@media (max-width: 767px) {
    .hero__title-link {
        display: block;
    }
}


.hero__title-sub {
    font-size: clamp(1rem, 3vw, 2rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: var(--space-6);
}

.hero__subtitle {
    font-size: var(--text-base);
    font-weight: var(--font-light);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-8);
    max-width: 500px;
    line-height: 1.6;
    letter-spacing: 0.01em;
}

@media (min-width: 768px) {
    .hero__subtitle {
        font-size: var(--text-lg);
    }
}

@media (min-width: 1024px) {
    .hero__subtitle {
        font-size: var(--text-xl);
        max-width: 550px;
    }
}

/* Stats Section - KIA Style */
.hero__promo {
    display: flex;
    flex-wrap: nowrap;
    gap: var(--space-6);
    margin-bottom: var(--space-10);
    padding: 0;
    align-items: flex-start;
}

@media (min-width: 768px) {
    .hero__promo {
        gap: var(--space-8);
    }
}

@media (min-width: 1024px) {
    .hero__promo {
        gap: var(--space-10);
    }
}

.hero__promo-item {
    display: flex;
    flex-direction: column;
    text-align: left;
    padding-left: var(--space-4);
    border-left: 1px solid rgba(255, 255, 255, 0.4);
}

.hero__promo-item:first-child {
    border-left: none;
    padding-left: 0;
}

.hero__promo-value {
    font-size: var(--text-3xl);
    font-weight: 500;
    color: var(--color-white);
    line-height: 1;
    letter-spacing: -0.02em;
    order: 2;
}

@media (min-width: 768px) {
    .hero__promo-value {
        font-size: var(--text-4xl);
    }
}

@media (min-width: 1024px) {
    .hero__promo-value {
        font-size: 3rem;
    }
}

.hero__promo-suffix {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-1);
    text-transform: none;
    letter-spacing: 0;
    order: 1;
}

@media (min-width: 768px) {
    .hero__promo-suffix {
        font-size: 0.9375rem;
    }
}

/* CTA Button - KIA Style */
.hero__cta-group {
    display: flex;
    flex-direction: row;
    gap: var(--space-4);
    align-items: stretch;
    margin-top: var(--space-4);
}

.hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-6);
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0;
    border-radius: var(--radius-full);
    transition: all var(--duration-fast);
    min-width: 160px;
}

.hero__cta--primary {
    background: var(--color-white);
    color: var(--color-black);
    border: 1px solid var(--color-white);
}

.hero__cta--primary:hover {
    background: var(--color-gray-100);
}

.hero__cta--primary svg,
.hero__cta--primary i {
    width: 16px;
    height: 16px;
    font-size: 14px;
    transition: transform var(--duration-fast);
}

.hero__cta--primary:hover svg,
.hero__cta--primary:hover i {
    transform: translateX(4px);
}

.hero__cta--secondary {
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-full);
}

.hero__cta--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
}

/* Hero Specs - Hidden (replaced by promo) */
.hero__specs {
    display: none;
}

/* Carousel Indicators */
.hero__indicators {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: var(--space-3);
}

.hero__indicator {
    width: 48px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    cursor: pointer;
    transition: background var(--duration-fast);
}

.hero__indicator.active,
.hero__indicator:hover {
    background: var(--color-white);
}

/* Carousel Navigation Arrows */
.hero__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--color-white);
    cursor: pointer;
    transition: all var(--duration-fast);
    opacity: 0;
}

.hero:hover .hero__nav {
    opacity: 1;
}

.hero__nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.hero__nav--prev {
    left: var(--space-6);
}

.hero__nav--next {
    right: var(--space-6);
}

/* Scroll Indicator - Hidden */
.hero__scroll {
    display: none;
}

/* Hero Mobile Responsive Styles */
@media (max-width: 767px) {
    .hero {
        min-height: 100svh;
    }

    .hero__content {
        padding: var(--space-8) 0;
        padding-top: 80px;
        padding-bottom: var(--space-16);
        margin-left: var(--container-padding);
        margin-right: var(--container-padding);
    }

    .hero__title {
        white-space: normal;
        font-size: clamp(2.5rem, 12vw, 4rem);
        margin-bottom: var(--space-1);
    }

    .hero__title-sub {
        font-size: clamp(0.875rem, 4vw, 1.25rem);
        margin-bottom: var(--space-4);
    }

    .hero__accent-line {
        width: 100%;
        max-width: 280px;
        height: 2px;
    }

    .hero__accent-line--bottom {
        margin-bottom: var(--space-6);
        margin-top: var(--space-4);
    }

    .hero__subtitle {
        font-size: 0.9375rem;
        margin-bottom: var(--space-6);
        max-width: 100%;
    }

    .hero__promo {
        flex-wrap: wrap;
        gap: var(--space-4);
        margin-bottom: var(--space-8);
    }

    .hero__promo-item {
        padding-left: var(--space-3);
    }

    .hero__promo-value {
        font-size: var(--text-2xl);
    }

    .hero__promo-suffix {
        font-size: 0.75rem;
    }

    .hero__cta-group {
        flex-direction: column;
        gap: var(--space-3);
        width: 100%;
    }

    .hero__cta {
        width: 100%;
        min-width: unset;
        padding: var(--space-4) var(--space-5);
        font-size: 1rem;
    }

    .hero__indicators {
        bottom: var(--space-4);
    }

    .hero__indicator {
        width: 32px;
        height: 2px;
    }

    .hero__nav {
        display: none;
    }

    .hero__overlay {
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.5) 30%,
            rgba(0, 0, 0, 0.3) 60%,
            rgba(0, 0, 0, 0.4) 100%
        );
    }
}

/* Legacy scroll indicator styles (kept for backwards compatibility) */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    letter-spacing: var(--tracking-wide);
    border-radius: var(--radius-full);
    transition: all var(--duration-fast) var(--ease-out);
    cursor: pointer;
}

.btn--primary {
    background: var(--color-gray-800);
    color: var(--color-white);
}

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

.btn--secondary {
    background: transparent;
    color: var(--color-black);
    border: 1px solid var(--color-gray-300);
}

.btn--secondary:hover {
    border-color: var(--color-black);
}

.btn--sm {
    padding: var(--space-3) var(--space-4);
}

.btn--full {
    width: 100%;
}

.btn__icon {
    transition: transform var(--duration-fast);
    font-size: 14px;
}

.btn:hover .btn__icon {
    transform: translateX(3px);
}

/* ============================================
   QUICK ACTIONS - Clean 4-column
   ============================================ */
.quick-actions {
    padding: var(--space-8) 0 var(--space-6);
    background: var(--color-white);
}

@media (min-width: 768px) {
    .quick-actions {
        padding: var(--space-10) 0 var(--space-8);
    }
}

.quick-actions__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
    .quick-actions__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.quick-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-2) var(--space-4);
    background: var(--color-white);
    transition: background var(--duration-fast);
}

.quick-action:hover {
    background: var(--color-white);
}

.quick-action__icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-1);
    color: var(--color-black);
    font-size: 28px;
}

.quick-action__icon i {
    font-size: 32px;
}

.quick-action__label {
    font-size: var(--text-base);
    font-weight: var(--font-normal);
    color: var(--color-text-primary);
    letter-spacing: var(--tracking-wide);
}

/* ============================================
   SECTIONS - Clean & Minimal
   ============================================ */
.section {
    padding: var(--space-20) 0;
}

@media (min-width: 768px) {
    .section {
        padding: var(--space-24) 0;
    }
}

@media (min-width: 1024px) {
    .section {
        padding: var(--space-32) 0;
    }
}

.section--white { background: var(--color-white); }
.section--gray { background: var(--color-bg-secondary); }
.section--dark { background: var(--color-bg-dark); color: var(--color-white); }

#inventaire {
    background:
        linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    background-color: #f9f9f9;
    padding-top: 60px;
    padding-bottom: 40px;
    margin-top: 60px;
    margin-bottom: 60px;
    box-shadow: inset 0 25px 40px -15px rgba(0, 0, 0, 0.15);
    position: relative;
}

#inventaire::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, #fff);
    pointer-events: none;
    z-index: 0;
}

#inventaire > .container {
    position: relative;
    z-index: 1;
}

.section--dark-image {
    position: relative;
    background: url('https://images.unsplash.com/photo-1519003722824-194d4455a60c?w=1920&q=80') center/cover no-repeat;
    color: var(--color-white);
}

.section__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
}

.section--dark-image .container {
    position: relative;
    z-index: 1;
}

/* Section Header */
.section__header {
    max-width: 700px;
    margin-bottom: var(--space-12);
}

@media (min-width: 768px) {
    .section__header {
        margin-bottom: var(--space-16);
    }
}

.section__header--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Drastically reduce spacing in specialites section */
#specialites {
    padding-top: var(--space-6);
    padding-bottom: var(--space-6);
    position: relative;
    z-index: 1;
}

#specialites::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

#specialites .section__header {
    margin-bottom: var(--space-3);
}

/* Hide section header on mobile */
@media (max-width: 767px) {
    #specialites .section__header {
        display: none;
    }
}

@media (min-width: 768px) {
    #specialites {
        padding-top: var(--space-8);
        padding-bottom: var(--space-8);
    }

    #specialites .section__header {
        margin-bottom: var(--space-4);
    }
}

/* Specialites section - match role-showcase style */
#specialites .section__label {
    font-size: 0.875rem;
    font-weight: var(--font-medium);
    color: var(--color-text-secondary);
    text-transform: none;
    letter-spacing: 0.01em;
    margin-bottom: var(--space-3);
}

#specialites .section__title {
    font-size: 2.25rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: var(--space-4);
}

@media (min-width: 768px) {
    #specialites .section__label {
        font-size: 1rem;
    }
    #specialites .section__title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    #specialites .section__title {
        font-size: 3.5rem;
    }
}

@media (min-width: 1280px) {
    #specialites .section__title {
        font-size: 4rem;
    }
}

.section__label {
    display: block;
    font-size: var(--text-xs);
    font-weight: var(--font-medium);
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
    color: var(--color-text-tertiary);
    margin-bottom: var(--space-4);
}

.section__title {
    font-size: var(--text-3xl);
    font-weight: var(--font-light);
    letter-spacing: var(--tracking-tighter);
    line-height: var(--leading-tight);
    color: var(--color-black);
    margin-bottom: var(--space-4);
}

@media (min-width: 768px) {
    .section__title {
        font-size: var(--text-4xl);
    }
}

.section__subtitle {
    font-size: var(--text-lg);
    font-weight: var(--font-light);
    color: var(--color-text-secondary);
    line-height: var(--leading-relaxed);
}

.section__header--light .section__label { color: var(--color-gray-400); }
.section__header--light .section__title { color: var(--color-white); }
.section__header--light .section__subtitle { color: var(--color-gray-300); }

.section__cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    margin-top: var(--space-12);
}

.section__cta--center {
    justify-content: center;
}

/* ============================================
   SPLIT SECTION - Polestar Style
   ============================================ */
.split-section {
    display: grid;
    gap: var(--space-12);
}

@media (min-width: 1024px) {
    .split-section {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-16);
        align-items: center;
    }
}

.split-section__content {
    order: 2;
}

@media (min-width: 1024px) {
    .split-section__content {
        order: 1;
    }
}

.split-section__title {
    font-size: var(--text-2xl);
    font-weight: var(--font-medium);
    letter-spacing: var(--tracking-tight);
    margin-bottom: var(--space-6);
}

.split-section__text {
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-6);
}

.split-section__image {
    order: 1;
}

@media (min-width: 1024px) {
    .split-section__image {
        order: 2;
    }
}

.split-section__image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Feature List */
.feature-list {
    margin-top: var(--space-8);
    border-top: 1px solid var(--color-border);
}

.feature-list__item {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-5) 0;
    border-bottom: 1px solid var(--color-border);
    font-size: var(--text-sm);
    color: var(--color-text-primary);
}

.feature-list__icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    font-size: 16px;
    color: var(--color-black);
}

/* ============================================
   EXPERTISE BANDS - Full-width Sections
   ============================================ */
.expertise-bands {
    display: flex;
    flex-direction: column;
    margin: 0;
}

.expertise-band {
    display: flex;
    flex-direction: column;
    padding: 0;
    border-bottom: 1px solid var(--color-border);
    gap: 0;
    position: relative;
    overflow: hidden;
}

.expertise-band:first-child {
    border-top: none;
}

.expertise-band__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
    position: relative;
    z-index: 1;
}

.expertise-band__content .btn {
    width: 80%;
    position: relative;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    color: #fff;
    border: none;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: var(--space-5) var(--space-8);
    font-size: 1rem;
    white-space: nowrap;
}

.expertise-band__content .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s ease;
}

.expertise-band__content .btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFAC02;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.expertise-band__content .btn:hover {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.expertise-band__content .btn:hover::before {
    left: 100%;
}

.expertise-band__content .btn:hover::after {
    width: 100%;
}

.expertise-band__content .btn .btn__icon {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.expertise-band__content .btn:hover .btn__icon {
    transform: translateX(5px);
}

/* Mobile vertical layout: button below image */
@media (max-width: 767px) {
    .expertise-band {
        padding: var(--space-6) 0;
    }

    .expertise-band__content {
        display: contents;
    }

    .expertise-band__label { order: 1; text-align: left; }
    .expertise-band__title { order: 2; margin-top: var(--space-1); text-align: left; }
    .expertise-band__desc { order: 3; margin-top: var(--space-1); text-align: left; }
    .expertise-band__image { order: 4; margin-top: var(--space-2); }
    .expertise-band__content .btn {
        order: 5;
        margin-top: var(--space-2);
        margin-left: 0;
        margin-right: auto;
        width: auto;
        max-width: fit-content;
        padding: var(--space-6) var(--space-10);
        font-size: 1.125rem;
    }
}

/* Smallest mobile: center everything */
@media (max-width: 480px) {
    .expertise-band__label { text-align: center; }
    .expertise-band__title { text-align: center; }
    .expertise-band__desc { text-align: center; }
    .expertise-band__content .btn {
        margin-left: auto;
        margin-right: auto;
    }
}

.expertise-band__label {
    font-size: var(--text-xs);
    font-weight: var(--font-medium);
    color: var(--color-text-tertiary);
    letter-spacing: var(--tracking-widest);
    text-transform: uppercase;
}

/* Large decorative number */
.expertise-band__number {
    font-size: clamp(160px, 25vw, 320px);
    font-weight: 800;
    color: rgba(0, 0, 0, 0.02);
    -webkit-text-stroke: 1.5px rgba(0, 0, 0, 0.06);
    line-height: 0.75;
    letter-spacing: -0.04em;
    user-select: none;
    pointer-events: none;
    position: absolute;
    top: 50%;
    right: 5%;
    left: auto;
    transform: translateY(-50%);
    z-index: 0;
    font-family: 'Outfit', sans-serif;
}

/* Compact bands - smaller numbers */
.expertise-band--compact .expertise-band__number {
    font-size: clamp(120px, 18vw, 200px);
    right: 10%;
}

/* Reversed compact bands (03 and 06) - image on left, so number on left */
.expertise-band--compact:last-child .expertise-band__number {
    right: auto;
    left: 10%;
}

@media (max-width: 767px) {
    .expertise-band__number,
    .expertise-band--compact .expertise-band__number,
    .expertise-band--compact:last-child .expertise-band__number {
        font-size: clamp(100px, 28vw, 180px);
        top: 50%;
        right: auto;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
    }
}

@media (max-width: 480px) {
    .expertise-band__number,
    .expertise-band--compact .expertise-band__number,
    .expertise-band--compact:last-child .expertise-band__number {
        font-size: clamp(100px, 28vw, 180px);
        left: 50%;
        right: auto;
        transform: translateX(-50%) translateY(-50%);
        top: 50%;
        -webkit-text-stroke: 1px rgba(0, 0, 0, 0.03);
    }
}

.expertise-band__title {
    font-size: var(--text-4xl);
    font-weight: var(--font-semibold);
    letter-spacing: var(--tracking-tighter);
    color: var(--color-black);
    line-height: var(--leading-none);
    margin: 0;
}

.expertise-band__desc {
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    line-height: var(--leading-relaxed);
    max-width: 480px;
}

.expertise-band__cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--color-black);
    text-decoration: none;
    margin-top: var(--space-1);
    transition: gap var(--duration-base) var(--ease-out);
}

.expertise-band__cta:hover {
    gap: var(--space-3);
}

.expertise-band__cta i {
    font-size: 18px;
    transition: transform var(--duration-base) var(--ease-out);
}

.expertise-band__cta:hover i {
    transform: translateX(4px);
}

.expertise-band__image {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-height: 280px;
    overflow: visible;
    position: relative;
    z-index: 1;
}

.expertise-band__image img {
    height: 280px;
    width: auto;
    object-fit: contain;
    will-change: transform;
}

/* Static images on mobile - no animation transform */
@media (max-width: 1024px) {
    .expertise-band[data-index] .expertise-band__image img {
        transform: none !important;
    }

    .expertise-band[data-index="2"] .expertise-band__image img {
        transform: scaleX(-1) !important;
    }
}

.expertise-band[data-index="2"] .expertise-band__image img {
    transform: scaleX(-1);
}

@media (min-width: 768px) {
    .expertise-band {
        flex-direction: row;
        align-items: center;
        padding: 0;
        gap: 0;
    }

    .expertise-band__content {
        flex: 0 1 50%;
    }

    .expertise-band__image {
        flex: 0 1 50%;
        justify-content: flex-end;
        min-height: 340px;
    }

    .expertise-band__image img {
        height: 340px;
    }

    .expertise-band__title {
        font-size: var(--text-5xl);
    }
}

@media (min-width: 1024px) {
    .expertise-band {
        padding: 0;
    }

    .expertise-band__image {
        min-height: 420px;
    }

    .expertise-band__image img {
        height: 420px;
    }

    .expertise-band__title {
        font-size: var(--text-6xl);
    }

    .expertise-band__desc {
        font-size: var(--text-lg);
    }
}

/* Expertise Band Group (Combined Véhicules section) */
.expertise-band-group {
    display: flex;
    flex-direction: column;
}

/* Grid pattern divider - full width */
.expertise-band-lines {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-top: 0;
    height: 170px;
    background:
        linear-gradient(rgba(0,0,0,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    background-color: #f9f9f9;
    box-shadow: inset 0 25px 40px -15px rgba(0, 0, 0, 0.15),
                inset 0 -25px 40px -15px rgba(0, 0, 0, 0.15);
}

.expertise-band-line {
    display: none;
}

/* Dark band - full width black strip */
.expertise-band--dark {
    background: var(--color-black);
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
    padding-top: var(--space-6);
    padding-bottom: var(--space-6);
    border-bottom: none;
}

.expertise-band--dark .expertise-band__label {
    color: rgba(255, 255, 255, 0.7);
}

.expertise-band--dark .expertise-band__title {
    color: var(--color-white);
}

.expertise-band--dark .expertise-band__desc {
    color: rgba(255, 255, 255, 0.8);
}

.expertise-band--dark .btn--primary {
    background: #FFAC02;
    color: var(--color-black);
    border-color: #FFAC02;
}

.expertise-band-secondary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--color-border);
}

/* Remove border from band groups secondary sections */
.expertise-band-group .expertise-band-secondary {
    border-bottom: none;
}

/* Remove border-bottom from main bands (above compact items) */
.expertise-band-group .expertise-band--main {
    border-bottom: none;
}

/* Compact bands - smaller version */
.expertise-band--compact {
    border-bottom: none;
    border-right: 1px solid var(--color-border);
    border-top: none;
}

.expertise-band--compact:last-child {
    border-right: none;
    border-top: 1px solid var(--color-border);
}

.expertise-band--compact .expertise-band__image {
    min-height: 240px;
}

.expertise-band--compact .expertise-band__image img {
    height: 220px;
}

.expertise-band--compact .expertise-band__title {
    font-size: var(--text-4xl);
}

.expertise-band--compact .expertise-band__desc {
    font-size: var(--text-base);
    max-width: 480px;
}

/* Second compact band - flip layout (image on left) */
.expertise-band--compact:last-child {
    flex-direction: column-reverse;
}

@media (min-width: 768px) {
    .expertise-band--compact .expertise-band__image {
        min-height: 280px;
    }

    .expertise-band--compact .expertise-band__image img {
        height: 260px;
    }

    .expertise-band--compact .expertise-band__title {
        font-size: var(--text-2xl);
    }

    .expertise-band--compact .expertise-band__desc {
        font-size: var(--text-sm);
        max-width: 320px;
    }

    /* Second compact band - image on left on desktop */
    .expertise-band--compact:last-child {
        flex-direction: row-reverse;
    }

    .expertise-band--compact:last-child .expertise-band__image {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .expertise-band-secondary {
        grid-template-columns: 1fr;
    }

    .expertise-band--compact {
        border-right: none;
        border-bottom: 1px solid var(--color-border);
    }

    .expertise-band--compact:last-child {
        flex-direction: column;
    }
}

/* 768px-1200px range: Stack compact band content vertically */
@media (min-width: 768px) and (max-width: 1200px) {
    .expertise-band-secondary .expertise-band--compact {
        flex-direction: column !important;
        padding: var(--space-4) 0 var(--space-8) 0;
    }

    .expertise-band-secondary .expertise-band--compact:last-child {
        flex-direction: column !important;
    }

    /* Button below image using display: contents */
    .expertise-band-secondary .expertise-band--compact .expertise-band__content {
        display: contents;
    }

    .expertise-band-secondary .expertise-band--compact .expertise-band__label { order: 1; }
    .expertise-band-secondary .expertise-band--compact .expertise-band__title { order: 2; margin-top: var(--space-1); }
    .expertise-band-secondary .expertise-band--compact .expertise-band__desc { order: 3; margin-top: var(--space-1); }
    .expertise-band-secondary .expertise-band--compact .expertise-band__image {
        order: 4;
        min-height: 280px;
        width: 100%;
        flex: none;
        justify-content: center;
        margin-top: var(--space-4);
    }
    .expertise-band-secondary .expertise-band--compact .expertise-band__content .btn {
        order: 5;
        margin-top: var(--space-4);
        width: auto !important;
        max-width: fit-content;
        align-self: flex-start;
        margin-left: 0;
        margin-right: auto;
    }

    /* Text stays left-aligned */
    .expertise-band-secondary .expertise-band--compact .expertise-band__label,
    .expertise-band-secondary .expertise-band--compact .expertise-band__title,
    .expertise-band-secondary .expertise-band--compact .expertise-band__desc {
        text-align: left;
        align-self: flex-start;
    }

    /* Add right spacing to left-side cards (02 and 05) */
    .expertise-band-secondary .expertise-band--compact:first-child .expertise-band__label,
    .expertise-band-secondary .expertise-band--compact:first-child .expertise-band__title,
    .expertise-band-secondary .expertise-band--compact:first-child .expertise-band__desc,
    .expertise-band-secondary .expertise-band--compact:first-child .expertise-band__image {
        margin-right: var(--space-4);
    }

    /* Add left spacing to right-side cards (03 and 06) */
    .expertise-band-secondary .expertise-band--compact:last-child .expertise-band__label,
    .expertise-band-secondary .expertise-band--compact:last-child .expertise-band__title,
    .expertise-band-secondary .expertise-band--compact:last-child .expertise-band__desc,
    .expertise-band-secondary .expertise-band--compact:last-child .expertise-band__image,
    .expertise-band-secondary .expertise-band--compact:last-child .expertise-band__content .btn {
        margin-left: var(--space-4);
    }

    .expertise-band-secondary .expertise-band--compact .expertise-band__image img {
        height: 260px;
    }

    .expertise-band-secondary .expertise-band--compact .expertise-band__title {
        font-size: var(--text-3xl);
    }

    .expertise-band-secondary .expertise-band--compact .expertise-band__desc {
        font-size: var(--text-sm);
        max-width: 100%;
    }
}

@media (min-width: 1201px) {
    .expertise-band--compact .expertise-band__image {
        min-height: 320px;
    }

    .expertise-band--compact .expertise-band__image img {
        height: 300px;
    }

    .expertise-band--compact .expertise-band__title {
        font-size: var(--text-4xl);
    }

    .expertise-band--compact .expertise-band__desc {
        font-size: var(--text-sm);
    }
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
    display: grid;
    gap: 1px;
    background: var(--color-border);
}

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

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    padding: var(--space-8);
    background: var(--color-white);
    transition: background var(--duration-base);
}

.service-card:hover {
    background: var(--color-bg-secondary);
}

.service-card__number {
    display: block;
    font-size: var(--text-xs);
    font-weight: var(--font-medium);
    color: var(--color-text-tertiary);
    letter-spacing: var(--tracking-wide);
    margin-bottom: var(--space-4);
}

.service-card__title {
    font-size: var(--text-base);
    font-weight: var(--font-medium);
    letter-spacing: var(--tracking-tight);
    margin-bottom: var(--space-2);
}

.service-card__text {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: var(--leading-relaxed);
}

/* Don't Do Section */
.dont-do-section {
    margin-top: var(--space-16);
    padding-top: var(--space-12);
    border-top: 1px solid var(--color-border);
}

.dont-do__title {
    font-size: var(--text-xl);
    font-weight: var(--font-medium);
    letter-spacing: var(--tracking-tight);
    margin-bottom: var(--space-8);
}

.dont-do__grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
}

.dont-do__item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-5);
    background: var(--color-bg-secondary);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

.dont-do__icon {
    width: 18px;
    height: 18px;
    font-size: 18px;
    color: var(--color-text-tertiary);
}

/* ============================================
   WHO WE SERVE - Dark Mode Section (matches map)
   ============================================ */
/* ============================================
   CLIENTELE SECTION - Horizontal Timeline
   ============================================ */
.section-clientele {
    position: relative;
    background-color: #050505;
    padding: 160px 0 140px;
    overflow: hidden;
}

.section-clientele::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: linear-gradient(to bottom, transparent, var(--color-black));
    pointer-events: none;
}

.clientele__header {
    text-align: center;
    margin-bottom: 60px;
}

.clientele__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #FFAC02;
    margin-bottom: 16px;
}

.clientele__title {
    font-size: 2.25rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .clientele__title {
        font-size: 3rem;
    }
}

.clientele__subtitle {
    font-size: 1.125rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 auto;
    white-space: nowrap;
}

/* Horizontal Timeline */
.clientele-timeline {
    position: relative;
    padding-top: 40px;
}

/* Horizontal Line */
.clientele-timeline__line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #FFAC02 10%, #FFAC02 90%, transparent 100%);
}

/* Items Container */
.clientele-timeline__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
}

@media (min-width: 768px) {
    .clientele-timeline__items {
        grid-template-columns: repeat(3, 1fr);
        gap: 50px 30px;
    }
}

@media (min-width: 1024px) {
    .clientele-timeline__items {
        grid-template-columns: repeat(6, 1fr);
        gap: 20px;
    }
}

/* Individual Item */
.clientele-timeline__item {
    position: relative;
    text-align: center;
    padding-top: 40px;
}

/* Marker dot - map style */
.clientele-timeline__marker {
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    background: #FFAC02;
    border-radius: 50%;
    z-index: 2;
}

.clientele-timeline__marker::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 28px;
    background: rgba(255, 172, 2, 0.3);
    border-radius: 50%;
    z-index: 1;
}

.clientele-timeline__content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.clientele-timeline__content p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

/* ============================================
   CONNECTION FLOW - Visual Hub Design
   ============================================ */
.connection-flow {
    position: relative;
    margin-top: 80px;
    padding: 60px 0;
    overflow: hidden;
}

.connection-flow__svg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.connection-flow__path {
    fill: none;
    stroke: rgba(255, 172, 2, 0.3);
    stroke-width: 2;
    stroke-dasharray: 8 8;
    stroke-linecap: round;
}

.connection-flow__dot {
    fill: #FFAC02;
    filter: drop-shadow(0 0 6px rgba(255, 172, 2, 0.8));
}

.connection-flow__content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.connection-flow__side {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    max-width: 400px;
}

.connection-flow__side--left {
    align-items: flex-end;
    text-align: right;
}

.connection-flow__side--right {
    align-items: flex-start;
    text-align: left;
}

.connection-flow__card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 12px 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 14px;
}

.connection-flow__side--left .connection-flow__card {
    flex-direction: row;
}

.connection-flow__side--right .connection-flow__card {
    flex-direction: row-reverse;
}

.connection-flow__card:hover {
    background: rgba(255, 172, 2, 0.08);
    border-color: rgba(255, 172, 2, 0.3);
    transform: translateY(-2px);
}

.connection-flow__card i {
    font-size: 1.5rem;
    color: #FFAC02;
    flex-shrink: 0;
}

.connection-flow__card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
    white-space: nowrap;
}

.connection-flow__card p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    line-height: 1.3;
    white-space: nowrap;
}

/* Center Hub */
.connection-flow__hub {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.connection-flow__hub-inner {
    position: relative;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.connection-flow__hub-ring {
    position: absolute;
    inset: 0;
    border: 2px dashed rgba(255, 172, 2, 0.4);
    border-radius: 50%;
    animation: hub-rotate 20s linear infinite;
}

@keyframes hub-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.connection-flow__hub-core {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, #FFAC02 0%, #e69900 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 40px rgba(255, 172, 2, 0.4),
        0 0 80px rgba(255, 172, 2, 0.2),
        inset 0 -4px 12px rgba(0, 0, 0, 0.2);
}

.connection-flow__hub-text {
    font-size: 1rem;
    font-weight: 700;
    color: #000;
    letter-spacing: 0.1em;
    line-height: 1;
}

.connection-flow__hub-subtext {
    font-size: 0.625rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.7);
    letter-spacing: 0.15em;
    margin-top: 2px;
}

.connection-flow__hub-tagline {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .connection-flow {
        margin-top: 60px;
        padding: 40px 0;
    }

    .connection-flow__svg {
        display: none;
    }

    .connection-flow__content {
        flex-direction: column;
        gap: 40px;
    }

    .connection-flow__side {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        max-width: 100%;
        gap: 12px;
    }

    .connection-flow__side--left,
    .connection-flow__side--right {
        align-items: center;
        text-align: center;
    }

    .connection-flow__side--left .connection-flow__card,
    .connection-flow__side--right .connection-flow__card {
        flex-direction: column;
        text-align: center;
        padding: 14px 16px;
        min-width: 140px;
    }

    .connection-flow__hub {
        order: -1;
    }

    .connection-flow__hub-inner {
        width: 120px;
        height: 120px;
    }

    .connection-flow__hub-core {
        width: 95px;
        height: 95px;
    }

    .connection-flow__hub-text {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .connection-flow__card {
        min-width: calc(50% - 6px);
        flex: 1;
    }
}

/* ============================================
   INVENTORY - Polestar Style Cards
   ============================================ */

/* Polestar Style Header */
.inventory-header {
    margin-top: var(--space-12);
    margin-bottom: var(--space-8);
}

.inventory-header__title {
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--color-black);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-4);
}

@media (min-width: 768px) {
    .inventory-header__title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .inventory-header__title {
        font-size: 2.5rem;
    }
}

.inventory-header__location {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
}

.inventory-header__location i {
    font-size: 1rem;
}

.inventory-header__location span {
    font-weight: 500;
    color: var(--color-black);
}

.inventory-header__change {
    color: var(--color-black);
    text-decoration: underline;
    text-underline-offset: 2px;
    margin-left: var(--space-2);
    transition: opacity var(--duration-fast);
}

.inventory-header__change:hover {
    opacity: 0.7;
}

/* Polestar Style Filter Bar */
.inventory-filter-bar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--space-4);
    margin-bottom: var(--space-10);
    padding-bottom: var(--space-6);
    flex-wrap: wrap;
}

.inventory-filter-bar__left {
    display: flex;
    align-items: flex-end;
    gap: var(--space-4);
}

.inventory-filter-bar__right {
    display: flex;
    align-items: flex-end;
}

.inventory-filter-bar__select,
.inventory-filter-bar__sort {
    min-width: 180px;
}

.inventory-filter-bar__label {
    display: block;
    font-size: 0.8125rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-2);
}

.inventory-filter-bar__dropdown {
    position: relative;
}

.inventory-filter-bar__dropdown select {
    width: 100%;
    padding: var(--space-4) var(--space-5);
    padding-right: var(--space-12);
    font-size: 1rem;
    font-weight: 500;
    font-family: inherit;
    color: var(--color-white);
    background: var(--color-black);
    border: 1px solid var(--color-black);
    border-radius: var(--radius-full);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--space-4) center;
}

.inventory-filter-bar__dropdown select:focus {
    outline: none;
    border-color: var(--color-black);
}

.inventory-filter-bar__dropdown select option {
    background: var(--color-black);
    color: var(--color-white);
}

/* Light dropdown variant for sort */
.inventory-filter-bar__dropdown--light select {
    color: var(--color-black);
    background-color: var(--color-white);
    border: 1px solid #e5e5e5;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--space-4) center;
}

.inventory-filter-bar__dropdown--light select:focus {
    border-color: var(--color-black);
}

.inventory-filter-bar__dropdown--light select option {
    background: var(--color-white);
    color: var(--color-black);
}

.inventory-filter-bar__btn {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-5);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-black);
    background: var(--color-white);
    border: 1px solid #e5e5e5;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--duration-fast);
}

.inventory-filter-bar__btn:hover {
    border-color: var(--color-black);
}

.inventory-filter-bar__btn i {
    font-size: 1.125rem;
}

/* Legacy filter buttons (hidden but kept for JS compatibility) */
.inventory-filter {
    display: none;
}

.filter-btn {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-sm);
    font-weight: var(--font-regular);
    color: var(--color-text-secondary);
    letter-spacing: var(--tracking-wide);
    transition: color var(--duration-fast);
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--color-black);
}

.filter-btn.active {
    font-weight: var(--font-medium);
}

/* Inventory Grid - Polestar Style */
.inventory-grid {
    display: grid;
    gap: var(--space-8);
}

@media (min-width: 768px) {
    .inventory-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6);
    }
}

@media (min-width: 1200px) {
    .inventory-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-6);
    }
}

/* Mobile: Hide items after 8th */
@media (max-width: 767px) {
    .inventory-grid:not(.inventory-grid--expanded) .inventory-card:nth-child(n+9) {
        display: none;
    }
}

/* See More Button */
.inventory-see-more {
    display: none;
    text-align: center;
    margin-top: var(--space-8);
}

@media (max-width: 767px) {
    .inventory-see-more {
        display: block;
    }

    .inventory-see-more.is-hidden {
        display: none;
    }
}

.inventory-see-more__btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    background: var(--color-white);
    color: var(--color-black);
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid var(--color-black);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--duration-fast);
}

.inventory-see-more__btn:hover {
    background: var(--color-black);
    color: var(--color-white);
}

.inventory-see-more__btn i {
    font-size: 1.25rem;
    transition: transform var(--duration-fast);
}

.inventory-grid--expanded + .inventory-see-more .inventory-see-more__btn i {
    transform: rotate(180deg);
}

/* Inventory Card - New Design */
.inventory-card {
    background: var(--color-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Card Image Container */
.inventory-card__image {
    position: relative;
    background: #f0f0f0;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.inventory-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Availability Badge */
.inventory-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
}

.inventory-card__badge--available {
    background: #22c55e;
    color: white;
}

.inventory-card__badge--sold {
    background: #ef4444;
    color: white;
}

.inventory-card__badge--reserved {
    background: #f59e0b;
    color: white;
}

/* Photo Count */
.inventory-card__photo-count {
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 0.8125rem;
    font-weight: 500;
    z-index: 2;
}

.inventory-card__photo-count i {
    font-size: 1rem;
}

/* Card Body */
.inventory-card__body {
    padding: 20px;
}

/* Meta Row - Stock & Location */
.inventory-card__meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.inventory-card__stock {
    font-size: 0.8125rem;
    color: #6b7280;
    font-weight: 500;
}

.inventory-card__location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8125rem;
    color: #6b7280;
}

.inventory-card__location i {
    color: #ef4444;
    font-size: 1rem;
}

/* Title */
.inventory-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
    line-height: 1.3;
}

/* Price Row */
.inventory-card__price-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
    row-gap: 8px;
}

/* Price */
.inventory-card__price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
}

.inventory-card__currency {
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
}

/* Financing Badge */
.inventory-card__financing {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    color: #22c55e;
    font-weight: 600;
    background: #f0fdf4;
    padding: 6px 12px;
    border-radius: 6px;
}

.inventory-card__financing i {
    font-size: 1rem;
}

/* Specs Grid */
.inventory-card__specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 16px 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 16px;
}

.inventory-card__spec {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #374151;
}

.inventory-card__spec i {
    font-size: 1.125rem;
    color: #6b7280;
    flex-shrink: 0;
}

/* Action Buttons */
.inventory-card__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.inventory-card__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.15s ease;
}

.inventory-card__btn--primary {
    background: #2d2d2d;
    color: white;
    border: none;
}

.inventory-card__btn--primary:hover {
    background: #000000;
}

.inventory-card__btn--secondary {
    background: transparent;
    color: #000000;
    border: 1px solid #b3b3b3;
}

.inventory-card__btn--secondary:hover {
    border-color: #000000;
}

/* ============================================
   INVENTORY DETAIL MODAL
   ============================================ */
.inventory-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.inventory-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.inventory-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
}

.inventory-modal__content {
    position: relative;
    background: white;
    width: 100%;
    max-width: 1100px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    border-radius: 16px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.inventory-modal__content::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.inventory-modal.is-open .inventory-modal__content {
    transform: translateY(0);
}

.inventory-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: rgba(75, 85, 99, 0.9);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.2s ease;
}

.inventory-modal__close:hover {
    background: rgba(55, 65, 81, 1);
}

/* Gallery */
.inventory-modal__gallery {
    position: relative;
    background: white;
}

.inventory-modal__main-image {
    width: 100%;
    aspect-ratio: 16 / 7;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.inventory-modal__main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.inventory-modal__thumbnails {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    max-width: calc(100% - 32px);
    padding: 8px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.inventory-modal__thumbnail {
    width: 60px;
    height: 45px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.inventory-modal__thumbnail:hover {
    border-color: #9ca3af;
}

.inventory-modal__thumbnail.active {
    border-color: #FFAC02;
}

.inventory-modal__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Modal Body */
.inventory-modal__body {
    padding: 32px 40px 40px;
}

@media (max-width: 640px) {
    .inventory-modal__body {
        padding: 24px 20px 32px;
    }
}

.inventory-modal__back {
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #6b7280;
    text-decoration: none;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    transition: color 0.2s ease;
}

.inventory-modal__back:hover {
    color: #FFAC02;
}

.inventory-modal__badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    background: #22c55e;
    color: white;
    margin-top: 8px;
    margin-bottom: 16px;
}

.inventory-modal__badge--sold {
    background: #ef4444;
}

.inventory-modal__title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
    line-height: 1.2;
}

@media (max-width: 640px) {
    .inventory-modal__title {
        font-size: 1.75rem;
    }
}

.inventory-modal__stock {
    font-size: 0.9375rem;
    color: #9ca3af;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.inventory-modal__price-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    row-gap: 12px;
}

.inventory-modal__price {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
}

@media (max-width: 640px) {
    .inventory-modal__price {
        font-size: 1.75rem;
    }
}

.inventory-modal__financing {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    color: #22c55e;
    font-weight: 600;
    background: #f0fdf4;
    padding: 8px 14px;
    border-radius: 8px;
}

.inventory-modal__financing i {
    font-size: 1.25rem;
}

.inventory-modal__location {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: #374151;
    padding: 16px 0 28px;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 28px;
}

.inventory-modal__location i {
    color: #FFAC02;
    font-size: 1.25rem;
}

/* Sections */
.inventory-modal__section {
    margin-bottom: 32px;
}

.inventory-modal__section-title {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #6b7280;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Specs Grid */
.inventory-modal__specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

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

.inventory-modal__spec-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px 0;
    border-bottom: 1px solid #e5e7eb;
}

.inventory-modal__spec-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.inventory-modal__spec-value {
    font-size: 1.0625rem;
    font-weight: 600;
    color: #111827;
}

/* Description */
.inventory-modal__description {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.7;
}

/* Features */
.inventory-modal__features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.inventory-modal__feature {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #eff6ff;
    border: 1px solid #dbeafe;
    border-radius: 10px;
    font-size: 0.9375rem;
    color: #000000;
    font-weight: 500;
}

.inventory-modal__feature i {
    color: #FFAC02;
    font-size: 1.125rem;
}

/* Action Buttons */
.inventory-modal__actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid #e5e7eb;
}

@media (max-width: 640px) {
    .inventory-modal__actions {
        flex-direction: column;
    }
}

.inventory-modal__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 9999px;
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.015em;
    transition: all 0.15s ease;
    flex: 1;
}

.inventory-modal__btn i {
    font-size: 1.125rem;
}

.inventory-modal__btn--primary {
    background: #2d2d2d;
    color: white;
    border: none;
}

.inventory-modal__btn--primary:hover {
    background: #000000;
}

.inventory-modal__btn--secondary {
    background: white;
    color: #000000;
    border: 1px solid #b3b3b3;
}

.inventory-modal__btn--secondary:hover {
    border-color: #000000;
}

/* Facebook-style Image Grid */
.inventory-card__image-grid {
    display: grid;
    gap: 2px;
    margin: 0 calc(var(--space-6) * -1);
    background: #e5e5e5;
    overflow: hidden;
}

@media (min-width: 768px) {
    .inventory-card__image-grid {
        margin: 0 calc(var(--space-8) * -1);
    }
}

.inventory-card__image-grid--2 {
    grid-template-columns: 1fr 1fr;
    aspect-ratio: 16 / 8;
}

.inventory-card__image-grid--3 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    aspect-ratio: 16 / 10;
}

.inventory-card__image-grid--3 .inventory-card__image-item--main {
    grid-row: span 2;
}

.inventory-card__image-grid--4 {
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    aspect-ratio: 16 / 10;
}

.inventory-card__image-grid--4 .inventory-card__image-item--main {
    grid-row: span 3;
}

.inventory-card__image-item {
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
}

.inventory-card__image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.inventory-card__image-item:hover img {
    transform: scale(1.03);
}

.inventory-card__image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

/* Single Image */
.inventory-card__image--single {
    position: relative;
    margin: 0 calc(var(--space-6) * -1);
    background: #f5f5f5;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

@media (min-width: 768px) {
    .inventory-card__image--single {
        margin: 0 calc(var(--space-8) * -1);
    }
}

.inventory-card__image--single img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.inventory-card__image--single:hover img {
    transform: scale(1.02);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
}

.lightbox__content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox__image {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
}

.lightbox__close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: transparent;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.lightbox__close:hover {
    opacity: 0.7;
}

.lightbox__nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: transparent;
    border: none;
    color: white;
    font-size: 36px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.lightbox__nav:hover {
    opacity: 0.7;
}

.lightbox__nav--prev {
    left: 20px;
}

.lightbox__nav--next {
    right: 20px;
}

.lightbox__counter {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 14px;
    font-weight: 500;
}

/* Compare Checkbox */
.inventory-card__compare {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-top: var(--space-6);
    padding-top: var(--space-5);
    border-top: 1px solid #e5e5e5;
    cursor: pointer;
}

.inventory-card__checkbox {
    width: 18px;
    height: 18px;
    border: 1.5px solid #ccc;
    border-radius: 2px;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: all var(--duration-fast);
    position: relative;
}

.inventory-card__checkbox:checked {
    background: var(--color-black);
    border-color: var(--color-black);
}

.inventory-card__checkbox:checked::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.inventory-card__checkbox:hover {
    border-color: #999;
}

.inventory-card__compare-text {
    font-size: 0.9375rem;
    color: var(--color-black);
    font-weight: 400;
}

/* ============================================
   FINANCING SECTION
   ============================================ */
.financing-grid {
    display: grid;
    gap: var(--space-12);
}

@media (min-width: 1024px) {
    .financing-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-16);
    }
}

.financing-column {
    padding-bottom: var(--space-8);
    border-bottom: 1px solid var(--color-border);
}

@media (min-width: 1024px) {
    .financing-column {
        padding-bottom: 0;
        border-bottom: none;
    }

    .financing-column:first-child {
        padding-right: var(--space-12);
        border-right: 1px solid var(--color-border);
    }
}

.financing-column__title {
    font-size: var(--text-xl);
    font-weight: var(--font-medium);
    letter-spacing: var(--tracking-tight);
    margin-bottom: var(--space-8);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--color-border);
}

.financing-card {
    padding: var(--space-6) 0;
    border-bottom: 1px solid var(--color-border);
}

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

.financing-card__title {
    font-size: var(--text-base);
    font-weight: var(--font-medium);
    letter-spacing: var(--tracking-tight);
    margin-bottom: var(--space-4);
}

.financing-card__list {
    padding-left: 0;
}

.financing-card__list li {
    position: relative;
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    padding: var(--space-2) 0 var(--space-2) var(--space-5);
    line-height: var(--leading-relaxed);
}

.financing-card__list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--color-text-tertiary);
}

.financing-card--highlight {
    background: var(--color-black);
    color: var(--color-white);
    padding: var(--space-8);
    margin-top: var(--space-6);
}

.financing-card--highlight .financing-card__title {
    color: var(--color-white);
}

.financing-card__role {
    font-size: var(--text-sm);
    color: var(--color-gray-400);
    margin-bottom: var(--space-2);
}

.financing-card__text {
    font-size: var(--text-sm);
    color: var(--color-gray-300);
}

.financing-card__phone {
    display: inline-block;
    margin-top: var(--space-4);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--color-white);
}

/* ============================================
   TIMELINE SECTION
   ============================================ */
.section-timeline {
    background: var(--color-black);
    padding: var(--space-20) 0;
    overflow: hidden;
}

@media (min-width: 768px) {
    .section-timeline {
        padding: var(--space-24) 0;
    }
}

@media (min-width: 1024px) {
    .section-timeline {
        padding: var(--space-32) 0;
    }
}

/* Header */
.timeline__header {
    text-align: center;
    margin-bottom: var(--space-16);
}

@media (min-width: 768px) {
    .timeline__header {
        margin-bottom: var(--space-20);
    }
}

.timeline__label {
    display: block;
    font-size: var(--text-xs);
    font-weight: var(--font-medium);
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
    color: var(--color-gray-500);
    margin-bottom: var(--space-4);
}

.timeline__title {
    font-size: 2.25rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: var(--space-4);
}

@media (min-width: 768px) {
    .timeline__title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .timeline__title {
        font-size: 3.5rem;
    }
}

.timeline__subtitle {
    font-size: 1.125rem;
    font-weight: 300;
    color: var(--color-gray-400);
    max-width: 500px;
    margin: 0 auto;
}

/* Timeline Container */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto var(--space-16);
    padding-left: var(--space-8);
}

@media (min-width: 768px) {
    .timeline {
        padding-left: 0;
    }
}

/* Vertical Line */
.timeline__line {
    position: absolute;
    left: 35px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        #FFAC02 10%,
        #FFAC02 90%,
        transparent 100%
    );
}

@media (min-width: 768px) {
    .timeline__line {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Timeline Item */
.timeline__item {
    position: relative;
    padding-bottom: var(--space-12);
    padding-left: var(--space-24);
    padding-top: var(--space-10);
}

@media (min-width: 768px) {
    .timeline__item {
        width: 50%;
        padding-left: 0;
        padding-right: var(--space-16);
        padding-top: var(--space-12);
    }

    .timeline__item:nth-child(odd) {
        margin-left: 0;
        text-align: right;
    }

    .timeline__item:nth-child(even) {
        margin-left: 50%;
        padding-right: 0;
        padding-left: var(--space-16);
        text-align: left;
    }
}

.timeline__item:last-child {
    padding-bottom: 0;
}

/* Timeline Marker */
.timeline__marker {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

@media (min-width: 768px) {
    .timeline__item:nth-child(odd) .timeline__marker {
        left: auto;
        right: 0;
        flex-direction: row-reverse;
    }

    .timeline__item:nth-child(even) .timeline__marker {
        left: 0;
    }
}

.timeline__year {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    padding: var(--space-2) var(--space-4);
    background: #FFAC02;
    color: var(--color-black);
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: var(--radius-full);
}

.timeline__item--current .timeline__year {
    background: #FFAC02;
    color: var(--color-black);
    box-shadow: 0 0 0 4px rgba(255, 172, 2, 0.3);
}

/* Timeline Content */
.timeline__content {
    padding-top: 0;
}

.timeline__content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: var(--space-2);
}

@media (min-width: 768px) {
    .timeline__content h4 {
        font-size: 1.25rem;
    }
}

.timeline__content p {
    font-size: 0.9375rem;
    color: var(--color-gray-400);
    line-height: 1.6;
}

/* Bottom Stats */
.timeline__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--color-gray-800);
    border: 1px solid var(--color-gray-800);
    max-width: 600px;
    margin: 0 auto;
}

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

.timeline__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-8) var(--space-4);
    background: var(--color-black);
    text-align: center;
}

.timeline__stat-number {
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-white);
    line-height: 1;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .timeline__stat-number {
        font-size: 2.5rem;
    }
}

.timeline__stat-label {
    font-size: 0.8125rem;
    color: var(--color-gray-500);
    margin-top: var(--space-2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   SOCIAL PROOF SECTION
   ============================================ */
.section-proof {
    padding: var(--space-20) 0;
    background: var(--color-white);
    color: var(--color-black);
}

.proof__header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.proof__label {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    color: var(--color-black);
    text-transform: uppercase;
    letter-spacing: var(--tracking-widest);
    margin-bottom: var(--space-3);
}

.proof__title {
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    color: var(--color-black);
    letter-spacing: var(--tracking-tight);
}

@media (min-width: 768px) {
    .proof__title {
        font-size: var(--text-4xl);
    }
}

/* Stats */
.proof__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
    margin-bottom: var(--space-16);
}

@media (min-width: 1201px) {
    .proof__stats {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--space-8);
    }
}

.proof__stat {
    text-align: center;
    padding: var(--space-8);
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-lg);
}

.proof__stat-number {
    display: block;
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    color: var(--color-black);
    letter-spacing: var(--tracking-tight);
    line-height: 1;
}

@media (min-width: 768px) {
    .proof__stat-number {
        font-size: var(--text-5xl);
    }
}

.proof__stat-label {
    display: block;
    font-size: var(--text-sm);
    color: rgba(0, 0, 0, 0.6);
    margin-top: var(--space-3);
}

/* Testimonials Carousel */
.proof__testimonials-carousel {
    margin-bottom: var(--space-16);
    position: relative;
}

.proof__testimonials {
    display: flex;
    gap: var(--space-6);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: var(--space-4);
}

.proof__testimonials::-webkit-scrollbar {
    display: none;
}

.proof__testimonials .proof__testimonial {
    flex: 0 0 100%;
    scroll-snap-align: start;
}

/* 2 visible at a time */
@media (min-width: 640px) and (max-width: 1024px) {
    .proof__testimonials .proof__testimonial {
        flex: 0 0 calc(50% - var(--space-3));
    }
}

/* 3 visible - no carousel on large screens */
@media (min-width: 1025px) {
    .proof__testimonials-carousel {
        overflow: visible;
    }

    .proof__testimonials {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-8);
        overflow: visible;
    }

    .proof__testimonials .proof__testimonial {
        flex: none;
    }

    .proof__carousel-nav {
        display: none;
    }
}

/* Carousel Navigation */
.proof__carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    margin-top: var(--space-6);
}

.proof__carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background: var(--color-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--duration-fast);
}

.proof__carousel-btn:hover {
    background: var(--color-black);
    color: var(--color-white);
    border-color: var(--color-black);
}

.proof__carousel-btn i {
    font-size: 1.25rem;
}

.proof__carousel-dots {
    display: flex;
    gap: var(--space-2);
}

.proof__carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    transition: all var(--duration-fast);
}

.proof__carousel-dot.active {
    background: var(--color-black);
    width: 24px;
    border-radius: 4px;
}

.proof__testimonial {
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    display: flex;
    flex-direction: column;
}

.proof__stars {
    display: flex;
    gap: 2px;
    margin-bottom: var(--space-4);
    color: #FFAC02;
    font-size: var(--text-lg);
}

.proof__testimonial-text {
    flex: 1;
    font-size: var(--text-base);
    color: rgba(0, 0, 0, 0.8);
    line-height: var(--leading-relaxed);
    font-style: italic;
    margin-bottom: var(--space-6);
}

.proof__testimonial-author {
    padding-top: var(--space-4);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.proof__testimonial-author strong {
    display: block;
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: var(--color-black);
}

.proof__testimonial-author span {
    font-size: var(--text-xs);
    color: rgba(0, 0, 0, 0.5);
}

/* Partner Logos */
.proof__partners {
    text-align: center;
    padding-top: var(--space-8);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.proof__partners-label {
    font-size: var(--text-sm);
    color: rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
    margin-bottom: var(--space-8);
}

.proof__partners-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--space-4);
}

@media (min-width: 768px) {
    .proof__partners-logos {
        gap: var(--space-6);
    }
}

.proof__partner-badge {
    padding: var(--space-3) var(--space-5);
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    font-weight: var(--font-bold);
    color: rgba(0, 0, 0, 0.7);
    letter-spacing: var(--tracking-wide);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-grid {
    display: grid;
    gap: var(--space-12);
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 350px 1fr;
        gap: var(--space-16);
        align-items: start;
    }
}

/* Contact Info */
.contact-info {
    order: 2;
}

@media (min-width: 1024px) {
    .contact-info {
        order: 1;
        position: sticky;
        top: 100px;
        padding-right: var(--space-10);
        border-right: 1px solid var(--color-border);
    }
}

.contact-info__header {
    margin-bottom: var(--space-8);
}

.contact-info__title-main {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-black);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: var(--space-3);
}

@media (min-width: 768px) {
    .contact-info__title-main {
        font-size: 2.5rem;
    }
}

.contact-info__header .section__subtitle {
    text-align: left;
}

.contact-info__item {
    display: flex;
    gap: var(--space-4);
    padding: var(--space-5) 0;
    border-bottom: 1px solid var(--color-border);
}

.contact-info__item:first-of-type {
    padding-top: 0;
}

.contact-info__item:last-of-type {
    border-bottom: none;
}

.contact-info__icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    font-size: 20px;
    color: var(--color-black);
    margin-top: 2px;
}

.contact-info__title {
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    letter-spacing: var(--tracking-wide);
    margin-bottom: var(--space-1);
}

.contact-info__item p {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: var(--leading-relaxed);
}

.contact-info__item a {
    color: var(--color-text-secondary);
    transition: color var(--duration-fast);
}

.contact-info__item a:hover {
    color: var(--color-black);
}

/* Social Links */
.social-links {
    display: flex;
    gap: var(--space-3);
    margin-top: var(--space-6);
    padding-top: var(--space-6);
    border-top: 1px solid var(--color-border);
}

.social-link {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-black);
    transition: all var(--duration-fast);
    font-size: 26px;
}

.social-link:hover {
    background: var(--color-black);
    border-color: var(--color-black);
    color: var(--color-white);
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    order: 1;
    position: relative;
    background: var(--color-white);
    border-radius: 32px;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .contact-form-wrapper {
        order: 2;
    }
}

/* Contact Form */
.contact-form {
    padding: var(--space-8);
}

@media (min-width: 768px) {
    .contact-form {
        padding: var(--space-10);
    }
}

.form-row {
    margin-bottom: var(--space-5);
}

.form-row:last-of-type {
    margin-bottom: var(--space-8);
}

.form-row--2col {
    display: grid;
    gap: var(--space-5);
}

@media (min-width: 768px) {
    .form-row--2col {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: var(--space-2);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--space-4) var(--space-6);
    font-size: 0.9375rem;
    font-family: inherit;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-full);
    background: rgba(0, 0, 0, 0.05);
    color: var(--color-black);
    transition: all var(--duration-fast);
    -webkit-appearance: none;
    appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--space-4) center;
    padding-right: var(--space-12);
    color: rgba(0, 0, 0, 0.6);
}

.form-group select.has-value {
    color: var(--color-black);
}

.form-group select option {
    background: var(--color-white);
    color: var(--color-black);
}

.form-group select option[value=""] {
    color: rgba(0, 0, 0, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 172, 2, 0.05);
    border-color: #FFAC02;
    box-shadow: 0 0 0 3px rgba(255, 172, 2, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    border-radius: var(--radius-lg);
}

/* Contact Form Submit Button - Gold Style */
.contact-form .btn--primary {
    background: #FFAC02;
    color: var(--color-black);
    font-size: 0.9375rem;
    font-weight: 600;
}

.contact-form .btn--primary:hover {
    background: #e69b00;
}

.contact-form .btn--primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Form Message Styles */
.form-message {
    padding: 0;
    margin-bottom: var(--space-4);
    border-radius: var(--radius-lg);
    font-size: 0.9375rem;
    text-align: center;
    transition: all 0.3s ease;
}

.form-message:empty {
    display: none;
}

.form-message--success {
    padding: var(--space-4);
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.form-message--error {
    padding: var(--space-4);
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Form Success State */
.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-16) var(--space-8);
    min-height: 400px;
    animation: fadeIn 0.4s ease;
}

.form-success.is-visible {
    display: flex;
}

.contact-form.is-hidden {
    display: none;
}

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

.form-success__icon {
    width: 200px;
    height: 200px;
    margin-bottom: var(--space-8);
}

.form-success__checkmark {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #22c55e;
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px #22c55e;
    animation: fill 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
}

.form-success__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #22c55e;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.form-success__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke-width: 3;
    stroke-linecap: round;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% { stroke-dashoffset: 0; }
}

@keyframes scale {
    0%, 100% { transform: none; }
    50% { transform: scale3d(1.1, 1.1, 1); }
}

@keyframes fill {
    100% { box-shadow: inset 0px 0px 0px 40px rgba(34, 197, 94, 0.1); }
}

.form-success__title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: var(--space-3);
}

.form-success__text {
    font-size: 1rem;
    color: var(--color-gray-600);
    line-height: 1.6;
    margin-bottom: var(--space-8);
}

.form-success__reset {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-4);
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-lg);
    color: var(--color-gray-600);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.form-success__reset:hover {
    background: rgba(0, 0, 0, 0.1);
    color: var(--color-black);
    border-color: rgba(0, 0, 0, 0.2);
}

.form-success__reset i {
    font-size: 1rem;
}

/* Contact Section - Remove bottom padding for map flush with footer */
#contact.section {
    padding-bottom: 0;
}

/* Contact Map - Styled Dark/Grayscale */
.contact-map {
    margin-top: var(--space-20);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
}

@media (min-width: 768px) {
    .contact-map {
        margin-top: var(--space-24);
    }
}

@media (min-width: 1024px) {
    .contact-map {
        margin-top: var(--space-32);
    }
}

.contact-map__wrapper {
    width: 100%;
    height: 400px;
    background: var(--color-black);
}

@media (min-width: 768px) {
    .contact-map__wrapper {
        height: 450px;
    }
}

@media (min-width: 1024px) {
    .contact-map__wrapper {
        height: 500px;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: var(--space-16) 0 var(--space-8);
    background: var(--color-black);
    color: var(--color-white);
}

.footer__grid {
    display: grid;
    gap: var(--space-10);
    padding-bottom: var(--space-12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .footer__grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: var(--space-12);
    }
}

.footer__logo {
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    letter-spacing: var(--tracking-wider);
}

.footer__tagline {
    font-size: var(--text-sm);
    color: var(--color-gray-400);
    margin: var(--space-4) 0;
}

.footer__address {
    font-size: var(--text-sm);
    color: var(--color-gray-500);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-3);
}

.footer__phone {
    font-size: var(--text-sm);
}

.footer__phone a {
    color: var(--color-gray-400);
    transition: color var(--duration-fast);
}

.footer__phone a:hover {
    color: var(--color-white);
}

.footer__title {
    font-size: var(--text-xs);
    font-weight: var(--font-medium);
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
    color: var(--color-gray-500);
    margin-bottom: var(--space-6);
}

.footer__links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer__links a {
    font-size: var(--text-sm);
    color: var(--color-gray-400);
    transition: color var(--duration-fast);
}

.footer__links a:hover {
    color: var(--color-white);
}

/* Footer Social Links */
.footer__social {
    display: flex;
    gap: var(--space-3);
    margin-top: var(--space-6);
}

.footer__social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-gray-700);
    border-radius: 50%;
    color: var(--color-gray-400);
    font-size: 18px;
    transition: all var(--duration-fast);
}

.footer__social a:hover {
    background: var(--color-white);
    border-color: var(--color-white);
    color: var(--color-black);
}

.footer__bottom {
    padding-top: var(--space-8);
    font-size: var(--text-xs);
    color: var(--color-gray-600);
    letter-spacing: var(--tracking-wide);
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    border-top: 1px solid var(--color-border);
    padding: var(--space-6) var(--container-padding);
    z-index: var(--z-modal);
    transform: translateY(100%);
    transition: transform var(--duration-slow) var(--ease-out);
}

.cookie-banner.is-visible {
    transform: translateY(0);
}

.cookie-banner__content {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

@media (min-width: 768px) {
    .cookie-banner__content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.cookie-banner__title {
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    margin-bottom: var(--space-2);
}

.cookie-banner__text p {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

.cookie-banner__actions {
    display: flex;
    gap: var(--space-3);
    flex-shrink: 0;
}

/* ============================================
   MODAL
   ============================================ */
.modal {
    position: fixed;
    inset: 0;
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-6);
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-base);
}

.modal.is-open {
    opacity: 1;
    visibility: visible;
}

.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.modal__content {
    position: relative;
    background: var(--color-white);
    padding: var(--space-10);
    max-width: 440px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(20px);
    transition: transform var(--duration-base);
}

.modal.is-open .modal__content {
    transform: translateY(0);
}

.modal__close {
    position: absolute;
    top: var(--space-6);
    right: var(--space-6);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-tertiary);
    transition: color var(--duration-fast);
}

.modal__close:hover {
    color: var(--color-black);
}

.modal__title {
    font-size: var(--text-xl);
    font-weight: var(--font-medium);
    letter-spacing: var(--tracking-tight);
    margin-bottom: var(--space-8);
    padding-right: var(--space-10);
}

/* Cookie Options */
.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--space-6);
    padding: var(--space-6) 0;
    border-bottom: 1px solid var(--color-border);
}

.cookie-option:last-of-type {
    margin-bottom: var(--space-8);
}

.cookie-option h4 {
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    margin-bottom: var(--space-1);
}

.cookie-option p {
    font-size: var(--text-xs);
    color: var(--color-text-secondary);
}

/* Toggle Switch */
.cookie-option__toggle {
    flex-shrink: 0;
}

.cookie-option__toggle input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle {
    display: block;
    width: 44px;
    height: 24px;
    background: var(--color-gray-200);
    border-radius: 24px;
    position: relative;
    cursor: pointer;
    transition: background var(--duration-fast);
}

.toggle::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: var(--color-white);
    border-radius: 50%;
    transition: transform var(--duration-fast);
}

input:checked + .toggle {
    background: var(--color-black);
}

input:checked + .toggle::after {
    transform: translateX(20px);
}

.toggle--locked {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ============================================
   SKY GRADIENT WRAPPER - Transport Company Feel
   ============================================ */
.sky-gradient-wrapper {
    position: relative;
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #fcfcfd 15%,
        #f9fafb 40%,
        #f5f7fa 70%,
        #f2f5f8 100%
    );
    overflow: hidden;
}

.sky-gradient-wrapper__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Subtle gradient orbs for depth */
.sky-gradient-wrapper__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
}

.sky-gradient-wrapper__orb--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 172, 2, 0.25) 0%, transparent 70%);
    top: 20%;
    right: -10%;
    animation: float-orb-1 20s ease-in-out infinite;
}

.sky-gradient-wrapper__orb--2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, transparent 70%);
    top: 40%;
    left: -5%;
    animation: float-orb-2 25s ease-in-out infinite;
}

.sky-gradient-wrapper__orb--3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(168, 212, 255, 0.4) 0%, transparent 70%);
    bottom: 10%;
    right: 20%;
    animation: float-orb-3 18s ease-in-out infinite;
}

@keyframes float-orb-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 20px) scale(1.05); }
}

@keyframes float-orb-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -30px) scale(1.08); }
}

@keyframes float-orb-3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, -20px) scale(1.03); }
}

/* Horizon line - subtle transport feel */
.sky-gradient-wrapper__horizon {
    position: absolute;
    bottom: 30%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.4) 20%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0.4) 80%,
        transparent 100%
    );
}

/* Road perspective SVG */
.sky-gradient-wrapper__road {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    opacity: 0.5;
}

/* Sections inside wrapper need transparent backgrounds */
.sky-gradient-wrapper .section-role-showcase {
    background: transparent;
}

.sky-gradient-wrapper .section--process {
    background: transparent;
}

/* Enhanced text visibility on gradient */
.sky-gradient-wrapper .role-showcase__headline,
.sky-gradient-wrapper .role-showcase__name,
.sky-gradient-wrapper .process-left .section__title {
    text-shadow: 0 2px 20px rgba(255, 255, 255, 0.5);
}

.sky-gradient-wrapper .role-showcase__label,
.sky-gradient-wrapper .role-showcase__tagline,
.sky-gradient-wrapper .role-ecosystem__text,
.sky-gradient-wrapper .process-left .section__subtitle {
    text-shadow: 0 1px 10px rgba(255, 255, 255, 0.3);
}

/* ============================================
   NOTRE RÔLE SECTION - Kia Showcase Style
   ============================================ */
.section-role-showcase {
    background: var(--color-white);
    padding: var(--space-12) 0 var(--space-8);
    overflow: hidden;
    box-shadow: inset 0 25px 40px -15px rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
    .section-role-showcase {
        padding: var(--space-16) 0 var(--space-10);
    }
}

@media (min-width: 1024px) {
    .section-role-showcase {
        padding: var(--space-20) 0 var(--space-12);
    }
}

/* Top Label */
.role-showcase__label {
    font-size: 0.875rem;
    font-weight: var(--font-medium);
    color: var(--color-text-secondary);
    text-align: center;
    margin-bottom: var(--space-2);
    letter-spacing: 0.01em;
}

@media (min-width: 768px) {
    .role-showcase__label {
        font-size: 1rem;
    }
}

/* Main Headline */
.role-showcase__headline {
    font-size: 2.25rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--color-black);
    text-align: center;
    margin-bottom: var(--space-6);
}

@media (min-width: 768px) {
    .role-showcase__headline {
        font-size: 3rem;
        margin-bottom: var(--space-8);
    }
}

@media (min-width: 1024px) {
    .role-showcase__headline {
        font-size: 3.5rem;
    }
}

@media (min-width: 1280px) {
    .role-showcase__headline {
        font-size: 4rem;
    }
}

/* Trucks Animation */
.role-showcase__trucks {
    position: relative;
    width: 100%;
    height: 200px;
    margin-bottom: var(--space-2);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .role-showcase__trucks {
        height: 280px;
        margin-bottom: var(--space-3);
    }
}

@media (min-width: 1024px) {
    .role-showcase__trucks {
        height: 350px;
    }
}

.role-showcase__truck {
    position: absolute;
    height: 100%;
    width: auto;
    object-fit: contain;
    will-change: transform;
    transition: none;
}

.role-showcase__truck--left {
    left: 0;
    transform: translateX(-100%) scaleX(-1);
}

.role-showcase__truck--right {
    right: 0;
    transform: translateX(100%);
}

/* Info Bar */
.role-showcase__info {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
    padding-bottom: var(--space-5);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .role-showcase__info {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        gap: var(--space-6);
    }
}

@media (min-width: 1024px) {
    .role-showcase__info {
        align-items: center;
        padding-left: var(--space-8);
        padding-right: var(--space-8);
    }
}

/* Title Group */
.role-showcase__title-group {
    flex: 1;
    max-width: 450px;
}

.role-showcase__name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: var(--space-2);
    letter-spacing: -0.01em;
}

@media (min-width: 768px) {
    .role-showcase__name {
        font-size: 1.375rem;
    }
}

.role-showcase__tagline {
    font-size: 1rem;
    font-weight: 300;
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin-bottom: var(--space-4);
}

@media (min-width: 768px) {
    .role-showcase__tagline {
        font-size: 1.125rem;
    }
}

/* CTA Button */
.role-showcase__cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-black);
    background: var(--color-black);
    color: var(--color-white);
    padding: var(--space-3) var(--space-5);
    border-radius: var(--radius-full);
    transition: all var(--duration-fast);
}

.role-showcase__cta:hover {
    background: var(--color-gray-800);
}

.role-showcase__cta i {
    font-size: 0.75rem;
    transition: transform var(--duration-fast);
}

.role-showcase__cta:hover i {
    transform: translateX(3px);
}

/* Specs */
.role-showcase__specs {
    display: flex;
    gap: 0;
}

@media (min-width: 768px) {
    .role-showcase__specs {
        flex-shrink: 0;
    }
}

.role-showcase__spec {
    display: flex;
    flex-direction: column;
    padding: 0 var(--space-5);
    border-left: 1px solid var(--color-gray-200);
    min-width: 100px;
}

.role-showcase__spec:first-child {
    padding-left: 0;
    border-left: none;
}

@media (min-width: 768px) {
    .role-showcase__spec {
        padding: 0 var(--space-6);
        min-width: 110px;
    }
}

@media (min-width: 1024px) {
    .role-showcase__spec {
        padding: 0 var(--space-8);
        min-width: 120px;
    }
}

.role-showcase__spec-label {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--color-text-tertiary);
    margin-bottom: var(--space-1);
    text-transform: capitalize;
}

@media (min-width: 768px) {
    .role-showcase__spec-label {
        font-size: 0.8125rem;
    }
}

.role-showcase__spec-value {
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--color-black);
    line-height: 1;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .role-showcase__spec-value {
        font-size: 2rem;
    }
}

@media (min-width: 1024px) {
    .role-showcase__spec-value {
        font-size: 2.25rem;
    }
}

.role-showcase__spec-unit {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--color-text-tertiary);
    margin-top: var(--space-1);
}

/* Navigation Arrow */
.role-showcase__nav {
    display: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-gray-100);
    color: var(--color-black);
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--duration-fast);
    cursor: pointer;
}

@media (min-width: 768px) {
    .role-showcase__nav {
        display: flex;
    }
}

.role-showcase__nav:hover {
    background: var(--color-gray-200);
}

.role-showcase__nav i {
    font-size: 1rem;
}

/* Carousel Indicators */
.role-showcase__indicators {
    display: flex;
    justify-content: center;
    gap: var(--space-2);
    padding-top: var(--space-6);
}

.role-showcase__indicator {
    width: 40px;
    height: 3px;
    background: var(--color-gray-200);
    border-radius: 2px;
    cursor: pointer;
    transition: background var(--duration-fast);
}

@media (min-width: 768px) {
    .role-showcase__indicator {
        width: 50px;
    }
}

.role-showcase__indicator.active,
.role-showcase__indicator:hover {
    background: var(--color-black);
}

/* Ecosystem Content Section */
.role-ecosystem {
    display: grid;
    gap: var(--space-5);
    padding-top: var(--space-3);
    margin-top: var(--space-3);
    border-top: none;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .role-ecosystem {
        border-top: 1px solid var(--color-border);
        padding-top: var(--space-6);
        margin-top: var(--space-5);
    }
}

@media (min-width: 1024px) {
    .role-ecosystem {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-10);
        align-items: start;
        padding-left: var(--space-8);
        padding-right: var(--space-8);
    }
}

.role-ecosystem__main {
    max-width: 600px;
}

.role-ecosystem__text {
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-2);
}

@media (min-width: 768px) {
    .role-ecosystem__text {
        font-size: 1rem;
    }
}

.role-ecosystem__text:last-child {
    margin-bottom: 0;
}

.role-ecosystem__text strong {
    font-weight: 600;
    color: var(--color-black);
}

/* Feature List */
.role-ecosystem__features {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.role-feature {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-1) 0;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-black);
}

@media (min-width: 768px) {
    .role-feature {
        font-size: 1rem;
    }
}

.role-feature i {
    width: 20px;
    height: 20px;
    background: var(--color-black);
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 0;
}

/* ============================================
   FINANCING SECTION - REDESIGNED
   ============================================ */

/* ============================================
   PROCESS STEPS - Clean Automotive Style
   ============================================ */
.process-steps {
    margin: var(--space-12) auto var(--space-8);
    max-width: 900px;
    padding: 0 var(--space-4);
}

.process-steps__container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

/* Individual Step */
.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: var(--space-4);
}

/* Step Number - Large elegant number */
.process-step__number {
    font-size: 2.5rem;
    font-weight: 300;
    color: #000;
    line-height: 1;
    margin-bottom: var(--space-3);
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.process-step:hover .process-step__number {
    color: #FFAC02;
}

/* Step Content */
.process-step__content {
    position: relative;
}

.process-step__title {
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    margin: 0 0 var(--space-1) 0;
    transition: color 0.3s ease;
}

.process-step:hover .process-step__title {
    color: #FFAC02;
}

.process-step__desc {
    font-size: 0.8125rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* Connecting Line */
.process-step__line {
    position: absolute;
    top: 2rem;
    right: 0;
    width: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #ddd 50%, #ddd 100%);
}

.process-step__line::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -4px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-right: 1px solid #ccc;
    border-top: 1px solid #ccc;
    transform: translateY(-50%) rotate(45deg);
}

.process-step:last-child .process-step__line {
    display: none;
}

/* Also add line from left side */
.process-step:not(:first-child)::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: 0;
    width: 50%;
    height: 1px;
    background: linear-gradient(90deg, #ddd 0%, #ddd 50%, transparent 100%);
}

/* Mobile: 2x2 Grid */
@media (max-width: 600px) {
    .process-steps__container {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6) 0;
    }

    .process-step__number {
        font-size: 2rem;
    }

    .process-step__title {
        font-size: 0.9375rem;
    }

    .process-step__desc {
        font-size: 0.75rem;
    }

    /* Hide horizontal lines on mobile grid */
    .process-step__line,
    .process-step::before {
        display: none;
    }

    /* Add vertical connector between rows */
    .process-step:nth-child(1)::after,
    .process-step:nth-child(2)::after {
        content: '';
        position: absolute;
        bottom: -var(--space-3);
        left: 50%;
        transform: translateX(-50%);
        width: 1px;
        height: var(--space-6);
        background: #ddd;
    }
}

/* Tablet adjustments */
@media (min-width: 601px) and (max-width: 900px) {
    .process-step__number {
        font-size: 2rem;
    }

    .process-step {
        padding: var(--space-3);
    }

    .process-step__title {
        font-size: 0.9375rem;
    }
}

/* Large screens */
@media (min-width: 901px) {
    .process-steps {
        margin: var(--space-16) auto var(--space-10);
    }

    .process-step__number {
        font-size: 3rem;
        margin-bottom: var(--space-4);
    }

    .process-step__title {
        font-size: 1.125rem;
    }

    .process-step__desc {
        font-size: 0.875rem;
    }

    .process-step__line {
        top: 2.5rem;
    }

    .process-step:not(:first-child)::before {
        top: 2.5rem;
    }
}

/* ============================================
   FINANCING SECTION - Rivian Style
   ============================================ */
.section-financing {
    padding: var(--space-8) var(--container-padding);
    padding-top: var(--space-20);
    background: var(--color-white);
}

.financing-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

@media (min-width: 768px) {
    .financing-wrapper {
        grid-template-columns: 1fr 1fr;
        justify-content: center;
    }

    .financing-card-new {
        min-width: 0;
    }
}

/* 768-1200px: Keep side-by-side but ensure equal sizing and centering */
@media (min-width: 768px) and (max-width: 1200px) {
    .financing-wrapper {
        max-width: 900px;
    }

    .financing-card-new {
        padding: var(--space-6);
    }

    .financing-card-new__header {
        gap: var(--space-3);
        margin-bottom: var(--space-4);
    }

    .financing-card-new__header i {
        font-size: clamp(1.5rem, 1rem + 2vw, 2.5rem);
    }

    .financing-card-new__list {
        margin-bottom: var(--space-6);
    }

    .financing-card-new__list li {
        font-size: 0.875rem;
        padding: var(--space-1) 0 var(--space-1) var(--space-5);
    }

    .financing-card-new__btn {
        padding: var(--space-3) var(--space-5);
        font-size: 0.875rem;
    }
}

.financing-card-new {
    background: var(--color-bg-dark);
    border-radius: 32px;
    padding: var(--space-8);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .financing-card-new {
        padding: var(--space-10);
    }
}

.financing-card-new__header {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.financing-card-new__header i {
    font-size: 2.5rem;
    color: #FFAC02;
}

.financing-card-new__title {
    /* Fluid typography: scales from 1.25rem at 320px to 3rem at 1400px */
    font-size: clamp(1.25rem, 0.5rem + 3vw, 3rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0;
    letter-spacing: -0.02em;
}

.financing-card-new__subtitle {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.financing-card-new__list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-8) 0;
    flex: 1;
}

.financing-card-new__list li {
    position: relative;
    padding: var(--space-2) 0 var(--space-2) var(--space-6);
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.financing-card-new__list li:last-child {
    border-bottom: none;
}

.financing-card-new__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

.financing-card-new__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFAC02;
    color: var(--color-black);
    border: none;
    border-radius: var(--radius-full);
    padding: var(--space-4) var(--space-6);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background var(--duration-fast);
    align-self: flex-start;
    white-space: nowrap;
}

.financing-card-new__btn:hover {
    background: #e69b00;
}

/* Old Redesigned Financing Grid - keeping for compatibility */
.financing-grid--redesign {
    gap: var(--space-4);
    align-items: stretch;
}

@media (min-width: 1024px) {
    .financing-grid--redesign {
        gap: var(--space-6);
    }
}

.financing-grid--redesign .financing-column {
    background: var(--color-black);
    padding: var(--space-5);
    border-radius: var(--radius-lg);
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
}

@media (min-width: 1024px) {
    .financing-grid--redesign .financing-column {
        padding: var(--space-5);
    }

    .financing-grid--redesign .financing-column:first-child {
        padding-right: var(--space-5);
        border-right: none;
    }
}

/* Column Header */
.financing-column__header {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
    padding-bottom: var(--space-2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.financing-column__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--color-white);
    font-size: 1.75rem;
    flex-shrink: 0;
}

.financing-column__icon--alt {
    background: transparent;
    color: var(--color-white);
}

.financing-column__header .financing-column__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.financing-column__subtitle {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Financing cards container */
.financing-column .financing-cards-wrap {
    flex: 1;
}

/* Redesigned Cards - compact inline layout */
.financing-card--redesign {
    padding: var(--space-2) 0;
    border-bottom: none;
}

.financing-card--redesign:last-of-type {
    border-bottom: none;
}

.financing-card__header {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-1);
}

.financing-card__header i {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    font-size: 1.25rem;
    color: #FFAC02;
    flex-shrink: 0;
}

.financing-card--redesign .financing-card__title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0;
}

.financing-card--redesign .financing-card__list {
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-1) var(--space-4);
}

.financing-card--redesign .financing-card__list li {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    padding: 0;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
}

.financing-card--redesign .financing-card__list li::before {
    display: none;
}

.financing-card--redesign .financing-card__list li i {
    width: 6px;
    height: 6px;
    display: block;
    font-size: 0;
    color: transparent;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0;
}

/* Expert Card */
.financing-card--expert {
    background: var(--color-black);
    color: var(--color-white);
    padding: var(--space-6);
    margin-top: var(--space-6);
    border-radius: var(--radius-lg);
    border: none;
}

.financing-card__expert-header {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

.financing-card__avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gray-700);
    border-radius: 50%;
    font-size: 1.25rem;
    color: var(--color-white);
    flex-shrink: 0;
}

.financing-card--expert .financing-card__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: var(--space-1);
}

.financing-card--expert .financing-card__role {
    font-size: 0.875rem;
    color: var(--color-gray-400);
    margin-bottom: 0;
}

.financing-card__experience {
    font-size: 0.9375rem;
    color: var(--color-gray-300);
    margin-bottom: var(--space-4);
}

.financing-card--expert .financing-card__phone {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-5);
    background: var(--color-white);
    color: var(--color-black);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--duration-fast);
    margin-top: 0;
}

.financing-card--expert .financing-card__phone:hover {
    background: var(--color-gray-100);
}

.financing-card--expert .financing-card__phone i {
    font-size: 1rem;
}

/* CTA Buttons */
.financing-cta {
    margin-top: auto;
    padding-top: var(--space-3);
    gap: var(--space-2);
    background: #FFAC02;
    color: var(--color-black);
    border: none;
    font-size: 0.875rem;
    padding: var(--space-3) var(--space-4);
}

.financing-cta:hover {
    background: #e69b00;
}

.financing-cta i {
    font-size: 0.875rem;
}

/* ============================================
   NEWSLETTER SECTION - Rivian Style
   ============================================ */
.section-newsletter {
    padding: var(--space-8);
    background: var(--color-bg-secondary);
}

.newsletter-card {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--color-black);
    border-radius: var(--radius-xl);
    padding: var(--space-12) var(--space-8);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-10);
    align-items: center;
}

@media (min-width: 1024px) {
    .newsletter-card {
        grid-template-columns: 1fr 1fr;
        padding: var(--space-16) var(--space-12);
    }
}

.newsletter-card__title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.3;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .newsletter-card__title {
        font-size: 2.25rem;
    }
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.newsletter-form__field input {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    border-radius: var(--radius-md);
    padding: var(--space-4) var(--space-5);
    font-size: 1rem;
    color: var(--color-white);
    outline: none;
    transition: background var(--duration-fast);
}

.newsletter-form__field input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form__field input:focus {
    background: rgba(255, 255, 255, 0.12);
}

.newsletter-form__btn {
    align-self: flex-start;
    background: #FFAC02;
    color: var(--color-black);
    border: none;
    border-radius: var(--radius-full);
    padding: var(--space-4) var(--space-8);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--duration-fast);
    margin-top: var(--space-2);
}

.newsletter-form__btn:hover {
    background: #e69b00;
}

.newsletter-form__disclaimer {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    margin-top: var(--space-2);
}

.newsletter-form__disclaimer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
}

.newsletter-form__disclaimer a:hover {
    color: var(--color-white);
}

/* Trust Indicators */
.financing-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-6);
    margin-top: var(--space-16);
    padding-top: var(--space-10);
    border-top: 1px solid var(--color-border);
}

@media (min-width: 768px) {
    .financing-trust {
        gap: var(--space-10);
    }
}

.financing-trust__item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
}

.financing-trust__item i {
    font-size: 1.25rem;
    color: var(--color-black);
}

/* ============================================
   PROCESS SECTION - Split Layout with Scroll Animation
   ============================================ */
.section--process {
    background: var(--color-white);
    position: relative;
    overflow: visible;
    padding: 0;
}

.section--process::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.process-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    min-height: auto;
    position: relative;
    z-index: 2;
}

@media (min-width: 1024px) {
    .process-layout {
        grid-template-columns: 420px 1fr;
        min-height: 100vh;
        align-items: start;
    }
}

.process-left {
    position: relative;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 140px 0 40px;
    border-bottom: 1px solid var(--color-gray-200, #e5e7eb);
    text-align: center;
    align-items: center;
}

@media (min-width: 1024px) {
    .process-left {
        position: relative;
        height: auto;
        align-self: flex-start;
        padding: 60px 60px 60px 0;
        border-right: none;
        border-bottom: none;
        text-align: left;
        align-items: flex-start;
    }
}

.process-left__inner {
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.process-left .section__eyebrow {
    color: var(--color-primary, #111827);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 11px;
    margin-bottom: 20px;
}

.process-left .section__title {
    color: var(--color-primary, #111827);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 20px;
}

.process-left .section__subtitle {
    color: var(--color-gray-500, #6b7280);
    font-size: 15px;
    line-height: 1.7;
    max-width: 340px;
}

.process-right {
    position: relative;
    padding: 40px 0 80px;
}

@media (min-width: 1024px) {
    .process-right {
        padding: 100px 0 100px 60px;
    }
}

/* SVG Flow Animation */
.process-flow-svg {
    position: absolute;
    top: 0;
    left: 16px;
    width: 6px;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: visible;
    display: none;
}

@media (min-width: 768px) {
    .process-flow-svg {
        display: block;
        left: 30px;
    }
}

.process-flow-track {
    /* Fill applied via SVG gradient */
}

.process-flow-fill {
    fill: url(#flowGradientV);
    transition: height 0.1s linear;
}

.process-flow-dot {
    fill: #FFAC02;
    opacity: 0;
    transition: opacity 0.3s;
}

.process-flow-dot--visible {
    opacity: 1;
}

/* Process Cards */
.process-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-left: 0;
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .process-cards {
        margin-left: 52px;
    }
}

.process-card {
    background: var(--color-white, #ffffff);
    border: 1px solid var(--color-gray-200, #e5e7eb);
    border-radius: 12px;
    padding: 16px 18px;
    position: relative;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
    cursor: default;
}

@media (min-width: 768px) {
    .process-card {
        padding: 20px 24px;
    }
}

.process-card--active {
    border-color: rgba(0,0,0,0.15);
}

.process-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.process-card__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: var(--color-black);
    border: none;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.process-card__icon {
    display: none;
}

.process-card--active .process-card__icon {
    display: none;
}

.process-card__title {
    font-size: 22px;
    font-weight: 650;
    color: var(--color-primary, #111827);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
    line-height: 1.2;
    transition: color 0.4s ease;
}

.process-card--active .process-card__title {
    color: var(--color-primary, #111827);
}

.process-card__text {
    color: var(--color-gray-600, #4b5563);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}

/* Active indicator bar */
.process-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    bottom: 16px;
    width: 6px;
    border-radius: 3px;
    background: #FFAC02;
    opacity: 0;
    transform: scaleY(0);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-card--active::before {
    opacity: 1;
    transform: scaleY(1);
}

/* Process CTA */
.process-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

.process-cta .btn {
    position: relative;
    overflow: hidden;
}

.process-cta .btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}

.process-cta .btn:hover::after {
    left: 100%;
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .process-left {
        padding: 120px 0 30px;
    }

    .process-right {
        padding: 30px 0 60px;
    }

    .process-flow-svg {
        display: none;
    }

    .process-cards {
        margin-left: 0;
    }
}

/* Clear Boundaries Section */
.boundaries {
    background: var(--color-white);
    padding: var(--space-20) 0;
}

.boundaries__label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: var(--space-5);
}

.boundaries__title {
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--space-5);
    line-height: 1.1;
}

.boundaries__subtitle {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-16);
    max-width: 560px;
    line-height: 1.6;
}

.boundaries__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    max-width: 880px;
    margin: 0 auto;
}

.boundaries__item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-5);
    padding: var(--space-8) var(--space-10);
    border-bottom: 1px solid var(--color-gray-200);
}

.boundaries__item:nth-child(4) {
    border-bottom: none;
}

.boundaries__icon {
    flex-shrink: 0;
    font-size: 1.5rem;
    color: var(--color-gray-400);
    font-weight: 300;
    line-height: 1;
    margin-top: 2px;
}

.boundaries__content {
    flex: 1;
}

.boundaries__item-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: var(--space-2);
}

.boundaries__item-desc {
    font-size: 0.9375rem;
    color: var(--color-text-tertiary);
    line-height: 1.6;
}

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

    .boundaries__item {
        padding: var(--space-6) 0;
        border-bottom: 1px solid var(--color-gray-200);
    }

    .boundaries__item:last-child {
        border-bottom: none;
    }
}

/* ============================================
   UTILITIES
   ============================================ */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

