/* ===================================
   COMPACT HOMEPAGE STYLES
   Market-leading, density-focused UI
   =================================== */

/* Global Design System - Elite Polish */
:root {
    --max-width: 1140px;
    --grid-gap: 12px;
    --section-spacing: 20px;
    --brand-navy: #0E2433;
    --brand-blue: #1F3A5F;
    --brand-slate: #EEF2F6;
    --brand-orange: #E86813;
    --brand-orange-hover: #CC5B0F;
    --navy: #0E2433;
    --steel: #EEF2F6;
    --orange: #E86813;
    --orange-glow: rgba(232, 104, 19, 0.25);
    --white: #ffffff;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-700: #334155;
    --slate-900: #0f172a;
    --gradient-dark: linear-gradient(135deg, #0E2433 0%, #1F3A5F 50%, #0a1628 100%);
    --gradient-steel: linear-gradient(135deg, #475569 0%, #334155 100%);
    --binary-pattern: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ctext x='5' y='15' font-family='monospace' font-size='10' fill='%23ffffff' opacity='0.03'%3E01010%3C/text%3E%3Ctext x='5' y='30' font-family='monospace' font-size='10' fill='%23ffffff' opacity='0.03'%3E10101%3C/text%3E%3Ctext x='5' y='45' font-family='monospace' font-size='10' fill='%23ffffff' opacity='0.03'%3E01010%3C/text%3E%3C/svg%3E");
    --font-weight-bold: 700;
    --font-weight-medium: 500;
    --font-weight-normal: 400;
    --line-height-tight: 1.25;
    --line-height-normal: 1.5;
}

/* Global Typography Hierarchy */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-normal);
}

/* Search Autocomplete Styles */
.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e2e8f0;
    border-top: none;
    border-radius: 0 0 10px 10px;
    max-height: 300px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.search-suggestions.show {
    display: block;
}

.search-suggestion-item {
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid #f1f5f9;
}

.search-suggestion-item:hover,
.search-suggestion-item.active {
    background: #f8fafc;
}

.search-suggestion-item:last-child {
    border-bottom: none;
}

.search-input-group {
    position: relative;
}

/* Tooltip Styles */
[data-tooltip] {
    position: relative;
    cursor: help;
}

[data-tooltip]::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: rgba(15, 23, 42, 0.95);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
    z-index: 1000;
}

[data-tooltip]:hover::before {
    opacity: 1;
}

.tooltip-icon {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
    margin-left: 4px;
    cursor: help;
}

.stat-growth {
    display: block;
    font-size: 0.75rem;
    color: #10b981;
    margin-top: 2px;
}

/* Hero Section - Elite Design */
.hero-compact {
    background: var(--gradient-dark);
    background-image: var(--binary-pattern), var(--gradient-dark);
    padding: 20px 0 16px;
    text-align: center;
    position: relative;
    border-bottom: 2px solid var(--orange);
    box-shadow: inset 0 -1px 0 0 var(--orange-glow), 0 8px 32px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.hero-grid-animation {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(255, 107, 53, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(255, 107, 53, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridFlow 20s linear infinite;
    opacity: 0.3;
}

@keyframes gridFlow {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(50px) translateY(50px); }
}

.hero-compact::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--orange) 50%, transparent 100%);
    box-shadow: 0 0 20px var(--orange-glow);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-headline {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: var(--font-weight-bold);
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: -0.03em;
    line-height: var(--line-height-tight);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero-subhead {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px;
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

/* Search Bar - Tighter */
.hero-search {
    margin-bottom: 12px;
}

.search-input-group {
    display: flex;
    gap: 6px;
    background: rgba(255, 255, 255, 0.98);
    padding: 6px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25), 0 0 0 1px var(--orange-glow);
    position: relative;
}

.search-input-group::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--orange) 0%, transparent 50%, var(--orange) 100%);
    border-radius: 14px;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.search-input-group:focus-within::before {
    opacity: 0.3;
}

.search-input {
    flex: 1;
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 1rem;
    background: #f8fafc;
    transition: all 0.2s;
}

