#cta-section {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, 'Helvetica Neue', Arial;
    box-sizing: border-box;
}
#cta-section *,
#cta-section *::before,
#cta-section *::after {
    box-sizing: inherit;
}

/* ===== Mobile-first layout ===== */
#cta-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 18px;
    background: linear-gradient(135deg,#0f172a 0%, #0b1220 100%);
    color: #e6eef8;
}

.cta-wrap {
    width: 100%;
    max-width: 880px;
    border-radius: 18px;
    padding: 22px;
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
    backdrop-filter: blur(6px);
    box-shadow: 0 6px 30px rgba(2,6,23,0.6);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cta-head {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.eyebrow {
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    opacity: .85;
    color: rgba(230,238,248,0.85);
}

.headline {
    font-size: 1.5rem;
    line-height: 1.05;
    font-weight: 700;
    margin: 0;
}

.headline .dynamic {
    display: inline-block;
    position: relative;
    padding-left: 6px;
}

/* Animated word carousel inside headline */
.word-list {
    height: 1.05em;
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
}

.word-list > span {
    display: block;
    transform: translateY(100%);
    will-change: transform;
}

.word-list > span.active {
    animation: slideInOut 6s linear infinite;
}

@keyframes slideInOut {
    0% {
        transform: translateY(120%);
        opacity: 0;
    }

    8% {
        transform: translateY(0%);
        opacity: 1;
    }

    30% {
        transform: translateY(0%);
        opacity: 1;
    }

    38% {
        transform: translateY(-120%);
        opacity: 0;
    }

    100% {
        transform: translateY(-120%);
        opacity: 0;
    }
}

.subtext {
    font-size: 1.4rem;
    color: rgba(230,238,248,0.82);
    opacity: .95;
}

.cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-call {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 12px;
    background: linear-gradient(90deg,#0637a9,#0621d4);
    color: white;
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(124,58,237,0.12);
    transform: translateY(0);
    transition: transform .18s ease, box-shadow .18s ease;
}

.btn-call:active {
    transform: translateY(1px);
}

.btn-call::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    filter: blur(16px);
    opacity: 0.3;
    transition: opacity .2s ease;
    background: radial-gradient(circle at 10% 20%, rgba(10, 36, 149, 0.884), transparent 10%),
                radial-gradient(circle at 90% 80%, rgba(5, 60, 225, 0.938), transparent 12%);
}
.btn-call:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(2,6,23,0.6);
}

.btn-call:active::before {
    opacity: 0.18;
}

.call-icon {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(3, 11, 59, 0.93);
    backdrop-filter: blur(4px);
}

@media (min-width:720px) {
    .cta-wrap {
        flex-direction: row;
        align-items: center;
        padding: 26px 26px;
    }
    .cta-head {
        flex: 1;
    }
    .headline {
        font-size: 1.5rem;
    }
    .subtext {
        font-size: 1.3rem;
    }
}

@media (min-width:1100px) {
    .headline {
        font-size: 1.5rem;
    }
    .cta-wrap {
        padding: 1.4rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .word-list > span {
        animation: alternate;
        transform: none;
        opacity: 1;
    }
    .btn-call {
        transition: none;
    }
}

.no-select {
    user-select: none;
}
