/* CTA Section */
.cta-section {
    background-color: #ffffff;
    padding: 100px 0;
    text-align: center;
}

.cta-section h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2.25rem;
    /* ~36px */
    font-weight: 600;
    color: #111827;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cta-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 40px;
}

.btn-cta-primary {
    background-color: var(--color-primary);
    /* Primary theme color */
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.2s;
    display: inline-block;
}

.btn-cta-primary:hover {
    background-color: var(--color-primary-hover);
}

/* Testimonial Section */
.testimonial-section {
    background-color: var(--color-secondary);
    /* Secondary brand surface */
    padding: 100px 0;
    position: relative;
    color: white;
    overflow: hidden;
}

/* Dotted Map Pattern Overlay */
.testimonial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1.5px, transparent 1.5px);
    background-size: 14px 14px;
    opacity: 0.6;
    pointer-events: none;
}

.testimonial-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    /* Above the pattern */
    padding: 0 20px;
}

.testimonial-quote {
    font-family: 'Inter', sans-serif;
    font-size: 1.75rem;
    /* ~28px */
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 40px;
}

.testimonial-author {
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-weight: 600;
    font-size: 1.125rem;
}

.author-title {
    font-weight: 400;
    font-size: 1rem;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-section h2 {
        font-size: 1.75rem;
    }

    .testimonial-quote {
        font-size: 1.25rem;
    }
}