/* ============================================
   AL-QAND EXCHANGE — HERO SECTION
   ============================================ */

/* ---------- Hero Section ---------- */
.hero {
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg-wave {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    max-width: none;
    height: auto;
    opacity: 0.5;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.hero > .wrap {
    position: relative;
    z-index: 1;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--orange-soft);
    margin-bottom: 28px;
}

.eyebrow .line {
    width: 28px;
    height: 2px;
    background: var(--orange);
}

.hero-title {
    font-size: clamp(2.6rem, 6.4vw, 5.4rem);
    line-height: 1.0;
    font-weight: 700;
    margin-bottom: 32px;
    font-family: var(--font-display);
    color: var(--ink);
}

.hero-title .accent {
    color: var(--orange);
    text-shadow: 0 0 40px var(--orange-glow);
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--ink-soft);
    max-width: 520px;
    line-height: 1.65;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
}

.hero-stats {
    margin-top: 80px;
    padding-top: 32px;
    /*border-top: 2px solid var(--orange);*/
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.hero-stats .num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--orange);
    text-shadow: 0 0 30px var(--orange-glow);
}

.hero-stats .lbl {
    font-size: 0.82rem;
    color: var(--ink-soft);
    margin-top: 6px;
}

.hero-image-wrapper {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-image {
    max-width: 100%;
    height: auto;
    display: block;
    
    /* Optional: Add animation */
    animation: heroImageFadeIn 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Animation for hero image */
@keyframes heroImageFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-logo-image {
        max-width: 80%;
        margin: 0 auto;
    }
    
    .hero-image-wrapper {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-logo-image {
        max-width: 100%;
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .hero-logo-image {
        animation: none;
        opacity: 1;
        transform: none;
    }

    body::before,
    body::after {
        animation: none;
        transform: none;
    }
}