.search-input-single {
    flex: 1;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 0.95rem;
    background: #f8fafc;
    transition: all 0.2s;
    width: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.search-input:focus,
.search-input-single:focus {
    outline: none;
    border-color: var(--orange);
    background: #ffffff;
    box-shadow: 0 0 0 3px var(--orange-glow);
}

.search-btn {
    background: var(--brand-orange);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.search-btn:hover {
    background: var(--brand-orange-hover);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-bottom: 0;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #3b82f6;
    font-family: 'Courier New', monospace;
}

.stat-value--listings {
    font-size: 1.05rem;
    font-weight: 600;
    color: #3b82f6;
    letter-spacing: 0.02em;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

.hero-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.hero-search {
    display: block;
    position: relative;
    margin: 0 auto 18px;
    padding: 16px 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(11, 36, 71, 0.88) 0%, rgba(6, 18, 38, 0.66) 100%);
    box-shadow: 0 24px 48px rgba(5, 16, 34, 0.45);
    max-width: 760px;
    backdrop-filter: blur(6px);
    width: 100%;
    box-sizing: border-box;
}

/* Featured Vehicles - Industrial Polish */
.section-featured {
    padding: 20px 0;
    background: linear-gradient(180deg, #fafbfc 0%, #f5f7fa 100%);
}

.featured-panel {
    background: var(--brand-slate);
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
    border: 1px solid var(--slate-200);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding: 12px 16px;
    background: var(--gradient-steel);
    background-image: var(--binary-pattern), var(--gradient-steel);
    border-radius: 10px;
    border-left: 4px solid #0b2447;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

.section-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, var(--orange-glow) 100%);
    pointer-events: none;
}

.section-header-left {
    flex: 1;
    position: relative;
    padding-bottom: 6px;
}

.section-header-left::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 56px;
    height: 2px;
    background: #0b2447;
    border-radius: 999px;
    opacity: 0.9;
}

.section-header-left h2,
.section-header-center h2 {
    font-size: 1.35rem;
    font-weight: var(--font-weight-bold);
    color: white;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.02em;
    line-height: var(--line-height-tight);
}

.section-header-left h2 i {
    color: var(--orange);
    font-size: 1.15rem;
    filter: drop-shadow(0 0 8px var(--orange-glow));
}

.section-subtitle {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 4px 0 0 0;
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--orange);
    text-decoration: none;
    transition: all 0.2s;
    padding: 6px 12px;
    border-radius: 6px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.btn-text:hover {
    background: var(--orange);
    color: white;
    transform: translateX(2px);
    border-color: var(--orange);
}

.section-title--light {
    color: #ffffff;
}

.section-subtitle--muted {
    color: rgba(255, 255, 255, 0.75);
}

/* Marketplace CTA */
.section-marketplace-cta {
    padding: 16px 0;
    background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-blue) 100%);
}

.cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
}

.cta-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.4;
}

.cta-actions {
    display: flex;
    gap: 8px;
    flex-wrap: nowrap;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    white-space: nowrap;
}

.btn-cta i {
    font-size: 0.875rem;
}

.btn-cta-primary {
    background: var(--brand-orange);
    color: #ffffff;
    border: none;
}

.btn-cta-primary:hover {
    background: var(--brand-orange-hover);
}

.btn-cta-secondary {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    background: transparent;
}

.btn-cta-secondary:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
}

/* News Showcase */
.section-news {
    padding: 20px 0;
    background: linear-gradient(180deg, var(--brand-navy) 0%, var(--brand-blue) 100%);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 12px;
    align-items: stretch;
}

.news-grid article:nth-child(n+3) {
    display: none;
}

.news-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid var(--slate-200);
}

.news-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.news-card-image {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.4s ease;
}

.news-card:hover .news-card-image img {
    transform: scale(1.09);
}

.news-card-body {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.news-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.news-card-label {
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--slate-700);
    letter-spacing: 0.08em;
    background: var(--brand-slate);
    padding: 2px 8px;
    border-radius: 4px;
}

.news-card-label::before {
    display: none;
}

.news-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--slate-900);
    margin: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-excerpt {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
    display: none;
}

@media (min-width: 768px) {
    .news-card-excerpt {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

.news-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    gap: 12px;
}

.news-card-date {
    font-size: 0.75rem;
    color: #94a3b8;
}

.news-card-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--slate-700);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s ease;
}

.news-card-link i {
    font-size: 0.75rem;
}

.news-card-link:hover {
    color: var(--slate-900);
}

