/* Section Background */
.zdrive-stats-section {
    padding: 80px 20px;
    background: #f7f7f7;
}

/* Container */
.zdrive-stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Stat Box */
.zdrive-stat-box {
    background: #fff;
    padding: 40px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    border-top: 3px solid #AC8510;
    will-change: transform, box-shadow;
}

/* Hover */
@media (hover: hover) {
    .zdrive-stat-box:hover {
        transform: translateY(-6px);
        box-shadow: 0 8px 28px rgba(0,0,0,0.12);
    }
}

/* Number */
.zdrive-stat-box h2 {
    font-size: 42px;
    font-weight: 700;
    color: #AC8510;
    margin-bottom: 10px;
    font-family: inherit; /* Use global typography */
}

/* Text */
.zdrive-stat-box p {
    font-size: 15px;
    color: #333;
    line-height: 1.5;
    font-weight: 500;
    font-family: inherit; /* Use global typography */
}

/* Responsive */
@media (max-width: 900px) {
    .zdrive-stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .zdrive-stats-section {
        padding: 30px 15px;
    }
    .zdrive-stats-container {
        grid-template-columns: 1fr;
    }
    .zdrive-stat-box {
        padding: 20px 10px;
    }
}