@import "partials/_stock-section-tD5wXJn.css";

/* ═══════════════════════════════════════════
           HERO SECTION
        ═══════════════════════════════════════════ */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #020e22 0%, #051937 45%, #071f42 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    animation: pulse-glow 6s ease-in-out infinite;
}

.glow-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0,194,255,0.18) 0%, transparent 70%);
    top: -100px; left: -100px;
}

.glow-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(0,80,200,0.22) 0%, transparent 70%);
    bottom: -80px; right: 30%;
    animation-delay: 3s;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50%       { opacity: 1;   transform: scale(1.08); }
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,194,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,194,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

.scan-line {
    position: absolute;
    left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0,194,255,0.3), transparent);
    animation: scan 8s linear infinite;
    z-index: 1;
}

@keyframes scan {
    0%   { top: -2px; opacity: 0; }
    5%   { opacity: 1; }
    95%  { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

.hero-container {
    position: relative;
    z-index: 2;
    padding: 0 2rem;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-inner {
    display: flex;
    align-items: center;
    min-height: 100vh;
    gap: 0;
}

/* ── Hero Left ── */
.hero-left {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 2rem 4rem 0;
    animation: fade-up 0.9s ease both;
}

@keyframes fade-up {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,194,255,0.1);
    border: 1px solid rgba(0,194,255,0.3);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 1.8rem;
}

.badge-dot {
    width: 7px; height: 7px;
    background: var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--cyan);
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.3; }
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    line-height: 1.3;
    color: var(--white);
    margin-bottom: 1.6rem;
    letter-spacing: -0.02em;
}

.hero-title .accent {
    color: var(--cyan);
    position: relative;
}

.hero-title .accent::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    bottom: -4px;
    height: 3px;
    background: linear-gradient(90deg, var(--cyan), transparent);
    border-radius: 2px;
}

.hero-title .outline-text {
    -webkit-text-stroke: 2px var(--cyan);
    color: transparent;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    line-height: 1.75;
    color: var(--silver);
    opacity: 0.85;
    max-width: 520px;
    margin-bottom: 2.4rem;
    animation: fade-up 0.9s 0.2s ease both;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fade-up 0.9s 0.35s ease both;
}

.btn-primary-mobex {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--cyan) 0%, #0099dd 100%);
    color: #021225;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 14px 28px;
    border-radius: 6px;
    border: none;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: all 0.25s ease;
    box-shadow: 0 4px 20px rgba(0,194,255,0.35);
    position: relative;
    overflow: hidden;
}

.btn-primary-mobex::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
    opacity: 0;
    transition: opacity 0.25s;
}

.btn-primary-mobex:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,194,255,0.5);
    color: #021225;
    text-decoration: none;
}

.btn-primary-mobex:hover::before { opacity: 1; }
.btn-primary-mobex:hover .btn-arrow { transform: translateX(4px); }

.btn-arrow { transition: transform 0.2s; }

.btn-outline-mobex {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 13px 28px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.25);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: all 0.25s ease;
}

.btn-outline-mobex:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    background: rgba(0,194,255,0.06);
    text-decoration: none;
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 3.5rem;
    animation: fade-up 0.9s 0.5s ease both;
}

/*.stat-item { text-align: left; }

.stat-number {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.72rem;
    color: var(--silver);
    opacity: 0.6;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

.stat-sep {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.12);
}*/

/* ── Hero Right (Car) ── */
.hero-right {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 100vh;
    overflow: visible;
}

.hero-car-wrap {
    position: relative;
    width: 115%;
    max-width: 900px;
    animation: car-slide-in 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

@keyframes car-slide-in {
    from { opacity: 0; transform: translateX(120px); }
    to   { opacity: 1; transform: translateX(0); }
}

.hero-car {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(-40px 30px 80px rgba(0,194,255,0.3));
    position: relative;
    z-index: 2;
}

.car-ground-glow {
    position: absolute;
    bottom: 6%;
    left: 5%;
    right: 0;
    height: 60px;
    background: radial-gradient(ellipse 70% 100% at 50% 100%, rgba(0,194,255,0.35), transparent);
    filter: blur(25px);
    z-index: 1;
}

.hero-car-wrap::before {
    content: '';
    position: absolute;
    right: 0; top: 20%;
    width: 2px; height: 60%;
    background: linear-gradient(180deg, transparent, var(--cyan), transparent);
    opacity: 0.4;
}

/* ═══════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════ */
.cta-section {
    background: linear-gradient(135deg, #051937, #0a2550 50%, #051937);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,194,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,194,255,0.035) 1px, transparent 1px);
    background-size: 60px 60px;
}

.cta-section .glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 300px;
    background: radial-gradient(ellipse, rgba(0,194,255,0.1) 0%, transparent 70%);
    filter: blur(60px);
    animation: none;
}

.cta-inner { position: relative; z-index: 2; }

.cta-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1rem;
    color: var(--silver);
    opacity: 0.7;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 991.98px) {
    .hero-inner {
        flex-direction: column;
        min-height: auto;
        padding: 3rem 0 0;
    }

    .hero-left {
        flex: unset;
        max-width: 100%;
        padding: 1rem 1.5rem 2rem 1.5rem;
        text-align: center;
    }

    .hero-badge     { margin: 0 auto 1.8rem; }
    .hero-ctas      { justify-content: center; }
    .hero-stats     { justify-content: center; }
    .hero-subtitle  { margin: 0 auto 2.4rem; }

    .hero-right {
        flex: unset;
        min-height: auto;
        width: 100%;
        justify-content: center;
    }

    .hero-car-wrap {
        margin-right: 0;
        margin-top: 0;
        max-width: 90vw;
        width: 100%;
    }

    .hero-title .accent::after {
        left: 50%;
        transform: translateX(-50%);
        right: auto;
        width: 120px;
    }
}

@media (max-width: 575.98px) {
    .hero-title  { font-size: 2rem; }
    .hero-stats  { gap: 1.2rem; }
    /*.stat-number { font-size: 1.3rem; }*/
}