.news-empty {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    text-align: center;
    margin: 0;
}

.news-more {
    text-align: center;
    margin-top: 16px;
}

.news-more-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.2s;
}

.news-more-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.news-more-link i {
    font-size: 0.75rem;
}

/* Why VehicleVector */
.section-why {
    padding: 20px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.why-card {
    max-width: 840px;
    margin: 0 auto;
    background: transparent;
    border-radius: 0;
    padding: 0;
    text-align: center;
}

.why-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 16px;
}

.why-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    max-width: 600px;
    margin: 0 auto;
}

.why-points span {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.75rem;
    color: var(--slate-700);
    background: #ffffff;
    padding: 16px 12px;
    border-radius: 8px;
    border: 1px solid var(--slate-200);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.why-points i {
    color: var(--slate-700);
    font-size: 1.25rem;
}

/* Filter Buttons - Enhanced */
.filter-buttons {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--slate-200);
    border-radius: 6px;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--slate-700);
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.filter-btn:hover {
    background: #ffffff;
    border-color: var(--slate-300);
    color: var(--slate-900);
}

.filter-btn.active {
    background: var(--slate-900);
    border-color: var(--slate-900);
    color: white;
}

/* Vehicles Grid - Tighter */
.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
}

.featured-panel .vehicles-grid {
    margin-top: 12px;
}

.vehicle-card {
    background: #ffffff;
    border: 1px solid var(--slate-200);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.1);
}

.vehicle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange) 0%, #fbbf24 50%, var(--orange) 100%);
    opacity: 0;
    transition: opacity 0.3s;
    box-shadow: 0 2px 12px var(--orange-glow);
}

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

.vehicle-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
    border-color: var(--slate-300);
}

.vehicle-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.vehicle-quick-view {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: linear-gradient(135deg, var(--orange) 0%, #e85d2a 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.3s;
    pointer-events: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.vehicle-card:hover .vehicle-quick-view {
    opacity: 1;
    transform: translateY(0);
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vehicle-card:hover .vehicle-image img {
    transform: scale(1.08);
}

.vehicle-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(16, 185, 129, 0.95);
    color: white;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.vehicle-info {
    padding: 12px;
}

.vehicle-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--slate-900);
    margin: 0 0 6px 0;
    line-height: 1.25;
    letter-spacing: -0.01em;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vehicle-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--brand-orange);
    margin: 0 0 8px 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: -0.02em;
}

.vehicle-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px 8px;
    margin-bottom: 8px;
    font-size: 0.75rem;
    color: #64748b;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.spec-item i {
    font-size: 1rem;
    color: var(--orange);
    width: 20px;
    text-align: center;
}

.spec-details {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.spec-label {
    font-size: 0.65rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
}

.spec-value {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 1px;
}

.vehicle-meta {
    display: flex;
    gap: 12px;
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.vehicle-meta i {
    margin-right: 4px;
}

.btn-vehicle {
    display: inline-block;
    text-align: center;
    background: transparent;
    color: var(--slate-700);
    padding: 6px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.2s;
    border: 1px solid var(--slate-300);
}

.btn-vehicle:hover {
    background: #f8fafc;
    color: var(--slate-900);
    border-color: var(--slate-300);
}

/* AI Valuation Widget */
.section-ai-valuation {
    padding: 0;
    background: white;
}

.valuation-widget {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 32px;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.widget-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.widget-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.widget-text h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.widget-text p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 1rem;
}

.btn-widget {
    background: white;
    color: #667eea;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-widget:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    color: #667eea;
}

/* Insights Section - Redesigned */
.section-insights {
    padding: 24px 0 20px;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    background-image: var(--binary-pattern), linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    position: relative;
}

.section-insights::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--orange) 50%, transparent 100%);
}

.section-header-center {
    text-align: center;
    margin-bottom: 12px;
}

.section-header-center h2 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.section-header-center .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.insights-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 14px;
    margin-bottom: 20px;
}

.insight-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    position: relative;
}

.report-number {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--orange);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: 1.2px;
    z-index: 10;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 107, 53, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    font-family: 'Courier New', monospace;
}

.insight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange) 0%, #fbbf24 50%, var(--orange) 100%);
    opacity: 0;
    transition: opacity 0.3s;
    box-shadow: 0 0 12px var(--orange);
}

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

