/* Stats Section */
.incotec-stats {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

/* Header */
.incotec-stats__header {
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.incotec-stats__title {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 1.1rem;
    color: #7AD3C1;
    margin-bottom: 20px;
    font-weight: 400;
}

.incotec-stats__desc {
    font-size: 0.95rem;
    color: #888;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid */
.incotec-stats__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.incotec-stats__item {
    flex: 1 1 220px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
}

/* Number */
.incotec-stats__number-wrapper {
    position: relative;
    z-index: 1;
    margin-bottom: 15px;
}

.incotec-stats__number {
    font-size: 3.5rem;
    font-weight: 900;
    color: #002D47;
    position: relative;
    z-index: 2;
    line-height: 1;
}

.incotec-stats__bg-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 6rem;
    font-weight: 900;
    color: #eaf7f4;
    z-index: -1;
    opacity: 1;
    white-space: nowrap;
    line-height: 1;
}

/* Separator */
.incotec-stats__separator {
    width: 1px;
    height: 30px;
    background-color: #666;
    margin: 10px 0 20px 0;
}

/* Description */
.incotec-stats__text {
    font-size: 0.9rem;
    font-weight: 700;
    color: #002D47;
    max-width: 200px;
}

.incotec-stats__subtext {
    font-weight: 400;
    display: block;
    margin-top: 4px;
}

/* Footer */
.incotec-stats__footer {
    margin-top: 60px;
    position: relative;
}

.incotec-stats__footer-line {
    width: 1px;
    height: 40px;
    background-color: #ccc;
    margin: 0 auto 20px auto;
}

.incotec-stats__footer-title {
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #7AD3C1;
    font-size: 1rem;
    margin-bottom: 10px;
}

.incotec-stats__footer-desc {
    font-size: 0.8rem;
    color: #999;
}

/* Responsive */
@media (max-width: 768px) {
    .incotec-stats__grid {
        gap: 60px;
    }

    .incotec-stats__number {
        font-size: 3rem;
    }

    .incotec-stats__bg-number {
        font-size: 5rem;
    }

    .incotec-stats__header {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .incotec-stats {
        padding: 40px 16px;
    }

    .incotec-stats__grid {
        flex-direction: column;
        align-items: center;
    }

    .incotec-stats__item {
        flex: none;
        width: 100%;
    }
}
