/* ========================================
   Live Stats Banner
   ======================================== */
.live-stats {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0f4c3a 100%);
    padding: 72px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.live-stats::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -25%;
    width: 150%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(5,150,105,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.ls-title {
    font-family: var(--font);
    font-size: 38px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
    position: relative;
}

.ls-subtitle {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 48px;
    position: relative;
}

.ls-counters {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    position: relative;
}

.ls-counter {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.ls-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 4px;
}

.ls-label {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
}

.ls-location {
    color: var(--gold);
    font-weight: 700;
    display: inline-block;
    min-width: 80px;
}

.ls-divider {
    width: 1px;
    height: 80px;
    background: rgba(255,255,255,0.15);
}

/* ========================================
   Support / Chat Section
   ======================================== */
.support-section {
    background: var(--primary-ultra-light);
    padding: 80px 0 40px;
}

.sp-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 60px;
    align-items: center;
}

/* Phone mockup */
.sp-phone {
    width: 280px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 36px;
    border: 6px solid #1e293b;
    box-shadow: 0 20px 60px rgba(15,23,42,0.15);
    overflow: hidden;
    position: relative;
}

.sp-phone-notch {
    width: 120px;
    height: 28px;
    background: #1e293b;
    border-radius: 0 0 16px 16px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.sp-phone-screen {
    background: #f5f5f5;
    min-height: 480px;
    display: flex;
    flex-direction: column;
}

.sp-chat-header {
    background: var(--white);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}
.sp-chat-header i {
    font-size: 16px;
}

.sp-chat-body {
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.sp-msg {
    display: flex;
    align-items: flex-end;
    gap: 8px;
}
.sp-msg-user {
    justify-content: flex-end;
}

.sp-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}
.sp-avatar-user {
    background: var(--primary);
    color: var(--white);
}
.sp-avatar-agent {
    background: var(--primary-light);
    color: var(--primary);
}

.sp-bubble {
    max-width: 200px;
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 12px;
    line-height: 1.5;
}
.sp-bubble-user {
    background: var(--primary);
    color: var(--white);
    border-bottom-right-radius: 4px;
}
.sp-bubble-agent {
    background: var(--white);
    color: var(--text);
    border-bottom-left-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.sp-agent-name {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

/* Right content */
.sp-title {
    font-family: var(--font);
    font-size: 32px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 12px;
}

.sp-desc {
    font-size: 14px;
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 28px;
}

.sp-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sp-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: box-shadow var(--ease);
}
.sp-card:hover {
    box-shadow: var(--shadow-md);
}

.sp-card-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.sp-card-text h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}
.sp-card-text p {
    font-size: 13px;
    color: var(--dark-gray);
    line-height: 1.6;
    margin: 0;
}

.sp-disclaimer {
    text-align: center;
    font-size: 13px;
    font-style: italic;
    color: var(--gray);
    margin-top: 48px;
}

/* ========================================
   Responsive for new sections
   ======================================== */
@media (max-width: 992px) {
    .sp-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .sp-phone {
        order: -1;
        width: 260px;
    }
    .ls-title { font-size: 28px; }
    .ls-number { font-size: 40px; }
    .ls-counters { gap: 40px; }
}

@media (max-width: 768px) {
    .ls-section { padding: 48px 0; }
    .ls-counters { gap: 30px; flex-wrap: wrap; justify-content: center; }
    .ls-divider { display: none; }
    .ls-number { font-size: 36px; }
    .ls-label { font-size: 12px; }
    .sp-phone { width: 280px; }
    .sp-phone-screen { min-height: 420px; }
    .sp-title { font-size: 24px; text-align: center; }
    .sp-desc { font-size: 13px; margin-bottom: 20px; text-align: center; }
    .support-section { padding: 48px 0 24px; }
    .sp-grid { gap: 32px; }
    .sp-bubble { max-width: 200px; }
}

@media (max-width: 576px) {
    .ls-counters {
        flex-direction: column;
        gap: 32px;
        align-items: center;
    }
    .ls-divider {
        width: 80px;
        height: 1px;
    }
    .ls-number { font-size: 32px; }
    .sp-phone { width: 260px; }
    .sp-phone-screen { min-height: 400px; }
    .sp-title { font-size: 22px; }
    .sp-bubble { max-width: 180px; font-size: 11px; }
}
