/* =========================================
   ABOUT PAGE
========================================= */

/* Убираем абстрактные фигуры только на этой странице */
.hero-section>.decor {
    display: none;
}

.about-page {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: #f3f3f3;
    overflow: hidden;
}

/* =========================================
   HERO
========================================= */
.about-hero {
    width: 100%;
    background: #42e0a8;
    padding: 18px 0 16px;
}

.about-hero .container {
    width: min(calc(100% - 48px), 1180px);
    margin: 0 auto;
}

.about-title {
    margin: 0;
    max-width: 1550px;
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #000000;
}

/* =========================================
   CONTENT
========================================= */
.about-content {
    width: 100%;
    background: #f3f3f3;
    padding: 58px 0 78px;
}

.about-content .container {
    width: min(calc(100% - 48px), 1180px);
    margin: 0 auto;
}

.about-text {
    max-width: 760px;
    margin: 0 auto;
}

.about-text p {
    margin: 0;
    font-size: 16px;
    line-height: 1.32;
    font-weight: 500;
    color: #111111;
    letter-spacing: -0.01em;
}

.about-text p+p {
    margin-top: 18px;
}

/* =========================================
   ANIMATIONS
========================================= */
.reveal {
    opacity: 0;
    transform: translateY(28px);
}

.reveal.in-view {
    animation: aboutRevealUp 0.8s ease forwards;
}

.delay-1.in-view {
    animation-delay: 0.15s;
}

@keyframes aboutRevealUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 900px) {
    .about-hero {
        padding: 16px 0 14px;
    }

    .about-title {
        max-width: 100%;
        font-size: 30px;
        line-height: 1.1;
    }

    .about-content {
        padding: 42px 0 56px;
    }

    .about-text {
        max-width: 100%;
    }

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

    .about-text p+p {
        margin-top: 16px;
    }
}

@media (max-width: 640px) {

    .about-hero .container,
    .about-content .container {
        width: min(calc(100% - 28px), 1180px);
    }

    .about-hero {
        padding: 14px 0 12px;
    }

    .about-title {
        font-size: 24px;
        line-height: 1.12;
    }

    .about-content {
        padding: 32px 0 42px;
    }

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

    .about-text p+p {
        margin-top: 14px;
    }
}

@media (max-width: 420px) {
    .about-title {
        font-size: 21px;
    }

    .about-text p {
        font-size: 13.5px;
        line-height: 1.45;
    }
}

/* =========================================
   MISSION FULL WIDTH
========================================= */

.mission-section {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: #c5c5c5;
    padding: 50px 0 70px;
}

/* Общий layout */
.mission-wrapper {
    display: flex;
    align-items: center;
}

/* ФИОЛЕТОВАЯ ПЛАШКА */
.mission-label {
    width: 445px;
    height: 150px;
    background: #8a2a8e;
    border-radius: 0 70px 70px 0;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 40px;
    font-weight: 800;
    color: #fff;

    box-shadow: 0 20px 40px rgba(138, 42, 142, 0.18);

    transition: 0.4s ease;
}

.mission-label:hover {
    transform: translateX(10px);
    box-shadow: 0 25px 50px rgba(138, 42, 142, 0.25);
}

/* ТЕКСТ */
.mission-content {
    display: flex;
    justify-content: center;
    width: 1200px;
}

.mission-content-inner {
    max-width: 720px;
    padding: 0 40px;
}

.mission-content-inner p {
    margin: 0;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 500;
    color: #111;
}

.mission-content-inner p+p {
    margin-top: 18px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {
    .mission-wrapper {
        flex-direction: column;
        gap: 25px;
    }

    .mission-label {
        width: 240px;
        height: 80px;
        font-size: 28px;
        border-radius: 0 50px 50px 0;
    }

    .mission-content-inner {
        padding: 0 20px;
    }

    .mission-content-inner p {
        font-size: 15px;
    }
}

@media (max-width: 600px) {
    .mission-label {
        width: 200px;
        height: 70px;
        font-size: 24px;
    }

    .mission-content-inner p {
        font-size: 14px;
        line-height: 1.4;
    }
}

/* =========================================
   SUPPORT GROWTH SECTION
========================================= */
.support-growth-section {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: #f3f3f3;
    padding: 34px 0 76px;
    overflow: hidden;
}

.support-growth-section .container {
    position: relative;
    z-index: 2;
    width: min(calc(100% - 48px), 1180px);
    margin: 0 auto;
}

.support-growth-head {
    margin-bottom: 22px;
}

.support-growth-head h2 {
    margin: 0;
    font-size: clamp(32px, 3.4vw, 58px);
    line-height: 1.04;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #000000;
    text-align: center;
}

/* Декор */
.growth-decor {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    user-select: none;
}

.growth-decor-left {
    left: 0;
    top: 78px;
    width: 116px;
}

.growth-decor-right {
    right: 0;
    top: 156px;
    width: 108px;
}

/* Grid */
.support-growth-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 10px;
    max-width: 900px;
    margin: 0 auto;
}

.growth-card {
    position: relative;
    min-height: 102px;
    overflow: hidden;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        filter 0.35s ease;
}

.growth-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.12);
    z-index: 3;
}

.growth-card--purple {
    background: #8a2a8e;
    color: #ffffff;
}

.growth-card--green {
    background: #42e0a8;
    color: #000000;
}

.growth-card__inner {
    padding: 18px 20px 16px;
}

