/* ═══════════════════════════════════════════════════════════════
   AutoLogic — Cyber-Hero & High-Tech Homepage Elevation Styles
   ═══════════════════════════════════════════════════════════════ */

:root {
    --cyber-dark: #0a0f1d;
    --cyber-dark-card: #111827;
    --cyber-border: rgba(255, 255, 255, 0.08);
    --cyber-glow: rgba(37, 99, 235, 0.15);
    --cyber-accent: #2563eb;
    --cyber-emerald: #10b981;
}

/* ─── Hero Precision Elevation ───────────────────────────────── */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 0 80px;
    background: radial-gradient(circle at 50% 20%, rgba(37, 99, 235, 0.06) 0%, rgba(248, 250, 252, 0.95) 70%),
                url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&q=80&w=1920') no-repeat center center/cover;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.88) 55%, rgba(241, 245, 249, 0.92) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero-badge-wrap {
    margin-bottom: 1.25rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    background: #ffffff;
    color: #1e3a8a;
    padding: 0.45rem 1.15rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: 1px solid rgba(37, 99, 235, 0.2);
    box-shadow: 0 4px 15px -3px rgba(37, 99, 235, 0.12);
}

.hero-pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: heroPulse 2s infinite;
    flex-shrink: 0;
}

@keyframes heroPulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.12;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
    max-width: 780px;
}

.hero-highlight {
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 50%, #0284c7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.12rem;
    color: #475569;
    max-width: 620px;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-weight: 400;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.75rem;
    flex-wrap: wrap;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.9rem 1.85rem;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.4);
    transition: all 0.25s ease;
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(37, 99, 235, 0.5);
    background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%);
}

.hero-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    background: #ffffff;
    color: #0f172a !important;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.9rem 1.85rem;
    border-radius: 12px;
    text-decoration: none;
    border: 1.5px solid #cbd5e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.25s ease;
}

.hero-btn-outline:hover {
    background: #f8fafc;
    border-color: #94a3b8;
    transform: translateY(-2px);
}

/* ─── Vehicle Telemetry Finder Card ──────────────────────────── */
.telemetry-finder-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 1.75rem;
    max-width: 960px;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(255,255,255,0.8) inset;
    position: relative;
}

.telemetry-finder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #10b981, #2563eb);
    border-radius: 3px 3px 0 0;
}

.telemetry-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.telemetry-badge-green {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.75rem;
    font-weight: 800;
    color: #065f46;
    background: #d1fae5;
    padding: 0.35rem 0.85rem;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.telemetry-badge-blue {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #1e40af;
    background: #eff6ff;
    border: 1px solid #dbeafe;
    padding: 0.35rem 0.85rem;
    border-radius: 30px;
    letter-spacing: 0.04em;
}

.telemetry-form {
    display: grid;
    grid-template-columns: repeat(3, 1fr) auto;
    gap: 1.1rem;
    align-items: flex-end;
}

.telemetry-group label {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.75rem;
    font-weight: 800;
    color: #334155;
    margin-bottom: 0.45rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.telemetry-group label i {
    color: #2563eb;
    font-size: 0.8rem;
}

.telemetry-select-wrap {
    position: relative;
    width: 100%;
}

.telemetry-select-wrap select {
    width: 100%;
    padding: 0.85rem 2.25rem 0.85rem 1rem;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 600;
    color: #0f172a;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.telemetry-select-wrap select:focus {
    outline: none;
    background: #ffffff;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.telemetry-select-wrap i.select-chevron {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 0.75rem;
    color: #64748b;
}

.telemetry-submit-btn {
    height: 50px;
    padding: 0 1.85rem;
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    box-shadow: 0 8px 20px -4px rgba(37, 99, 235, 0.35);
    transition: all 0.25s ease;
}

.telemetry-submit-btn:hover {
    background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px -4px rgba(37, 99, 235, 0.45);
}

/* ─── Category Showcase Grid ─────────────────────────────────── */
.section-categories {
    padding: 3rem 0;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.category-tiles-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 1rem;
}

@media (max-width: 1200px) {
    .category-tiles-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 640px) {
    .category-tiles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}

.category-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.25rem 0.65rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.03);
    min-height: 116px;
    justify-content: center;
    box-sizing: border-box;
}

