/* ============================================================
   HERO — Section Variants
   ============================================================ */

/* ---- Hero Dark Gradient (Homepage / LogiVite) ---- */
.hero {
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 60%, #e8eef6 100%);
    padding: var(--space-32) 0 var(--space-24);
    overflow: hidden;
    min-height: 620px;
    display: flex;
    align-items: center;
}



/* Gradient glow accent */
.hero::after {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(225, 109, 16, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-10);
    align-items: center;
}

@media (min-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-16);
    }
}

.hero__content {
    max-width: 600px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 8px 18px;
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--orange-cta);
    background: rgba(225, 109, 16, 0.12);
    border: 1px solid rgba(225, 109, 16, 0.25);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero__title {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--blue-primary);
    margin-bottom: var(--space-6);
    letter-spacing: -0.025em;
    line-height: var(--leading-tight);
}

@media (min-width: 768px) {
    .hero__title {
        font-size: var(--text-5xl);
    }
}

@media (min-width: 1280px) {
    .hero__title {
        font-size: var(--text-6xl);
    }
}

.hero__title-highlight {
    color: var(--orange-cta);
}

.hero__subtitle {
    font-size: var(--text-lg);
    color: var(--text-body);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-8);
    max-width: 500px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    margin-bottom: var(--space-10);
}

.hero--compact .hero__actions {
    justify-content: center;
}

/* Hero image/media side */
.hero__media {
    position: relative;
    display: none;
}

@media (min-width: 1024px) {
    .hero__media {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.hero__image {
    width: 100%;
    max-width: 560px;
    border-radius: var(--radius-xl);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

/* ---- Hero Stats Bar ---- */
.hero__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
    padding-top: var(--space-8);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

@media (min-width: 768px) {
    .hero__stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hero__stat {
    text-align: center;
}

.hero__stat-number {
    font-family: var(--font-mono);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--blue-primary);
    line-height: 1;
    margin-bottom: var(--space-2);
}

@media (min-width: 768px) {
    .hero__stat-number {
        font-size: var(--text-4xl);
    }
}

.hero__stat-label {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

/* ---- Compact Hero (Inner Pages) ---- */
.hero--compact {
    min-height: auto;
    padding: var(--space-24) 0 var(--space-16);
}

.hero--compact .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
}

.hero--compact .hero__content {
    max-width: 720px;
    margin: 0 auto;
}

.hero--compact .hero__subtitle {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ---- Hero with Contact Form (Service/Product Pages) ---- */
.hero--form {
    min-height: auto;
    padding: var(--space-24) 0 var(--space-20);
}

.hero--form .hero__inner {
    grid-template-columns: 1fr;
    gap: var(--space-8);
}

@media (min-width: 1024px) {
    .hero--form .hero__inner {
        grid-template-columns: 1.3fr 1fr;
        gap: var(--space-12);
    }
}

.hero__form-box {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
}

.hero__form-title {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--bg-white);
    margin-bottom: var(--space-6);
}
