/* Reset and Base Styles */
body.about-page {
    background: #f8fafc;
    padding-top: 80px;
}

/* Секции с фоном как у кейсов */
.about-page section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: none;
    transition: none;
}

/* Фон секции - как у кейсов */
.about-page section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(37, 99, 235, 0.05) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(37, 99, 235, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 0;
}

.about-page section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 100%);
    z-index: 0;
}

/* Container */
.about-page .aboutPage-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Hero Section - особый стиль */
.about-page .aboutPage-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.about-page .aboutPage-hero::before,
.about-page .aboutPage-hero::after {
    display: none;
}

.about-page .aboutPage-hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-page .aboutPage-hero__text {
    max-width: 600px;
}

.about-page .aboutPage-hero__title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 24px;
}

.about-page .aboutPage-hero__subtitle {
    font-size: 1.25rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.about-page .aboutPage-hero__image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-page .aboutPage-hero__img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(37,99,235,0.13);
    object-fit: cover;
    aspect-ratio: 3/4;
}

/* Section Title */
.about-page .aboutPage-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Mission and Values */
.about-page .aboutPage-mission__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 32px;
    position: relative;
    z-index: 1;
}

.about-page .aboutPage-mission__block {
    background: white;
    border-radius: 22px;
    box-shadow: 0 4px 16px rgba(37,99,235,0.07);
    padding: 38px 24px 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    animation: aboutMissionFadeIn 0.8s cubic-bezier(.4,2,.6,1) forwards;
}

.about-page .aboutPage-mission__block:nth-child(1) { animation-delay: 0.1s; }
.about-page .aboutPage-mission__block:nth-child(2) { animation-delay: 0.2s; }

.about-page .aboutPage-mission__block:hover {
    box-shadow: 0 10px 32px rgba(37,99,235,0.13);
    transform: translateY(-6px) scale(1.03);
}

.about-page .aboutPage-mission__icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    box-shadow: 0 2px 12px rgba(37,99,235,0.10);
}

.about-page .aboutPage-mission__icon {
    color: #fff;
    font-size: 2rem;
    margin: 0;
}

.about-page .aboutPage-mission__title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.about-page .aboutPage-mission__text {
    color: #64748b;
    line-height: 1.6;
    font-size: 1.05rem;
    margin: 0;
}

/* Values Grid */
.about-page .aboutPage-values__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 48px;
    position: relative;
    z-index: 1;
}

.about-page .aboutPage-values__item {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(37,99,235,0.07);
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    animation: aboutValuesFadeIn 0.8s cubic-bezier(.4,2,.6,1) forwards;
}

.about-page .aboutPage-values__item:nth-child(1) { animation-delay: 0.1s; }
.about-page .aboutPage-values__item:nth-child(2) { animation-delay: 0.2s; }
.about-page .aboutPage-values__item:nth-child(3) { animation-delay: 0.3s; }
.about-page .aboutPage-values__item:nth-child(4) { animation-delay: 0.4s; }
.about-page .aboutPage-values__item:nth-child(5) { animation-delay: 0.5s; }

.about-page .aboutPage-values__item:hover {
    box-shadow: 0 10px 32px rgba(37,99,235,0.13);
    transform: translateY(-6px) scale(1.03);
}

.about-page .aboutPage-values__icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 2px 12px rgba(37,99,235,0.10);
}

.about-page .aboutPage-values__icon {
    color: #fff;
    font-size: 1.5rem;
    margin: 0;
}