.growth-card h3 {
    margin: 0 0 12px;
    font-size: clamp(17px, 1.4vw, 24px);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.growth-card p {
    margin: 0;
    font-size: 13px;
    line-height: 1.28;
    font-weight: 500;
    letter-spacing: -0.01em;
}

/* Белые вырезы */
.growth-card__notch {
    position: absolute;
    top: 50%;
    width: 14px;
    height: 14px;
    background: #f3f3f3;
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.growth-card__notch--left {
    left: -7px;
}

.growth-card__notch--right {
    right: -7px;
}

/* Hover-эффект содержимого */
.growth-card:hover .growth-card__inner {
    transform: translateY(-2px);
}

.growth-card__inner {
    transition: transform 0.35s ease;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1100px) {
    .support-growth-grid {
        max-width: 820px;
    }

    .growth-decor-left {
        width: 96px;
        top: 90px;
    }

    .growth-decor-right {
        width: 92px;
        top: 170px;
    }
}

@media (max-width: 900px) {
    .support-growth-section {
        padding: 28px 0 58px;
    }

    .support-growth-grid {
        grid-template-columns: 1fr;
        max-width: 620px;
    }

    .growth-card__notch--left,
    .growth-card__notch--right {
        display: none;
    }

    .growth-decor-left {
        width: 82px;
        top: 120px;
        opacity: 0.85;
    }

    .growth-decor-right {
        width: 78px;
        top: auto;
        bottom: 40px;
        opacity: 0.85;
    }
}

@media (max-width: 640px) {
    .support-growth-section .container {
        width: min(calc(100% - 28px), 1180px);
    }

    .support-growth-section {
        padding: 24px 0 42px;
    }

    .support-growth-head {
        margin-bottom: 18px;
    }

    .support-growth-head h2 {
        font-size: 26px;
        line-height: 1.1;
    }

    .support-growth-grid {
        gap: 12px;
    }

    .growth-card__inner {
        padding: 16px 16px 14px;
    }

    .growth-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .growth-card p {
        font-size: 13px;
        line-height: 1.35;
    }

    .growth-decor-left {
        width: 66px;
        top: 110px;
    }

    .growth-decor-right {
        width: 62px;
        bottom: 28px;
    }
}

@media (max-width: 420px) {
    .support-growth-head h2 {
        font-size: 23px;
    }

    .growth-card h3 {
        font-size: 17px;
    }

    .growth-card p {
        font-size: 12.5px;
    }
}

/* =========================================
   VALUES SECTION
========================================= */
.values-section {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: #f3f3f3;
    padding: 28px 0 82px;
    overflow: hidden;
}

.values-section .container {
    position: relative;
    z-index: 2;
    width: min(calc(100% - 48px), 888px);
    margin: 0 auto;
}

.values-head {
    margin-bottom: 20px;
}

.values-head h2 {
    margin: 0;
    font-size: clamp(34px, 3.5vw, 60px);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #000000;
}

/* Декоративные фигуры */
.values-decor {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    user-select: none;
}

.values-decor-left {
    left: 0;
    bottom: 58px;
    width: 104px;
}

.values-decor-right {
    right: 0;
    top: 34px;
    width: 92px;
}

/* Grid */
.values-grid {
    max-width: 920px;
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 10px;
}

.value-card {
    min-height: 168px;
    background: transparent;
    border: 1px solid rgba(80, 138, 130, 0.55);
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(138, 42, 142, 0.35);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.08);
}

.value-card__icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #8a2a8e;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    flex-shrink: 0;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
}

.value-card:hover .value-card__icon {
    transform: scale(1.08) rotate(3deg);
    background: #7b237f;
    box-shadow: 0 14px 24px rgba(138, 42, 142, 0.24);
}

.value-card__icon i {
    font-size: 28px;
    line-height: 1;
}

.value-card h3 {
    margin: 0 0 8px;
    font-size: clamp(18px, 1.3vw, 24px);
    line-height: 1.12;
    font-weight: 700;
    color: #111111;
    letter-spacing: -0.02em;
}

.value-card p {
    margin: 0;
    font-size: 13px;
    line-height: 1.28;
    font-weight: 500;
    color: #222222;
    max-width: 235px;
}

/* =========================================
   VALUES RESPONSIVE
========================================= */
@media (max-width: 1100px) {
    .values-grid {
        max-width: 860px;
    }

    .values-decor-left {
        width: 90px;
    }

    .values-decor-right {
        width: 82px;
    }
}

@media (max-width: 900px) {
    .values-section {
        padding: 24px 0 58px;
    }

    .values-grid {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
        max-width: 700px;
    }

    .values-decor-left {
        width: 74px;
        bottom: 26px;
        opacity: 0.85;
    }

    .values-decor-right {
        width: 66px;
        top: 24px;
        opacity: 0.85;
    }
}

@media (max-width: 640px) {
    .values-section .container {
        width: min(calc(100% - 28px), 1180px);
    }

    .values-section {
        padding: 20px 0 42px;
    }

    .values-head {
        margin-bottom: 16px;
    }

    .values-head h2 {
        font-size: 28px;
        line-height: 1.08;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 100%;
    }

    .value-card {
        min-height: auto;
        padding: 16px 14px 18px;
    }

    .value-card__icon {
        width: 58px;
        height: 58px;
        margin-bottom: 10px;
    }

    .value-card__icon i {
        font-size: 24px;
    }

    .value-card h3 {
        font-size: 18px;
    }

    .value-card p {
        font-size: 13px;
        line-height: 1.35;
        max-width: 100%;
    }

    .values-decor-left {
        width: 58px;
        bottom: 18px;
    }

    .values-decor-right {
        width: 52px;
        top: 18px;
    }
}

@media (max-width: 420px) {
    .values-head h2 {
        font-size: 24px;
    }

    .value-card h3 {
        font-size: 17px;
    }

    .value-card p {
        font-size: 12.5px;
    }
}