/* ===== FONT FACE (Local Montserrat - DSGVO konform) ===== */
@font-face {
    font-family: 'Montserrat';
    src: url('Montserrat (2)/Montserrat-VariableFont_wght.ttf') format('truetype-variations');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('Montserrat (2)/Montserrat-Italic-VariableFont_wght.ttf') format('truetype-variations');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-bg: #0a0a0a;
    --color-bg-light: #1a1a1a;
    --color-bg-lighter: #2a2a2a;
    --color-text: #ffffff;
    --color-text-muted: #a0a0a0;
    --color-accent: #ffffff;
    --color-accent-hover: #f0f0f0;
    --color-border: #2a2a2a;
    --color-success: #10b981;
    --spacing: clamp(20px, 5vw, 80px);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== STICKY CTA BAR ===== */
.sticky-cta {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--color-accent) 0%, #e0e0e0 100%);
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 12px 24px;
}

.sticky-cta-text {
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

.sticky-cta-btn {
    background: #000;
    color: #fff;
    padding: 8px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s;
}

.sticky-cta-btn:hover {
    background: #1a1a1a;
    transform: scale(1.05);
}

/* ===== NAVIGATION ===== */
.nav {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 0;
}

.nav-logo {
    display: flex;
    align-items: center;
    line-height: 0;
}

.nav-logo img {
    height: 16px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--color-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
    line-height: 1;
}

.nav-link:hover {
    color: var(--color-text-muted);
}

.nav-cta {
    background: var(--color-accent);
    color: #000;
    padding: 8px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-family: inherit;
    line-height: 1;
}

.nav-cta:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 100px 24px 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://mcusercontent.com/b1739114dd5ffe7af9d2629e3/images/9e43da94-e150-14ee-fa6b-3b5772eb7fbe.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.50) 0%,
        rgba(10, 10, 10, 0.65) 50%,
        rgba(10, 10, 10, 0.75) 100%
    );
    z-index: 1;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.hero-badge span {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
}

.hero-title {
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-highlight {
    background: linear-gradient(135deg, #fff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 22px);
    line-height: 1.6;
    color: var(--color-text-muted);
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    margin-bottom: 64px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--color-accent);
    color: #000;
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(255, 255, 255, 0.3);
}

.btn-primary-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--color-accent);
    color: #000;
    padding: 20px 48px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-primary-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(255, 255, 255, 0.3);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.hero-stat {
    text-align: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.hero-stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 8px;
}

.hero-stat-label {
    font-size: 14px;
    color: var(--color-text-muted);
}

/* ===== SCROLL DOWN BUTTON ===== */
.scroll-down-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 60px;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.scroll-down-btn:hover {
    transform: translateY(-5px);
}

.scroll-circle {
    width: 60px;
    height: 60px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.scroll-down-btn:hover .scroll-circle {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
}

.scroll-circle svg {
    color: #000;
}

.scroll-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    letter-spacing: 0.5px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ===== VALUE PROPS ===== */
.value-props {
    padding: var(--spacing) 0;
    background: var(--color-bg);
}

.value-props-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.value-card {
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
}

.value-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.value-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-muted);
}

/* ===== URGENCY BANNER ===== */
.urgency-banner {
    padding: 60px 24px;
    background: var(--color-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.urgency-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.urgency-title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.urgency-text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-text-muted);
}

