.cta-banner-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-banner-logo {
    flex-shrink: 0;
}

.cta-banner-logo img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    display: block;
}

.cta-banner-content {
    flex: 1;
    min-width: 200px;
}

.cta-banner-title {
    font-size: clamp(1.2rem, 2.5vw, 1.75rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cta-banner-desc {
    font-size: 0.92rem;
    opacity: 0.72;
    margin: 0.2rem 0;
    line-height: 1.6;
}

.cta-banner-action {
    flex-shrink: 0;
}

.cta-banner-btn {
    display: inline-block;
    padding: 0.65rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s ease, box-shadow 0.2s ease;
}

.cta-banner-btn:hover {
    opacity: 0.85;
}

/* ── Hero mode ──────────────────────────────────────────────── */

.cta-banner-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.cta-hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 4rem 0;
}

.cta-hero-logo-wrap {
    width: clamp(80px, 12vw, 140px);
    height: clamp(80px, 12vw, 140px);
    border-radius: 50%;
    background: #fff;
    padding: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    flex-shrink: 0;
}

.cta-hero-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cta-hero-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.cta-hero-desc {
    max-width: 560px;
    margin: 0 auto 2rem;
}

.cta-hero-desc p {
    font-size: 1rem;
    opacity: 0.7;
    line-height: 1.7;
    margin: 0.25rem 0;
}

.cta-hero-btn {
    display: inline-block;
    padding: 0.85rem 2.25rem;
    border-radius: 0.6rem;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: opacity 0.2s ease, box-shadow 0.2s ease;
}

.cta-hero-btn:hover {
    opacity: 0.88;
}

@media (max-width: 767px) {
    .cta-banner-inner {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}
