﻿/* CTA BAND - final */
.cta-band {
    position: relative;
    min-height: 380px;
    background-image: url("/img/cta/ai-human-robot.jpg");
    background-size: cover;
    background-position: right center; /* sağda net dursun */
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Üstüne renk katmanı (okunabilirlik) */
.cta-band__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 70, 95, .92) 0%, rgba(0, 70, 95, .78) 42%, rgba(0, 70, 95, .28) 80%, rgba(0, 70, 95, .12) 100% );
}

/* Hafif desen */
.cta-band::before {
    content: "";
    position: absolute;
    inset: -40px;
    background: radial-gradient(circle at 15% 40%, rgba(255,255,255,.10), transparent 45%), radial-gradient(circle at 30% 70%, rgba(255,255,255,.08), transparent 50%), radial-gradient(circle at 70% 30%, rgba(255,255,255,.08), transparent 55%), radial-gradient(circle at 85% 65%, rgba(255,255,255,.10), transparent 50%);
    opacity: .55;
    pointer-events: none;
}

/* İç içerik */
.cta-band__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 56px 24px;
    color: #fff;
}

/* Metin alanını solda sınırlayalım ki sağdaki görsel boğulmasın */
.cta-band__content {
    max-width: 560px;
}

/* Başlık + metin */
.cta-band__title {
    margin: 0 0 12px;
    font-size: 56px;
    line-height: 1.03;
    font-weight: 900;
    letter-spacing: .2px;
}

.cta-band__desc {
    margin: 0 0 22px;
    color: rgba(255,255,255,.88);
    font-size: 16px;
    line-height: 1.6;
}

/* Buton */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    background: #0aa2a2;
    color: #fff;
    font-weight: 800;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(0,0,0,.25);
    transition: transform .2s ease, background .2s ease;
}

    .cta-btn:hover {
        background: #0fc4c4;
        transform: translateY(-1px);
    }

/* Responsive */
@media (max-width: 980px) {
    .cta-band {
        min-height: 320px;
        background-position: center; /* mobilde ortala */
    }

    /* mobilde yazı okunabilir olsun diye gradient’i güçlendir */
    .cta-band__overlay {
        background: linear-gradient(180deg, rgba(0, 70, 95, .90) 0%, rgba(0, 70, 95, .72) 55%, rgba(0, 70, 95, .35) 100% );
    }

    .cta-band__inner {
        padding: 44px 18px;
        text-align: left; /* istersen center da yaparız */
    }

    .cta-band__content {
        max-width: 100%;
    }

    .cta-band__title {
        font-size: 40px;
    }
}