/* ===== VEHICLES SECTION ===== */
.vehicles-section {
    padding: var(--spacing) 0;
    background: var(--color-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-title-center {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 60px;
    text-align: center;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 18px;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.vehicle-category {
    margin-bottom: 80px;
}

.category-banner {
    padding: 48px 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.category-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 0;
}

.sprinter-bg {
    background-image: url('https://mcusercontent.com/b1739114dd5ffe7af9d2629e3/images/8bc8e1e9-6730-3af0-0328-6386a8b09cd6.jpg');
}

.vklasse-bg {
    background-image: url('https://mcusercontent.com/b1739114dd5ffe7af9d2629e3/images/3e2f1ce2-bdb1-ee2f-fdec-58f71f20e97f.jpg');
}

.vito-bg {
    background-image: url('https://mcusercontent.com/b1739114dd5ffe7af9d2629e3/images/68962f00-ea38-a76d-9fcb-1e7861768bfb.jpg');
}

.t61-bg {
    background-image: url('https://mcusercontent.com/b1739114dd5ffe7af9d2629e3/images/b11003d1-b976-aaa2-f346-ae32f9a98598.jpg');
}

.category-name {
    font-size: 42px;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.category-count {
    font-size: 16px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.vehicle-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    position: relative;
}

.vehicle-item:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Disabled Vehicle */
.vehicle-item-disabled {
    opacity: 0.35;
    pointer-events: none;
    filter: grayscale(100%);
    background: linear-gradient(135deg, rgba(100, 100, 100, 0.15) 0%, rgba(80, 80, 80, 0.1) 100%) !important;
    border-color: rgba(100, 100, 100, 0.3) !important;
    position: relative;
}

.vehicle-item-disabled:hover {
    transform: none;
    border-color: rgba(100, 100, 100, 0.3);
    box-shadow: none;
}

.vehicle-item-disabled * {
    color: #888888 !important;
}

.vehicle-badge-sold {
    background: #555555 !important;
    color: #aaaaaa !important;
}

.sold-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.85);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 700;
    z-index: 10;
    pointer-events: none;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.vehicle-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--color-accent);
    color: #000;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

.vehicle-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
    padding-right: 80px;
    line-height: 1.3;
}

.vehicle-price-section {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 24px;
}

.vehicle-price-main {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 8px;
}

.price-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-text);
}

.price-label {
    font-size: 12px;
    color: var(--color-text-muted);
    text-transform: uppercase;
}

.vehicle-price-old {
    font-size: 16px;
    color: #ef4444;
    text-decoration: line-through;
    margin-bottom: 4px;
}

.vehicle-savings {
    font-size: 14px;
    color: var(--color-success);
    font-weight: 600;
}

.vehicle-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
}

.vehicle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.vehicle-btn-primary {
    background: var(--color-accent);
    color: #000;
}

.vehicle-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.vehicle-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-text);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.vehicle-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.vehicle-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.vehicle-btn:disabled:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.1);
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
    padding: var(--spacing) 0;
    background: var(--color-bg);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    transition: all 0.3s;
}

.benefit-item:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
}

.benefit-number {
    font-size: 48px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    margin-bottom: 16px;
}

.benefit-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.benefit-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-muted);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 100px 24px;
    background: var(--color-bg);
    text-align: center;
}

.cta-section .btn-primary-large {
    margin: 0 auto;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-text {
    font-size: 20px;
    color: var(--color-text-muted);
    margin-bottom: 40px;
}

.cta-note {
    margin-top: 24px;
    font-size: 16px;
    color: var(--color-text-muted);
}

/* ===== FOOTER ===== */
.footer {
    padding: 80px 24px 40px;
    background: linear-gradient(180deg, var(--color-bg) 0%, #000000 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-col {
    display: flex;
    flex-direction: column;
}


.footer-tagline {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.6;
    max-width: 320px;
}

.footer-heading {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-text {
    font-size: 14px;
    line-height: 1.9;
    color: var(--color-text-muted);
}

.footer-text a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-text a:hover {
    color: var(--color-text);
}

.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-4px) scale(1.05);
}

.footer-social-link img {
    width: 20px;
    height: 20px;
    opacity: 0.9;
    filter: invert(1);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.3px;
    margin-bottom: 12px;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
}

.footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.footer-separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 13px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .vehicles-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 16px;
    }
    
    .nav-link {
        display: none;
    }
    
    .modal-content {
        padding: 32px 24px;
        max-height: 95vh;
    }
    
    .modal-title {
        font-size: 26px;
    }
    
    .modal-close {
        top: 16px;
        right: 16px;
        width: 36px;
        height: 36px;
    }
    
    .vehicle-actions {
        grid-template-columns: 1fr;
    }
    
    .vehicle-btn {
        width: 100%;
    }
    
    .btn-primary {
        padding: 16px 32px;
        font-size: 16px;
        width: auto;
    }
    
    .hero-cta {
        display: flex;
        justify-content: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 8px;
    }
    
    .footer-separator {
        display: none;
    }
    
    .hero-section {
        min-height: 70vh;
        padding: 80px 20px 60px;
    }
    
    .scroll-down-btn {
        margin-top: 40px;
    }
    
    .scroll-circle {
        width: 50px;
        height: 50px;
    }
    
    .scroll-text {
        font-size: 13px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .category-banner {
        padding: 32px 24px;
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    
    .category-name {
        font-size: 28px;
        letter-spacing: 2px;
    }
    
    .vehicle-item {
        padding: 24px;
    }
    
    .vehicle-badge {
        top: 16px;
        right: 16px;
    }
    
    .vehicle-title {
        font-size: 20px;
        padding-right: 70px;
    }
    
    .price-value {
        font-size: 28px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .value-props-grid {
        grid-template-columns: 1fr;
    }
    
    .sticky-cta-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 24px 32px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-col {
        text-align: center;
        align-items: center;
    }
    
    .footer-tagline {
        max-width: 100%;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .btn-primary,
    .btn-primary-large {
        width: auto;
        min-width: 200px;
    }
    
    .hero-cta {
        display: flex;
        justify-content: center;
    }
    
    .footer {
        padding: 50px 20px 28px;
    }
    
    .footer-grid {
        gap: 36px;
    }
    
    .footer-logo {
        height: 28px;
    }
}

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 40px;
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--color-text);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 32px;
}

.modal-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--color-text);
}