.about-page .aboutPage-values__text {
    font-size: 1.05rem;
    font-weight: 500;
    color: #1e293b;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 1100px) {
    .about-page .aboutPage-mission__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .about-page .aboutPage-values__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 700px) {
    .about-page .aboutPage-mission__block {
        padding: 24px 16px 20px 16px;
    }
    
    .about-page .aboutPage-mission__icon-wrap {
        width: 48px;
        height: 48px;
        margin-bottom: 16px;
    }
    
    .about-page .aboutPage-mission__icon {
        font-size: 1.5rem;
    }
    
    .about-page .aboutPage-mission__title {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .about-page .aboutPage-mission__text {
        font-size: 0.95rem;
    }
    
    .about-page .aboutPage-values__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .about-page .aboutPage-values__item {
        padding: 16px 12px;
    }
    
    .about-page .aboutPage-values__icon-wrap {
        width: 36px;
        height: 36px;
        margin-bottom: 12px;
    }
    
    .about-page .aboutPage-values__icon {
        font-size: 1.2rem;
    }
    
    .about-page .aboutPage-values__text {
        font-size: 0.95rem;
    }
}

@keyframes aboutMissionFadeIn {
    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes aboutValuesFadeIn {
    to {
        opacity: 1;
        transform: none;
    }
}

/* Timeline Grid */
.about-page .aboutPage-timeline__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 32px;
    position: relative;
    z-index: 1;
}

.about-page .aboutPage-timeline__item {
    background: white;
    border-radius: 22px;
    box-shadow: 0 4px 16px rgba(37,99,235,0.07);
    padding: 38px 24px 28px 24px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s, transform 0.3s;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    animation: aboutTimelineFadeIn 0.8s cubic-bezier(.4,2,.6,1) forwards;
}

.about-page .aboutPage-timeline__item:nth-child(1) { animation-delay: 0.1s; }
.about-page .aboutPage-timeline__item:nth-child(2) { animation-delay: 0.2s; }
.about-page .aboutPage-timeline__item:nth-child(3) { animation-delay: 0.3s; }
.about-page .aboutPage-timeline__item:nth-child(4) { animation-delay: 0.4s; }
.about-page .aboutPage-timeline__item:nth-child(5) { animation-delay: 0.5s; }

.about-page .aboutPage-timeline__item:hover {
    box-shadow: 0 10px 32px rgba(37,99,235,0.13);
    transform: translateY(-6px) scale(1.03);
}

.about-page .aboutPage-timeline__year {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 16px;
    padding-left: 48px;
    position: relative;
}

.about-page .aboutPage-timeline__year::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, #60a5fa 0%, #2563eb 100%);
}

.about-page .aboutPage-timeline__content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.about-page .aboutPage-timeline__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 2px 12px rgba(37,99,235,0.10);
}

.about-page .aboutPage-timeline__desc {
    color: #64748b;
    line-height: 1.6;
    font-size: 1.05rem;
    margin: 0;
}

@media (max-width: 1100px) {
    .about-page .aboutPage-timeline__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 700px) {
    .about-page .aboutPage-timeline__item {
        padding: 24px 16px 20px 16px;
    }
    
    .about-page .aboutPage-timeline__year {
        font-size: 1rem;
        margin-bottom: 12px;
        padding-left: 40px;
    }
    
    .about-page .aboutPage-timeline__year::before {
        width: 24px;
    }
    
    .about-page .aboutPage-timeline__icon {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }
    
    .about-page .aboutPage-timeline__desc {
        font-size: 0.95rem;
    }
}

@keyframes aboutTimelineFadeIn {
    to {
        opacity: 1;
        transform: none;
    }
}

/* Expertise Grid */
.about-page .aboutPage-expertise__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 32px;
    position: relative;
    z-index: 1;
}

.about-page .aboutPage-expertise__card {
    background: white;
    border-radius: 22px;
    box-shadow: 0 4px 16px rgba(37,99,235,0.07);
    padding: 38px 24px 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow 0.3s, transform 0.3s;
    position: relative;
    min-height: 320px;
    opacity: 0;
    transform: translateY(40px);
    animation: aboutExpertiseFadeIn 0.8s cubic-bezier(.4,2,.6,1) forwards;
    text-decoration: none;
    color: inherit;
}

.about-page .aboutPage-expertise__card:nth-child(1) { animation-delay: 0.1s; }
.about-page .aboutPage-expertise__card:nth-child(2) { animation-delay: 0.2s; }
.about-page .aboutPage-expertise__card:nth-child(3) { animation-delay: 0.3s; }
.about-page .aboutPage-expertise__card:nth-child(4) { animation-delay: 0.4s; }
.about-page .aboutPage-expertise__card:nth-child(5) { animation-delay: 0.5s; }
.about-page .aboutPage-expertise__card:nth-child(6) { animation-delay: 0.6s; }
.about-page .aboutPage-expertise__card:hover {
    box-shadow: 0 10px 32px rgba(37,99,235,0.13);
    transform: translateY(-6px) scale(1.03);
    text-decoration: none;
    color: inherit;
}

.about-page .aboutPage-expertise__icon-title-row {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
    width: 100%;
}

.about-page .aboutPage-expertise__icon-wrap {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(37,99,235,0.10);
    flex-shrink: 0;
}

.about-page .aboutPage-expertise__icon {
    color: #fff;
    font-size: 2rem;
    margin: 0;
}

.about-page .aboutPage-expertise__title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
    display: flex;
    align-items: center;
    word-break: break-word;
}

