/* Call-center solution page — scoped additions */
.call-center-tagline {
    margin: -4px 0 14px;
    font-family: "Sora", sans-serif;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    font-weight: 700;
    color: var(--text);
}

.call-center-tagline span {
    color: var(--blue);
}

.call-center-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-family: "DM Sans", sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.call-center-btn:hover {
    transform: translateY(-1px);
}

.call-center-btn.primary {
    background: var(--blue);
    color: #fff;
}

.call-center-btn.primary:hover {
    background: var(--blue-light);
}

.call-center-btn.secondary {
    background: rgba(255, 255, 255, 0.68);
    border-color: rgba(63, 81, 181, 0.25);
    color: var(--blue);
}

.call-center-btn.light {
    background: #fff;
    color: var(--blue);
}

.call-center-btn.ghost {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}

.call-center-intro .section-sub,
.call-center-rollout .section-sub {
    max-width: 820px;
}

.call-center-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
    border-radius: 10px;
    background: rgba(63, 81, 181, 0.09);
    color: var(--blue);
}

.call-center-card-icon svg {
    width: 20px;
    height: 20px;
}

.call-center-clarifier,
.call-center-pricing-link {
    margin-top: 13px;
    padding: 18px 20px;
    border-left: 3px solid var(--blue);
    background: #ebe9e7;
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.65;
}

.call-center-clarifier strong {
    color: var(--text);
}

.call-center-clarifier a,
.call-center-pricing-link a,
.seo-decision-card a {
    color: #2f45b6;
    font-weight: 700;
}

.call-center-demo-section {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(480px, 1.2fr);
    gap: 40px;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 64px 48px 72px;
}

.call-center-demo-section.sol-cap .edge-line {
    top: -96px;
}

#call-center-demo {
    scroll-margin-top: 88px;
}

.call-center-demo-copy h2 {
    margin-bottom: 14px;
    font-family: "Sora", sans-serif;
    font-size: clamp(1.55rem, 2.7vw, 2.2rem);
    line-height: 1.18;
}

.call-center-demo-copy > p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
}

.call-center-demo-points {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.call-center-demo-points span {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--text);
    font-size: 0.94rem;
    font-weight: 600;
}

.call-center-demo-points svg {
    width: 18px;
    height: 18px;
    color: #149653;
}

.call-center-demo-form-wrap {
    min-height: 420px;
    padding: 28px;
    border: 1px solid rgba(63, 81, 181, 0.16);
    border-radius: 5px;
    background: rgb(255, 255, 255);
}

.call-center-demo-form,
.call-center-demo-form label {
    display: grid;
    gap: 8px;
}

.call-center-demo-form {
    gap: 16px;
}

.call-center-demo-form label {
    color: var(--text);
    font-size: 0.84rem;
    font-weight: 700;
}

.call-center-field-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.call-center-field-row--single {
    grid-template-columns: 1fr;
}

.call-center-demo-form input,
.call-center-demo-form select,
.call-center-demo-form textarea {
    width: 100%;
    border: 1px solid #d8dce8;
    border-radius: 7px;
    background: #f9fafc;
    color: var(--text);
    font: 400 0.94rem/1.4 "DM Sans", sans-serif;
    outline: none;
}

.call-center-demo-form input,
.call-center-demo-form select {
    min-height: 44px;
    padding: 10px 12px;
}

.call-center-demo-form textarea {
    min-height: 104px;
    padding: 12px;
    resize: vertical;
}

.call-center-demo-form input:focus,
.call-center-demo-form select:focus,
.call-center-demo-form textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(63, 81, 181, 0.1);
}

.call-center-submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.call-center-submit-row span {
    color: var(--muted);
    font-size: 1rem;
}

.call-center-submit-row button {
    min-height: 46px;
    padding: 12px 18px;
    border: 0;
    border-radius: 7px;
    background: var(--blue);
    color: #fff;
    cursor: pointer;
    font: 700 0.9rem/1.2 "DM Sans", sans-serif;
}

.call-center-submit-row button:disabled {
    cursor: wait;
    opacity: 0.7;
}

.call-center-demo-success {
    min-height: 360px;
    place-content: center;
    text-align: center;
}

.call-center-demo-success:not([hidden]) {
    display: grid;
}

.call-center-demo-success svg {
    width: 44px;
    height: 44px;
    margin: 0 auto 14px;
    color: #149653;
}

.call-center-demo-success h3 {
    margin-bottom: 8px;
    font-family: "Sora", sans-serif;
}

.call-center-demo-success p {
    color: var(--muted);
    line-height: 1.6;
}

.call-center-final-cta .cta-actions {
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .call-center-demo-section {
        grid-template-columns: 1fr;
    }

    .call-center-demo-section {
        padding: 52px 28px 60px;
    }
}

@media (max-width: 620px) {
    .call-center-final-cta .cta-actions,
    .call-center-submit-row {
        align-items: stretch;
        flex-direction: column;
    }

    .call-center-btn {
        width: 100%;
    }

    .call-center-field-row {
        grid-template-columns: 1fr;
    }

    .call-center-demo-section {
        padding: 44px 16px 52px;
    }

    .call-center-demo-form-wrap {
        padding: 22px 18px;
    }

    .call-center-submit-row button {
        width: 100%;
    }
}
