.section-about-stats .section-header {
    max-width: 900px;
    margin-bottom: 28px;
}

.section-about-stats .section-header p {
    margin-top: 12px;
}

.section-about-stats .stat-item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    padding: 16px;
    background: var(--color-background);
    border-radius: 10px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.section-about-stats .stat-item > * {
    position: relative;
    z-index: 1;
}

.section-about-stats .stat-content {
    min-width: 0;
    line-height: 1;
}

.section-about-stats .stat-icon {
    width: 72px;
    height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    color: var(--color-primary);
    background: rgba(195, 27, 38, 0.07);
    border-radius: 14px;
}

.section-about-stats .stat-icon svg,
.section-about-stats .stat-icon img {
    width: 45px;
    height: 45px;
    display: block;
}

.section-about-stats .stat-icon svg,
.section-about-stats .stat-icon svg * {
    color: currentColor;
    stroke: currentColor;
    stroke-width: 1;
}

.section-about-stats .stat-icon svg [fill]:not([fill="none"]) {
    fill: currentColor;
}

.section-about-stats .stat-icon svg [stroke]:not([stroke="none"]) {
    stroke: currentColor;
}

.section-about-stats .about-stats__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: auto auto;
    margin-bottom: 0;
}

.section-about-stats .about-stats__grid::after {
    content: "";
    display: block;
    grid-column: 1 / -1;
    width: min(720px, 100%);
    height: 33px;
    margin: 10px auto 0;
    background-image:
        radial-gradient(circle, #e0000f 0 2px, transparent 2.5px),
        radial-gradient(circle, #e0000f 0 2px, transparent 2.5px),
        url("data:image/svg+xml,%3Csvg width='36' height='42' viewBox='0 0 36 42' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 2.5L31 8.1V18.2C31 27.1 25.7 35.1 18 38.8C10.3 35.1 5 27.1 5 18.2V8.1L18 2.5Z' stroke='%23e0000f' stroke-width='2.5' stroke-linejoin='round'/%3E%3Cpath d='M18 12.2L19.8 16L24 16.6L21 19.5L21.7 23.7L18 21.7L14.3 23.7L15 19.5L12 16.6L16.2 16L18 12.2Z' fill='%23e0000f'/%3E%3C/svg%3E"),
        linear-gradient(rgba(120, 130, 145, 0.55), rgba(120, 130, 145, 0.55)),
        linear-gradient(rgba(120, 130, 145, 0.55), rgba(120, 130, 145, 0.55));
    background-position:
        left center,
        right center,
        center center,
        28px center,
        right 28px center;
    background-size:
        5px 5px,
        5px 5px,
        28px 33px,
        calc(50% - 54px) 1px,
        calc(50% - 54px) 1px;
    background-repeat: no-repeat;
}

.section-about-stats .about-stats__grid .stat-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / 3;
    align-items: flex-start;
    text-align: left;
    padding: 30px;
}

.section-about-stats .about-stats__grid .stat-item:nth-child(n + 2) {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: flex-start;
    column-gap: 24px;
    text-align: left;
}

.section-about-stats .about-stats__grid .stat-item:nth-child(n + 2) .stat-icon {
    margin: 0;
}

.section-about-stats .about-stats__grid .stat-item:nth-child(1)::before {
    content: "";
    position: absolute;
    right: -180px;
    top: 40px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(230, 0, 0, 0.2) 0%,
        rgba(230, 0, 0, 0.1) 35%,
        rgba(230, 0, 0, 0.04) 55%,
        transparent 75%
    );
    filter: blur(12px);
    pointer-events: none;
}

.section-about-stats .about-stats__grid .stat-item:nth-child(1) .stat-icon {
    width: 72px;
    height: 72px;
    margin: 0 0 32px;
    color: var(--color-background);
    background: var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 14px 28px rgba(195, 27, 38, 0.28);
}

