/* =========================================================
   REFERENCE TOUCHES — WonderLand-inspired additions
   (stats counter band + card meta tweaks)
   New, uniquely-named components so CSS load order never conflicts.
   ========================================================= */

/* ---------- STATS COUNTER BAND ---------- */
.wl-stats-sec {
    padding: 64px 0 72px;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}
.wl-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.wl-stat-card {
    background: #fbfaf7;
    border: 1px solid #efe9dc;
    border-radius: 18px;
    padding: 30px 28px;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.3s;
    position: relative;
    overflow: hidden;
}
.wl-stat-card::before {
    content: '';
    position: absolute;
    left: 28px;
    bottom: 26px;
    width: 34px;
    height: 3px;
    border-radius: 2px;
    background: var(--primary);
    opacity: 0.85;
}
.wl-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(16, 24, 40, 0.08);
    border-color: var(--primary);
}
.wl-stat-number {
    font-size: 40px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1;
    letter-spacing: -1px;
    display: flex;
    align-items: baseline;
    gap: 2px;
}
.wl-stat-number .wl-suffix { color: var(--primary); font-size: 30px; font-weight: 800; }
.wl-stat-unit {
    margin-top: 10px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: var(--accent);
}
.wl-stat-label {
    margin-top: 16px;
    font-size: 14.5px;
    color: #5b6670;
    line-height: 1.55;
}

@media (max-width: 991px) {
    .wl-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .wl-stat-number { font-size: 34px; }
}
@media (max-width: 520px) {
    .wl-stats-sec { padding: 44px 0 50px; }
    .wl-stats-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .wl-stat-card { padding: 22px 18px; }
    .wl-stat-number { font-size: 27px; }
    .wl-stat-card::before { left: 18px; bottom: 18px; }
}
