.about-section {
    background: var(--background);
    color: var(--text-main);
    padding: 60px 32px 0;
}

/* Планшеты и ниже */
@media (max-width: 1024px) {
    .about-section {
        padding: 50px 24px 0;
    }
}

/* Мобильные */
@media (max-width: 768px) {
    .about-section {
        padding: 40px 16px 0;
    }
}

.about-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    justify-content: space-between;
}

@media (max-width: 1200px) {
    .about-inner {
        gap: 3.25rem;
    }
}

@media (max-width: 1024px) {
    .about-inner {
        flex-direction: column;
        gap: 2.25rem;
    }
}

@media (max-width: 768px) {
    .about-inner {
        flex-direction: column;
        gap: 2rem;
    }
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 460px;
    width: 100%;
}

@media (max-width: 1024px) {
    .about-content {
        margin: 0 auto;
        align-items: center;
        text-align: center;
    }
}

.about-title {
    margin: 0;
    color: var(--text-main);
    font-size: 64px;
    font-weight: 500;
    line-height: 1.05;
}

.about-text {
    margin: 0;
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.55;
    color: var(--text-2);
}

@media (max-width: 1440px) {
    .about-title {
        font-size: 56px;
        line-height: 1.08;
    }
}

@media (max-width: 1024px) {
    .about-title {
        font-size: 44px;
        line-height: 1.1;
    }
}

@media (max-width: 768px) {
    .about-title {
        font-size: 36px;
        line-height: 1.15;
    }
}

@media (max-width: 425px) {
    .about-title {
        font-size: 32px;
        line-height: 1.2;
    }

    .about-text {
        font-size: 15px;
        line-height: 1.6;
    }
}

@media (max-width: 375px) {
    .about-title {
        font-size: 32px;
        line-height: 1.22;
    }

    .about-text {
        font-size: 14px;
        line-height: 1.65;
    }
}

@media (max-width: 320px) {
    .about-title {
        font-size: 30px;
        line-height: 1.25;
    }

    .about-text {
        font-size: 13px;
        line-height: 1.7;
    }
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: right;
}

@media (max-width: 1024px) {
    .about-stats {
        text-align: center;
        align-items: center;
        align-self: center;
    }
}

.about-stat-item {
    display: flex;
    flex-direction: column;
}

.about-number {
    font-size: 94px;
    line-height: 1.1;
    font-weight: 700;

    background: linear-gradient(135deg, #70e1f5 0%, #ffd194 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.about-label {
    margin-top: 0.25rem;
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.55;
    color: var(--text-2);
}

@media (max-width: 1440px) {
    .about-number {
        font-size: 76px;
        line-height: 1.08;
    }
}

@media (max-width: 1024px) {
    .about-number {
        font-size: 76px;
        line-height: 1.1;
    }
}

@media (max-width: 768px) {
    .about-number {
        font-size: 64px;
        line-height: 1.15;
    }
}

@media (max-width: 425px) {
    .about-number {
        font-size: 48px;
        line-height: 1.2;
    }

    .about-label {
        font-size: 15px;
        line-height: 1.6;
    }
}

@media (max-width: 375px) {
    .about-number {
        font-size: 44px;
        line-height: 1.22;
    }

    .about-label {
        font-size: 14px;
        line-height: 1.65;
    }
}

@media (max-width: 320px) {
    .about-number {
        font-size: 40px;
        line-height: 1.25;
    }

    .about-label {
        font-size: 13px;
        line-height: 1.7;
    }
}

/* для SplitText масок */
.mask {
    display: block;
    overflow: hidden;
    visibility: inherit;
}