.section-about-stats .about-stats__grid .stat-item:nth-child(1) .stat-icon svg,
.section-about-stats .about-stats__grid .stat-item:nth-child(1) .stat-icon img {
    width: 45px;
    height: 45px;
}

.section-about-stats .about-stats__grid .stat-item:nth-child(1) .stat-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    margin: 0;
    pointer-events: none;
}

.section-about-stats .about-stats__grid .stat-item:nth-child(1) .stat-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.section-about-stats .stat-label::after {
    content: "";
    display: block;
    width: 42px;
    height: 2px;
    margin-top: 18px;
    background: var(--color-primary);
}

.section-about-stats .about-stats__grid .stat-item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
    height: 200px;
}

.section-about-stats .about-stats__grid .stat-item:nth-child(2)::after,
.section-about-stats .about-stats__grid .stat-item:nth-child(3)::after {
    content: "";
    position: absolute;
    top: 20px;
    right: 0px;
    z-index: 0;
    width: 58px;
    height: 86px;
    background-image: radial-gradient(
        circle,
        rgba(224, 0, 15, 0.08) 2px,
        transparent 2.5px
    );
    background-size: 18px 12px;
    background-repeat: repeat;
    pointer-events: none;
}

.section-about-stats .about-stats__grid .stat-item:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
    height: 200px;
}

.section-about-stats .about-stats__grid .stat-item:nth-child(4) {
    grid-column: 2 / 4;
    grid-row: 2;
    align-self: start;
    height: auto;
}

.section-about-stats .about-stats__grid .stat-item:nth-child(4)::before {
    content: "";
    position: absolute;
    right: -18px;
    bottom: -18px;
    z-index: 0;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: repeating-radial-gradient(
        circle,
        rgba(224, 0, 15, 0.16) 0,
        rgba(224, 0, 15, 0.16) 1px,
        transparent 1px,
        transparent 18px
    );
    -webkit-mask-image: radial-gradient(
        circle,
        #000 0 28%,
        rgba(0, 0, 0, 0.75) 44%,
        rgba(0, 0, 0, 0.32) 64%,
        transparent 82%
    );
    mask-image: radial-gradient(
        circle,
        #000 0 28%,
        rgba(0, 0, 0, 0.75) 44%,
        rgba(0, 0, 0, 0.32) 64%,
        transparent 82%
    );
    pointer-events: none;
}

.section-about-stats .about-stats__grid .stat-item:nth-child(4)::after {
    content: "";
    position: absolute;
    right: 60px;
    bottom: 60px;
    z-index: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #e0000f;
    pointer-events: none;
}

.section-about-stats .stat-value {
    font-size: 45px;
    font-weight: 400;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.section-about-stats .about-stats__grid .stat-item:nth-child(1) .stat-value {
    font-size: 60px;
}

.section-about-stats .stat-label {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-foreground);
    margin-bottom: 10px;
}

.section-about-stats .stat-copy {
    font-size: 14px;
    line-height: 1.55;
    color: var(--color-muted-foreground);
}

.section-about-stats .about-stats__divider {
    display: grid;
    grid-template-columns: 4px minmax(80px, 1fr) 42px minmax(80px, 1fr) 4px;
    align-items: center;
    gap: 28px;
    max-width: 720px;
    margin: 22px auto 0;
}

.section-about-stats .about-stats__divider-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #e0000f;
}

.section-about-stats .about-stats__divider-line {
    height: 1px;
    background: rgba(120, 130, 145, 0.55);
}

.section-about-stats .about-stats__divider-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #e0000f;
}

.section-about-stats .about-stats__divider-icon svg {
    width: 36px;
    height: 42px;
    display: block;
}

.section-about-stats .stats-note {
    max-width: 760px;
    margin: 10px auto 0;
    font-size: 13px;
    line-height: 1.6;
    text-align: center;
    color: var(--color-muted-foreground);
}