.modal-subtitle {
    font-size: 16px;
    color: var(--color-text-muted);
}

/* ===== FORM STYLES ===== */
.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 4px;
}

.form-label .required {
    color: #ef4444;
}

.form-input,
.form-textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 15px;
    color: var(--color-text);
    font-family: inherit;
    transition: all 0.2s;
    width: 100%;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.05);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--color-text-muted);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

/* Enhanced Select/Dropdown Styling */
select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
    padding-right: 45px;
    cursor: pointer;
}

select.form-input:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Option Styling */
select.form-input option {
    background: #1a1a1a;
    color: var(--color-text);
    padding: 12px 16px;
    font-size: 15px;
    line-height: 1.6;
}

select.form-input option:first-child {
    color: var(--color-text-muted);
    font-style: italic;
}

/* Optgroup Styling */
select.form-input optgroup {
    background: #0f0f0f;
    color: var(--color-accent);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 16px;
    margin-top: 8px;
}

select.form-input optgroup option {
    background: #1a1a1a;
    color: var(--color-text);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    padding-left: 24px;
    font-size: 14px;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--color-accent);
    color: #000;
    padding: 16px 32px;
    border-radius: 12px;
    border: none;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    font-family: inherit;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

.form-note {
    font-size: 13px;
    color: var(--color-text-muted);
    text-align: center;
    margin-top: -8px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 4px;
    cursor: pointer;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.checkbox-text {
    font-size: 13px;
    line-height: 1.6;
    color: var(--color-text-muted);
}

.privacy-link {
    color: var(--color-accent);
    text-decoration: underline;
}

.privacy-link:hover {
    color: var(--color-text);
}

/* ===== SUCCESS MESSAGE ===== */
.success-message {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--color-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #fff;
    margin: 0 auto 24px;
    animation: successPop 0.5s ease-out;
}

@keyframes successPop {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.success-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-text);
}

.success-text {
    font-size: 16px;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.btn-close-success {
    background: var(--color-accent);
    color: #000;
    border: none;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.btn-close-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

/* ===== BUTTON STYLES UPDATE ===== */
.btn-primary,
.btn-primary-large,
.nav-cta,
.sticky-cta-btn {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vehicle-item,
.value-card,
.benefit-item {
    animation: fadeInUp 0.6s ease-out both;
}

.vehicle-item:nth-child(2) { animation-delay: 0.1s; }
.vehicle-item:nth-child(3) { animation-delay: 0.2s; }
.vehicle-item:nth-child(4) { animation-delay: 0.3s; }
