.home-cta {
    padding: 52px 0;
    background: linear-gradient(135deg, #0d2340 0%, #14498c 48%, #1a5a9e 100%);
}

.home-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.home-cta__content {
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 0;
}

.home-cta__icon {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.home-cta__icon svg {
    display: block;
    width: 44px;
    height: 44px;
    color: #ffffff;
    stroke: #ffffff;
}

.home-cta__copy {
    min-width: 0;
}

.home-cta__eyebrow {
    margin: 0 0 6px;
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #f0c96a;
}

.home-cta__text {
    margin: 0;
    font-size: 1.24rem;
    font-weight: 600;
    line-height: 1.5;
    color: #ffffff;
}

.home-cta__btn {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    padding: 13px 26px;
    border: 2px solid #ffffff;
    border-radius: 10px;
    background: #ffffff;
    color: #14498c;
    font-size: 0.94rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.home-cta__btn:hover,
.home-cta__btn:focus-visible {
    background: #f0c96a;
    border-color: #f0c96a;
    color: #0d2340;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

@media (max-width: 767px) {
    .home-cta {
        padding: 40px 0;
    }

    .home-cta__inner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .home-cta__content {
        flex-direction: column;
        gap: 16px;
    }

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