@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

        body.home .alert-maintenance { font-size: 13px; }
        #main-content { margin-top: 0 !important; }
        /* ===================== HERO ===================== */
        .hero {
            position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center;
            padding-top: 18px; padding-bottom: 40px;
            background: linear-gradient(160deg, #1a56db 0%, #105bcc 30%, #1e7ae0 65%, #2583eb 100%);
            overflow: hidden;
        }
        .hero.reveal {
            opacity: 1;
            transform: none;
        }
        .hero::before {
            content: ''; position: absolute; top: -50%; right: -20%; width: 80%; height: 200%;
            background: radial-gradient(ellipse at center, rgba(255,255,255,0.04) 0%, transparent 70%);
            pointer-events: none;
        }
        .hero::after {
            content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 200px;
            background: linear-gradient(to top, rgba(30,79,173,0.3) 0%, transparent 100%);
            pointer-events: none;
        }
        .hero-grid-pattern {
            position: absolute; top: 0; left: 0; right: 0; bottom: 0;
            background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
            background-size: 60px 60px; pointer-events: none;
        }
        .hero-inner {
            display: grid; grid-template-columns: 1fr 440px; gap: 48px; align-items: center;
            max-width: 1600px; margin: 0 auto; padding: 28px 60px 32px; position: relative; z-index: 2; width: 100%;
        }
        .hero-inner > * { min-width: 0; }
        .hero-content { text-align: left; }
        .hero-badge {
            display: inline-flex; align-items: center; gap: 8px;
            background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
            padding: 8px 16px; border-radius: 100px; font-size: 13px; font-weight: 600;
            color: var(--white); margin-bottom: 28px; backdrop-filter: blur(8px);
        }
        .hero-badge .pulse {
            width: 8px; height: 8px; background: var(--green); border-radius: 50%;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.8); opacity: 0; }
        }
        @keyframes cardIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .hero h1 { font-family: var(--font-heading); font-size: 56px; color: var(--white); line-height: 1.08; margin-bottom: 20px; }
        .hero h1 .highlight { color: var(--amber); }
        .hero-subtitle { font-size: 20px; color: rgba(255,255,255,0.8); line-height: 1.52; margin-bottom: 2px; max-width: 700px; }
        .hero-percent {
            color: #ffd15d;
            font-weight: 800;
            text-shadow: 0 4px 14px rgba(0,0,0,0.22);
        }
        /* Hero filter card */
        .hero-filter-card {
            background: rgba(255,255,255,0.12); border: 2px solid rgba(255,255,255,0.8);
            border-radius: var(--radius-lg); padding: 24px 28px 20px;
            backdrop-filter: blur(16px); margin-top: 8px; position: relative; overflow: visible;
            box-shadow: 0 8px 32px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.1), inset 0 1px 0 rgba(255,255,255,0.15);
        }
        .hero-filter-title {
            font-family: var(--font-body); font-size: 16px; font-weight: 700;
            color: white; margin: 0 0 16px; display: flex; align-items: center; gap: 8px;
        }
        .hero-filter-fields {
            display: flex; gap: 12px; align-items: flex-end;
        }
        .hero-filter-field { flex: 0.9; position: relative; min-width: 0; }
        .hero-filter-field-half { flex: 0.5; min-width: 0; position: relative; }
        .hero-filter-field label {
            display: block; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.6);
            text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 5px;
        }
        /* Unified Custom Dropdowns */
        .cf-wrap { position: relative; }
        .cf-trigger {
            width: 100%; padding: 10px 12px; border: 1.5px solid rgba(255,255,255,0.35);
            border-radius: var(--radius-sm); font-size: 13px; color: white;
            background: rgba(255,255,255,0.1); font-family: var(--font-body);
            transition: all 0.2s; cursor: pointer; display: flex; align-items: center; justify-content: space-between;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1); user-select: none;
        }
        .cf-trigger:hover { border-color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.15); }
        .cf-trigger.open { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.18); box-shadow: 0 0 0 3px rgba(255,255,255,0.1); }
        .cf-trigger.open svg { transform: rotate(180deg); }
        .cf-trigger svg { width: 14px; height: 14px; flex-shrink: 0; transition: transform 0.2s; opacity: 0.6; }
        .cf-trigger span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
        .cf-dropdown {
            position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 60;
            background: white; border-radius: 12px; box-shadow: 0 16px 48px rgba(0,0,0,0.2), 0 0 0 1px rgba(0,0,0,0.04);
            display: none; max-height: 130px; overflow-y: auto; overflow-x: hidden;
            animation: cfSlideIn 0.15s ease-out;
        }
        @keyframes cfSlideIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
        .cf-dropdown.open { display: block; }
        .cf-dropdown .cf-item {
            padding: 10px 16px; font-size: 13px; color: var(--gray-700); cursor: pointer;
            transition: all 0.1s; display: flex; align-items: center; justify-content: space-between;
        }
        .cf-dropdown .cf-item:first-child { border-radius: 12px 12px 0 0; }
        .cf-dropdown .cf-item:last-child { border-radius: 0 0 12px 12px; }
        .cf-dropdown .cf-item:hover { background: #EFF6FF; color: var(--royal-blue); }
        .cf-dropdown .cf-item.selected { background: var(--royal-blue); color: white; font-weight: 600; }
        .cf-dropdown .cf-item .cf-count { font-size: 13px; color: var(--gray-400); font-weight: 500; }
        .cf-dropdown .cf-item.selected .cf-count { color: rgba(255,255,255,0.7); }
        /* Year grid variant */
        .cf-dropdown-grid { max-height: 130px; min-width: 180px; }
        .cf-dropdown-grid .cf-decade {
            padding: 10px 14px 4px; font-size: 12px; font-weight: 700; text-transform: uppercase;
            letter-spacing: 0.8px; color: var(--gray-400); position: sticky; top: 0; background: white; z-index: 1;
        }
        .cf-dropdown-grid .cf-year-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; padding: 0 6px 6px; }
        .cf-dropdown-grid .cf-year {
            padding: 8px 4px; text-align: center; font-size: 13px; font-weight: 500; color: var(--gray-700);
            border-radius: 8px; cursor: pointer; transition: all 0.1s;
        }
        .cf-dropdown-grid .cf-year:hover { background: #EFF6FF; color: var(--royal-blue); }
        .cf-dropdown-grid .cf-year.selected { background: var(--royal-blue); color: white; font-weight: 700; }
        .hero-filter-btn {
            padding: 13px 13px; background: var(--amber); color: var(--gray-900); border: none;
            border-radius: var(--radius-md); font-size: 14px; font-weight: 700;
            cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; white-space: nowrap;
            font-family: var(--font-body); transition: all 0.2s;
            box-shadow: 0 4px 14px rgba(253,182,14,0.35);
        }
        .hero-filter-field-btn { flex: 0.9; }
        .hero-filter-btn:hover { background: var(--amber-dark); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(253,182,14,0.45); }
        .hero-filter-btn svg { width: 16px; height: 16px; }
        .hero-filter-tags {
            display: flex; align-items: center; gap: 8px; margin-top: 14px; flex-wrap: wrap;
        }
        .hero-filter-tags span { font-size: 13px; color: rgba(255,255,255,0.4); font-weight: 500; }
        .hero-filter-tags a {
            font-size: 13px; color: rgba(255,255,255,0.85); text-decoration: none;
            padding: 5px 14px; border: 1px solid rgba(255,255,255,0.3); border-radius: 100px;
            transition: all 0.2s; font-weight: 500; background: rgba(255,255,255,0.06);
        }
        .hero-filter-tags a:hover { border-color: var(--amber); color: var(--amber); background: rgba(253,182,14,0.1); }
        .hf-tag-hot { border-color: rgba(253,182,14,0.4) !important; background: rgba(253,182,14,0.08) !important; }
        .hero-filter-bottom {
            display: flex; align-items: center; justify-content: space-between; margin-top: 14px; gap: 12px; flex-wrap: wrap;
        }
        .hero-answer-card {
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: var(--radius-md);
            padding: 16px 18px;
            color: var(--white);
            text-decoration: none;
            transition: transform var(--transition), border-color var(--transition), background var(--transition);
        }
        .hero-answer-card:hover {
            transform: translateY(-2px);
            background: rgba(255,255,255,0.12);
            border-color: rgba(253,182,14,0.45);
            text-decoration: none;
        }
        .hero-answer-eyebrow {
            display: inline-block;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.72);
            margin-bottom: 8px;
        }
        .hero-answer-title {
            font-size: 16px;
            font-weight: 700;
            line-height: 1.35;
            margin-bottom: 6px;
        }
        .hero-answer-text {
            font-size: 13px;
            line-height: 1.65;
            color: rgba(255,255,255,0.74);
        }
        .hero-answer-cta {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: 12px;
            padding: 6px 11px;
            border-radius: 100px;
            border: 1px solid rgba(253,182,14,0.58);
            background: rgba(253,182,14,0.16);
            color: #FDB60E;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.01em;
        }
        .hero-answer-card:hover .hero-answer-title {
            color: var(--amber);
        }
        .hero-answer-card:hover .hero-answer-cta {
            color: #ffffff;
            border-color: rgba(253,182,14,0.85);
            background: rgba(253,182,14,0.32);
        }
        /* Step Progress Bar */
        .hf-step.active
        .hf-step.done
        .hf-smart-label {
            font-size: 12px; font-weight: 600; color: var(--amber); background: rgba(253,182,14,0.15);
            padding: 1px 8px; border-radius: 100px; margin-left: 6px; display: none; animation: acSlideIn 0.2s ease;
        }
        .hf-smart-label.visible { display: inline-block; }
        .hero-filter-top-row {
            display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; gap: 12px;
        }
        .hero-filter-top-row .hero-filter-title { margin: 0; }
        .hero-advanced-link {
            display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600;
            color: rgba(255,255,255,0.6); background: none; border: 1px solid rgba(255,255,255,0.15);
            padding: 5px 14px; border-radius: 100px; cursor: pointer; font-family: var(--font-body);
            transition: all 0.2s; white-space: nowrap; flex-shrink: 0;
        }
        .hero-advanced-link:hover { color: white; border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.08); }

        /* Advanced Search Modal */
        .adv-modal-overlay {
            position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
            z-index: 10000; display: flex; align-items: center; justify-content: center;
            opacity: 0; visibility: hidden; transition: all 0.3s;
        }
        .adv-modal-overlay.active { opacity: 1; visibility: visible; }
        .adv-modal {
            background: white; border-radius: var(--radius-lg); width: 90%; max-width: 720px;
            max-height: 85vh; overflow-y: auto; box-shadow: 0 24px 80px rgba(0,0,0,0.3);
            transform: translateY(20px) scale(0.97); transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
        }
        .adv-modal-overlay.active .adv-modal { transform: translateY(0) scale(1); }
        .adv-modal-header {
            display: flex; align-items: center; justify-content: space-between;
            padding: 24px 28px 16px; border-bottom: 1px solid var(--gray-200);
        }
        .adv-modal-header h3 { font-family: var(--font-heading); font-size: 22px; color: var(--gray-900); margin: 0; }
        .adv-modal-close {
            width: 36px; height: 36px; border-radius: 50%; background: var(--gray-100);
            border: none; font-size: 22px; cursor: pointer; color: var(--gray-500);
            display: flex; align-items: center; justify-content: center; transition: all 0.2s;
        }
        .adv-modal-close:hover { background: var(--gray-200); color: var(--gray-800); }
        .adv-modal-form { padding: 24px 28px 28px; }
        .adv-modal-grid {
            display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 24px;
        }
        .adv-field label {
            display: block; font-size: 13px; font-weight: 600; color: var(--gray-500);
            text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 5px;
        }
        .adv-field select, .adv-field input {
            width: 100%; padding: 10px 12px; border: 1.5px solid var(--gray-200);
            border-radius: var(--radius-sm); font-size: 14px; color: var(--gray-800);
            background: var(--gray-50); font-family: var(--font-body); transition: border-color 0.2s;
        }
        .adv-field select:focus, .adv-field input:focus {
            border-color: var(--royal-blue); outline: none; box-shadow: 0 0 0 3px rgba(26,86,219,0.1);
        }
        .adv-field input::placeholder { color: var(--gray-400); }
        .adv-modal-actions { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
        .adv-reset-btn {
            padding: 12px 24px; background: none; border: 1.5px solid var(--gray-200);
            border-radius: var(--radius-sm); font-size: 14px; font-weight: 600; color: var(--gray-500);
            cursor: pointer; font-family: var(--font-body); transition: all 0.2s;
        }
        .adv-reset-btn:hover { border-color: var(--gray-400); color: var(--gray-700); }
        .adv-search-btn {
            flex: 1; padding: 14px 24px; background: var(--amber); color: var(--gray-900); border: none;
            border-radius: var(--radius-sm); font-size: 16px; font-weight: 700; cursor: pointer;
            display: flex; align-items: center; justify-content: center; gap: 10px;
            font-family: var(--font-body); transition: background 0.2s;
        }
        .adv-search-btn:hover { background: var(--amber-dark); }
        .adv-search-btn svg { width: 18px; height: 18px; }

        /* Hero visuals */
        .hero-visual { position: relative; }
        .hero-visual-legacy { display: block; }
        .hero-visual-modern { display: none; }
        .hero-modern-shell {
            position: relative; width: 440px; height: 560px; margin: 0 auto;
            display: flex; align-items: center; justify-content: center;
        }
        .hero-modern-card {
            position: relative; z-index: 3; width: 100%; padding: 18px;
            border-radius: 34px;
            background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.08) 100%);
            border: 1px solid rgba(255,255,255,0.2);
            box-shadow: 0 28px 70px rgba(5, 16, 47, 0.5), inset 0 1px 0 rgba(255,255,255,0.35);
            backdrop-filter: blur(18px);
            overflow: hidden;
        }
        .hero-modern-card::before {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(140deg, rgba(255,255,255,0.22), transparent 34%, transparent 68%, rgba(255,255,255,0.08));
            pointer-events: none;
        }
        .hero-modern-card-top {
            display: flex; align-items: center; justify-content: space-between;
            margin-bottom: 16px; gap: 12px;
        }
        .hero-modern-live-pill, .hero-modern-watchers {
            display: inline-flex; align-items: center; gap: 8px; border-radius: 999px;
            padding: 10px 14px; font-size: 13px; font-weight: 700;
            backdrop-filter: blur(10px);
        }
        .hero-modern-live-pill {
            color: white; background: rgba(22,163,74,0.9);
            box-shadow: 0 10px 24px rgba(22,163,74,0.28);
        }
        .hero-modern-live-pill span {
            width: 8px; height: 8px; border-radius: 50%; background: white;
            animation: pulse 1.3s infinite;
        }
        .hero-modern-watchers {
            color: rgba(255,255,255,0.86); background: rgba(9,16,39,0.34);
        }
        .hero-modern-card-body { display: flex; flex-direction: column; gap: 16px; }
        .hero-modern-image-frame {
            position: relative; min-height: 360px; border-radius: 28px; overflow: hidden;
            border: 1px solid rgba(255,255,255,0.14);
            background: linear-gradient(180deg, rgba(12,22,58,0.14), rgba(12,22,58,0.46));
        }
        .hero-modern-image-frame img {
            width: 100%; height: 100%; object-fit: cover; display: block;
            transform: scale(1.06); animation: heroModernZoom 10s ease-in-out infinite alternate;
            filter: saturate(1.06) contrast(1.04);
        }
        .hero-modern-image-frame::after {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(180deg, rgba(8,17,46,0.16) 0%, rgba(8,17,46,0.04) 36%, rgba(8,17,46,0.62) 100%);
            pointer-events: none;
        }
        .hero-modern-beam {
            position: absolute; inset: -10% auto -10% -25%; width: 46%;
            background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.18) 45%, rgba(255,255,255,0) 100%);
            transform: rotate(14deg);
            animation: heroBeamSweep 7s ease-in-out infinite;
            pointer-events: none; z-index: 2;
        }
        .hero-modern-scan {
            position: absolute; left: 8%; right: 8%; height: 2px; top: 18%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.85), transparent);
            box-shadow: 0 0 20px rgba(255,255,255,0.4);
            animation: heroScanDown 5.4s ease-in-out infinite;
            z-index: 3;
        }
        .hero-modern-price-float {
            position: absolute; z-index: 4; border-radius: 22px; padding: 14px 18px;
            background: rgba(8,17,46,0.72); border: 1px solid rgba(255,255,255,0.12);
            backdrop-filter: blur(12px); color: white;
            box-shadow: 0 18px 42px rgba(8,17,46,0.35);
            animation: heroFloatCard 5.6s ease-in-out infinite;
        }
        .hero-modern-price-float span {
            display: block; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.62);
            text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px;
        }
        .hero-modern-price-float strong {
            font-family: var(--font-heading); font-size: 28px; line-height: 1;
        }
        .hero-modern-price-main { left: 22px; bottom: 30px; }
        .hero-modern-price-main strong { color: #4ade80; text-shadow: 0 0 20px rgba(74,222,128,0.42); }
        .hero-modern-price-save {
            right: 22px; top: 24px; animation-delay: -2.4s;
        }
        .hero-modern-price-save strong { color: var(--amber); text-shadow: 0 0 18px rgba(253,182,14,0.36); }
        .hero-modern-data-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
        .hero-modern-data-card {
            border-radius: 18px; padding: 14px 14px 16px;
            background: rgba(8,17,46,0.34); border: 1px solid rgba(255,255,255,0.12);
            color: white; min-height: 88px;
        }
        .hero-modern-data-card span {
            display: block; font-size: 12px; color: rgba(255,255,255,0.52);
            text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px;
        }
        .hero-modern-data-card strong {
            display: block; font-size: 14px; line-height: 1.45; font-weight: 700;
        }
        .hero-modern-chip {
            position: absolute; z-index: 4; min-width: 170px; max-width: 220px;
            border-radius: 18px; padding: 14px 16px;
            background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.18);
            backdrop-filter: blur(12px); color: white;
            box-shadow: 0 18px 40px rgba(5,16,47,0.28);
            animation: heroChipDrift 6.2s ease-in-out infinite;
        }
        .hero-modern-chip-label {
            display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 1px;
            color: rgba(255,255,255,0.56); margin-bottom: 6px;
        }
        .hero-modern-chip strong { display: block; font-size: 15px; line-height: 1.4; font-weight: 700; }
        .hero-modern-chip-top { top: -18px; right: 10px; }
        .hero-modern-chip-left { left: -34px; top: 112px; animation-delay: -1.6s; }
        .hero-modern-chip-right { right: -34px; top: 196px; animation-delay: -3.2s; }
        .hero-modern-chip-bottom { left: 26px; bottom: -18px; animation-delay: -4.6s; }
        .hero-modern-aurora {
            position: absolute; inset: auto; border-radius: 999px; filter: blur(18px);
            opacity: 0.62; z-index: 1;
        }
        .hero-modern-aurora-one {
            width: 220px; height: 220px; top: 28px; right: 26px;
            background: radial-gradient(circle, rgba(45,212,191,0.36) 0%, rgba(45,212,191,0) 72%);
            animation: heroAuroraShift 9s ease-in-out infinite;
        }
        .hero-modern-aurora-two {
            width: 240px; height: 240px; bottom: 48px; left: 24px;
            background: radial-gradient(circle, rgba(253,182,14,0.32) 0%, rgba(253,182,14,0) 72%);
            animation: heroAuroraShift 9s ease-in-out infinite reverse;
        }
        .hero-modern-orbit {
            position: absolute; inset: 50% auto auto 50%;
            border-radius: 50%; border: 1px solid rgba(255,255,255,0.14);
            transform: translate(-50%, -50%);
            z-index: 0;
        }
        .hero-modern-orbit-one {
            width: 440px; height: 440px; animation: heroOrbitSpin 18s linear infinite;
        }
        .hero-modern-orbit-two {
            width: 510px; height: 510px; border-style: dashed;
            animation: heroOrbitSpin 24s linear infinite reverse;
        }
        .hero-modern-signal {
            position: absolute; width: 16px; height: 16px; border-radius: 50%;
            background: rgba(255,255,255,0.9); box-shadow: 0 0 24px rgba(255,255,255,0.55);
            z-index: 2;
        }
        .hero-modern-signal::after {
            content: ''; position: absolute; inset: -10px; border-radius: 50%;
            border: 1px solid rgba(255,255,255,0.28); animation: heroSignalPulse 2.6s ease-out infinite;
        }
        .hero-modern-signal-one { top: 94px; right: 78px; animation: heroSignalMove 7s ease-in-out infinite; }
        .hero-modern-signal-two { bottom: 116px; left: 78px; animation: heroSignalMove 7s ease-in-out infinite reverse; }
        @keyframes heroModernZoom {
            0% { transform: scale(1.04) translateY(0); }
            100% { transform: scale(1.1) translateY(-8px); }
        }
        @keyframes heroBeamSweep {
            0% { transform: translateX(0) rotate(14deg); opacity: 0; }
            18% { opacity: 1; }
            60% { transform: translateX(310px) rotate(14deg); opacity: 0.82; }
            100% { transform: translateX(420px) rotate(14deg); opacity: 0; }
        }
        @keyframes heroScanDown {
            0%, 100% { top: 16%; opacity: 0; }
            15% { opacity: 1; }
            50% { top: 72%; opacity: 0.85; }
            100% { top: 84%; opacity: 0; }
        }
        @keyframes heroFloatCard {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }
        @keyframes heroChipDrift {
            0%, 100% { transform: translate3d(0, 0, 0); }
            50% { transform: translate3d(0, -10px, 0); }
        }
        @keyframes heroAuroraShift {
            0%, 100% { transform: scale(1) translate3d(0, 0, 0); }
            50% { transform: scale(1.12) translate3d(8px, -10px, 0); }
        }
        @keyframes heroOrbitSpin {
            from { transform: translate(-50%, -50%) rotate(0deg); }
            to { transform: translate(-50%, -50%) rotate(360deg); }
        }
        @keyframes heroSignalPulse {
            0% { transform: scale(0.6); opacity: 0.9; }
            100% { transform: scale(1.9); opacity: 0; }
        }
        @keyframes heroSignalMove {
            0%, 100% { transform: translate3d(0, 0, 0); }
            50% { transform: translate3d(-8px, 10px, 0); }
        }
        .ac-wrap {
            position: relative; width: 420px; margin: 0 auto; perspective: 800px;
            filter: drop-shadow(0 26px 60px rgba(5,16,47,0.42));
        }
        .ac-wrap::before {
            content: '';
            position: absolute; inset: 18px -18px -18px 18px; z-index: -3;
            border-radius: 32px;
            background: radial-gradient(circle at top right, rgba(74,222,128,0.2), transparent 38%),
                radial-gradient(circle at bottom left, rgba(253,182,14,0.22), transparent 42%),
                linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.02));
            border: 1px solid rgba(255,255,255,0.14);
            animation: heroLiveHalo 6s ease-in-out infinite;
        }
        .ac-wrap::after {
            content: '';
            position: absolute; top: -22px; right: -20px; width: 150px; height: 150px; z-index: -4;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255,255,255,0.24) 0%, rgba(255,255,255,0) 72%);
            filter: blur(10px);
        }
        /* Stacked cards behind */
        .ac-stack-2, .ac-stack-3 {
            position: absolute; inset: 0; border-radius: var(--radius-xl);
            background: rgba(255,255,255,0.08); border: 2px solid rgba(255,255,255,0.15);
        }
        .ac-stack-3 { transform: rotate(4deg) translateY(12px) translateX(8px) scale(0.96); z-index: -2; }
        .ac-stack-2 { transform: rotate(2deg) translateY(6px) translateX(4px) scale(0.98); z-index: -1; }
        .ac {
            width: 100%; border-radius: var(--radius-xl); overflow: hidden;
            position: relative; background: #0a0a0a;
            border: 3px solid rgba(255,255,255,0.8);
            box-shadow: 0 24px 64px rgba(0,0,0,0.4);
            animation: whiteGlow 2.5s ease-in-out infinite alternate;
            will-change: filter; z-index: 1;
            transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1);
        }
        /* Hero vehicle transition — inspired by results page card-sold-out */
        .ac.hero-sold-out {
            animation: heroSoldOut 0.85s ease-in forwards;
            pointer-events: none;
        }
        @keyframes heroSoldOut {
            0%   { filter: none; box-shadow: 0 0 0 3px #dc2626, 0 20px 60px rgba(26,86,219,0.3); opacity: 1; }
            25%  { filter: grayscale(30%); box-shadow: 0 0 0 4px #dc2626; }
            70%  { filter: grayscale(100%); box-shadow: none; opacity: 0.5; }
            100% { filter: grayscale(100%); opacity: 0; transform: scale(0.97); }
        }
        .ac.hero-fade-in {
            animation: heroFadeIn 0.65s cubic-bezier(0, 0.55, 0.45, 1) forwards;
        }
        @keyframes heroFadeIn {
            0%   { opacity: 0; transform: scale(0.96); }
            60%  { opacity: 1; transform: scale(1.015); }
            100% { opacity: 1; transform: scale(1); }
        }
        @keyframes whiteGlow {
            0% { filter: drop-shadow(0 0 12px rgba(255,255,255,0.25)); }
            100% { filter: drop-shadow(0 0 28px rgba(255,255,255,0.5)); }
        }
        @keyframes heroLiveHalo {
            0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.96; }
            50% { transform: translate3d(0, -10px, 0) scale(1.02); opacity: 1; }
        }
        /* Money rain removed - emojis only inside the card now */
        /* Full-bleed image with overlays on top */
        .ac-image { position: relative; height: 480px; overflow: hidden; }
        .ac-image img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.5s ease; }
        /* Gradient overlay for text readability */
        .ac-image::after {
            content: ''; position: absolute; inset: 0; z-index: 1;
            background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.05) 40%, rgba(0,0,0,0.15) 100%);
            pointer-events: none;
        }
        /* Top badges */
        .ac-top { position: absolute; top: 12px; left: 12px; right: 12px; z-index: 3; display: flex; justify-content: space-between; }
        .ac-live-pill {
            display: flex; align-items: center; gap: 6px;
            background: var(--green); color: white; font-size: 13px; font-weight: 800;
            padding: 7px 16px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.5px;
            box-shadow: 0 4px 12px rgba(22,163,74,0.4);
        }
        .ac-live-pill .dot { width: 8px; height: 8px; background: white; border-radius: 50%; animation: pulse 1.2s infinite; }
        .ac-viewers-pill {
            display: flex; align-items: center; gap: 5px;
            background: rgba(0,0,0,0.5); color: white; font-size: 13px; font-weight: 600;
            padding: 6px 12px; border-radius: 100px; backdrop-filter: blur(8px);
        }
        /* Bottom info overlay on image */
        .ac-bottom {
            position: absolute; bottom: 0; left: 0; right: 0; z-index: 3; padding: 20px;
        }
        .ac-vname { font-weight: 800; font-size: 20px; color: white; margin-bottom: 6px; text-shadow: 0 2px 8px rgba(0,0,0,0.5); }
        .ac-bid-display { display: flex; align-items: baseline; gap: 12px; margin-bottom: 4px; }
        .ac-bid-price {
            font-family: var(--font-heading); font-size: 42px; color: var(--green); line-height: 1;
            text-shadow: 0 2px 12px rgba(22,163,74,0.4); transition: all 0.25s;
        }
        .ac-bid-price.bump { animation: priceBump 0.35s ease; }
        @keyframes priceBump { 0%{transform:scale(1)} 40%{transform:scale(1.2);color:var(--amber);text-shadow:0 0 20px rgba(253,182,14,0.6)} 100%{transform:scale(1)} }
        .ac-retail-cross { font-size: 16px; color: rgba(255,255,255,0.5); text-decoration: line-through; }
        .ac-savings-flash {
            display: inline-block; font-size: 13px; font-weight: 700; color: var(--amber);
            opacity: 0; transform: translateY(4px); transition: all 0.3s ease;
        }
        .ac-savings-flash.show { opacity: 1; transform: translateY(0); }
        /* Bid CTA row */
        .ac-cta-row { display: flex; gap: 10px; margin-top: 12px; }
        .ac-cta-main {
            flex: 1; text-align: center; background: var(--amber); color: var(--gray-900);
            font-weight: 700; font-size: 15px; padding: 14px; border-radius: var(--radius-md);
            transition: all var(--transition); box-shadow: 0 4px 14px rgba(253,182,14,0.35);
        }
        .ac-cta-main:hover { background: var(--amber-dark); transform: translateY(-1px); }
        /* BID flash full-card */
        .ac-bid-flash {
            position: absolute; inset: 0; z-index: 4;
            display: flex; align-items: center; justify-content: center;
            background: rgba(22,163,74,0.55); opacity: 0; transition: opacity 0.3s ease; pointer-events: none;
            backdrop-filter: blur(2px);
        }
        .ac-bid-flash.show { opacity: 1; }
        .ac-bid-flash-text {
            font-family: var(--font-heading); font-size: 80px; color: white;
            text-shadow: 0 4px 30px rgba(0,0,0,0.4); letter-spacing: 6px;
            transform: scale(0.5) rotate(-5deg); transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
        }
        .ac-bid-flash.show .ac-bid-flash-text { transform: scale(1) rotate(0deg); }
        /* SOLD overlay */
        .ac-sold {
            position: absolute; inset: 0; z-index: 6;
            background: rgba(0,0,0,0.8);
            display: flex; flex-direction: column; align-items: center; justify-content: center;
            opacity: 0; transition: opacity 0.4s ease; pointer-events: none;
        }
        .ac-sold.show { opacity: 1; }
        .ac-sold-badge {
            font-family: var(--font-heading); font-size: 64px; color: var(--green);
            border: 5px solid var(--green); padding: 8px 36px; border-radius: var(--radius-md);
            transform: rotate(-12deg) scale(0.3); opacity: 0;
            transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
            box-shadow: 0 0 40px rgba(22,163,74,0.3);
        }
        .ac-sold.show .ac-sold-badge { transform: rotate(-12deg) scale(1); opacity: 1; }
        .ac-sold-savings {
            font-size: 28px; font-weight: 800; color: var(--amber); margin-top: 16px;
            opacity: 0; transform: translateY(20px) scale(0.8); transition: all 0.5s ease 0.3s;
        }
        .ac-sold.show .ac-sold-savings { opacity: 1; transform: translateY(0) scale(1); }
        .ac-sold-sub {
            font-size: 14px; color: rgba(255,255,255,0.7); margin-top: 6px;
            opacity: 0; transition: opacity 0.4s ease 0.5s;
        }
        .ac-sold.show .ac-sold-sub { opacity: 1; }
        /* Emoji burst container INSIDE auction card */
        .ac-emoji-layer { position: absolute; inset: 0; z-index: 5; pointer-events: none; overflow: hidden; }
        .ac-emoji-pop {
            position: absolute; font-size: 36px;
            opacity: 0; pointer-events: none;
            animation: emojiPop 1.2s cubic-bezier(0.34,1.56,0.64,1) forwards;
        }
        @keyframes emojiPop {
            0% { opacity: 0; transform: scale(0) translateY(20px) rotate(-20deg); }
            30% { opacity: 1; transform: scale(1.3) translateY(-30px) rotate(10deg); }
            70% { opacity: 1; transform: scale(1) translateY(-60px) rotate(-5deg); }
            100% { opacity: 0; transform: scale(0.6) translateY(-100px) rotate(15deg); }
        }
        /* Bid burst — emojis fly from center */
        .ac-bid-emoji {
            font-size: 48px;
            animation: bidEmojiBurst 0.9s cubic-bezier(0.34,1.56,0.64,1) forwards;
        }
        @keyframes bidEmojiBurst {
            0% { opacity: 0; transform: scale(0) rotate(0deg); }
            25% { opacity: 1; transform: scale(1.5) rotate(-15deg); }
            60% { opacity: 1; transform: scale(1.1) rotate(8deg); }
            100% { opacity: 0; transform: scale(0.3) rotate(20deg) translateY(-80px); }
        }
        /* SOLD celebration — confetti-like emoji shower */
        .ac-sold-emoji {
            font-size: 42px;
            animation: soldCelebrate 1.8s cubic-bezier(0.25,0.46,0.45,0.94) forwards;
        }
        @keyframes soldCelebrate {
            0% { opacity: 0; transform: translateY(0) scale(0) rotate(0deg); }
            15% { opacity: 1; transform: translateY(-20px) scale(1.4) rotate(-20deg); }
            40% { opacity: 1; transform: translateY(-80px) scale(1) rotate(15deg); }
            70% { opacity: 0.8; transform: translateY(-120px) scale(0.8) rotate(-10deg); }
            100% { opacity: 0; transform: translateY(-180px) scale(0.4) rotate(30deg); }
        }
        /* Pulsing gavel on bid */
        .ac-gavel-slam {
            position: absolute; top: 50%; left: 50%; z-index: 7;
            font-size: 72px; transform: translate(-50%,-50%) scale(0) rotate(-45deg);
            opacity: 0; pointer-events: none; transition: none;
            filter: drop-shadow(0 4px 20px rgba(0,0,0,0.5));
        }
        .ac-gavel-slam.slam {
            animation: gavelSlam 0.7s cubic-bezier(0.34,1.56,0.64,1) forwards;
        }
        @keyframes gavelSlam {
            0% { opacity: 0; transform: translate(-50%,-50%) scale(0) rotate(-45deg); }
            30% { opacity: 1; transform: translate(-50%,-50%) scale(1.8) rotate(0deg); }
            50% { opacity: 1; transform: translate(-50%,-50%) scale(1.3) rotate(5deg); }
            80% { opacity: 1; transform: translate(-50%,-50%) scale(1.1) rotate(-3deg); }
            100% { opacity: 0; transform: translate(-50%,-50%) scale(0.5) rotate(10deg); }
        }
        /* Savings counter burst */
        .ac-savings-burst {
            position: absolute; z-index: 7; pointer-events: none;
            font-size: 22px; font-weight: 900; color: var(--amber);
            text-shadow: 0 2px 8px rgba(0,0,0,0.5);
            opacity: 0;
        }
        .ac-savings-burst.burst {
            animation: savingsBurst 1.4s ease-out forwards;
        }
        @keyframes savingsBurst {
            0% { opacity: 0; transform: scale(0.5) translateY(10px); }
            20% { opacity: 1; transform: scale(1.2) translateY(-10px); }
            60% { opacity: 1; transform: scale(1) translateY(-30px); }
            100% { opacity: 0; transform: scale(0.8) translateY(-60px); }
        }
        /* Screen shake on SOLD */
        .ac.shake { animation: cardShake 0.4s ease-in-out; }
        @keyframes cardShake {
            0%,100% { transform: translateX(0); }
            20% { transform: translateX(-6px) rotate(-1deg); }
            40% { transform: translateX(6px) rotate(1deg); }
            60% { transform: translateX(-4px) rotate(-0.5deg); }
            80% { transform: translateX(4px) rotate(0.5deg); }
        }
        /* ---- Hero bid popup (results-page style) ---- */
        .ac-bid-pop {
            position: absolute; top: 50%; left: 50%;
            transform: translate(-50%,-50%) scale(0.5);
            opacity: 0; pointer-events: none; z-index: 5;
            background: rgba(0,0,0,0.85);
            backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
            border: 1.5px solid rgba(74,222,128,0.35);
            border-radius: 16px; padding: 16px 28px; text-align: center; min-width: 148px;
            box-shadow: 0 0 0 0 rgba(74,222,128,0);
        }
        .ac-bid-pop.pop-active { animation: acBidPopAnim 2.8s cubic-bezier(0.34,1.56,0.64,1) forwards; }
        @keyframes acBidPopAnim {
            0%   { opacity:0; transform:translate(-50%,-50%) scale(0.4); box-shadow:0 0 0 0 rgba(74,222,128,0); }
            12%  { opacity:1; transform:translate(-50%,-50%) scale(1.08); box-shadow:0 0 30px 8px rgba(74,222,128,0.4); }
            20%  { opacity:1; transform:translate(-50%,-50%) scale(1);   box-shadow:0 0 20px 4px rgba(74,222,128,0.2); }
            72%  { opacity:1; transform:translate(-50%,-50%) scale(1);   box-shadow:0 0 10px 2px rgba(74,222,128,0.1); }
            100% { opacity:0; transform:translate(-50%,-50%) scale(0.9); box-shadow:0 0 0 0 rgba(74,222,128,0); }
        }
        .ac-bid-pop-label { font-size: 9px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; font-weight: 700; margin-bottom: 6px; }
        .ac-bid-pop-amount { font-size: 30px; font-weight: 800; color: #4ade80; font-family: var(--font-heading); line-height: 1; text-shadow: 0 0 20px rgba(74,222,128,0.8); }
        /* Expanding rings */
        .ac-bid-ring {
            position: absolute; top: 50%; left: 50%;
            width: 60px; height: 60px; border-radius: 50%;
            border: 2px solid rgba(74,222,128,0.7); pointer-events: none; z-index: 6; opacity: 0;
            transform: translate(-50%,-50%) scale(0.4);
        }
        .ac-bid-ring.ring-go   { animation: acRingExpand 0.9s ease-out forwards; }
        .ac-bid-ring.ring-go-2 { animation: acRingExpand 0.9s ease-out 0.2s forwards; }
        @keyframes acRingExpand {
            0%   { transform: translate(-50%,-50%) scale(0.4); opacity: 0.8; }
            100% { transform: translate(-50%,-50%) scale(5.5); opacity: 0; }
        }
        /* Green flash overlay */
        .ac-flash-overlay {
            position: absolute; inset: 0; z-index: 4; background: rgba(74,222,128,0.16);
            pointer-events: none; opacity: 0; border-radius: inherit;
        }
        .ac-flash-overlay.flashing { animation: acImgFlash 0.5s ease-out forwards; }
        @keyframes acImgFlash { 0%{opacity:0.28} 100%{opacity:0} }
        /* Particles */
        .ac-particle {
            position: absolute; top: 50%; left: 50%;
            width: 7px; height: 7px; border-radius: 50%;
            pointer-events: none; z-index: 7; transform: translate(-50%,-50%);
            animation: acParticleFly 0.8s ease-out forwards;
        }
        @keyframes acParticleFly {
            0%   { transform: translate(-50%,-50%) translate(0,0) scale(1.3); opacity: 1; }
            100% { transform: translate(-50%,-50%) translate(var(--tx),var(--ty)) scale(0); opacity: 0; }
        }

        .hero-content > * { opacity: 1; transform: none; }

        /* ===================== SEARCH SECTION (inside hero duo) ===================== */
        .search-section {
            position: relative; z-index: 10;
        }
        .search-card {
            background: rgba(255,255,255,0.07); border-radius: var(--radius-xl);
            box-shadow: 0 8px 32px rgba(0,0,0,0.2);
            padding: 28px 28px;
            border: 1px solid rgba(255,255,255,0.15);
            backdrop-filter: blur(12px);
        }
        .search-card-header {
            display: flex; align-items: center; justify-content: space-between;
            margin-bottom: 18px;
        }
        .search-card-title {
            font-family: var(--font-heading); font-size: 20px; color: white;
        }
        .search-card-count {
            display: inline-flex; align-items: center; gap: 6px;
            background: rgba(22,163,74,0.2); color: var(--green);
            font-size: 13px; font-weight: 700; padding: 5px 12px; border-radius: 100px;
            border: 1px solid rgba(22,163,74,0.3);
        }
        .search-card-count .dot {
            width: 7px; height: 7px; background: var(--green); border-radius: 50%; animation: pulse 2s infinite;
        }
        .search-fields {
            display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
            align-items: end;
        }
        .search-field label {
            display: block; font-size: 13px; font-weight: 700; text-transform: uppercase;
            letter-spacing: 0.5px; color: rgba(255,255,255,0.6); margin-bottom: 5px;
        }
        .search-field select,
        .search-field input {
            width: 100%; border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius-md);
            padding: 12px 14px; font-family: var(--font-body); font-size: 14px; font-weight: 600;
            color: white; background: rgba(255,255,255,0.08); transition: all var(--transition);
            appearance: none; -webkit-appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
            background-repeat: no-repeat; background-position: right 12px center;
        }
        .search-field select option { color: var(--gray-800); background: white; }
        .search-field input { background-image: none; }
        .search-field select:focus,
        .search-field input:focus { border-color: rgba(255,255,255,0.5); outline: none; background: rgba(255,255,255,0.12); }
        .search-field input::placeholder { color: rgba(255,255,255,0.4); font-weight: 500; }
        .search-submit-btn {
            background: var(--amber); color: var(--gray-900); font-weight: 700; font-size: 15px;
            padding: 14px 28px; border-radius: var(--radius-md); display: flex; align-items: center; gap: 8px;
            transition: all var(--transition); white-space: nowrap; box-shadow: 0 4px 14px rgba(253,182,14,0.3);
            grid-column: 1 / -1; justify-content: center;
        }
        .search-submit-btn:hover { background: var(--amber-dark); transform: translateY(-1px); }
        .search-submit-btn svg { width: 18px; height: 18px; }

        .search-tags {
            display: flex; align-items: center; gap: 10px; margin-top: 16px; flex-wrap: wrap;
        }
        .search-tags span { font-size: 13px; color: rgba(255,255,255,0.5); font-weight: 500; }
        .search-tag {
            display: inline-flex; align-items: center; gap: 4px;
            background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15);
            padding: 5px 12px; border-radius: 100px; font-size: 13px; font-weight: 500;
            color: rgba(255,255,255,0.8); cursor: pointer; transition: all var(--transition);
        }
        .search-tag:hover { border-color: var(--amber); color: var(--amber); background: rgba(253,182,14,0.1); }

        /* ===================== STANDALONE SEARCH ===================== */
        .search-section-standalone {
            padding: 48px 0 56px; background: #f8fafc;
            border-bottom: 1px solid var(--gray-200);
        }
        .search-standalone-card {
            background: white; border-radius: var(--radius-lg); padding: 36px 40px;
            box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
            border: 1px solid var(--gray-200); max-width: 1000px; margin: 0 auto;
        }
        .search-standalone-header {
            display: flex; align-items: center; justify-content: space-between;
            margin-bottom: 24px; flex-wrap: wrap; gap: 12px;
        }
        .search-standalone-title {
            font-family: var(--font-heading); font-size: 26px; color: var(--gray-900); margin: 0;
        }
        .search-standalone-count {
            display: flex; align-items: center; gap: 8px;
            font-size: 14px; font-weight: 600; color: var(--green);
        }
        .dot-green {
            width: 8px; height: 8px; background: var(--green); border-radius: 50%;
            animation: pulse 2s infinite;
        }
        .search-standalone-fields {
            display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 20px;
        }
        .search-standalone-field label {
            display: block; font-size: 13px; font-weight: 600; color: var(--gray-500);
            text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px;
        }
        .search-standalone-field select,
        .search-standalone-field input {
            width: 100%; padding: 12px 14px; border: 1.5px solid var(--gray-200);
            border-radius: var(--radius-sm); font-size: 14px; color: var(--gray-800);
            background: var(--gray-50); font-family: var(--font-body);
            transition: border-color 0.2s, box-shadow 0.2s;
        }
        .search-standalone-field select:focus,
        .search-standalone-field input:focus {
            border-color: var(--royal-blue); outline: none;
            box-shadow: 0 0 0 3px rgba(26,86,219,0.1);
        }
        .search-standalone-field input::placeholder { color: var(--gray-400); }
        .search-standalone-btn {
            width: 100%; padding: 14px; background: var(--amber); color: var(--gray-900);
            border: none; border-radius: var(--radius-sm); font-size: 16px; font-weight: 700;
            cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px;
            transition: background 0.2s, transform 0.15s; font-family: var(--font-body);
        }
        .search-standalone-btn:hover { background: var(--amber-dark); transform: translateY(-1px); }
        .search-standalone-btn svg { width: 20px; height: 20px; }
        .search-standalone-tags {
            display: flex; align-items: center; gap: 10px; margin-top: 18px; flex-wrap: wrap;
        }
        .search-standalone-tags span { font-size: 13px; color: var(--gray-400); font-weight: 500; }
        .search-standalone-tags a {
            font-size: 13px; color: var(--gray-600); text-decoration: none;
            padding: 5px 12px; border: 1px solid var(--gray-200); border-radius: 100px;
            transition: all 0.2s; font-weight: 500;
        }
        .search-standalone-tags a:hover { border-color: var(--royal-blue); color: var(--royal-blue); background: rgba(26,86,219,0.04); }

        /* ===================== HERO CURSIVE + TRUST CHECKS ===================== */
        .hero-cursive {
            font-family: 'Caveat', cursive; font-size: 1.5em; font-weight: 600;
            color: #FDB60E; display: block; width: fit-content; margin-top: 6px; transform: rotate(-1deg);
            position: relative; line-height: 1.2; white-space: nowrap; padding-bottom: 5px;
        }
        .hero-cursive::before,
        .hero-cursive::after {
            content: '';
            position: absolute;
            left: 2%;
            width: 96%;
            height: 2px;
            border-radius: 999px;
            background: linear-gradient(90deg, #fdb60e 0%, #ffd768 45%, #fdb60e 100%);
            pointer-events: none;
        }
        .hero-cursive::before {
            bottom: 1px;
            opacity: 0.96;
        }
        .hero-cursive::after {
            bottom: -3px;
            opacity: 0.68;
            transform: rotate(-1.2deg);
        }
        .hero-trust-checks {
            display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 20px; margin-bottom: 20px;
        }
        .hero-check {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 14px;
            border-radius: 999px;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.15);
            font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.92);
            letter-spacing: 0.01em;
            max-width: 100%;
        }
        .hero-check-text {
            white-space: normal;
            line-height: 1.35;
        }
        .hero-check-icon {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(253,182,14,0.18);
            color: #fdb60e;
            font-size: 13px;
            line-height: 1;
            box-shadow: 0 0 0 1px rgba(253,182,14,0.35);
            animation: heroCheckSpin 6s linear infinite;
            flex-shrink: 0;
        }
        @keyframes heroCheckSpin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        .hero-check-sep { color: rgba(255,255,255,0.3); font-size: 13px; font-weight: 300; }
        .hero-check img {
            width: 22px;
            height: auto;
            border-radius: 4px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.16);
        }
        .hero-trust-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #22c55e;
            box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
        }

        /* ===================== FEATURED VEHICLES ===================== */
        .featured {
            padding: 56px 0 64px; position: relative; overflow: hidden;
            background: linear-gradient(180deg, var(--white) 0%, #f0f5ff 40%, #e0ebff 100%);
        }
        .featured::before {
            content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
            background-image: radial-gradient(circle at 20% 80%, rgba(26,86,219,0.04) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(253,182,14,0.04) 0%, transparent 50%);
            pointer-events: none;
        }
        .featured-header { text-align: center; margin-bottom: 40px; }
        /* Scrollable filter tabs with icons */
        .featured-tabs {
            display: flex; gap: 10px; overflow-x: auto; padding: 0 0 4px; scrollbar-width: none;
            -ms-overflow-style: none; justify-content: center;
        }
        .featured-tabs::-webkit-scrollbar { display: none; }
        .featured-tab {
            display: flex; align-items: center; gap: 8px;
            padding: 10px 22px; border-radius: 100px; font-size: 14px; font-weight: 600;
            color: var(--gray-600); background: var(--white); border: 1.5px solid var(--gray-200);
            transition: all var(--transition); white-space: nowrap; cursor: pointer;
        }
        .featured-tab .tab-icon { font-size: 16px; line-height: 1; }
        .featured-tab.active { background: var(--royal-blue); color: var(--white); border-color: var(--royal-blue); box-shadow: 0 4px 12px rgba(26,86,219,0.3); }
        .featured-tab:hover:not(.active) { border-color: var(--royal-blue); color: var(--royal-blue); background: rgba(26,86,219,0.04); }
        /* Vehicle grid - horizontal scroll slider */
        .vehicle-grid {
            display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory;
            scroll-behavior: smooth; padding-bottom: 8px;
            scrollbar-width: none; -ms-overflow-style: none;
        }
        .vehicle-grid::-webkit-scrollbar { display: none; }
        .vehicle-grid .vehicle-card { min-width: calc(25% - 18px); max-width: calc(25% - 18px); scroll-snap-align: start; flex-shrink: 0; }
        /* Card */
        .vehicle-card {
            background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
            border: 1.5px solid var(--gray-200); transition: all 0.4s cubic-bezier(0.4,0,0.2,1); cursor: pointer;
            position: relative; display: flex; flex-direction: column;
        }
        .vehicle-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(26,86,219,0.12); border-color: var(--royal-blue); }
        /* Live auction card accent */
        .vehicle-card.card-live { border-color: var(--green); border-width: 2px; }
        .vehicle-card.card-live:hover { border-color: var(--green); box-shadow: 0 20px 40px rgba(22,163,74,0.15); }
        /* Card top status bar */
        .vehicle-card-status {
            display: flex; align-items: center; justify-content: space-between; padding: 8px 14px;
            font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
        }
        .vehicle-card-status.status-live { background: var(--green); color: white; }
        .vehicle-card-status.status-live .status-dot { width: 7px; height: 7px; background: white; border-radius: 50%; animation: pulse 1.2s infinite; display: inline-block; margin-right: 6px; }
        .vehicle-card-status.status-saving { background: #0543e0; color: white; }
        .vehicle-card-status .status-timer { display: flex; align-items: center; gap: 4px; }
        /* Image */
        .vehicle-card-img-wrap { position: relative; height: 200px; overflow: hidden; }
        .vehicle-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
        .vehicle-card:hover .vehicle-card-img { transform: scale(1.06); }
        .vehicle-card-favorite {
            position: absolute; top: 10px; right: 10px; width: 34px; height: 34px;
            background: rgba(255,255,255,0.92); border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            transition: all var(--transition); backdrop-filter: blur(4px); z-index: 2;
        }
        .vehicle-card-favorite:hover { background: var(--white); transform: scale(1.1); }
        .vehicle-card-favorite svg { width: 18px; height: 18px; color: var(--gray-400); }
        .vehicle-card-favorite:hover svg { color: #ef4444; }
        /* Photo count badge */
        .vehicle-card-photos {
            position: absolute; bottom: 10px; left: 10px; background: rgba(0,0,0,0.65);
            color: white; font-size: 13px; font-weight: 600; padding: 3px 9px; border-radius: 6px;
            display: flex; align-items: center; gap: 4px; backdrop-filter: blur(4px);
        }
        .vehicle-card-photos svg { width: 13px; height: 13px; }
        /* Body */
        .vehicle-card-body { padding: 16px 16px 0; flex: 1; }
        p.vehicle-card-title {
            font-weight: 700; font-size: 15px; color: var(--gray-900); margin-bottom: 5px;
            white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-family: var(--font-body);
        }
        .vehicle-card-location {
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 14px;
            color: var(--royal-blue);
            margin-bottom: 2px;
            font-weight: 700;
            color: #0d48dc;
        }
        .vehicle-card-location svg { width: 13px; height: 13px; flex-shrink: 0; }
        .vehicle-card-meta {
            font-size: 13px;
            color: var(--gray-400);
            margin-bottom: 8px;
            margin-top: 6px;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .vehicle-card-meta .vehicle-card-meta-item svg {
            margin-right: 4px
        }

        .vehicle-card-meta .vehicle-card-meta-item {
            margin-right: 10px;
            padding: 5px;
            border: 1px solid;
            border-radius: 8px;
            display: inline-block;
            margin: 0;
            line-height: 18px
        }

        span.vehicle-card-meta-item.damage {
            background-color: #faeadd;
            border-color: #fae1c9;
            color: #b86208;
        }

        span.vehicle-card-meta-item.title-type {
            background-color: #e7f0e8;
            border-color: #dae6dc;
            color: #0b8b35;
        }

        span.vehicle-card-meta-item.mileage {
            background-color: #e2ebf8;
            border-color: #d2def3;
            color: #4f4f67;
        }

        .estd-retail-value {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #ffffe1;
            border: 1px solid #6d6d4c;
            border-radius: 8px;
            padding: 10px 6px;
            color: #6d6d4c;
            margin: 15px 0 15px;
            background-color: #fbf0e4;
            border-color: #f8dbb2;
        }

        .estd-retail-value .value {
            color: #000;
            font-size: 20px;
            font-weight: 700
        }

        .vehicle-card-footer {
            padding: 0 16px 16px;
            margin-top: auto;
            /* display: flex; */
        }

        .vehicle-card-price-row {
            display: flex;
            align-items: flex-end;
            gap: 26px;
            padding: 12px 0;
            border-top: 1px solid var(--gray-100);
            flex: 1;
        }

        .vehicle-card-bid-label {
            font-size: 13px;
            color: var(--gray-500);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: .3px
        }

        .vehicle-card-bid-price {
            font-weight: 800;
            font-size: 20px;
            color: var(--gray-900);
            line-height: 1.2
        }

        .vehicle-card-bid-price.price-bin {
            color: var(--green);
            color: #108133;
        }

        .vehicle-card-cta {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            width: 100%;
            font-size: 14px;
            font-weight: 700;
            padding: 11px 16px;
            border-radius: var(--radius-sm);
            transition: all var(--transition)
        }

        .vehicle-card-cta.cta-bid {
            background: var(--green);
            color: #fff
        }

        .vehicle-card-cta.cta-bid:hover {
            background: #15803d;
            transform: scale(1.02)
        }

        .vehicle-card-cta.cta-view {
            background: var(--royal-blue);
            color: #fff;
            background: #0543e0;
        }

        .vehicle-card-cta.cta-view:hover {
            background: #1447b8;
            transform: scale(1.02)
        }

        .vehicle-card-cta svg {
            width: 15px;
            height: 15px
        }

        .vehicle-card-status.status-live {
            background: linear-gradient(90deg,var(--green) 0,#22c55e 50%,var(--green) 100%);
            background-size: 200% 100%;
            animation: liveShimmer 3s ease infinite
        }

        @keyframes liveShimmer {
            0% {
                background-position: 100% 0
            }

            100% {
                background-position: -100% 0
            }
        }

        .vct-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .5px;
            padding: 3px 8px 2px;
            border-radius: 4px;
            z-index: 2;
            backdrop-filter: blur(4px);
            pointer-events: none
        }

        .vct-badge.salvage {
            background: #0543e0;
            color: #fff
        }

        .vct-badge.clean {
            background: #108134;
            color: #fff;
        }
        .vct-badge.rebuilt { background: rgba(30,64,175,0.88); color: #bfdbfe; }
        .vct-badge.non-repairable { background: rgba(127,29,29,0.9); color: #fecaca; }
        /* Bid price flash animation on live cards */
        .vehicle-card-bid-price.bid-flash { color: var(--amber); transform: scale(1.12); }
        .bid-bump-hp {
            font-size: 13px; font-weight: 700; color: var(--green); background: rgba(22,163,74,0.12);
            padding: 2px 5px; border-radius: 4px; margin-left: 6px;
            animation: bumpFadeHp 1.4s ease forwards; display: inline-block;
        }
        @keyframes bumpFadeHp { 0%{opacity:1;transform:translateY(0)} 100%{opacity:0;transform:translateY(-10px)} }
        /* Cards are rendered by JS — visible by default, animated via cardIn keyframe */

        /* ===================== BROWSE BY CATEGORY ===================== */
        .browse-section {
            padding: 80px 0 90px;
            background: linear-gradient(180deg, #f8faff 0%, var(--white) 100%);
            position: relative;
        }
        .browse-header { text-align: center; margin-bottom: 40px; }
        .browse-header .section-title { margin-bottom: 12px; }
        .browse-header p { font-size: 17px; color: var(--gray-500); max-width: 600px; margin: 0 auto; }
        .browse-tabs {
            display: flex; gap: 8px; justify-content: center; margin-bottom: 40px;
            overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none;
            padding-bottom: 4px;
        }
        .browse-tabs::-webkit-scrollbar { display: none; }
        .browse-tab {
            padding: 10px 24px; font-size: 14px; font-weight: 600; color: var(--gray-600);
            border: 1.5px solid var(--gray-200); background: var(--white); cursor: pointer;
            white-space: nowrap; border-radius: 100px; transition: all var(--transition);
        }
        .browse-tab:hover { border-color: var(--royal-blue); color: var(--royal-blue); background: rgba(26,86,219,0.03); }
        .browse-tab.active { background: var(--royal-blue); color: var(--white); border-color: var(--royal-blue); box-shadow: 0 4px 12px rgba(26,86,219,0.25); }
        .browse-panel { display: none; animation: panelFade 0.3s ease; }
        .browse-panel.active { display: block; }
        @keyframes panelFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
        /* Card-style links */
        .browse-grid { display: grid; gap: 12px; }
        .browse-grid-3 { grid-template-columns: repeat(3, 1fr); }
        .browse-grid-4 { grid-template-columns: repeat(4, 1fr); }
        .browse-grid-5 { grid-template-columns: repeat(5, 1fr); }
        .browse-link {
            display: flex; align-items: center; gap: 10px;
            padding: 14px 18px; font-size: 14px; font-weight: 600;
            color: var(--gray-800); text-decoration: none;
            background: var(--white); border: 1.5px solid var(--gray-200);
            border-radius: var(--radius-md); transition: all 0.2s ease;
        }
        .browse-link:hover {
            border-color: var(--royal-blue); background: rgba(26,86,219,0.03);
            transform: translateY(-2px); box-shadow: 0 6px 16px rgba(26,86,219,0.1);
            text-decoration: none;
        }
        .browse-link .bl-icon {
            width: 40px; height: 40px; border-radius: 10px; display: flex;
            align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0;
            background: linear-gradient(135deg, #eef2ff, #e0ebff);
        }
        .browse-link:hover .bl-icon { background: linear-gradient(135deg, #dbe4ff, #c7d7ff); }
        .browse-link .bl-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
        .browse-link .bl-name { font-weight: 600; color: var(--gray-800); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .browse-link .bl-count { font-size: 13px; font-weight: 500; color: var(--gray-400); }
        /* Compact links for yards/damage */
        .browse-link-compact {
            padding: 12px 16px; gap: 10px;
        }
        .browse-link-compact .bl-icon { width: 32px; height: 32px; border-radius: 8px; font-size: 16px; }
        /* Title type large cards */
        .browse-link-lg {
            padding: 24px; flex-direction: column; align-items: flex-start; gap: 8px;
            text-align: left;
        }
        .browse-link-lg .bl-icon { width: 48px; height: 110px; font-size: 24px; border-radius: 12px; }
        .browse-desc { font-size: 13px; font-weight: 400; color: var(--gray-500); line-height: 1.4; }
        .browse-cta { text-align: center; margin-top: 32px; }

        /* ===================== NEARBY AUCTIONS ===================== */
        .nearby-section {
            background: linear-gradient(160deg, #0F2A5E 0%, #1746A2 30%, #1E5FE0 65%, #2563EB 100%);
            overflow: hidden; position: relative;
        }
        .nearby-section::before {
            content: ''; position: absolute; inset: 0;
            background-image: radial-gradient(circle at 30% 50%, rgba(253,182,14,0.06) 0%, transparent 50%),
                radial-gradient(circle at 80% 30%, rgba(59,130,246,0.08) 0%, transparent 40%);
            pointer-events: none;
        }
        .nearby-inner {
            max-width: 1600px; margin: 0 auto; padding: 72px 60px 36px;
            display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center;
            position: relative; z-index: 1;
        }
        .nearby-left { }
        .nearby-actions {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 14px;
        }
        .nearby-live-feed {
            display: inline-flex; align-items: center; width: fit-content; max-width: 100%;
            background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
            border-radius: var(--radius-md); padding: 10px 14px; overflow: hidden; min-height: 44px;
        }
        .nearby-feed-item {
            display: block; max-width: 100%; overflow: hidden; text-overflow: ellipsis;
            font-size: 14px; color: rgba(255,255,255,0.84); white-space: nowrap;
            animation: feedSlide 4s ease infinite;
        }
        .feed-price { color: #FDB60E; font-weight: 700; }
        @keyframes feedSlide { 0%,80% { opacity:1; transform:translateY(0); } 95%,100% { opacity:0; transform:translateY(-100%); } }
        /* Yard grid */
        .nearby-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
        .nearby-answer-strip {
            max-width: 1600px; margin: 0 auto; padding: 0 60px 64px;
            display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px;
            position: relative; z-index: 1;
        }
        .ny-card {
            position: relative; display: flex; flex-direction: column; align-items: center;
            justify-content: center; text-align: center; text-decoration: none;
            padding: 28px 16px; border-radius: var(--radius-lg);
            background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
            backdrop-filter: blur(8px); transition: all 0.3s ease; overflow: hidden;
        }
        .ny-card:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.25); transform: translateY(-4px); text-decoration: none;}
        .ny-card h3 {
            font-size: 15px; font-weight: 700; color: white; margin: 10px 0 8px;
            line-height: 1.25; width: 100%; padding: 0 40px 0 18px;
        }
        .ny-count { font-family: var(--font-heading); font-size: 36px; font-weight: 700; color: #FDB60E; line-height: 1; }
        .ny-label { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 2px; font-weight: 500; }
        .ny-view-link {
            margin-top: 10px;
            font-size: 13px;
            font-weight: 700;
            color: #FDB60E;
            letter-spacing: 0.01em;
        }
        .ny-card:hover .ny-view-link {
            color: #ffffff;
        }
        .ny-badge {
            position: absolute; top: 10px; right: 10px; background: var(--green); color: white;
            font-size: 12px; font-weight: 800; padding: 3px 10px; border-radius: 100px;
            text-transform: uppercase; letter-spacing: 0.5px;
        }
        .ny-badge-soon { background: #FDB60E; color: #1a1a1a; }
        .ny-badge-upcoming { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.7); }
        .ny-pulse {
            position: absolute; top: 10px; left: 10px; width: 10px; height: 10px;
            background: var(--green); border-radius: 50%; animation: pulse 1.2s infinite;
        }
        .ny-live { border-color: rgba(22,163,74,0.3); }
        .ny-live:hover { border-color: rgba(22,163,74,0.5); box-shadow: 0 8px 24px rgba(22,163,74,0.15); }

        /* ===================== WHY SALVAGERESELLER ===================== */
        .why-us { padding: 90px 0; background: var(--white); }
        .why-us-layout { display: grid; grid-template-columns: 1fr 340px; gap: 60px; align-items: start; }
        .why-us-text { font-size: 16px; color: var(--gray-600); line-height: 1.8; margin-bottom: 16px; }
        .why-us-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
        .why-badge {
            display: flex; gap: 14px; padding: 18px 20px;
            background: var(--gray-50); border: 1px solid var(--gray-200);
            border-radius: var(--radius-md); transition: all 0.2s ease;
        }
        .why-badge:hover { border-color: var(--royal-blue); background: rgba(26,86,219,0.02); transform: translateY(-2px); }
        .why-badge-icon { font-size: 28px; line-height: 1; flex-shrink: 0; }
        .why-badge-text { display: flex; flex-direction: column; gap: 2px; }
        .why-badge-text strong { font-size: 14px; font-weight: 700; color: var(--gray-900); }
        .why-badge-text span { font-size: 13px; color: var(--gray-500); }
        /* Stats sidebar */
        .why-us-stats {
            background: linear-gradient(160deg, #0F2A5E 0%, #1746A2 50%, #1E5FE0 100%); border-radius: var(--radius-lg); padding: 36px 32px;
            display: flex; flex-direction: column; gap: 24px;
        }
        .why-stat { text-align: center; }
        .why-stat-number {
            font-family: var(--font-heading); font-size: 38px; font-weight: 700;
            color: #FDB60E; line-height: 1.1;
        }
        .why-stat-number::after { content: '+'; }
        .why-stat-pct::after { content: '%'; }
        .why-stat-label { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.6); margin-top: 4px; }
        .why-us-stats .btn-secondary {
            background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4);
        }
        .why-us-stats .btn-secondary:hover {
            background: var(--amber); color: var(--gray-900); border-color: var(--amber);
        }

        /* ===================== HOW IT WORKS ===================== */
        .how-it-works { padding: 100px 0; background: linear-gradient(160deg, #0F2A5E 0%, #1746A2 30%, #1E5FE0 65%, #2563EB 100%); position: relative; overflow: hidden; }
        .how-it-works::before {
            content: ''; position: absolute; inset: 0;
            background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
            background-size: 40px 40px; pointer-events: none;
        }
        .how-it-works .section-label { color: rgba(255,255,255,0.6); }
        .how-it-works .section-label::before { background: rgba(255,255,255,0.3); }
        .how-it-works .section-title { color: var(--white); }
        .how-it-works .section-subtitle { color: rgba(255,255,255,0.7); }
        .steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 60px; position: relative; }
        .step-connector { display: none; }
        .step-card {
            text-align: left; padding: 32px 28px; position: relative;
            background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
            border-radius: var(--radius-lg); transition: all 0.3s ease;
            display: flex; flex-direction: column;
        }
        .step-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); transform: translateY(-4px); }
        .step-top-row { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
        .step-number {
            width: 48px; height: 50px; background: #FDB60E;
            border: none; border-radius: 10px;
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0; transition: all 0.3s ease;
        }
        .step-card:hover .step-number { transform: scale(1.08); box-shadow: 0 4px 20px rgba(253,182,14,0.4); }
        .step-number span { font-family: var(--font-heading); font-size: 22px; font-weight: 700; color: #1a1a1a; }
        .step-icon-lg { font-size: 32px; line-height: 1; }
        .step-title { text-align: left; }
        .step-desc { text-align: left; flex-grow: 1; }
        .step-highlight { display: flex; flex-direction: column; gap: 6px; margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.08); }
        .step-tag {
            display: flex; align-items: center; gap: 6px;
            font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.7);
            padding: 0; background: none; border: none; border-radius: 0;
        }
        .step-tag::before { content: ''; width: 6px; height: 6px; background: #FDB60E; border-radius: 50%; flex-shrink: 0; }
        /* How It Works video player */
        .hiw-video-wrap {
            margin-top: 48px; position: relative; cursor: pointer;
            border-radius: 16px; overflow: hidden;
            box-shadow: 0 24px 64px rgba(0,0,0,0.4);
            max-width: 820px; margin-left: auto; margin-right: auto;
            aspect-ratio: 16/9; background: #0a0f1e;
        }
        .hiw-video-thumb {
            position: absolute; inset: 0; width: 100%; height: 100%;
            object-fit: cover; opacity: 0.6; transition: opacity .3s;
        }
        .hiw-video-wrap:hover .hiw-video-thumb { opacity: 0.45; }
        .hiw-video-overlay {
            position: absolute; inset: 0; display: flex; flex-direction: column;
            align-items: center; justify-content: center; gap: 14px;
        }
        .hiw-play-btn {
            width: 72px; height: 72px; background: #FDB60E; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            transition: all .25s; box-shadow: 0 8px 32px rgba(253,182,14,0.5);
        }
        .hiw-video-wrap:hover .hiw-play-btn {
            transform: scale(1.1); box-shadow: 0 12px 40px rgba(253,182,14,0.7);
        }
        .hiw-play-btn svg { margin-left: 5px; }
        .hiw-video-label {
            font-size: 14px; font-weight: 700; color: white;
            letter-spacing: .3px; text-shadow: 0 2px 8px rgba(0,0,0,0.6);
        }
        .hiw-video-badge {
            position: absolute; top: 16px; left: 16px;
            background: rgba(253,182,14,0.95); color: #111; font-size: 13px;
            font-weight: 800; padding: 4px 10px; border-radius: 6px;
            text-transform: uppercase; letter-spacing: .6px;
        }
        .hiw-video-wrap iframe {
            position: absolute; inset: 0; width: 100%; height: 100%;
            border: none;
        }
        /* Stats bar */
        .stats-bar {
            display: flex; justify-content: center; align-items: center; gap: 40px;
            margin-top: 60px; padding: 32px 48px;
            background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
            border-radius: var(--radius-lg); backdrop-filter: blur(10px);
        }
        .stat-item { text-align: center; }
        .stat-number {
            font-family: var(--font-heading); font-size: 40px; font-weight: 700;
            color: #FDB60E; line-height: 1.1;
        }
        .stat-number::after { content: '+'; }
        .stat-money::after { content: '%'; }
        .stat-label { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.6); margin-top: 4px; letter-spacing: 0.02em; }
        .stat-divider { width: 1px; height: 110px; background: rgba(255,255,255,0.15); }
        .step-icon { font-size: 36px; margin-bottom: 16px; }
        .step-title { font-family: var(--font-heading); font-size: 22px; color: var(--white); margin-bottom: 10px; }
        .step-desc { font-size: 14px; color: rgba(255,255,255,0.9); line-height: 1.7; max-width: 240px; margin: 0 auto; }

        /* ===================== VALUE PROPS ===================== */ .value-icon { width: 56px; height: 56px; background: var(--royal-blue-light); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 20px; }
        .value-title { font-family: var(--font-heading); font-size: 22px; color: var(--gray-900); margin-bottom: 10px; }
        .value-desc { font-size: 15px; color: var(--gray-500); line-height: 1.7; }

        /* ===================== PRICING ===================== */ /* ===================== COURSE ===================== */ .course-free-badge {
            display: inline-flex; align-items: center; gap: 6px;
            background: var(--amber); color: var(--gray-900); font-size: 13px; font-weight: 800;
            padding: 6px 14px; border-radius: 100px; margin-bottom: 24px; width: fit-content;
            text-transform: uppercase; letter-spacing: 1px;
        }
        .course-title { font-family: var(--font-heading); font-size: 36px; color: var(--white); line-height: 1.2; margin-bottom: 16px; }
        .course-desc { font-size: 16px; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 28px; }
        .course-modules { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
        .course-module { display: flex; align-items: center; gap: 12px; font-size: 14px; color: rgba(255,255,255,0.85); }
        .course-module svg { width: 20px; height: 20px; color: var(--amber); flex-shrink: 0; }
        .course-cta {
            display: inline-flex; align-items: center; gap: 8px;
            background: var(--white); color: var(--royal-blue); font-weight: 700; font-size: 16px;
            padding: 16px 32px; border-radius: var(--radius-md); transition: all var(--transition); width: fit-content;
        }
        .course-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); } /* ===================== BROWSE TYPES ===================== */ .makes-row { display: flex; gap: 12px; margin-top: 40px; flex-wrap: wrap; justify-content: center; } /* ===================== TESTIMONIALS ===================== */
        .testimonials,
        .education-section {
            padding: 100px 0;
            background: linear-gradient(180deg, var(--white) 0%, #f0f5ff 40%, #e0ebff 100%);
            position: relative;
            overflow: hidden;
        }
        .testimonials::before,
        .education-section::before {
            content: '';
            position: absolute;
            top: -20%;
            left: -10%;
            width: 48%;
            height: 58%;
            background: radial-gradient(circle, rgba(255,255,255,0.52) 0%, rgba(255,255,255,0) 72%);
            pointer-events: none;
        }
        .testimonial-aggregate {
            display: flex; align-items: center; justify-content: center; gap: 8px;
            font-size: 15px; color: var(--gray-500); margin-top: 12px;
        }
        .testimonial-stars-inline { color: #FDB60E; font-size: 20px; letter-spacing: 2px; }
        .testimonials-slider {
            display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory;
            padding: 40px 0 12px; scrollbar-width: none; -ms-overflow-style: none;
        }
        .testimonials-slider::-webkit-scrollbar { display: none; }
        .testimonial-card {
            background: var(--white); border-radius: var(--radius-lg); padding: 32px;
            border: 1.5px solid var(--gray-200); transition: all var(--transition);
            min-width: 360px; max-width: 400px; flex-shrink: 0; scroll-snap-align: start;
            display: flex; flex-direction: column;
        }
        .testimonial-card:hover { border-color: var(--royal-blue); box-shadow: 0 8px 24px rgba(26,86,219,0.08); transform: translateY(-3px); }
        .testimonial-card:hover { box-shadow: var(--shadow-lg); }
        .testimonial-stars { color: #FDB60E; font-size: 18px; letter-spacing: 2px; margin-bottom: 16px; }
        .testimonial-stars svg { width: 18px; height: 18px; color: var(--amber); fill: var(--amber); }
        .testimonial-text { font-size: 15px; color: var(--gray-700); line-height: 1.7; margin-bottom: 20px; font-style: italic; flex-grow: 1; }
        .testimonial-author { display: flex; align-items: center; gap: 12px; }
        .testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--royal-blue-light); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; color: var(--royal-blue); }
        .testimonial-name { font-weight: 700; font-size: 15px; color: var(--gray-900); }
        .testimonial-role { font-size: 13px; color: var(--gray-400); }

        /* ===================== FAQ ===================== */
        .faq-section { padding: 100px 0; background: var(--white); }
        /* FAQ tabs */
        .faq-tabs {
            display: flex; gap: 8px; justify-content: center; margin: 40px auto 32px;
            overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; padding-bottom: 4px;
        }
        .faq-tabs::-webkit-scrollbar { display: none; }
        .faq-tab {
            padding: 10px 22px; font-size: 14px; font-weight: 600; color: var(--gray-600);
            border: 1.5px solid var(--gray-200); background: var(--white); cursor: pointer;
            white-space: nowrap; border-radius: 100px; transition: all var(--transition);
        }
        .faq-tab:hover { border-color: var(--royal-blue); color: var(--royal-blue); }
        .faq-tab.active { background: var(--royal-blue); color: var(--white); border-color: var(--royal-blue); box-shadow: 0 4px 12px rgba(26,86,219,0.25); }
        .faq-panel { display: none; animation: panelFade 0.3s ease; }
        .faq-panel.active { display: block; }
        .faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
        .faq-item { background: var(--white); border-radius: var(--radius-md); border: 1.5px solid var(--gray-200); overflow: hidden; transition: all var(--transition); }
        .faq-item:hover { border-color: var(--royal-blue); }
        .faq-question {
            display: flex; align-items: center; justify-content: space-between; gap: 16px;
            padding: 20px 24px; width: 100%; text-align: left;
            font-size: 15px; font-weight: 600; color: var(--gray-800);
        }
        .faq-question svg { width: 20px; height: 20px; color: var(--gray-400); flex-shrink: 0; transition: transform 0.3s ease; }
        .faq-item.open .faq-question svg { transform: rotate(180deg); color: var(--royal-blue); }
        .faq-item.open .faq-question { color: var(--royal-blue); }
        .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
        .faq-answer-inner { padding: 0 24px 20px; font-size: 14px; color: var(--gray-600); line-height: 1.8; }
        .faq-item.open .faq-answer { max-height: 500px; }

        /* ===================== FREE EDUCATION ===================== */
        .education-section { padding: 90px 0; }
        .edu-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
        .edu-card {
            display: flex; align-items: center; gap: 14px; padding: 18px 20px;
            background: var(--gray-50); border: 1.5px solid var(--gray-200); border-radius: var(--radius-md);
            text-decoration: none; transition: all 0.2s ease; position: relative;
        }
        .edu-card:hover { border-color: var(--royal-blue); background: rgba(26,86,219,0.03); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(26,86,219,0.08); text-decoration: none;}
        .edu-card-featured { border-color: var(--royal-blue); background: rgba(26,86,219,0.03); }
        .edu-icon { font-size: 28px; flex-shrink: 0; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #eef2ff, #e0ebff); border-radius: 10px; }
        .edu-info h3 { font-size: 14px; font-weight: 600; color: var(--gray-800); margin: 0 0 2px; line-height: 1.3; }
        .edu-duration { font-size: 13px; color: var(--gray-400); font-weight: 500; }
        .edu-popular { position: absolute; top: -8px; right: 12px; background: var(--royal-blue); color: white; font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.5px; }

        /* ===================== BLOG ===================== */
        .blog-section { padding: 90px 0; background: linear-gradient(180deg, var(--white) 0%, #f8faff 100%); }
        .blog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
        .blog-card {
            background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg);
            overflow: hidden; text-decoration: none; transition: all 0.3s ease; display: flex; flex-direction: column;
        }
        .blog-card:hover { border-color: var(--royal-blue); transform: translateY(-4px); box-shadow: 0 12px 28px rgba(26,86,219,0.1); text-decoration: none; }
        .blog-card-img { height: 180px; overflow: hidden; }
        .blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
        .blog-card:hover .blog-card-img img { transform: scale(1.06); }
        .blog-card-body { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; }
        .blog-date { font-size: 13px; font-weight: 600; color: var(--royal-blue); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
        .blog-card h3 { font-size: 16px; font-weight: 700; color: var(--gray-900); line-height: 1.4; margin: 0 0 8px; }
        .blog-card p { font-size: 13px; color: var(--gray-500); line-height: 1.6; margin: 0; flex-grow: 1; }


        .counter { display: inline-block; }

        .hero-visual-modern { display: block; }
        .hero-visual-legacy { display: none; }
        .hero-auction-shell {
            position: relative;
            min-height: 560px;
            display: flex;
            align-items: center;
            justify-content: center;
            isolation: isolate;
        }
        .hero-auction-glow,
        .hero-auction-orbit {
            position: absolute;
            pointer-events: none;
        }
        .hero-auction-glow {
            border-radius: 999px;
            filter: blur(20px);
            opacity: 0.7;
        }
        .hero-auction-glow-one {
            width: 180px;
            height: 180px;
            top: 18px;
            right: 32px;
            background: rgba(253, 182, 14, 0.34);
        }
        .hero-auction-glow-two {
            width: 220px;
            height: 220px;
            bottom: 12px;
            left: 18px;
            background: rgba(69, 210, 120, 0.22);
        }
        .hero-auction-orbit {
            inset: 20px 12px auto auto;
            width: 420px;
            height: 420px;
            border-radius: 50%;
            border: 1px solid rgba(255,255,255,0.12);
            opacity: 0.5;
            animation: heroAuctionOrbit 18s linear infinite;
        }
        @keyframes heroAuctionOrbit {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        .hero-auction-card {
            position: relative;
            width: min(100%, 470px);
            padding: 18px;
            border-radius: 30px;
            background:
                linear-gradient(180deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.06) 100%),
                linear-gradient(180deg, #e3e4e5 0%, rgb(222 224 227 / 92%) 100%);
            border: 1px solid rgba(255,255,255,0.18);
            box-shadow: 0 18px 42px rgba(7, 22, 59, 0.24);
            backdrop-filter: blur(18px);
            overflow: hidden;
        }
        .hero-auction-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(120deg, rgba(255,255,255,0.1), transparent 35%, transparent 65%, rgba(255,255,255,0.04));
            pointer-events: none;
        }
        .hero-auction-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            margin-bottom: 14px;
            position: relative;
            z-index: 2;
        }
        .hero-auction-status,
        .hero-auction-watchers {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 14px;
            border-radius: 999px;
            font-size: 13px;
            font-weight: 700;
            color: #fff;
            letter-spacing: 0.2px;
        }
        .hero-auction-status {
            background: rgba(22, 163, 74, 0.92);
            box-shadow: 0 10px 24px rgba(22, 163, 74, 0.28);
        }
        .hero-auction-status.is-sold {
            background: rgba(220, 38, 38, 0.95);
            box-shadow: 0 10px 24px rgba(220, 38, 38, 0.26);
        }
        .hero-auction-dot,
        .hero-auction-watchers-icon {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: currentColor;
            display: inline-block;
            animation: pulse 1.35s infinite;
        }
        .hero-auction-watchers {
            background: rgba(17, 24, 39, 0.62);
            color: rgba(255,255,255,0.88);
        }
        .hero-auction-stage {
            position: relative;
            min-height: 430px;
            border-radius: 24px;
            overflow: hidden;
            background: #102a64;
            border: 1px solid rgba(255,255,255,0.16);
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
        }
        .hero-auction-stage img {
            width: 100%;
            height: 430px;
            object-fit: cover;
            transform: scale(1.01);
        }
        .hero-auction-stage-overlay {
            position: absolute;
            inset: 0;
            background:
                linear-gradient(180deg, rgba(5, 19, 48, 0.08) 0%, rgba(5, 19, 48, 0.1) 32%, rgba(5, 19, 48, 0.78) 100%),
                linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.08) 45%, transparent 65%);
            pointer-events: none;
        }
        .hero-auction-stage::after {
            content: '';
            position: absolute;
            inset: -15% auto -15% -35%;
            width: 42%;
            background: linear-gradient(90deg, transparent, rgb(243 247 250 / 40%), transparent);
            transform: skewX(-16deg);
            animation: heroAuctionSweep 4.8s ease-in-out infinite;
            pointer-events: none;
        }
        @keyframes heroAuctionSweep {
            0%, 20% { transform: translateX(0) skewX(-16deg); opacity: 0; }
            35% { opacity: 0.7; }
            100% { transform: translateX(520px) skewX(-16deg); opacity: 0; }
        }
        .hero-auction-pill {
            position: absolute;
            top: 16px;
            z-index: 2;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 9px 14px;
            border-radius: 999px;
            font-size: 13px;
            font-weight: 800;
            backdrop-filter: blur(10px);
        }
        .hero-auction-pill-save {
            left: 16px;
            background: rgba(253, 182, 14, 0.96);
            color: #111827;
            box-shadow: 0 10px 20px rgba(253,182,14,0.26);
        }
        .hero-auction-pill-time {
            right: 16px;
            background: rgba(17,24,39,0.74);
            color: #fff;
            border: 1px solid rgba(255,255,255,0.16);
        }
        .hero-auction-bottom {
            position: absolute;
            left: 18px;
            right: 18px;
            bottom: 18px;
            z-index: 2;
            padding: 18px 18px 16px;
            border-radius: 22px;
            background: linear-gradient(180deg, rgb(79 152 246 / 47%) 0%, #1d7efb 100%);
            border: 1px solid rgba(255,255,255,0.14);
            box-shadow: 0 16px 40px rgba(8, 25, 68, 0.28);
            backdrop-filter: blur(14px);
        }
        .hero-auction-lot {
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 1.1px;
            text-transform: uppercase;
            color: rgba(255,255,255,0.68);
            margin-bottom: 6px;
        }
        .hero-auction-bottom h3 {
            font-family: var(--font-heading);
            font-size: 27px;
            line-height: 1.08;
            color: #fff;
            margin-bottom: 12px;
        }
        .hero-auction-prices {
            display: flex;
            align-items: baseline;
            gap: 12px;
            margin-bottom: 6px;
            flex-wrap: wrap;
        }
        .hero-auction-current {
            font-family: var(--font-heading);
            font-size: 42px;
            line-height: 1;
            color: #4ade80;
            text-shadow: 0 0 20px rgba(74, 222, 128, 0.3);
        }
        .hero-auction-card.is-bidding .hero-auction-current {
            animation: heroAuctionBidPulse 0.55s ease;
        }
        @keyframes heroAuctionBidPulse {
            0% { transform: scale(1); }
            45% { transform: scale(1.08); }
            100% { transform: scale(1); }
        }
        .hero-auction-retail {
            font-size: 15px;
            font-weight: 700;
            color: rgba(255,255,255,0.56);
            text-decoration: line-through;
        }
        .hero-auction-savings {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 20px;
            font-weight: 700;
            color: #ffd15d;
            text-shadow: 0 0 16px rgba(253, 182, 14, 0.35);
        }
        .hero-auction-final {
            position: absolute;
            inset: 0;
            z-index: 5;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 8px;
            text-align: center;
            background: linear-gradient(180deg, rgba(5, 18, 42, 0.18) 0%, rgba(5, 18, 42, 0.76) 36%, rgba(5, 18, 42, 0.9) 100%);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.28s ease;
        }
        .hero-auction-final.is-visible {
            opacity: 1;
        }
        .hero-auction-final-label {
            font-family: var(--font-heading);
            font-size: 74px;
            line-height: 0.9;
            letter-spacing: 1px;
            font-weight: 800;
            color: #fff;
            text-shadow: 0 10px 28px rgba(0,0,0,0.55);
        }
        .hero-auction-final-save {
            font-family: var(--font-heading);
            font-size: 42px;
            line-height: 1;
            font-weight: 800;
            color: #4ade80;
            text-shadow: 0 0 24px rgba(74, 222, 128, 0.4);
        }
        .hero-auction-final-note {
            font-size: 20px;
            font-weight: 700;
            color: #ffd15d;
            text-shadow: 0 8px 20px rgba(0,0,0,0.45);
        }
        @media (prefers-reduced-motion: reduce) {
            .hero-auction-orbit,
            .hero-auction-stage::after,
            .hero-auction-dot,
            .hero-auction-watchers-icon,
            .hero-check-icon {
                animation: none !important;
            }
            .hero-auction-card.is-bidding .hero-auction-current {
                animation: none !important;
            }
        }
        @media (max-width: 1400px) {
            .hero-auction-final-label { font-size: 64px; }
            .hero-auction-final-save { font-size: 36px; }
            .hero-auction-final-note { font-size: 18px; }
        }

        /* ===================== RESPONSIVE ===================== */
        /* Large tablets / small desktops */
        @media (max-width: 1200px) {
            .hero-inner { grid-template-columns: 1fr 380px; gap: 32px; padding: 50px 24px 40px; }
            .hero h1 { font-size: 44px; }
            .ac { max-width: 380px; }
        }

        @media (max-width: 1024px) {
            .hero { padding-top: 0; }

            .hero-inner { padding: 32px 24px 32px; grid-template-columns: 1fr; gap: 32px; text-align: center; }
            .hero-content { text-align: center; }
            .hero-subtitle { margin-left: auto; margin-right: auto; font-size: 17px; }
            .hero h1 { font-size: 40px; }
            .hero-visual-modern { display: none; }
            .hero-visual-legacy { display: none; }
            .hero-filter-card { max-width: 600px; margin-left: auto; margin-right: auto; }
            .hero-filter-fields { flex-wrap: wrap; }
            .hero-filter-field { flex: 1 1 45%; min-width: 140px; }
            .hero-filter-tags { justify-content: center; }
            .hero-filter-bottom { justify-content: center; }

            .search-standalone-card { padding: 28px 24px; }
            .search-standalone-fields { grid-template-columns: 1fr 1fr; }

            .vehicle-grid .vehicle-card { min-width: calc(50% - 12px); max-width: calc(50% - 12px); }
            .browse-grid-4, .browse-grid-5 { grid-template-columns: repeat(3, 1fr); }
            .browse-grid-3 { grid-template-columns: repeat(2, 1fr); }
            .why-us-layout { grid-template-columns: 1fr; }
            .why-us-stats { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 20px; }
            .why-stat { flex: 1 1 40%; }
            .why-us-badges { grid-template-columns: 1fr; }
            .browse-tabs { justify-content: flex-start; }
            .browse-tab { padding: 9px 18px; font-size: 15px; }
            .steps-grid {
                display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
                gap: 16px; padding-bottom: 8px; scrollbar-width: none; -ms-overflow-style: none;
            }
            .steps-grid::-webkit-scrollbar { display: none; }
            .steps-grid .step-card { min-width: 280px; max-width: 320px; scroll-snap-align: start; flex-shrink: 0; }
            .step-connector { display: none; }
            .stats-bar { flex-wrap: wrap; gap: 24px; padding: 24px 32px; }
            .stat-divider { display: none; }
            .stat-item { flex: 1 1 40%; }
            .stat-number { font-size: 32px; } .testimonial-card { min-width: 280px; max-width: 300px; padding: 24px; }
            .testimonial-aggregate { flex-wrap: wrap; font-size: 15px; }
            .faq-tabs { justify-content: flex-start; }
            .faq-tab { padding: 8px 16px; font-size: 15px; }
            .nearby-inner { grid-template-columns: 1fr; padding: 56px 24px 28px; gap: 32px; }
            .nearby-grid { grid-template-columns: repeat(3, 1fr); }
            .nearby-answer-strip { grid-template-columns: 1fr; padding: 0 24px 56px; }
            .edu-grid { grid-template-columns: repeat(2, 1fr); }
            .blog-grid { grid-template-columns: repeat(2, 1fr); }
            .section-title { font-size: 32px; }
        }

        @media (max-width: 640px) {
            .hero { min-height: auto; padding-top: 0; padding-bottom: 32px; }
            .hero-inner { padding: 22px 16px 18px; grid-template-columns: 1fr; width: 100%; max-width: 100%; overflow: hidden; }
            .hero-content { text-align: center; }
            .hero h1 { font-size: 29px; line-height: 1.15; margin-bottom: 10px; }
            .hero-subtitle { font-size: 15px; line-height: 1.45; margin-left: auto; margin-right: auto; margin-bottom: 10px; }
            .hero-badge { font-size: 15px; padding: 6px 12px; }
            .hero-visual { display: none; }
            .hero-filter-card { padding: 14px 12px 12px; width: 100%; max-width: 100%; min-width: 0; border-width: 1.5px; }
            .hero-filter-title { margin-bottom: 6px; font-size: 16px; }
            .hero-filter-box { padding: 18px !important; }
            .hero-filter-top-row { margin-bottom: 6px !important; }
            .hero-filter-fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
            .hero-filter-field { grid-column: 1 / -1; flex: none; width: 100%; min-width: 0; }
            .cf-trigger { width: 100%; }
            .hero-filter-field-half { grid-column: span 1; flex: none; }
            .hero-filter-field-half .cf-trigger { font-size: 15px; padding: 9px 10px; }
            .hero-filter-field-half .cf-trigger svg { width: 12px; height: 12px; }
            .hero-filter-field-btn { grid-column: 1 / -1; }
            .hero-filter-btn { width: 100%; justify-content: center; margin-top: 2px; padding: 13px 13px; font-size: 15px; }
            .hero-filter-field label { display: none; }
            .hero-advanced-link { display: inline-flex; margin-left: auto; }
            .hero-filter-bottom {
                display: flex;
                justify-content: flex-start;
                margin-top: 8px;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
            }
            .hero-filter-bottom::-webkit-scrollbar { display: none; }
            .hero-filter-tags { display: inline-flex; justify-content: flex-start; flex-wrap: nowrap; width: max-content; min-width: 0; }
            .hero-filter-tags a { font-size: 15px; padding: 4px 10px; white-space: nowrap; }
            .hero-filter-bottom { justify-content: flex-start; }
            .hero-filter-top-row { flex-wrap: wrap; }
            .hero-advanced-link { font-size: 15px; padding: 4px 10px; }

            .search-section-standalone { padding: 32px 0 40px; }
            .search-standalone-card { padding: 20px 16px; }
            .search-standalone-header { flex-direction: column; align-items: flex-start; gap: 8px; }
            .search-standalone-title { font-size: 22px; }
            .search-standalone-fields { grid-template-columns: 1fr; }

            .hero-trust-checks { gap: 8px; justify-content: center; width: 100%; }
            .hero-check { font-size: 15px; text-align: center; justify-content: center; }
            .hero-check-sep { display: none; }
            .hero-check {
                gap: 7px;
                padding: 8px 12px;
                width: 100%;
                max-width: 470px;
                font-size: 15px;
                line-height: 1.35;
                text-align: center;
                align-items: center;
            }
            .hero-check img { width: 18px; }
            .hero-check-text { text-align: center; }
            .hero-cursive { font-size: 1.4em; display: block; width: fit-content; margin: 4px auto 0; }
            .hero-answer-card { padding: 14px 16px; }
            .hero-answer-title { font-size: 15px; }
            .featured-header { text-align: center; }
            .featured-tabs {
                overflow-x: auto; white-space: nowrap; -webkit-overflow-scrolling: touch;
                justify-content: flex-start; padding: 0 16px 4px; margin: 0 -16px;
                scroll-padding-left: 16px;
            }
            .featured-tab { flex: 0 0 auto; }
            .vehicle-grid {
                display: flex; overflow-x: auto; -webkit-overflow-scrolling: touch;
                scroll-snap-type: x mandatory; gap: 16px; padding-bottom: 8px;
                scrollbar-width: none; -ms-overflow-style: none;
            }
            .vehicle-grid::-webkit-scrollbar { display: none; }
            .vehicle-grid .vehicle-card {
                flex: 0 0 85%; max-width: 320px; scroll-snap-align: start;
                opacity: 1; transform: none; /* disable stagger on mobile scroll */
            }
            .steps-grid .step-card { min-width: 260px; max-width: 280px; } .makes-row { gap: 8px; } .course-title { font-size: 26px; }
            .nearby-inner { padding: 48px 16px 24px; }
            .nearby-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
            .nearby-answer-strip { padding: 0 16px 48px; }
            .nearby-actions { width: 100%; }
            .ny-card { padding: 20px 12px; }
            .ny-card h3 { font-size: 15px; padding: 0 36px 0 16px; }
            .ny-count { font-size: 28px; }
            .edu-grid { grid-template-columns: 1fr; }
            .blog-grid { grid-template-columns: 1fr; }
            .section-title { font-size: 28px; }
            .section-subtitle { font-size: 16px; }

            .browse-grid-3, .browse-grid-4, .browse-grid-5 { grid-template-columns: repeat(2, 1fr); }
            .browse-link-lg { padding: 16px; }
            .browse-link-compact .bl-icon { display: none; }
            .browse-tab { padding: 8px 14px; font-size: 15px; }
            .browse-header p { font-size: 15px; }

            .how-it-works, .value-props, .pricing, .course-section, .browse-types, .testimonials, .faq-section { padding: 60px 0; }
            .featured { padding: 48px 0; }
        }

        /* Very small phones */
        @media (max-width: 380px) {
            .hero h1 { font-size: 22px; }
            .hero-subtitle { font-size: 15px; }
            .hero-filter-card { padding: 14px 12px 12px; }
            .hero-filter-box { padding: 14px !important; }
            .cf-trigger { padding: 9px 10px; font-size: 15px; }
            .hero-filter-btn { padding: 10px 16px; font-size: 15px; }
            .hero-filter-title { font-size: 15px; }
            .hero-filter-field label { font-size: 15px; }
            .section-title { font-size: 24px; } }
