:root {
    --home-primary: #14498c;
    --home-primary-dark: #0f3a6e;
    --home-accent: #c9a227;
    --home-text: #152535;
    --home-text-muted: #5f6b7a;
    --home-surface-white: #ffffff;
    --home-surface-muted: #f0f4f8;
    --home-surface-tint: #e8f0f8;
    --home-border: #dbe3ee;
    --home-radius: 16px;
    --home-shadow: 0 4px 18px rgba(20, 73, 140, 0.06);
    --home-shadow-hover: 0 10px 28px rgba(20, 73, 140, 0.1);
    --home-section-padding: 56px;
}

.home-section {
    padding: var(--home-section-padding) 0;
}

.home-section--white {
    background: var(--home-surface-white);
}

.home-section--muted {
    background: var(--home-surface-muted);
}

.home-section--tint {
    background: linear-gradient(180deg, var(--home-surface-tint) 0%, var(--home-surface-muted) 100%);
}

.home-section__header {
    max-width: 720px;
    margin: 0 auto 32px;
    text-align: center;
}

.home-section__header--wide {
    max-width: none;
}

.home-section__eyebrow {
    margin: 0 0 6px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--home-accent);
}

.home-section__title {
    margin: 0 0 12px;
    font-size: 1.72rem;
    font-weight: 700;
    color: var(--home-primary);
    line-height: 1.3;
}

.home-section__title:last-child {
    margin-bottom: 0;
}

.home-section__intro {
    margin: 0;
    font-size: 1.06rem;
    line-height: 1.65;
    color: var(--home-text-muted);
}

.home-section__actions {
    display: flex;
    justify-content: center;
    margin-top: 36px;
}

.home-section__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 200px;
    padding: 12px 24px;
    border: 1px solid var(--home-primary);
    border-radius: 10px;
    background: var(--home-primary);
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-section__btn:hover,
.home-section__btn:focus-visible {
    background: var(--home-primary-dark);
    border-color: var(--home-primary-dark);
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(20, 73, 140, 0.2);
}

.home-section__btn--outline {
    background: transparent;
    color: var(--home-primary);
}

.home-section__btn--outline:hover,
.home-section__btn--outline:focus-visible {
    background: rgba(20, 73, 140, 0.06);
    color: var(--home-primary-dark);
}

@media (max-width: 991px) {
    :root {
        --home-section-padding: 44px;
    }
}

.hero__title {
    font-size: clamp(2.15rem, 4.4vw, 4.35rem);
}

.hero__subtitle {
    font-size: clamp(1.35rem, 2.8vw, 2.2rem);
}

@media (max-width: 575px) {
    .home-section__title {
        font-size: 1.5rem;
    }

    .home-section__intro {
        font-size: 1rem;
    }

    .home-section__btn {
        width: 100%;
    }
}
