.numbers-section {
    position: relative;
    background-color: var(--lp-white);
    padding-bottom: 120px;
    overflow: visible;
    z-index: 1;
}

.numbers-card {
    position: relative;
    width: 100%;
    min-height: 340px;
    overflow: visible;
    background-color: var(--lp-white);
}

.numbers-map {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 760px;
    background-image: url("../images/style/world-map-light.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 920px auto;
    opacity: 1;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.numbers-line {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.numbers-line svg {
    width: 100%;
    height: 100%;
    display: block;
}

.numbers-line-path {
    fill: none;
    stroke: rgba(17, 17, 17, 0.5);
    stroke-width: 1;
    stroke-dasharray: 6 6;
    stroke-linecap: round;
}

.numbers-items {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 340px;
}

.number-item {
    position: absolute;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 170px;
}

.number-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin-top: 12px;
    flex-shrink: 0;
}

.number-item-primary .number-dot {
    background-color: var(--lp-primary);
}

.number-item-secondary .number-dot {
    background-color: var(--lp-secondary);
}

.number-item-accent .number-dot {
    background-color: var(--lp-accent);
}

.number-value {
    margin: 0 0 8px;
    color: var(--lp-black);
    font-family: var(--lp-font-en);
    font-size: clamp(26px, 2.2vw, 40px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.2px;
}

.number-value span {
    display: inline-block;
    margin-right: 2px;
}

.number-label {
    margin: 0;
    color: var(--lp-black);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
}

/* النقطة الأولى: خدمة العملاء */
.number-item-primary {
    top: 18%;
    left: 10%;
}

/* النقطة الثانية: العميل الراضي */
.number-item-secondary {
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
}

/* النقطة الثالثة: المتابعين */
.number-item-accent {
    top: 12%;
    right: 11%;
}

/* من 993 إلى 1200 فقط */
@media (min-width: 993px) and (max-width: 1200px) {
    .numbers-map {
        height: 700px;
        background-size: 920px auto;
    }

    .number-item-primary {
        top: 16%;
        left: 10%;
    }

    .number-item-secondary {
        top: 41%;
        left: 50%;
        transform: translateX(-50%);
    }

    .number-item-accent {
        top: 9%;
        right: 11%;
    }
}

/* من 769 إلى 992 فقط */
@media (min-width: 769px) and (max-width: 992px) {
    .numbers-section {
        padding: 24px 0 75px;
    }

    .numbers-card {
        min-height: 310px;
    }

    .numbers-items {
        height: 310px;
    }

    .numbers-map {
        height: 640px;
        background-size: 850px auto;
    }

    .number-value {
        font-size: clamp(24px, 2.4vw, 34px);
    }

    .number-label {
        font-size: 16px;
    }

    .number-item-primary {
        top: 16%;
        left: 10%;
    }

    .number-item-secondary {
        top: 41%;
        left: 50%;
        transform: translateX(-50%);
    }

    .number-item-accent {
        top: 9%;
        right: 11%;
    }
}

@media (max-width: 768px) {
    .numbers-section {
        padding: 24px 0 60px;
    }

    .numbers-card {
        min-height: auto;
        padding: 28px 18px 24px;
        background-color: var(--lp-white);
        overflow: hidden;
    }

    .numbers-map {
        display: block;
        height: 100%;
        min-height: 360px;
        background-size: 520px auto;
        opacity: 1;
    }

    .numbers-line {
        display: none;
    }

    .numbers-items {
        height: auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .number-item {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        min-width: 100%;
        padding: 0;
    }

    .number-dot {
        order: -1;
        margin-top: 0;
        margin-bottom: 10px;
    }

    .number-value {
        font-size: 30px;
    }

    .number-label {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .numbers-card {
        padding: 24px 14px 20px;
    }

    .numbers-map {
        min-height: 320px;
        background-size: 420px auto;
    }

    .numbers-items {
        gap: 22px;
    }

    .number-dot {
        width: 14px;
        height: 14px;
    }

    .number-value {
        font-size: 26px;
    }

    .number-label {
        font-size: 15px;
    }
}