.category-tile:hover {
    border-color: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px -5px rgba(37, 99, 235, 0.15);
}

.category-tile-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-size: 1.15rem;
    margin-bottom: 0.65rem;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.category-tile:hover .category-tile-icon {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
    transform: scale(1.08);
}

.category-tile-name {
    font-size: 0.76rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.25;
    transition: color 0.2s ease;
}

.category-tile:hover .category-tile-name {
    color: #2563eb;
}

/* ─── 12-Tile Japanese OEM & Precision Brand Showcase Grid ────── */
.section-brands {
    padding: 3rem 0;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
}

.brand-logo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr) !important;
    gap: 1rem !important;
}

@media (max-width: 1024px) {
    .brand-logo-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

@media (max-width: 640px) {
    .brand-logo-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
    }
}

.brand-tile {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 1.25rem 0.75rem !important;
    background: #ffffff !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 16px !important;
    text-decoration: none !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.03) !important;
    height: 110px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
}

.brand-tile:hover {
    border-color: #2563eb !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 25px -5px rgba(37, 99, 235, 0.15) !important;
    background: #ffffff !important;
}

.brand-logo-wrap {
    height: 40px !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 0.5rem !important;
    overflow: hidden !important;
}

.brand-logo-img {
    max-height: 34px !important;
    max-width: 75px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    transition: transform 0.25s ease !important;
    display: block !important;
    margin: 0 auto !important;
}

.brand-tile:hover .brand-logo-img {
    transform: scale(1.08) !important;
}

.brand-tile-name {
    font-size: 0.72rem !important;
    font-weight: 800 !important;
    color: #475569 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    transition: color 0.2s ease !important;
    line-height: 1 !important;
}

.brand-tile:hover .brand-tile-name {
    color: #2563eb !important;
}

/* ─── 4-Pillar Trust Matrix ───────────────────────────────────── */
.section-trust-matrix {
    padding: 4.5rem 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.trust-matrix-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.trust-matrix-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
}

.trust-matrix-card:hover {
    border-color: #2563eb;
    transform: translateY(-4px);
    box-shadow: 0 15px 30px -10px rgba(37, 99, 235, 0.12);
}

.trust-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.1rem;
    flex-shrink: 0;
}

.trust-matrix-card h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.trust-matrix-card p {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.55;
    margin: 0;
}

/* ─── High-Tech Service Card Elevation ───────────────────────── */
.section-services {
    padding: 5rem 0;
    background: #ffffff;
}

.cyber-section-header {
    margin-bottom: 2.75rem;
}

.cyber-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.35rem 0.85rem;
    border-radius: 30px;
    margin-bottom: 0.65rem;
}

.cyber-pill.blue {
    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
}

.cyber-pill.emerald {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
}

.cyber-pill.amber {
    background: #fffbeb;
    color: #b45309;
    border: 1px solid #fde68a;
}

.cyber-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.cyber-subtitle {
    font-size: 0.95rem;
    color: #64748b;
    max-width: 650px;
    line-height: 1.6;
    margin: 0;
}

.service-radar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-radar-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.service-radar-card:hover {
    transform: translateY(-5px);
    border-color: #2563eb;
    box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.14);
}

.service-radar-media {
    height: 190px;
    position: relative;
    overflow: hidden;
    background: #0f172a;
}

.service-radar-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-radar-card:hover .service-radar-media img {
    transform: scale(1.06);
}

.service-badge-rating {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    color: #fbbf24;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.65rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.service-badge-type {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(37, 99, 235, 0.9);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.3rem 0.65rem;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.service-radar-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-radar-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.5rem;
    line-height: 1.35;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-radar-title i {
    color: #2563eb;
    font-size: 1rem;
}

.service-radar-desc {
    font-size: 0.86rem;
    color: #64748b;
    line-height: 1.55;
    margin-bottom: 1.25rem;
    flex: 1;
}

.service-telemetry-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 0.85rem;
    background: #f8fafc;
    border-radius: 10px;
    margin-bottom: 1.25rem;
    font-size: 0.78rem;
    color: #475569;
    font-weight: 600;
}