.insight-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.35);
    border-color: var(--orange);
    background: rgba(255, 255, 255, 0.1);
}

.insight-card:hover .report-number {
    background: var(--orange);
    color: white;
    border-color: var(--orange);
}

.insight-image {
    height: 140px;
    overflow: hidden;
    position: relative;
}

.insight-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
}

.insight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.insight-card:hover .insight-image img {
    transform: scale(1.1);
}

.insight-content {
    padding: 16px;
}

.insight-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange) 0%, #e85d2a 100%);
    color: white;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 0.8px;
}

.insight-tag.trending {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.insight-tag.premium {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #78350f;
}

.insight-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: white;
    margin: 0 0 8px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.insight-excerpt {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 12px 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-insight {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.btn-insight:hover {
    color: #2563eb;
}

.btn-insight-cta {
    display: inline-block;
    background: #3b82f6;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.btn-insight-cta:hover {
    background: #2563eb;
    transform: translateX(4px);
    color: white;
}

.section-footer {
    text-align: center;
}

.btn-secondary {
    display: inline-block;
    background: #3b82f6;
    color: white;
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

/* Analytics KPI Band - Elite */
.section-market-data {
    background: var(--gradient-dark);
    background-image: var(--binary-pattern), var(--gradient-dark);
    padding: 28px 0;
    position: relative;
    overflow: hidden;
}

.section-market-data::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--orange) 50%, transparent 100%);
    box-shadow: 0 0 12px var(--orange-glow);
}

.section-market-data::after {
    content: '01010101';
    position: absolute;
    top: 50%;
    right: -50px;
    transform: translateY(-50%);
    font-size: 200px;
    font-family: 'Courier New', monospace;
    color: rgba(255, 107, 53, 0.02);
    font-weight: bold;
    pointer-events: none;
    animation: binaryFloat 15s ease-in-out infinite;
}

@keyframes binaryFloat {
    0%, 100% { opacity: 0.02; transform: translateY(-50%) translateX(0); }
    50% { opacity: 0.04; transform: translateY(-50%) translateX(-30px); }
}

.kpi-header {
    text-align: center;
    margin-bottom: 20px;
}

.kpi-section-title {
    font-size: 1.4rem;
    font-weight: var(--font-weight-bold);
    color: white;
    margin: 0 0 8px 0;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 2px;
}

.kpi-tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: var(--font-weight-normal);
    letter-spacing: 0.3px;
    font-style: italic;
}

.tagline-highlight {
    color: var(--orange);
    font-weight: var(--font-weight-bold);
    font-style: normal;
}

.market-data-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.market-data-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 3px solid var(--orange);
    border-radius: 10px;
    padding: 16px;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.market-data-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--orange);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.2);
}

.kpi-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(255, 107, 53, 0.1) 100%);
    border-radius: 10px;
    flex-shrink: 0;
}

.kpi-icon i {
    font-size: 1.3rem;
    color: var(--orange);
}

.market-data-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.market-data-label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 700;
}

.market-data-value {
    font-size: 1.4rem;
    font-weight: 900;
    color: #ffffff;
    font-family: 'Courier New', monospace;
    letter-spacing: -0.02em;
}

.sparkline {
    margin-top: 4px;
    height: 30px;
    opacity: 0.8;
}

.trend-indicator {
    font-size: 0.7rem;
    color: var(--orange);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
}

.trend-indicator.success {
    color: #10b981;
}

.trend-indicator i {
    font-size: 0.65rem;
}

.market-data-divider {
    display: none;
}

/* Trust Section - Redesigned */
.section-trust {
    padding: 24px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

.trust-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 1px solid #e5e7eb;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.trust-badge {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 107, 53, 0.02) 100%);
    border: 1px solid rgba(255, 107, 53, 0.15);
    transition: all 0.3s;
}

.trust-badge:hover {
    border-color: var(--orange);
    background: rgba(255, 107, 53, 0.08);
    transform: translateY(-2px);
}

.trust-badge i {
    font-size: 1.5rem;
    color: var(--orange);
    flex-shrink: 0;
}

.trust-badge-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.trust-badge-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

.trust-badge-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.trust-badge-list li {
    font-size: 0.75rem;
    color: var(--text-light);
    padding-left: 12px;
    position: relative;
}

