/* ============================================
   HERO SECTION — LinKo-Metal Homepage (Light)
   ============================================ */

.hero-section {
    background: var(--gray-50);
    padding: 40px 40px 48px;
    overflow: hidden;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(0, 47, 255, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.hero-section__inner {
    display: flex;
    align-items: center;
    gap: 48px;
}

/* === LEFT: Content (50%) === */
.hero-section__content {
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
    z-index: 1;
}

.hero-section__title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--gray-900);
    margin: 0 0 16px;
    letter-spacing: -1.5px;
}

.hero-section__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--gray-600);
    margin: 0 0 32px;
    max-width: 520px;
}

/* === Stats Row === */
.hero-section__stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 32px;
}

.hero-section__stat {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hero-section__stat-value {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    letter-spacing: -0.3px;
}

.hero-section__stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-section__stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-300);
    flex-shrink: 0;
}

/* === Buttons === */
.hero-section__buttons {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 12px;
}

.hero-section__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 250ms ease-out;
    text-decoration: none;
    line-height: 1;
    border: 2px solid transparent;
}

.hero-section__btn svg {
    flex-shrink: 0;
}

/* Primary (blue) */
.hero-section__btn--primary {
    background: var(--brand);
    color: var(--white);
    border-color: var(--brand);
    box-shadow: var(--shadow-brand);
}

.hero-section__btn--primary:hover {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
    box-shadow: 0 6px 20px rgba(0, 47, 255, 0.3);
    transform: translateY(-2px);
    color: var(--white);
    text-decoration: none;
}

/* Secondary (outline) */
.hero-section__btn--secondary {
    background: var(--white);
    color: var(--gray-800);
    border-color: var(--gray-300);
}

.hero-section__btn--secondary:hover {
    background: var(--gray-100);
    border-color: var(--gray-400);
    transform: translateY(-2px);
    color: var(--gray-900);
}

/* === RIGHT: Image (50%) === */
.hero-section__image {
    flex: 1;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 440px;
}

.hero-section__image img {
    width: 100%;
    height: 100%;
    min-height: 440px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
}

/* Delivery badge overlay */
.hero-section__badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 18px;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.hero-section__badge svg {
    flex-shrink: 0;
    color: var(--green-500);
}

.hero-section__badge span {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-800);
    line-height: 1.3;
}

/* ===========================
   RESPONSIVE
   =========================== */

/* Tablets */
@media (max-width: 1200px) {
    .hero-section {
        padding: 36px 24px 44px;
    }

    .hero-section__title {
        font-size: 34px;
    }

    .hero-section__subtitle {
        font-size: 16px;
    }

    .hero-section__inner {
        gap: 36px;
    }

    .hero-section__content {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Mobile landscape */
@media (max-width: 960px) {
    .hero-section {
        padding: 28px 20px 36px;
    }

    .hero-section__inner {
        flex-direction: column;
        gap: 28px;
    }

    .hero-section__content {
        flex: none;
        max-width: 100%;
    }

    .hero-section__title {
        font-size: 30px;
        letter-spacing: -1px;
    }

    .hero-section__subtitle {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .hero-section__stats {
        margin-bottom: 24px;
        gap: 16px;
    }

    .hero-section__stat-value {
        font-size: 17px;
    }

    .hero-section__image {
        min-height: 260px;
        width: 100%;
    }

    .hero-section__image img {
        min-height: 260px;
    }
}

/* Mobile portrait */
@media (max-width: 600px) {
    .hero-section {
        padding: 24px 12px 32px;
    }

    .hero-section__title {
        font-size: 24px;
        letter-spacing: -0.8px;
        margin-bottom: 12px;
    }

    .hero-section__subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .hero-section__stats {
        gap: 12px;
        margin-bottom: 24px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-section__stat-value {
        font-size: 14px;
    }

    .hero-section__stat-label {
        font-size: 11px;
    }

    .hero-section__stat-divider {
        height: 28px;
    }

    .hero-section__buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-section__btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }

    .hero-section__image {
        min-height: 200px;
        margin-left: -15px;
        margin-right: -15px;
        border-radius: 0;
    }

    .hero-section__image img {
        min-height: 200px;
        border-radius: 0;
    }

    .hero-section__badge {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 10px 14px;
        gap: 10px;
    }

    .hero-section__badge svg {
        width: 20px;
        height: 20px;
    }

    .hero-section__badge span {
        font-size: 13px;
    }
}
