:root {
    --oc-navy: #0a1635;
    --oc-navy-dark: #060f24;
    --oc-navy-light: #12224a;
    --oc-navy-accent: #2a3f7a;
    --oc-white: #ffffff;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================
   STATS SECTION
============================ */
.oc-stats {
    position: relative;
    background: linear-gradient(135deg, var(--oc-navy-dark) 0%, var(--oc-navy) 100%);
    padding: 40px 0;
    overflow: hidden;
    color: var(--oc-white);
}

.oc-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.5) 50%, transparent 100%);
    z-index: 5;
}

/* ============================
   BACKGROUND DECOR
============================ */
.stats-bg-decor {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.decor-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    filter: blur(30px);
}

.decor-1 {
    width: 250px;
    height: 250px;
    top: -80px;
    left: -80px;
}

.decor-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    right: -100px;
}

/* ============================
   WRAPPER
============================ */
.stats-wrapper {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

/* ============================
   CARD
============================ */
.stat-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    min-width: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.35s var(--ease);
}

.stat-card:last-child {
    border-right: none;
}

.stat-card:hover {
    transform: translateY(-3px);
}

/* ============================
   ICON
============================ */
.stat-icon-wrapper {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    transition: all 0.4s var(--ease);
}

.stat-card:hover .stat-icon-wrapper {
    background: var(--oc-white);
    border-color: var(--oc-white);
    transform: rotate(6deg) scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.stat-icon {
    font-size: 1.2rem;
    color: var(--oc-white);
    transition: color 0.35s var(--ease);
}

.stat-card:hover .stat-icon {
    color: var(--oc-navy);
}

/* ============================
   CONTENT
============================ */
.stat-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    flex: 1;
}

.stat-number-wrapper {
    display: flex;
    align-items: baseline;
    gap: 2px;
    line-height: 1;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--oc-white);
    line-height: 1;
    letter-spacing: -0.5px;
}

.stat-suffix {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--oc-white);
    line-height: 1;
    opacity: 0.85;
}

.stat-label {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 500;
    letter-spacing: 0.2px;
    word-break: break-word;
}

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 1199px) {
    .stats-wrapper {
        gap: 16px;
    }

    .stat-card {
        padding: 16px 14px;
        gap: 12px;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-suffix {
        font-size: 1.1rem;
    }

    .stat-icon-wrapper {
        width: 44px;
        height: 44px;
    }

    .stat-icon {
        font-size: 1.05rem;
    }
}

@media (max-width: 991px) {
    .oc-stats {
        padding: 35px 0;
    }

    .stats-wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 15px;
    }

    .stat-card {
        border-right: none;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.04);
    }
}

@media (max-width: 576px) {
    .oc-stats {
        padding: 30px 0;
    }

    .stats-wrapper {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .stat-card {
        padding: 16px 14px;
        gap: 12px;
        align-items: flex-start;
    }

    .stat-icon-wrapper {
        width: 42px;
        height: 42px;
    }

    .stat-icon {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-suffix {
        font-size: 1rem;
    }

    .stat-label {
        font-size: 0.78rem;
    }
}