/* ========================================
   Section: Stats & CTA
   ======================================== */

/* Stats */
.stats-section {
    background: linear-gradient(135deg, #f4f8fd 0%, #d6e4f6 50%, #f4f8fd 100%) !important;
    color: var(--font-primary);
    position: relative;
    overflow: hidden;
}

.stats-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(56, 118, 183, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(56, 118, 183, 0.12);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 40px 24px;
    background: #ffffff;
    transition: background 0.3s ease;
    position: relative;
}

.stat-item:hover {
    background: #f4f8fd;
}

.stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: background 0.3s ease;
}

.stat-item:hover .stat-icon {
    background: rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2.6rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: #1a1a1a !important;
    margin-bottom: 6px;
    letter-spacing: -0.03em;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--primary-color) !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.stat-desc {
    font-size: 0.82rem;
    font-family: var(--font-primary);
    color: #4b5563 !important;
    line-height: 1.6;
    margin: 0;
}

/* CTA */
.cta-section {
    padding: var(--section-padding) 20px;
    background: linear-gradient(135deg, #1a2f4a 0%, #2d4f7a 50%, #1e3a5f 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(56, 118, 183, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: var(--small-margin);
    letter-spacing: -0.03em;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 1.1rem;
    font-family: var(--font-primary);
    font-weight: 400;
    margin-bottom: 36px;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
}

/* Outline button */
.cta-btn-outline {
    display: inline-block;
    position: relative;
    z-index: 1;
    padding: 14px 36px;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.85);
    color: #ffffff !important;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.02em;
    background: transparent;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.cta-btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #ffffff;
    transform: translateY(-2px);
    color: #ffffff !important;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 968px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-number { font-size: 2rem; }
    .stat-item { padding: 28px 16px; }
    .stat-desc { display: none; }
    .cta-section h2 { font-size: 2rem; }
}
