/* Mobile base */
.hero {
    position: relative;
    padding: calc(var(--header-height-mobile) + 2rem) 1.25rem 2.5rem;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: transparent;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.55;
    background: radial-gradient(ellipse 80% 50% at 50% -10%, var(--color-accent-light) 0%, transparent 60%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.hero-media {
    order: -1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-height: 340px;
    background: var(--color-surface-2);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center center;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    text-align: center;
    align-items: center;
}

.hero-badge {
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
    line-height: 1.15;
    margin: 0;
    max-width: 600px;
    color: var(--color-text);
    font-weight: 700;
    text-align: center;
}

.hero-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.8;
    /* اگر این رنگ هنوز برای این بخش خیلی روشن است، می‌توانید کلاس override مثل .hero-desc--dark با رنگ تیره‌تر اضافه کنید */
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
}

.hero-actions .btn {
    width: 100%;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem 2rem;
    margin-top: 1.75rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
}

.stat-num {
    font-size: var(--fs-2xl);
    font-weight: 700;
    color: var(--color-text);
}

.stat-label {
    font-size: var(--fs-xs);
    color: var(--color-text-dim);
}

/* Tablet 640px+ */
@media (min-width: 640px) {
    .hero {
        padding: calc(var(--header-height-mobile) + 2.5rem) 1.5rem 3rem;
    }

    .hero-container {
        gap: 2.5rem;
    }

    .hero-title {
        font-size: clamp(2rem, 5vw, 2.75rem);
    }

    .hero-actions {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }

    .hero-actions .btn {
        width: auto;
    }

    .hero-media {
        max-height: 420px;
    }
}

/* Desktop 1024px+ */
@media (min-width: 1024px) {
    .hero {
        padding: calc(var(--header-height) + 3rem) 0;
    }

    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 3.5rem;
        align-items: center;
    }

    .hero-media {
        order: 0;
    }

    .hero-content {
        text-align: right;
        align-items: flex-start;
    }

    .hero-title {
        font-size: var(--fs-4xl);
        max-width: 100%;
    }

    .hero-desc {
        max-width: 480px;
        margin: 0;
    }

    .hero-actions {
        justify-content: flex-start;
    }

    .hero-stats {
        justify-content: flex-start;
        gap: 2rem;
    }

    .hero-media {
        max-height: 560px;
    }
}
