.cta-section {
    background: linear-gradient(135deg, var(--teal-dark) 0%, #1e3040 100%);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(232, 168, 56, .10);
    top: -120px;
    right: -80px;
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(58, 143, 163, .12);
    bottom: -80px;
    left: -60px;
    pointer-events: none;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section .section-label {
    color: var(--gold);
}

.cta-section .section-title {
    color: var(--white);
}

.cta-desc {
    color: rgba(255, 255, 255, .8);
    font-size: 1rem;
    font-weight: 600;
    max-width: 520px;
    margin: 0 auto 36px;
    line-height: 1.75;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-meetings {
    margin-top: 44px;
}

.cta-meetings h4 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 14px;
}

.meeting-pills {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.meeting-pill {
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: 40px;
    padding: 10px 20px;
    font-size: .86rem;
    font-weight: 700;
    color: var(--white);
}

.cta-contact {
    margin-top: 28px;
    font-size: .86rem;
    color: rgba(255, 255, 255, .45);
    font-weight: 700;
}