@media (max-width: 1200px) {
    .section-about-stats .about-stats__grid .stat-item:nth-child(n + 2) {
        column-gap: 18px;
    }

    .section-about-stats .stat-icon {
        width: 64px;
        height: 64px;
    }

    .section-about-stats .stat-icon svg,
    .section-about-stats .stat-icon img {
        width: 38px;
        height: 38px;
    }

    .section-about-stats .stat-value {
        font-size: 38px;
    }

    .section-about-stats .about-stats__grid .stat-item:nth-child(1) .stat-value {
        font-size: 52px;
    }

    .section-about-stats .stat-label {
        font-size: 16px;
    }

    .section-about-stats .stat-copy {
        font-size: 13px;
    }
}

@media (max-width: 1090px) {
    .section-about-stats .about-stats__grid .stat-item:nth-child(2),
    .section-about-stats .about-stats__grid .stat-item:nth-child(3) {
        grid-column: 2 / 4;
        height: auto;
        align-self: start;
    }

    .section-about-stats .about-stats__grid .stat-item:nth-child(1) {
        grid-row: 1 / 4;
    }

    .section-about-stats .about-stats__grid .stat-item:nth-child(2) {
        grid-row: 1;
    }

    .section-about-stats .about-stats__grid .stat-item:nth-child(3) {
        grid-row: 2;
    }

    .section-about-stats .about-stats__grid .stat-item:nth-child(4) {
        grid-row: 3;
    }
}

@media (max-width: 768px) {
    .section-about-stats .about-stats__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .section-about-stats .about-stats__grid .stat-item {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .section-about-stats .about-stats__grid .stat-item:nth-child(1),
    .section-about-stats .about-stats__grid .stat-item:nth-child(2),
    .section-about-stats .about-stats__grid .stat-item:nth-child(3),
    .section-about-stats .about-stats__grid .stat-item:nth-child(4) {
        grid-column: 1 / -1;
        grid-row: auto;
        width: 100%;
    }

    .section-about-stats .about-stats__grid .stat-item:nth-child(1) {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        align-items: flex-start;
        column-gap: 18px;
        text-align: left;
        padding: 16px;
    }

    .section-about-stats .about-stats__grid .stat-item:nth-child(1)::before,
    .section-about-stats .about-stats__grid .stat-item:nth-child(1) .stat-image {
        display: none;
    }

    .section-about-stats .about-stats__grid .stat-item:nth-child(4)::before,
    .section-about-stats .about-stats__grid .stat-item:nth-child(4)::after {
        display: none;
    }

    .section-about-stats .about-stats__grid .stat-item:nth-child(1) .stat-icon {
        width: 64px;
        height: 64px;
        margin: 0;
        color: var(--color-primary);
        background: rgba(195, 27, 38, 0.07);
        border-radius: 14px;
        box-shadow: none;
    }

    .section-about-stats .about-stats__grid .stat-item:nth-child(1) .stat-icon svg,
    .section-about-stats .about-stats__grid .stat-item:nth-child(1) .stat-icon img {
        width: 38px;
        height: 38px;
    }

    .section-about-stats .about-stats__grid .stat-item:nth-child(1) .stat-value {
        font-size: 38px;
    }

    .section-about-stats .about-stats__grid::after {
        height: 33px;
        margin-top: 18px;
        background-size:
            5px 5px,
            5px 5px,
            26px 30px,
            calc(50% - 42px) 1px,
            calc(50% - 42px) 1px;
    }

    .section-about-stats .about-stats__divider {
        grid-template-columns: 4px minmax(48px, 1fr) 36px minmax(48px, 1fr) 4px;
        gap: 16px;
        margin-top: 28px;
    }

    .section-about-stats .about-stats__divider-icon svg {
        width: 32px;
        height: 38px;
    }
}

@media (max-width: 425px) {
    .section-about-stats .about-stats__grid {
        grid-template-columns: 1fr;
    }
}
