html,
body {
    font-family: 'Poppins', sans-serif !important;
}

.hero-cta-group {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    width: min(100%, 44rem);
}

.cta {
    display: flex;
    align-items: center;
    min-width: 0;
    min-height: 4rem;
    gap: 0.8rem;
    padding: 0.7rem 0.9rem;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    background: #ffffff;
    color: #1f2937 !important;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0;
    box-shadow: 0 8px 22px rgba(30, 64, 175, 0.08);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.cta:first-child {
    grid-column: 1 / -1;
}

.cta:hover,
.cta:focus-visible {
    transform: translateY(-2px);
    border-color: #93c5fd;
    box-shadow: 0 12px 26px rgba(30, 64, 175, 0.14);
}

.cta:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.2);
    outline-offset: 3px;
}

.cta__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 0.75rem;
    background: #eff6ff;
    color: #2563eb;
    font-size: 1rem;
}

.cta__arrow {
    margin-left: auto;
    color: #94a3b8;
    font-size: 0.78rem;
    transition: transform 180ms ease, color 180ms ease;
}

.cta:hover .cta__arrow,
.cta:focus-visible .cta__arrow {
    color: #2563eb;
    transform: translateX(3px);
}

@media (max-width: 640px) {
    .hero-cta-group {
        width: 100%;
        grid-template-columns: 1fr;
    }

    .cta {
        width: 100%;
    }

    .cta:first-child {
        grid-column: auto;
    }
}
