/* ----------------------------- */
/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(216, 101, 56, 0.05), rgba(88, 107, 223, 0.06));
    padding: 4.5rem 1rem;
}

/* Hero Container */
.hero-container {
    max-width: 1400px;
    margin: auto;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

/* ----------------------------- */
/* Hero Content (Left) */
.hero-content {
    flex: 1;
}

/* Eyebrow */
.hero-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--primary);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

/* H1 */
.hero-content h1 {
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.25;
    margin-bottom: 1.2rem;
}

/* Subtext */
.hero-subtext {
    font-size: 1.05rem;
    max-width: 600px;
    margin-bottom: 1.5rem;
    color: rgba(0, 0, 0, 0.75);
}

/* Points */
.hero-points {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.hero-points li {
    position: relative;
    padding-left: 1.6rem;
    margin-bottom: 0.6rem;
    font-weight: 500;
}

.hero-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

/* Actions */
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-lg {
    padding: 0.65rem 1.4rem;
    font-size: 1.05rem;
}

/* Stats Cards */
.hero-visual {
    display: flex;
    gap: 1.2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-stat {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 220px;
}

.hero-stat strong {
    display: block;
    font-size: 1.8rem;
    color: var(--primary);
}

.hero-stat span {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.7);
}

/* ----------------------------- */
/* Hero Slider (Right) */
.hero-slider {
    flex: 0.9;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.slider-track {
    display: flex;
    transition: transform 0.8s ease-in-out;
}

.slider-track img {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    min-height: 420px;
    max-height: 80vh;
}

/* ----------------------------- */
/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
        align-items: center;
    }

    .hero-visual {
        justify-content: center;
    }

    .hero-slider {
        width: 100%;
        margin-top: 2rem;
    }

    .slider-track img {
        min-height: 260px;
    }

    .slider-track img {
        max-height: 50vh;
    }
}
