/* ===== Trang chủ: biến dùng chung & layout container ===== */
:root {
    --home-container: 87.5rem;
    --home-gutter: 1.25rem;
    --home-radius: 1rem;
    --home-blue: #1d5fae;
    --home-blue-dark: #0b3a73;
    --home-orange: #f3722c;
    --home-orange-dark: #e0631f;
    --home-text: #33394a;
    --home-text-light: #6b7280;
}

.home-section {
    padding: 4rem 0;
}

.home-container {
    max-width: var(--home-container);
    margin: 0 auto;
    padding: 0 var(--home-gutter);
}

.home-section__head {
    text-align: center;
    max-width: 46rem;
    margin: 0 auto 2.5rem;
}

.home-section__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--home-blue-dark);
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

.home-section__desc {
    font-size: 1rem;
    color: var(--home-text-light);
    line-height: 1.6;
}

.home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    background: var(--home-orange);
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 3.125rem;
    white-space: nowrap;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.home-btn:hover {
    background: var(--home-orange-dark);
    transform: translateY(-2px);
}

.home-btn--outline {
    background: transparent;
    border: 1.5px solid var(--home-blue);
    color: var(--home-blue);
}

.home-btn--outline:hover {
    background: var(--home-blue);
    color: #fff;
}

.home-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--home-orange);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: underline;
}

.home-link svg {
    width: 0.875rem;
    height: 0.875rem;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .home-section {
        padding: 3rem 0;
    }

    .home-section__title {
        font-size: 1.625rem;
    }
}

@media (max-width: 767px) {
    .home-section {
        padding: 2.25rem 0;
    }

    .home-section__title {
        font-size: 1.375rem;
    }

    .home-section__desc {
        font-size: 0.9375rem;
    }

    .home-section__head {
        margin-bottom: 1.75rem;
    }
}
