/* ═══════════════════════════════════════════════════════════
   Stats Strip
   ═══════════════════════════════════════════════════════════ */

.lp-stats {
    padding: 60px 0;
    border-top: 1px solid rgba(6, 182, 212, 0.08);
    border-bottom: 1px solid rgba(6, 182, 212, 0.08);
    background: rgba(6, 12, 24, 0.4);
}

.lp-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.lp-stat {
    text-align: center;
    position: relative;
}
.lp-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -16px;
    top: 10%;
    bottom: 10%;
    width: 1px;
    background: rgba(148, 163, 184, 0.08);
}

.lp-stat__value {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    background: linear-gradient(135deg, #00d4ff 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.lp-stat__label {
    margin-top: 6px;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

@media (max-width: 720px) {
    .lp-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
    .lp-stat:not(:last-child)::after { display: none; }
}
