.cta-section {
    padding: var(--spacing-xl) 5%;
    background: var(--gradient-1);
    position: relative;
    overflow: hidden;
}

/* Decorative circles */
.cta-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    pointer-events: none;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content .section-label {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.3);
    color: #fff;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 3.25rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.82);
    margin-bottom: 2.75rem;
    line-height: 1.75;
}

.cta-form {
    display: flex;
    gap: 0.75rem;
    max-width: 540px;
    margin: 0 auto;
}

.cta-input {
    flex: 1;
    padding: 1.05rem 1.4rem;
    background: rgba(255,255,255,0.15);
    border: 1.5px solid rgba(255,255,255,0.35);
    border-radius: var(--radius-pill);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.97rem;
    outline: none;
    transition: all var(--transition-base);
    backdrop-filter: blur(6px);
}

.cta-input::placeholder {
    color: rgba(255,255,255,0.6);
}

.cta-input:focus {
    background: rgba(255,255,255,0.22);
    border-color: rgba(255,255,255,0.65);
}

.cta-form .primary-btn {
    background: #fff;
    color: var(--blue);
    box-shadow: 0 4px 18px rgba(0,0,0,0.15);
    white-space: nowrap;
}

.cta-form .primary-btn:hover {
    background: var(--bg-soft);
    box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}

@media (max-width: 600px) {
    .cta-form { flex-direction: column; }
    .cta-content h2 { font-size: 2.25rem; }
}