.service-price-block {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.service-price-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #64748b;
    font-weight: 700;
}

.service-price-val {
    font-size: 1.35rem;
    font-weight: 800;
    color: #1d4ed8;
}

.service-radar-actions {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 0.65rem;
}

.service-btn-details {
    padding: 0.65rem;
    text-align: center;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    color: #334155;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.service-btn-details:hover {
    background: #f1f5f9;
    color: #0f172a;
    border-color: #94a3b8;
}

.service-btn-book {
    padding: 0.65rem;
    text-align: center;
    background: #2563eb;
    color: #ffffff !important;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.25);
}

.service-btn-book:hover {
    background: #1d4ed8;
    box-shadow: 0 6px 15px rgba(37, 99, 235, 0.35);
}

/* ─── Precision OEM Auto Parts Grid ──────────────────────────── */
.section-parts {
    padding: 5rem 0;
    background: #f8fafc;
}

.parts-radar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.part-radar-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.part-radar-card:hover {
    transform: translateY(-5px);
    border-color: #2563eb;
    box-shadow: 0 18px 36px -10px rgba(37, 99, 235, 0.12);
}

.part-radar-media {
    height: 180px;
    padding: 1.25rem;
    background: #fdfdfd;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #f1f5f9;
}

.part-radar-media img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.part-radar-card:hover .part-radar-media img {
    transform: scale(1.08);
}

.part-discount-pill {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ef4444;
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 0.25rem 0.55rem;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.part-brand-chip {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #f1f5f9;
    color: #334155;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.25rem 0.55rem;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: 1px solid #e2e8f0;
}

.part-radar-body {
    padding: 1.35rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.part-sku-badge {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.72rem;
    color: #64748b;
    margin-bottom: 0.35rem;
    display: inline-block;
}

.part-radar-title {
    font-size: 0.98rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.7rem;
}

.part-fitment-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    font-weight: 700;
    color: #059669;
    background: #ecfdf5;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    width: fit-content;
    margin-bottom: 0.9rem;
}

.part-price-row {
    display: flex;
    align-items: baseline;
    gap: 0.65rem;
    margin-top: auto;
    margin-bottom: 1rem;
}

.part-price-current {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
}

.part-price-original {
    font-size: 0.85rem;
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 500;
}

.part-btn-add {
    width: 100%;
    padding: 0.7rem;
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.28);
    transition: all 0.2s ease;
}

.part-btn-add:hover {
    background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%);
    box-shadow: 0 8px 20px -3px rgba(37, 99, 235, 0.5);
    transform: translateY(-1px);
    color: #ffffff;
}

/* ─── Curated Maintenance Bundles ────────────────────────────── */
.section-bundles {
    padding: 5rem 0;
    background: #0f172a;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.section-bundles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, rgba(15, 23, 42, 0) 70%);
    pointer-events: none;
}

.bundle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    position: relative;
    z-index: 2;
}

.bundle-card {
    background: rgba(30, 41, 59, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.bundle-card:hover {
    border-color: #3b82f6;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.bundle-card.featured {
    border-color: rgba(37, 99, 235, 0.6);
    background: linear-gradient(180deg, rgba(30, 58, 138, 0.35) 0%, rgba(30, 41, 59, 0.8) 100%);
}

.bundle-savings-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    font-weight: 800;
    background: #065f46;
    color: #34d399;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: fit-content;
}

.bundle-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.65rem;
    line-height: 1.3;
}

.bundle-desc {
    font-size: 0.88rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.bundle-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    flex: 1;
}

