/* ================================ */
/*  VEHICLES PAGE — DEDICATED STYLES */
/* ================================ */

/* ── HERO ─────────────────────────────────────────── */
.veh-hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 160px 8% 100px;
    background: var(--primary);
    position: relative;
    overflow: hidden;
    gap: 60px;
}

/* Decorative rings */
.veh-hero__ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0, 242, 255, 0.06);
    pointer-events: none;
}

.veh-hero__ring--1 {
    width: 600px; height: 600px;
    top: 50%; right: -100px;
    transform: translateY(-50%);
}

.veh-hero__ring--2 {
    width: 900px; height: 900px;
    top: 50%; right: -250px;
    transform: translateY(-50%);
    border-color: rgba(0, 242, 255, 0.03);
}

.veh-hero__ring--3 {
    width: 300px; height: 300px;
    bottom: 80px; left: 10%;
    border-color: rgba(0, 242, 255, 0.04);
}

.veh-hero__orb {
    position: absolute;
    width: 500px; height: 500px;
    top: 50%; right: 5%;
    transform: translateY(-50%);
    background: radial-gradient(circle, rgba(0, 242, 255, 0.05) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

.veh-hero__content {
    position: relative;
    z-index: 2;
}

.veh-hero h1 {
    font-size: clamp(3.5rem, 10vw, 8rem);
    line-height: 0.9;
    margin: 1.5rem 0;
}

.veh-hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 500px;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.veh-hero__chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Right side large icon display */
.veh-hero__icon-display {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.veh-icon-circle {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(0, 242, 255, 0.04);
    border: 1px solid rgba(0, 242, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: var(--accent);
    filter: drop-shadow(0 0 40px rgba(0, 242, 255, 0.15));
    position: relative;
}

.veh-icon-circle::before {
    content: '';
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    border: 1px dashed rgba(0, 242, 255, 0.08);
}

.veh-icon-circle::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 1px dashed rgba(0, 242, 255, 0.04);
}

/* ── PROCESS TIMELINE ──────────────────────────────── */
.veh-process {
    padding: 120px 8%;
    background: var(--primary);
}

.veh-process__sub {
    text-align: center;
    color: var(--text-muted);
    font-size: 1rem;
    margin-top: 1rem;
}

.veh-process__timeline {
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.veh-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 30px;
    position: relative;
}

.veh-step__left {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.veh-step__num {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(0, 242, 255, 0.05);
    border: 1px solid rgba(0, 242, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
    flex-shrink: 0;
}

.veh-step__line {
    width: 1px;
    flex: 1;
    min-height: 40px;
    background: linear-gradient(to bottom, rgba(0, 242, 255, 0.15), rgba(0, 242, 255, 0.03));
    margin: 8px 0;
}

.veh-step__card {
    background: #010a1a;
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    margin-bottom: 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.veh-step__card:hover {
    border-color: var(--accent);
    box-shadow: 0 20px 50px rgba(0, 242, 255, 0.06);
    transform: translateX(6px);
}

.veh-step__icon {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px var(--accent-glow));
}

.veh-step__card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    color: #fff;
}

.veh-step__card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.veh-step__tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.veh-step__tags span {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 12px;
    border: 1px solid rgba(0, 242, 255, 0.12);
    border-radius: 50px;
    color: var(--text-muted);
}

/* ── CTA ───────────────────────────────────────────── */
.veh-cta {
    padding: 120px 8%;
    background: #01040a;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--glass-border);
}

.veh-cta__orb {
    position: absolute;
    width: 600px;
    height: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(0, 242, 255, 0.04) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

.veh-cta__content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0 auto;
}

.veh-cta__content h2 {
    font-size: 3rem;
    margin: 1.5rem 0;
}

.veh-cta__content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 900px) {
    .veh-hero {
        grid-template-columns: 1fr;
    }
    .veh-hero__icon-display { display: none; }
    .veh-step { grid-template-columns: 50px 1fr; gap: 16px; }
    .veh-step__num { width: 44px; height: 44px; font-size: 0.85rem; }
    .veh-cta__content h2 { font-size: 2rem; }
}