.trust-badge-list li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: bold;
    font-size: 1rem;
}

.trust-rating {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.rating-stars {
    color: var(--orange);
    font-size: 1.2rem;
    display: flex;
    gap: 4px;
}

.rating-text {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
}

.trust-tagline {
    font-size: 0.95rem;
    color: #475569;
    margin: 0;
    font-weight: 500;
}

/* Responsive Breakpoints - Tighter */
@media (max-width: 1024px) {
    :root {
        --section-spacing: 24px;
        --grid-gap: 12px;
    }

    .vehicles-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 12px;
    }

    .featured-panel {
        padding: 16px 18px 20px;
    }

    .cta-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
    }

    .cta-actions {
        width: 100%;
    }

    .news-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
}

@media (min-width: 992px) {
    .news-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-compact {
        padding: 16px 0 14px;
    }

    .search-input-single {
        font-size: 0.9rem;
        padding: 9px 14px;
    }

    .search-btn {
        padding: 9px 20px;
        font-size: 0.85rem;
    }

    .hero-stats {
        gap: 10px;
        font-size: 0.85rem;
    }

    .stat-value {
        font-size: 1.1rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .stat-growth {
        font-size: 0.65rem;
    }

    .featured-panel {
        padding: 16px 14px 18px;
    }

    .cta-title {
        font-size: 1.35rem;
    }

    .cta-card {
        gap: 18px;
    }

    .cta-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .btn-cta {
        width: 100%;
    }

    .news-card {
        box-shadow: 0 12px 26px rgba(10, 20, 40, 0.18);
    }

    .news-card-body {
        padding: 16px;
    }

    .why-card {
        padding: 24px 20px;
    }

    .why-points {
        gap: 10px;
    }

    .why-points span {
        width: calc(50% - 10px);
        justify-content: center;
    }

    .stat-divider {
        display: none;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 10px 14px;
    }

    .section-header-left h2 {
        font-size: 1.1rem;
    }

    .section-subtitle {
        font-size: 0.75rem;
    }

    .filter-buttons {
        width: 100%;
        justify-content: flex-start;
    }

    .filter-btn {
        flex: 1;
        min-width: auto;
        font-size: 0.75rem;
        padding: 5px 10px;
    }

    .vehicles-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

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

    .vehicle-card {
        max-width: 100%;
    }

    .vehicle-image {
        height: 140px;
    }

    .vehicle-info {
        padding: 12px;
    }

    .vehicle-title {
        font-size: 0.95rem;
    }

    .vehicle-price {
        font-size: 1.28rem;
    }

    .vehicle-specs {
        padding: 8px;
        gap: 6px;
    }

    .spec-item {
        gap: 8px;
    }

    .spec-item i {
        font-size: 0.9rem;
        width: 18px;
    }

    .spec-label {
        font-size: 0.6rem;
    }

    .spec-value {
        font-size: 0.75rem;
    }

    .valuation-widget {
        flex-direction: column;
        padding: 20px;
        gap: 16px;
    }

}

@media (max-width: 640px) {
    :root {
        --section-spacing: 8px;
        --grid-gap: 6px;
    }

    /* GLOBAL SPACING REDUCTIONS */
    .vehicles-grid,
    .news-grid {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .featured-panel {
        padding: 6px;
        border-radius: 8px;
    }

    .hero-compact {
        padding: 6px 0;
    }

    /* HEADER/SEARCH - ULTRA TIGHT */
    .hero-search {
        padding: 8px 12px;
        margin-bottom: 8px;
        border-radius: 12px;
    }

    .search-input-single {
        height: 36px;
        padding: 0 12px;
        font-size: 0.875rem;
        border-radius: 8px;
    }

    .search-btn {
        height: 36px;
        padding: 0 12px;
        font-size: 0.8rem;
        border-radius: 8px;
    }

    /* SECTION HEADERS */
    .section-header {
        padding: 8px 12px;
        margin-bottom: 8px;
        border-radius: 8px;
    }

    .section-header-left h2,
    .section-header-center h2 {
        font-size: 0.9rem;
    }

    .section-subtitle {
        font-size: 0.65rem;
    }

    /* FILTER PILLS - HORIZONTAL SCROLL */
    .filter-buttons {
        display: flex;
        gap: 6px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .filter-buttons::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        padding: 4px 10px;
        font-size: 0.6875rem;
        border-radius: 6px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    /* VEHICLE CARDS - COMPACT ROW LAYOUT */
    .vehicle-card {
        display: flex;
        flex-direction: row;
        gap: 8px;
        align-items: flex-start;
        padding: 8px;
        border-radius: 8px;
        margin-bottom: 8px;
        text-decoration: none;
        color: inherit;
    }

    .vehicle-image {
        width: 96px;
        height: 72px;
        flex-shrink: 0;
        border-radius: 6px;
        margin-bottom: 0;
    }

    .vehicle-image img {
        border-radius: 6px;
    }

    .vehicle-info {
        flex: 1;
        min-width: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .vehicle-title {
        font-size: 0.875rem;
        line-height: 1.25;
        margin-bottom: 0;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .vehicle-price {
        font-size: 0.95rem;
        margin-bottom: 0;
    }

    .vehicle-specs {
        display: none;
    }

    .spec-item {
        display: none;
    }

    .spec-label {
        display: none;
    }

    .spec-value {
        display: none;
    }

    .vehicle-meta {
        font-size: 0.6875rem;
        color: #64748b;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-bottom: 0;
        gap: 0;
    }

    .vehicle-meta span::after {
        content: ' · ';
    }

    .vehicle-meta span:last-child::after {
        content: '';
    }

    .btn-vehicle {
        display: none;
    }

    .vehicle-quick-view {
        display: none;
    }

    .vehicle-card::after {
        content: '›';
        color: #cbd5e1;
        font-size: 1.25rem;
        flex-shrink: 0;
        align-self: center;
        margin-left: 4px;
    }

    /* CTA BLOCK - ULTRA COMPACT */
    .section-marketplace-cta {
        padding: 6px 0;
    }

    .cta-card {
        padding: 10px;
        border-radius: 8px;
        gap: 6px;
    }

    .cta-title {
        font-size: 0.875rem;
        margin-bottom: 6px;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .cta-subtitle {
        font-size: 0.65rem;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-bottom: 8px;
    }

    .cta-actions {
        display: flex;
        flex-direction: row;
        gap: 8px;
    }

    .btn-cta {
        flex: 1;
        padding: 8px 12px;
        font-size: 0.7rem;
        border-radius: 8px;
    }

    .btn-cta i {
        display: none;
    }

    /* NEWS/MARKET HIGHLIGHTS - SHOW ONLY 2 ITEMS */
    .section-news {
        padding: 6px 0;
    }

    .news-grid {
        gap: 6px;
    }

    .news-grid article:nth-child(n+3) {
        display: none;
    }

    .news-card {
        border-radius: 12px;
    }

    .news-card-image {
        height: auto;
        aspect-ratio: 16/10;
        margin-bottom: 8px;
    }

    .news-card-body {
        padding: 8px;
        gap: 4px;
    }

    .news-card-header {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 6px;
    }

    .news-card-label {
        font-size: 0.6rem;
        display: inline-block;
        background: #f1f5f9;
        padding: 2px 6px;
        border-radius: 4px;
        margin-bottom: 0;
    }

    .news-card-label::before {
        display: none;
    }

    .news-card-title {
        font-size: 0.9rem;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-bottom: 6px;
    }

    .news-card-excerpt {
        display: none;
    }

    .news-card-meta {
        gap: 8px;
        margin-top: 0;
    }

    .news-card-date {
        font-size: 0.6rem;
        color: #94a3b8;
        display: inline-block;
    }

    .news-card-link {
        font-size: 0.7rem;
        gap: 4px;
    }

    /* WHY VEHICLEVECTOR - 2 COLUMN GRID */
    .section-why {
        padding: 6px 0;
    }

    .why-card {
        padding: 10px 8px;
        border-radius: 8px;
    }

    .why-title {
        font-size: 0.875rem;
        margin-bottom: 8px;
    }

    .why-points {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .why-points span {
        width: 100%;
        font-size: 0.6875rem;
        padding: 8px;
        border-radius: 8px;
        gap: 6px;
        background: #ffffff;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
        justify-content: center;
        text-align: center;
    }

    .why-points i {
        font-size: 0.8rem;
    }

    /* FEATURED SECTION */
    .section-featured {
        padding: 6px 0;
    }

    /* STATS */
    .hero-stats {
        gap: 8px;
        margin-bottom: 0;
    }

    .stat-value--listings {
        font-size: 0.9rem;
    }

    /* STICKY ACTION BAR - MOBILE ONLY */
    .sticky-action-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 100;
        padding: 8px 12px;
        background: transparent;
        pointer-events: none;
        opacity: 0;
        transform: translateY(100%);
        transition: all 0.3s ease;
    }

    .sticky-action-bar.visible {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .sticky-bar-inner {
        max-width: 480px;
        margin: 0 auto;
        display: flex;
        gap: 8px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 12px;
        padding: 8px;
        box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    }

    .sticky-btn {
        flex: 1;
        padding: 10px 12px;
        border-radius: 8px;
        text-align: center;
        text-decoration: none;
        font-size: 0.8rem;
        font-weight: 700;
        transition: all 0.2s;
    }

    .sticky-btn-browse {
        background: #1e293b;
        color: #ffffff;
    }

    .sticky-btn-browse:hover {
        background: #0f172a;
    }

    .sticky-btn-list {
        background: linear-gradient(135deg, var(--orange) 0%, #e85d2a 100%);
        color: #ffffff;
    }

    .sticky-btn-list:hover {
        background: linear-gradient(135deg, #ff7a4d 0%, var(--orange) 100%);
    }
}

@media (max-width: 640px) {
    .section-featured {
        padding: 12px 0 18px;
        background: linear-gradient(180deg, #0b1f33 0%, #112e4d 45%, #0e2433 100%);
    }

    .featured-panel {
        background: rgba(14, 36, 51, 0.25);
        border-radius: 18px;
        padding: 14px 12px 16px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 12px 30px rgba(6, 17, 32, 0.45);
        backdrop-filter: blur(12px);
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 0;
        background: transparent;
        border: none;
        box-shadow: none;
        border-radius: 0;
    }

    .section-header::before {
        display: none;
    }

    .section-header-left .section-title {
        color: #f8fafc;
    }

    .section-header-left .section-subtitle {
        color: rgba(241, 245, 249, 0.8);
    }

    .section-header-right {
        width: 100%;
    }

    .filter-buttons {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding-bottom: 2px;
        scrollbar-width: none;
    }

    .filter-buttons {
        display: none;
    }

    .section-header-right {
        display: none;
    }

    .filter-buttons::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        flex: 0 0 auto;
        padding: 6px 14px;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.22);
        background: rgba(15, 23, 42, 0.65);
        color: rgba(248, 250, 252, 0.85);
        font-size: 0.7rem;
        letter-spacing: 0.35px;
    }

    .filter-btn.active {
        background: #f97316;
        border-color: #f97316;
        color: #0f172a;
        box-shadow: 0 12px 24px rgba(249, 115, 22, 0.35);
    }

    .vehicles-grid {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 14px;
    }

    .vehicle-card {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        gap: 12px;
        padding: 12px;
        margin: 0;
        border-radius: 14px;
        border: 1px solid rgba(15, 23, 42, 0.08);
        box-shadow: 0 10px 24px rgba(15, 23, 42, 0.15);
        background: #ffffff;
    }

    .vehicle-card::before {
        content: '';
        position: absolute;
        inset: 12px auto 12px 0;
        width: 4px;
        border-radius: 999px;
        background: linear-gradient(180deg, #f97316 0%, #fbbf24 100%);
        opacity: 0.85;
    }

    .vehicle-card::after {
        display: none;
    }

    .vehicle-image {
        width: 96px;
        flex: 0 0 96px;
        aspect-ratio: 4 / 3;
        border-radius: 12px;
        overflow: hidden;
        background: #e2e8f0;
    }

    .vehicle-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .vehicle-info {
        padding: 0;
        gap: 4px;
    }

    .vehicle-title {
        font-size: 0.93rem;
        color: #0f172a;
    }

    .vehicle-price {
        color: #f97316;
        font-size: 0.95rem;
        font-weight: 700;
    }

    .vehicle-specs {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 4px 8px;
    }

    .vehicle-specs .spec-item {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .vehicle-specs .spec-label {
        font-size: 0.65rem;
        color: #475569;
        text-transform: uppercase;
    }

    .vehicle-specs .spec-value {
        font-size: 0.7rem;
        font-weight: 600;
        color: #1f2937;
    }

    .section-marketplace-cta {
        padding: 18px 0 12px;
        background: linear-gradient(180deg, #0e2539 0%, #132f4c 70%, #0f2134 100%);
    }

    .section-marketplace-cta .cta-card {
        background: rgba(15, 29, 44, 0.65);
        border-radius: 16px;
        padding: 18px 16px;
        color: #f8fafc;
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 16px 36px rgba(10, 17, 30, 0.45);
    }

    .section-marketplace-cta .cta-title {
        font-size: 1rem;
        margin-bottom: 6px;
    }

    .section-marketplace-cta .cta-subtitle {
        color: rgba(226, 232, 240, 0.85);
    }

    .section-marketplace-cta .cta-actions {
        display: flex;
        flex-direction: row;
        gap: 10px;
    }

    .section-marketplace-cta .cta-btn-primary {
        flex: 1;
        background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
        color: #0f172a;
        font-weight: 700;
        box-shadow: 0 12px 30px rgba(249, 115, 22, 0.35);
    }

    .section-marketplace-cta .cta-btn-secondary {
        flex: 1;
        background: rgba(248, 250, 252, 0.08);
        color: rgba(248, 250, 252, 0.85);
        border: 1px solid rgba(255, 255, 255, 0.18);
    }

    .section-news {
        padding: 18px 0;
        background: linear-gradient(180deg, #0f172a 0%, #111c32 60%, #0c1424 100%);
    }

    .section-news .section-title {
        color: #f8fafc;
    }

    .section-news .section-subtitle {
        color: rgba(226, 232, 240, 0.65);
    }

    .news-grid {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .news-card {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        gap: 12px;
        background: rgba(15, 23, 42, 0.78);
        border-radius: 14px;
        overflow: hidden;
        border: 1px solid rgba(148, 163, 184, 0.15);
        box-shadow: 0 10px 26px rgba(6, 17, 32, 0.35);
        padding: 12px;
    }

    .news-card-image {
        flex: 0 0 96px;
        height: 72px;
        border-radius: 10px;
        overflow: hidden;
    }

    .news-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .news-card-body {
        display: flex;
        flex-direction: column;
        justify-content: center;
        flex: 1;
        gap: 4px;
        padding: 0;
    }

    .news-card-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 8px;
        margin-bottom: 0;
    }

    .news-card-label {
        font-size: 0.6rem;
        padding: 2px 6px;
    }

    .news-card-date {
        font-size: 0.6rem;
        color: rgba(226, 232, 240, 0.7);
    }

    .news-card-title {
        color: #e2e8f0;
        font-size: 0.78rem;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .news-card-excerpt {
        display: none;
    }

    .news-card-footer {
        display: none;
    }

    .news-card-meta {
        margin-top: 4px;
    }

    .news-card-link {
        font-size: 0.7rem;
    }

    .section-why {
        padding: 18px 0 80px;
        background: #0f2134;
    }

    .section-why .why-card {
        background: rgba(15, 29, 44, 0.65);
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.06);
        color: #f8fafc;
        box-shadow: 0 18px 38px rgba(6, 17, 32, 0.45);
    }

    .section-why .why-title {
        color: #fef2c7;
        text-align: center;
    }

    .section-why .why-points span {
        background: rgba(248, 250, 252, 0.08);
        color: rgba(248, 250, 252, 0.85);
        border: 1px solid rgba(148, 163, 184, 0.18);
    }

    .section-why .why-points i {
        color: #fb923c;
    }

    .compact-footer {
        padding: 24px 0 18px;
    }

    .compact-footer .row.g-4 {
        --bs-gutter-y: 12px;
    }

    .compact-footer .footer-heading {
        margin-bottom: 8px;
        font-size: 0.8rem;
    }

    .compact-footer li {
        margin-bottom: 6px;
    }

    .compact-footer .footer-link {
        font-size: 0.8rem;
    }

    .compact-footer .footer-bottom {
        margin-top: 12px;
        padding-top: 12px;
    }
}

/* Hide sticky bar on larger screens */
@media (min-width: 641px) {
    .sticky-action-bar {
        display: none;
    }
}