.about-page .aboutPage-expertise__desc {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.about-page .aboutPage-expertise__benefit {
    color: #2563eb;
    font-weight: 500;
    font-size: 0.98rem;
    padding-top: 15px;
    border-top: 1px solid #f1f5f9;
    margin-top: auto;
}

@media (max-width: 1100px) {
    .about-page .aboutPage-expertise__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .about-page .aboutPage-expertise__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .about-page .aboutPage-expertise__card {
        min-height: 0;
        padding: 22px 10px 16px 10px;
    }
    .about-page .aboutPage-expertise__icon-wrap {
        width: 38px; height: 38px;
    }
    .about-page .aboutPage-expertise__icon {
        font-size: 1.1rem;
    }
    .about-page .aboutPage-expertise__title {
        font-size: 1rem;
    }
    .about-page .aboutPage-expertise__desc {
        font-size: 0.97rem;
    }
    .about-page .aboutPage-expertise__benefit {
        display: none;
    }
}

@keyframes aboutExpertiseFadeIn {
    to {
        opacity: 1;
        transform: none;
    }
}

/* Methodology Steps */
.about-page .aboutPage-methodology__steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    position: relative;
    z-index: 1;
}

.about-page .aboutPage-methodology__step {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    padding: 25px;
}

.about-page .aboutPage-methodology__step:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.about-page .aboutPage-methodology__step-title {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.about-page .aboutPage-methodology__step-desc {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Achievements */
.about-page .aboutPage-achievements__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.about-page .aboutPage-achievements__list li {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.about-page .aboutPage-achievements__list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.about-page .aboutPage-achievements__icon {
    margin: 0 0 16px 0;
    font-size: 2.2rem;
}

.about-page .aboutPage-achievements__text {
    margin: 0;
    font-size: 1.05rem;
    color: #1e293b;
}

/* Stats Grid */
.about-page .aboutPage-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.about-page .aboutPage-stats__item {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    padding: 30px;
    text-align: center;
}

.about-page .aboutPage-stats__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-page .aboutPage-stats__number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2563eb;
    display: block;
    margin-bottom: 10px;
}

.about-page .aboutPage-stats__label {
    color: #64748b;
    font-size: 0.95rem;
}

/* Stack Grid */
.about-page .aboutPage-stack__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.about-page .aboutPage-stack__item {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    padding: 20px;
    text-align: center;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-page .aboutPage-stack__item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    background: #2563eb;
    color: white;
}

.about-page .aboutPage-stack__icon {
    font-size: 2rem;
    margin-bottom: 8px;
    color: #2563eb;
}

.about-page .aboutPage-stack__item:hover .aboutPage-stack__icon {
    color: white;
}

.about-page .aboutPage-stack__name {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Philosophy List */
.about-page .aboutPage-philosophy__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.about-page .aboutPage-philosophy__list li {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.about-page .aboutPage-philosophy__list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.about-page .aboutPage-philosophy__icon {
    margin: 0 0 16px 0;
    font-size: 2.2rem;
}

.about-page .aboutPage-philosophy__text {
    margin: 0;
    font-size: 1.05rem;
    color: #1e293b;
}

/* Blog Section */
.about-page .aboutPage-blog {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    position: relative;
    z-index: 1;
}

.about-page .aboutPage-blog::before,
.about-page .aboutPage-blog::after {
    display: none;
}

.about-page .aboutPage-blog__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-page .aboutPage-blog__text h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 800;
}

.about-page .aboutPage-blog__description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.about-page .aboutPage-blog__button-wrap {
    text-align: center;
    margin-top: 32px;
}

.about-page .aboutPage-blog__button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: #2563eb;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.about-page .aboutPage-blog__button:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.about-page .aboutPage-blog__image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-page .aboutPage-blog__img {
    max-width: 320px;
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(37,99,235,0.13);
    object-fit: cover;
    margin: 0 auto;
}

/* Media Queries */
@media (max-width: 1200px) {
    .about-page .aboutPage-expertise__list,
    .about-page .aboutPage-methodology__steps,
    .about-page .aboutPage-achievements__list,
    .about-page .aboutPage-philosophy__list {
        grid-template-columns: 1fr;
    }
    
    .about-page .aboutPage-stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-page .aboutPage-stack__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .about-page section {
        padding: 60px 0;
    }
    
    .about-page .aboutPage-hero {
        padding: 100px 0 60px;
    }
    
    .about-page .aboutPage-hero__content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    .about-page .aboutPage-hero__text {
        order: 1;
        text-align: center;
        max-width: 100%;
    }
    .about-page .aboutPage-hero__image {
        order: 2;
        width: 100%;
        display: flex;
        justify-content: center;
        margin: 0 0 0 0;
    }
    .about-page .aboutPage-hero__img {
        max-width: 260px;
        width: 80vw;
        margin: 18px auto 48px auto;
        border-radius: 22px;
        box-shadow: 0 6px 24px rgba(37,99,235,0.13);
    }
    .about-page .aboutPage-hero__title {
        margin-bottom: 18px;
    }
    .about-page .aboutPage-hero__subtitle {
        margin-top: 0;
    }
    
    .about-page .aboutPage-section-title {
        font-size: 2rem;
    }
    
    .about-page .aboutPage-mission__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-page .aboutPage-values__grid {
        grid-template-columns: 1fr;
    }
    
    .about-page .aboutPage-stats__grid {
        grid-template-columns: 1fr;
    }
    
    .about-page .aboutPage-stack__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .about-page .aboutPage-blog__content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .about-page .aboutPage-blog__image {
        margin-top: 24px;
    }
}

@media (max-width: 480px) {
    .about-page section {
        padding: 40px 0;
    }
    
    .about-page .aboutPage-hero {
        padding: 80px 0 40px;
    }
    
    .about-page .aboutPage-hero__title {
        font-size: 2rem;
    }
    
    .about-page .aboutPage-hero__subtitle {
        font-size: 1rem;
    }
    
    .about-page .aboutPage-section-title {
        font-size: 1.8rem;
    }
    
    .about-page .aboutPage-stack__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-page .aboutPage-hero__img {
        max-width: 180px;
        width: 90vw;
        margin-bottom: 12px;
    }
}

@media (max-width: 700px) {
    .about-page .aboutPage-expertise__icon-title-row {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        min-height: 40px;
    }
    .about-page .aboutPage-philosophy__list li,
    .about-page .aboutPage-achievements__list li {
        padding: 14px 6px;
    }
    .about-page .aboutPage-philosophy__icon,
    .about-page .aboutPage-achievements__icon {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    .about-page .aboutPage-expertise__title {
        font-size: 1.1rem;
    }
}

.about-page .aboutPage-achievements__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 32px;
    position: relative;
    z-index: 1;
}
.about-page .aboutPage-achievements__item {
    background: white;
    border-radius: 22px;
    box-shadow: 0 4px 16px rgba(37,99,235,0.07);
    padding: 38px 24px 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s;
    position: relative;
    min-height: 260px;
    opacity: 0;
    transform: translateY(40px);
    animation: aboutAchievementsFadeIn 0.8s cubic-bezier(.4,2,.6,1) forwards;
}
.about-page .aboutPage-achievements__item:nth-child(1) { animation-delay: 0.1s; }
.about-page .aboutPage-achievements__item:nth-child(2) { animation-delay: 0.2s; }
.about-page .aboutPage-achievements__item:nth-child(3) { animation-delay: 0.3s; }
.about-page .aboutPage-achievements__item:nth-child(4) { animation-delay: 0.4s; }
.about-page .aboutPage-achievements__item:nth-child(5) { animation-delay: 0.5s; }
.about-page .aboutPage-achievements__item:nth-child(6) { animation-delay: 0.6s; }
.about-page .aboutPage-achievements__item:nth-child(7) { animation-delay: 0.7s; }
.about-page .aboutPage-achievements__item:nth-child(8) { animation-delay: 0.8s; }
.about-page .aboutPage-achievements__item:hover {
    box-shadow: 0 10px 32px rgba(37,99,235,0.13);
    transform: translateY(-6px) scale(1.03);
}
.about-page .aboutPage-achievements__icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    box-shadow: 0 2px 12px rgba(37,99,235,0.10);
}
.about-page .aboutPage-achievements__icon {
    color: #fff;
    font-size: 2rem;
    margin: 0;
}
.about-page .aboutPage-achievements__text {
    font-size: 1.08rem;
    color: #1e293b;
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
}
@media (max-width: 1100px) {
    .about-page .aboutPage-achievements__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 700px) {
    .about-page .aboutPage-achievements__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .about-page .aboutPage-achievements__item {
        min-height: 0;
        padding: 22px 10px 16px 10px;
    }
    .about-page .aboutPage-achievements__icon-wrap {
        width: 44px; height: 44px; margin-bottom: 12px;
    }
    .about-page .aboutPage-achievements__icon {
        font-size: 1.2rem;
    }
    .about-page .aboutPage-achievements__text {
        font-size: 0.97rem;
    }
}
@keyframes aboutAchievementsFadeIn {
    to {
        opacity: 1;
        transform: none;
    }
}

.about-page .aboutPage-philosophy__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 32px;
    position: relative;
    z-index: 1;
}
.about-page .aboutPage-philosophy__item {
    background: white;
    border-radius: 22px;
    box-shadow: 0 4px 16px rgba(37,99,235,0.07);
    padding: 38px 24px 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s;
    position: relative;
    min-height: 260px;
    opacity: 0;
    transform: translateY(40px);
    animation: aboutPhilosophyFadeIn 0.8s cubic-bezier(.4,2,.6,1) forwards;
}
.about-page .aboutPage-philosophy__item:nth-child(1) { animation-delay: 0.1s; }
.about-page .aboutPage-philosophy__item:nth-child(2) { animation-delay: 0.2s; }
.about-page .aboutPage-philosophy__item:nth-child(3) { animation-delay: 0.3s; }
.about-page .aboutPage-philosophy__item:nth-child(4) { animation-delay: 0.4s; }
.about-page .aboutPage-philosophy__item:nth-child(5) { animation-delay: 0.5s; }
.about-page .aboutPage-philosophy__item:nth-child(6) { animation-delay: 0.6s; }
.about-page .aboutPage-philosophy__item:hover {
    box-shadow: 0 10px 32px rgba(37,99,235,0.13);
    transform: translateY(-6px) scale(1.03);
}
.about-page .aboutPage-philosophy__icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    box-shadow: 0 2px 12px rgba(37,99,235,0.10);
}
.about-page .aboutPage-philosophy__icon {
    color: #fff;
    font-size: 2rem;
    margin: 0;
}
.about-page .aboutPage-philosophy__text {
    font-size: 1.08rem;
    color: #1e293b;
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
}
@media (max-width: 1100px) {
    .about-page .aboutPage-philosophy__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 700px) {
    .about-page .aboutPage-philosophy__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .about-page .aboutPage-philosophy__item {
        min-height: 0;
        padding: 22px 10px 16px 10px;
    }
    .about-page .aboutPage-philosophy__icon-wrap {
        width: 44px; height: 44px; margin-bottom: 12px;
    }
    .about-page .aboutPage-philosophy__icon {
        font-size: 1.2rem;
    }
    .about-page .aboutPage-philosophy__text {
        font-size: 0.97rem;
    }
}
@keyframes aboutPhilosophyFadeIn {
    to {
        opacity: 1;
        transform: none;
    }
}

