.hero-section {
    padding: 90px 0 44px;
    background: #f8fafc;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: center;
}

.hero-copy {
    text-align: center;
}

.hero-pill {
    display: inline-block;
    border: 1px solid #fee2e2;
    background: #fff1f2;
    color: #e63946;
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 600;
    font-size: 0.84rem;
    margin-bottom: 16px;
}

.hero-title {
    margin: 0;
    font-weight: 800;
    font-size: 2rem;
    line-height: 1.18;
    color: #0f172a;
}

.hero-title span {
    color: #e63946;
    display: inline-block;
}

.hero-subtitle {
    max-width: 640px;
    margin: 14px auto 18px;
    color: #475569;
    font-size: 0.98rem;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.hero-stat-card {
    min-width: 126px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.hero-stat-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f172a;
}

.hero-stat-label {
    font-size: 0.82rem;
    color: #64748b;
}

.hero-search {
    width: 100%;
}

@media (min-width: 1024px) {
    .hero-section {
        padding: 136px 0 70px;
    }

    .hero-layout {
        grid-template-columns: 1fr 480px;
        gap: 40px;
    }

    .hero-copy {
        text-align: left;
    }

    .hero-title {
        font-size: 3.1rem;
    }

    .hero-subtitle {
        margin-left: 0;
    }

    .hero-stats {
        justify-content: flex-start;
    }
}