.bundle-checklist li {
    font-size: 0.85rem;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.bundle-checklist li i {
    color: #38bdf8;
    font-size: 0.8rem;
}

.bundle-price-box {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.25rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.bundle-btn {
    width: 100%;
    padding: 0.85rem;
    background: #2563eb;
    color: #ffffff !important;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}

.bundle-btn:hover {
    background: #1d4ed8;
    box-shadow: 0 12px 25px rgba(37, 99, 235, 0.5);
    transform: translateY(-2px);
}

/* ─── Flagship Workshop & Diagnostic Hub Spotlight ──────────── */
.section-workshop-spotlight {
    padding: 5.5rem 0;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
}

.workshop-spotlight-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.workshop-spotlight-text h2 {
    font-size: 2.35rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.workshop-spotlight-text p.lead {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.workshop-telemetry-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.25rem;
}

.workshop-telemetry-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 1.25rem;
}

.workshop-telemetry-item h5 {
    font-size: 0.95rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.35rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.workshop-telemetry-item h5 i {
    color: #2563eb;
    font-size: 0.95rem;
}

.workshop-telemetry-item p {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.workshop-hub-card {
    background: #0f172a;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.workshop-hub-media {
    height: 220px;
    position: relative;
    background: #1e293b;
}

.workshop-hub-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.workshop-live-chip {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(16, 185, 129, 0.9);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.35rem 0.85rem;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.workshop-hub-content {
    padding: 2rem;
}

.workshop-hub-content h4 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffffff;
}

.workshop-loc-pill {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    color: #e2e8f0;
}

.workshop-loc-pill i {
    color: #38bdf8;
    margin-top: 0.2rem;
}

/* ─── Verified Owner Testimonials ────────────────────────────── */
.section-testimonials {
    padding: 5rem 0;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.review-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.review-card:hover {
    border-color: #2563eb;
    transform: translateY(-4px);
    box-shadow: 0 14px 28px -6px rgba(37, 99, 235, 0.1);
}

.review-stars {
    color: #fbbf24;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 0.2rem;
}

.review-text {
    font-size: 0.88rem;
    color: #334155;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-top: 1px solid #f1f5f9;
    padding-top: 1rem;
}

.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #e0e7ff;
    color: #3730a3;
    font-weight: 800;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-author-name {
    font-size: 0.88rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.15rem;
}

.review-car-badge {
    font-size: 0.72rem;
    font-weight: 600;
    color: #059669;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* ─── Futuristic CTA Banner ──────────────────────────────────── */
.section-cta-banner {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #172554 100%);
    padding: 5.5rem 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.section-cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, rgba(15, 23, 42, 0) 70%);
}

.cta-banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.cta-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.35rem 1rem;
    border-radius: 30px;
    margin-bottom: 1.25rem;
}

.cta-banner-content h2 {
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.18;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-banner-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.65;
    margin-bottom: 2.25rem;
}

.cta-banner-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-white {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    background: #ffffff;
    color: #0f172a !important;
    font-size: 0.95rem;
    font-weight: 800;
    padding: 0.95rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.25s ease;
}

.cta-btn-white:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.cta-btn-glass {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    color: #ffffff !important;
    font-size: 0.95rem;
    font-weight: 800;
    padding: 0.95rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.cta-btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* ─── Responsive Queries ─────────────────────────────────────── */
@media (max-width: 1200px) {
    .trust-matrix-grid { grid-template-columns: repeat(2, 1fr); }
    .service-radar-grid { grid-template-columns: repeat(2, 1fr); }
    .parts-radar-grid { grid-template-columns: repeat(3, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
    .workshop-spotlight-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .bundle-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.75rem; }
}

@media (max-width: 768px) {
    .hero { padding: 130px 0 50px; min-height: auto; }
    .hero h1 { font-size: 2.2rem; }
    .hero-subtitle { font-size: 0.98rem; }
    .hero-ctas { flex-direction: column; }
    .hero-ctas a { width: 100%; justify-content: center; }
    
    .telemetry-form { grid-template-columns: 1fr; gap: 0.85rem; }
    .telemetry-submit-btn { width: 100%; justify-content: center; }
    
    .parts-radar-grid { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
    .service-radar-grid { grid-template-columns: 1fr; }
    .trust-matrix-grid { grid-template-columns: 1fr; }
    .workshop-telemetry-list { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    
    .cta-banner-content h2 { font-size: 2rem; }
    .cta-banner-actions { flex-direction: column; }
    .cta-banner-actions a { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.85rem; }
    .parts-radar-grid { grid-template-columns: 1fr; }
    .part-radar-media { height: 160px; }
}