.about-page .aboutPage-methodology__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 32px;
    position: relative;
    z-index: 1;
}
.about-page .aboutPage-methodology__item {
    background: white;
    border-radius: 22px;
    box-shadow: 0 4px 16px rgba(37,99,235,0.07);
    padding: 38px 24px 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s;
    position: relative;
    min-height: 260px;
    opacity: 0;
    transform: translateY(40px);
    animation: aboutMethodologyFadeIn 0.8s cubic-bezier(.4,2,.6,1) forwards;
}
.about-page .aboutPage-methodology__item:nth-child(1) { animation-delay: 0.1s; }
.about-page .aboutPage-methodology__item:nth-child(2) { animation-delay: 0.2s; }
.about-page .aboutPage-methodology__item:nth-child(3) { animation-delay: 0.3s; }
.about-page .aboutPage-methodology__item:nth-child(4) { animation-delay: 0.4s; }
.about-page .aboutPage-methodology__item:nth-child(5) { animation-delay: 0.5s; }
.about-page .aboutPage-methodology__item:nth-child(6) { animation-delay: 0.6s; }
.about-page .aboutPage-methodology__item:nth-child(7) { animation-delay: 0.7s; }
.about-page .aboutPage-methodology__item:hover {
    box-shadow: 0 10px 32px rgba(37,99,235,0.13);
    transform: translateY(-6px) scale(1.03);
}
.about-page .aboutPage-methodology__step-number {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%);
    color: #fff;
    font-size: 1.6rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 2px 12px rgba(37,99,235,0.10);
}
.about-page .aboutPage-methodology__step-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}
.about-page .aboutPage-methodology__step-desc {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.98rem;
}
@media (max-width: 1100px) {
    .about-page .aboutPage-methodology__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 700px) {
    .about-page .aboutPage-methodology__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .about-page .aboutPage-methodology__item {
        min-height: 0;
        padding: 22px 10px 16px 10px;
    }
    .about-page .aboutPage-methodology__step-number {
        width: 38px; height: 38px; font-size: 1.1rem; margin-bottom: 10px;
    }
    .about-page .aboutPage-methodology__step-title {
        font-size: 1rem;
    }
    .about-page .aboutPage-methodology__step-desc {
        font-size: 0.95rem;
    }
}
@keyframes aboutMethodologyFadeIn {
    to {
        opacity: 1;
        transform: none;
    }
} 
} 