/* Base styles that don't depend on brand color */
.btn-primary {
    font-weight: 500;
    padding: 0.5rem 1.5rem;
}

.number-circle {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 auto 1rem auto;
}

.cta-section {
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 0.5rem;
    margin: 3rem 0;
}

/* CTA Section: Ready to Grow Your Business? */
.cta-section {
    background: linear-gradient(90deg, var(--brand-primary, #3070ce) 0%, color-mix(in srgb, var(--brand-primary, #3070ce) 75%, #000 25%) 100%);
    color: #fff;
}
.cta-section .btn-light {
    color: var(--brand-primary, #3070ce);
    background: #fff;
    border: none;
}
.cta-section .btn-light:hover, .cta-section .btn-light:focus {
    background: #e6e6e6;
    color: color-mix(in srgb, var(--brand-primary, #3070ce) 75%, #000 25%);
}

/* Numbered Circles in How It Works */
.number-circle {
    background: var(--brand-primary, #3070ce);
    color: #fff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 auto 1rem auto;
    box-shadow: 0 2px 8px rgba(48,112,206,0.08);
} 