.about-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
    gap: clamp(2.25rem, 4vw, 4.8rem);
    align-items: center;
}

.about-copy {
    max-width: 42rem;
}

.about-copy p {
    margin: 0 0 1.5rem;
    text-align: justify;
}

.about-image {
    position: relative;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.42);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.96),
        0 1.5rem 3rem rgba(26, 39, 66, 0.06);
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    will-change: transform;
}

.about-image::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        radial-gradient(
            circle at var(--glare-x, 50%) var(--glare-y, 50%),
            rgba(255, 255, 255, 0.62),
            rgba(255, 255, 255, 0.2) 16%,
            rgba(255, 255, 255, 0) 42%
        );
    mix-blend-mode: screen;
    opacity: 0;
    transition: opacity 0.22s ease;
}

.about-image.is-tilting {
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.98),
        0 2rem 3.6rem rgba(26, 39, 66, 0.12);
}

.about-image.is-tilting::after {
    opacity: 1;
}

.about-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: translateZ(1px) scale(1.012);
    transition: transform 0.22s ease;
}

.about-image.is-tilting img {
    transform: translateZ(1px) scale(1.035);
}

.stats-section {
    padding: 0 0 clamp(4.5rem, 7vw, 6.5rem);
    background: transparent;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(2rem, 3vw, 3.2rem);
}

.stat-item {
    aspect-ratio: 1 / 1;
    text-align: center;
    padding: 1.45rem 1rem;
    border-radius: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.94);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(246, 249, 255, 0.66)),
        rgba(255, 255, 255, 0.44);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.94),
        0 0.2rem 0.45rem rgba(26, 39, 66, 0.04),
        0 1.25rem 2.2rem rgba(26, 39, 66, 0.08);
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.58s ease, transform 0.58s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stats-section.is-counting .stat-item {
    opacity: 1;
    transform: translateY(0);
}

.stats-section.is-counting .stat-item:nth-child(2) {
    transition-delay: 0.08s;
}

.stats-section.is-counting .stat-item:nth-child(3) {
    transition-delay: 0.16s;
}

.stats-section.is-counting .stat-item:nth-child(4) {
    transition-delay: 0.24s;
}

.stat-icon {
    display: block;
    width: 6.75rem;
    height: 6.75rem;
    margin-bottom: 1.85rem;
    margin-inline: auto;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(31%) sepia(91%) saturate(843%) hue-rotate(171deg) brightness(89%) contrast(95%);
}

.stat-item strong {
    display: block;
    font-family: var(--font-display);
    width: 100%;
    max-width: 100%;
    font-size: clamp(2rem, 2.55vw, 2.75rem);
    line-height: 0.95;
    letter-spacing: 0;
    color: var(--text-main);
    white-space: nowrap;
    overflow: hidden;
    text-align: center;
}

.stats-grid--has-long-counter .stat-item strong {
    font-size: clamp(1.85rem, 2.15vw, 2.32rem);
}

.stat-item span {
    display: block;
    margin-top: 0.85rem;
    font-size: 1rem;
    line-height: 1.35;
    letter-spacing: -0.03em;
    color: var(--text-copy);
    text-wrap: balance;
}

@media (max-width: 1040px) {
    .about-layout,
    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .about-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .about-copy {
        max-width: none;
        padding-inline: clamp(1.35rem, 5vw, 1.7rem);
    }

    .about-copy h3,
    .about-copy p {
        max-width: none;
    }

    .about-copy h3 {
        text-align: center;
    }

    .about-copy p {
        text-align: justify;
    }

    .about-image {
        max-width: 34rem;
        margin-inline: auto;
    }

    .about-image img {
        min-height: 18rem;
    }

    .stat-item {
        max-width: none;
        width: 100%;
        margin-inline: auto;
        padding: 1rem 0.65rem;
        border-radius: 1.35rem;
    }

    .stat-icon {
        width: 4.65rem;
        height: 4.65rem;
        margin-bottom: 1rem;
    }

    .stat-item strong {
        font-size: clamp(1.45rem, 8vw, 2.05rem);
    }

    .stats-grid--has-long-counter .stat-item strong {
        font-size: clamp(1.18rem, 6.15vw, 1.58rem);
    }

    .stat-item span {
        margin-top: 0.55rem;
        font-size: 1.23rem;
    }
}

@media (max-width: 420px) {
    .about-image {
        border-radius: 1.35rem;
    }

    .about-image img {
        min-height: 15rem;
    }

    .stat-item {
        padding: 0.9rem 0.55rem;
        border-radius: 1.2rem;
    }

    .stat-icon {
        width: 4.1rem;
        height: 4.1rem;
        margin-bottom: 0.8rem;
    }

    .stat-item strong {
        font-size: clamp(1.25rem, 7.6vw, 1.75rem);
    }

    .stats-grid--has-long-counter .stat-item strong {
        font-size: clamp(1.02rem, 5.75vw, 1.32rem);
    }

    .stat-item span {
        font-size: 1.09rem;
    }
}
