/* Main page styles */

.hero__left .logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 48px;
}
.hero__left .logo img { height: 64px; width: auto; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.25s;
}
.hero .btn-green {
    font-weight: 500;
}
.btn-green {
    background: #137F49;
    color: #fff;
    border-color: #137F49;
}
.btn-green:hover {
    background: #0f6a3d;
    border-color: #0f6a3d;
}
.btn-outline-green {
    background: transparent;
    color: #137F49;
    border-color: #137F49;
}
.btn-outline-green:hover {
    background: #137F49;
    color: #fff;
}
.btn-outline-white {
    background: transparent;
    color: #fff;
    border-color: #fff;
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.15);
}
.btn-dark-green {
    background: #024F2B;
    color: #fff;
    border-color: #024F2B;
}
.btn-dark-green:hover {
    background: #013d22;
    border-color: #013d22;
}

/* ===== HEADER FIX ===== */
.header-wrapper_fixed .header__bottom-wrapper {
    background: #f0f4f8 !important;
}

/* ===== HERO ===== */
.hero {
    background: #C1E6D4;
    padding: 70px 0 0;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: flex-end;
    gap: 24px;
    position: relative;
    z-index: 1;
}
.hero__left {
    flex: 0 0 35%;
    min-width: 0;
    padding-top: 40px;
    padding-bottom: 60px;
}
.hero__title {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    color: #172221;
}
.hero__subtitle {
    font-size: 14px;
    color: #343434;
    margin-bottom: 32px;
    line-height: 1.6;
}
.hero__right {
    flex: 0 0 62%;
    position: relative;
    margin-top: -30px;
}
.hero__illustration {
    width: 100%;
    height: auto;
    display: block;
    /* Картинка плавно сливается с фоном HERO:
       1) multiply убирает светлые области (рамку-карточку и фоновые частицы)
       2) горизонтальная маска размывает левый и правый края
          (там видно прямоугольную кромку из-за разницы оттенков). */
    mix-blend-mode: multiply;
    -webkit-mask-image: linear-gradient(to right,
        transparent 0%,
        black 22%,
        black 78%,
        transparent 100%);
            mask-image: linear-gradient(to right,
        transparent 0%,
        black 22%,
        black 78%,
        transparent 100%);
}

/* ===== SECTIONS COMMON ===== */
.page .section-title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.3;
}
.page .section-title span {
    color: #137F49;
    font-weight: 800;
}

/* ===== FOR WHOM ===== */
.for-whom {
    background: #fff;
    padding: 60px 0;
}
.for-whom .container {
    background: #F2F8FF;
    border-radius: 24px;
    padding: 48px 40px;
}
.for-whom__cards {
    display: flex;
    gap: 24px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}
.for-whom__card {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 28px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.for-whom__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
}
.for-whom__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.for-whom__text {
    font-size: 14px;
    color: #343434;
    line-height: 1.6;
}

/* ===== RESEARCH BLOCK ===== */
.research {
    padding: 60px 0;
    background: #fff;
}
.research__card {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px;
    border: 2px solid #137F49;
    border-radius: 20px;
    background: #F2F8FF;
    display: flex;
    align-items: center;
    gap: 40px;
}
.research__left {
    flex: 1;
}
.research__title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 16px;
}
.research__title strong {
    font-weight: 800;
    color: #137F49;
}
.research__text {
    font-size: 15px;
    color: #343434;
    margin-bottom: 24px;
    line-height: 1.6;
}
.research__illustration {
    flex: 0 0 300px;
}
.research__illustration img {
    width: 100%;
    height: auto;
}

/* ===== 4 STEPS ===== */
.steps {
    background: #fff;
    padding: 70px 0;
}
.steps__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
    position: relative;
}
.step {
    text-align: left;
    padding: 24px;
    position: relative;
    z-index: 1;
    background: #F2F8FF;
    border-radius: 20px;
}
.step::after {
    content: '';
    position: absolute;
    top: 44px;
    left: 64px;
    right: 20px;
    height: 1px;
    background: #137F49;
    z-index: 2;
}
.step::before {
    content: '';
    position: absolute;
    top: 41px;
    right: 20px;
    width: 6px;
    height: 6px;
    border: 1px solid #137F49;
    border-left: none;
    border-bottom: none;
    transform: rotate(45deg);
    background: transparent;
    z-index: 3;
}
.step__num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #F2F8FF;
    border: 1px solid #137F49;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 16px;
    font-size: 16px;
    font-weight: 700;
    color: #137F49;
}
.step__title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #172221;
}
.step__desc {
    font-size: 13px;
    color: #343434;
    line-height: 1.5;
}
.steps__bottom {
    text-align: center;
}
.steps__bottom-text {
    font-size: 16px;
    color: #343434;
    margin-bottom: 20px;
}

/* ===== WHY TRY ===== */
.why-try {
    background: #F2F8FF;
    padding: 70px 0;
}
.why-try__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.why-try__card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.why-try__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: #eaf5ef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.why-try__icon img { width: 100%; height: 100%; object-fit: contain; padding: 10px; }
.why-try__card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}
.why-try__card-text {
    font-size: 13px;
    color: #343434;
    line-height: 1.5;
}

/* ===== SITUATIONS ===== */
.situations {
    background: #fff;
    padding: 70px 0;
}
.situations__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}
.situation {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 24px;
    background: #F2F8FF;
    border-radius: 20px;
}
.situation__icon {
    flex-shrink: 0;
    width: 128px;
    height: 128px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.situation__icon img { width: 100%; height: 100%; object-fit: contain; }
.situation__title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}
.situation__text {
    font-size: 12px;
    color: #343434;
    line-height: 1.5;
}

/* ===== GREEN CTA BANNER ===== */
.cta-banner {
    padding: 40px 20px;
}
.cta-banner__inner {
    max-width: 1166px;
    margin: 0 auto;
    background: #B0DCC8;
    border-radius: 24px;
    padding: 40px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    position: relative;
    overflow: hidden;
}
.cta-banner__text {
    color: #172221;
    font-size: 18px;
    font-weight: 500;
    max-width: 800px;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}
.cta-banner__right {
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
    z-index: 1;
}
.cta-banner__illustration {
    width: 120px;
    height: auto;
}
.cta-banner__decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* ===== PSYCHOLOGISTS ROW ===== */
.psychologists {
    padding: 70px 0;
    text-align: center;
}
.psychologists__inner {
    max-width: 1166px;
    margin: 0 auto;
    background: #F2F8FF;
    border-radius: 20px;
    padding: 48px 40px;
}
.psychologists__avatars {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.psychologists__avatar {
    width: 131px;
    height: 131px;
    border-radius: 50%;
    border: 6px solid #F2F8FF;
    overflow: hidden;
    margin-left: -12px;
    background: #d4e4dc;
}
.psychologists__avatar:first-child { margin-left: 0; }
.psychologists__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.psychologists__avatar-more {
    width: 131px;
    height: 131px;
    border-radius: 50%;
    border: 6px solid #F2F8FF;
    margin-left: -12px;
    background: #137F49;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 36px;
    font-weight: 300;
}
.psychologists__text {
    font-size: 15px;
    color: #343434;
    margin-bottom: 24px;
}

/* ===== REVIEWS ===== */
.reviews {
    background: #fff;
    padding: 70px 0;
}
.reviews__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}
.review {
    background: #F2F8FF;
    border-radius: 24px;
    padding: 28px;
}
.review__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.review__author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.review__photo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #d4e4dc;
    overflow: hidden;
}
.review__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.review__name {
    font-size: 15px;
    font-weight: 700;
}
.review__meta {
    display: flex;
    align-items: center;
    gap: 10px;
}
.review__date {
    font-size: 12px;
    color: #96A0AA;
}
.review__stars {
    display: flex;
    gap: 2px;
}
.review__stars svg {
    width: 14px;
    height: 14px;
    fill: #F2994A;
}
.review__text {
    font-size: 14px;
    color: #343434;
    line-height: 1.6;
}
.review__more {
    color: #137F49;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    background: none;
    margin-top: 8px;
}

/* ===== VIDEO SECTION ===== */
.video-section {
    background: #fff;
    padding: 70px 0;
    text-align: center;
}
.video-section__desc {
    font-size: 15px;
    color: #343434;
    max-width: 700px;
    margin: 0 auto 32px;
    line-height: 1.6;
}
.video-section__player {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #2a3a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.video-section__player img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}
.video-section__play {
    width: 72px;
    height: 72px;
    background: rgba(19, 127, 73, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    z-index: 1;
}
.video-section__play svg {
    width: 28px;
    height: 28px;
    fill: #fff;
    margin-left: 4px;
}

/* ===== COMMUNITY HERO ===== */
.community-hero {
    background: #C1E6D4;
    padding: 120px 0 70px;
}
.community-hero__inner {
    display: flex;
    align-items: center;
    gap: 50px;
}
.community-hero__left {
    flex: 1;
}
.community-hero__title {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 20px;
    color: #172221;
}
.community-hero__text {
    font-size: 16px;
    color: #343434;
    line-height: 1.6;
    margin-bottom: 24px;
}
.community-hero__values {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}
.community-hero__value {
    display: inline-block;
    padding: 8px 16px;
    background: #fff;
    color: #137F49;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}
.community-hero__note {
    font-size: 14px;
    color: #5a6a6f;
    margin-bottom: 28px;
    line-height: 1.5;
}
.community-hero__img {
    flex: 0 0 640px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.community-hero__img img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== UNIQUE ===== */
.unique {
    background: #F2F8FF;
    padding: 70px 0;
}
.unique__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.unique__card {
    background: #fff;
    border-radius: 20px;
    padding: 28px 24px;
}
.unique__card--big {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
}
.unique__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
}
.unique__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.unique__card-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #172221;
}
.unique__card-text {
    font-size: 13px;
    color: #343434;
    line-height: 1.6;
}

/* ===== COMMUNITY HERO — UPDATED ===== */
.community-hero__checks {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}
.community-hero__check {
    font-size: 15px;
    font-weight: 500;
    color: #172221;
    display: flex;
    align-items: center;
    gap: 10px;
}
.community-hero__check-icon {
    color: #137F49;
    font-weight: 700;
    font-size: 18px;
}
.community-hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}
.community-hero__tags span {
    padding: 6px 16px;
    background: rgba(255,255,255,0.6);
    border-radius: 50px;
    font-size: 13px;
    color: #343434;
    font-weight: 500;
}

/* ===== 1.5. СВЯЗЬ С МАРКЕТПЛЕЙСОМ ===== */
.comm-marketplace-link {
    background: #f0faf5;
    padding: 32px 0;
    border-bottom: 1px solid #e0efe8;
}
.comm-marketplace-link__text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 17px;
    line-height: 1.6;
    color: #172221;
    font-weight: 500;
}

/* ===== 2. СООБЩЕСТВО ДЛЯ ТЕБЯ ===== */
.comm-for-you {
    background: #0e3d2a;
    padding: 70px 0;
}
.comm-for-you__inner {
    max-width: 900px;
    margin: 0 auto;
}
.comm-for-you__title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 32px;
    color: #fff;
    text-align: center;
}
.comm-for-you__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.comm-for-you__list li {
    padding: 20px 24px 20px 52px;
    position: relative;
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
    background: rgba(255,255,255,0.06);
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
}
.comm-for-you__list li::before {
    content: '✓';
    position: absolute;
    left: 20px;
    top: 20px;
    color: #4cd68a;
    font-size: 16px;
    font-weight: 700;
}

/* ===== 1.7 КАК ЭТО РАБОТАЕТ ===== */
.comm-how {
    background: #fff;
    padding: 60px 0 80px;
}
.comm-how__img {
    max-width: 1100px;
    margin: 0 auto;
}
.comm-how__img picture {
    display: block;
}
.comm-how__img img {
    display: block;
    width: 100%;
    height: auto;
    /* Края картинки плавно растворяются в белом фоне секции:
       маска делает прозрачными все 4 края, перетекая в видимую зону к центру. */
    -webkit-mask-image: linear-gradient(to right,
            transparent 0%, black 8%, black 92%, transparent 100%),
        linear-gradient(to bottom,
            transparent 0%, black 8%, black 92%, transparent 100%);
            mask-image: linear-gradient(to right,
            transparent 0%, black 8%, black 92%, transparent 100%),
        linear-gradient(to bottom,
            transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-composite: source-in;
            mask-composite: intersect;
}

/* ===== 1.5 МИССИЯ ===== */
.comm-mission {
    background: #fff;
    padding: 80px 0;
}
.comm-mission__inner {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}
.comm-mission__title {
    font-size: 34px;
    font-weight: 800;
    color: #0e3d2a;
    margin-bottom: 28px;
    line-height: 1.2;
}
.comm-mission__text {
    font-size: 17px;
    line-height: 1.65;
    color: #223;
}
.comm-mission__text p {
    margin: 0 0 16px;
}
.comm-mission__list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}
.comm-mission__list li {
    position: relative;
    padding: 14px 28px 14px 52px;
    background: #F2F8FF;
    border-radius: 14px;
    border: 1px solid rgba(14,61,42,0.08);
    max-width: 680px;
    width: 100%;
    text-align: left;
    font-weight: 500;
}
.comm-mission__list li::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #4cd68a;
    box-shadow: inset 0 0 0 4px #fff, 0 0 0 2px #4cd68a;
}

/* ===== 3. ЧТО ТЫ ПОЛУЧАЕШЬ ===== */
.comm-benefits {
    background: #F2F8FF;
    padding: 70px 0;
}
.comm-benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}
.comm-benefits__item {
    background: #fff;
    border-radius: 20px;
    padding: 28px 24px;
    text-align: center;
}
.comm-benefits__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 14px;
}
.comm-benefits__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.comm-benefits__text {
    font-size: 14px;
    font-weight: 600;
    color: #172221;
    line-height: 1.4;
}
.comm-benefits__item_accent {
    background: #137F49;
    border-color: #137F49;
}
.comm-benefits__item_accent .comm-benefits__text {
    color: #fff;
}

/* ===== 4. ГРУППЫ РОСТА ===== */
.comm-growth {
    background: #fff;
    padding: 70px 0;
}
.comm-growth__inner {
    display: flex;
    align-items: center;
    gap: 48px;
}
.comm-growth__content {
    flex: 1;
}
.comm-growth__title {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #172221;
}
.comm-growth__title span {
    color: #137F49;
}
.comm-growth__text {
    font-size: 15px;
    color: #343434;
    line-height: 1.6;
    margin-bottom: 16px;
}
.comm-growth__list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.comm-growth__list li {
    padding-left: 28px;
    position: relative;
    font-size: 15px;
    color: #343434;
    line-height: 1.5;
}
.comm-growth__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #137F49;
    font-weight: 700;
}
.comm-growth__note {
    font-size: 13px;
    color: #5a6a6f;
    line-height: 1.5;
    font-style: italic;
}
.comm-growth__photo {
    flex: 0 0 400px;
    border-radius: 20px;
    overflow: hidden;
}
.comm-growth__photo img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== 5. ЕЖЕНЕДЕЛЬНОЕ РАСПИСАНИЕ ===== */
.comm-schedule {
    background: #F2F8FF;
    padding: 70px 0;
}
.comm-schedule__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto 32px;
}
.comm-schedule__item {
    background: #fff;
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    border: 1px solid #e0ebe5;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.comm-schedule__item:hover {
    border-color: #137F49;
    box-shadow: 0 4px 16px rgba(19, 127, 73, 0.08);
}
.comm-schedule__item-title {
    font-size: 14px;
    font-weight: 600;
    color: #172221;
    line-height: 1.4;
}
.comm-schedule__cta {
    text-align: center;
}

/* ===== 6. ОСНОВАТЕЛИ ===== */
.comm-founders {
    background: #fff;
    padding: 70px 0;
}
.comm-founders__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}
.comm-founders__card {
    background: #F2F8FF;
    border-radius: 20px;
    padding: 32px;
    display: flex;
    gap: 24px;
    align-items: stretch;
}
.comm-founders__photo {
    flex-shrink: 0;
    width: 160px;
    border-radius: 16px;
    overflow: hidden;
    background: #d4e4dc;
}
.comm-founders__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.comm-founders__name {
    font-size: 18px;
    font-weight: 700;
    color: #172221;
    margin-bottom: 10px;
}
.comm-founders__details {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.comm-founders__details li {
    font-size: 13px;
    color: #343434;
    line-height: 1.5;
    padding-left: 16px;
    position: relative;
}
.comm-founders__details li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #137F49;
    font-weight: 700;
}

/* ===== 7. СТОИМОСТЬ УЧАСТИЯ ===== */
.comm-pricing {
    background: #F2F8FF;
    padding: 70px 0;
}
.comm-pricing__card {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    border-radius: 24px;
    padding: 40px 48px;
    border: 2px solid #137F49;
}
.comm-pricing__list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.comm-pricing__list li {
    padding-left: 28px;
    position: relative;
    font-size: 15px;
    color: #343434;
    line-height: 1.5;
}
.comm-pricing__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #137F49;
    font-weight: 700;
}
.comm-pricing__list li strong {
    color: #137F49;
    font-weight: 800;
}
.comm-pricing__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid #e0ebe5;
    gap: 20px;
}
.comm-pricing__price {
    font-size: 28px;
    font-weight: 800;
    color: #172221;
}

/* ===== 8. 50% В МАРКЕТПЛЕЙС ===== */
.comm-marketplace {
    background: #fff;
    padding: 70px 0;
}
.comm-marketplace__card {
    max-width: 900px;
    margin: 0 auto;
    background: #F2F8FF;
    border-radius: 24px;
    padding: 48px;
}
.comm-marketplace__title {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 28px;
    color: #172221;
}
.comm-marketplace__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}
.comm-marketplace__col p {
    font-size: 14px;
    color: #343434;
    line-height: 1.6;
    margin: 0 0 12px;
}
.comm-marketplace__note {
    font-size: 14px;
    color: #5a6a6f;
    line-height: 1.5;
    font-style: italic;
    padding-top: 20px;
    border-top: 1px solid #d6e4dd;
}

/* ===== 9. FOOTER CTA ===== */
.comm-cta {
    background: #C1E6D4;
    padding: 70px 0;
}
.comm-cta__inner {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.comm-cta__logo {
    margin-bottom: 24px;
}
.comm-cta__logo img {
    height: 48px;
    width: auto;
}
.comm-cta__title {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 16px;
    color: #172221;
}
.comm-cta__text {
    font-size: 16px;
    color: #343434;
    line-height: 1.5;
    margin-bottom: 28px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
    .hero { padding-top: 94px; }
    .hero .container { flex-direction: column; text-align: center; }
    .hero__right { flex: none; width: 100%; max-width: 500px; }
    .hero__left { flex: none; width: 100%; padding-bottom: 20px; }
    .hero__title { font-size: 32px; }
    .steps__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .step::after,
    .step::before { display: none; }
    .situations__grid { grid-template-columns: repeat(2, 1fr); }
    .why-try__grid { grid-template-columns: repeat(2, 1fr); }
    .research__card { flex-direction: column; }
    .research__illustration { flex: none; width: 200px; }
    .cta-banner__inner { flex-direction: column; text-align: center; }
    .community-hero { padding-top: 110px; }
    .community-hero__inner { flex-direction: column; text-align: center; }
    .community-hero__img { flex: none; width: 100%; max-width: 640px; }
    .community-hero__title { font-size: 26px; }
    .community-hero__values { justify-content: center; }
    .community-hero__checks { align-items: center; }
    .community-hero__tags { justify-content: center; }
    .unique__grid { grid-template-columns: repeat(2, 1fr); }
    .unique__card--big { grid-row: auto; }
    .comm-benefits__grid { grid-template-columns: repeat(2, 1fr); }
    .comm-mission { padding: 60px 0; }
    .comm-mission__title { font-size: 26px; }
    .comm-mission__text { font-size: 16px; }
    .comm-growth__inner { flex-direction: column; }
    .comm-growth__photo { flex: none; width: 100%; max-width: 500px; }
    .comm-growth__title { font-size: 24px; }
    .comm-schedule__grid { grid-template-columns: repeat(2, 1fr); }
    .comm-founders__grid { grid-template-columns: 1fr; max-width: 500px; }
    .comm-marketplace__grid { grid-template-columns: 1fr; }
    .comm-marketplace__title { font-size: 22px; }
}
@media (max-width: 600px) {
    .hero { padding-top: 74px; }
    .for-whom__cards { flex-direction: column; }
    .steps__grid { grid-template-columns: 1fr; }
    .why-try__grid { grid-template-columns: 1fr; }
    .situations__grid { grid-template-columns: 1fr; }
    .reviews__grid { grid-template-columns: 1fr; }
    .hero__title { font-size: 26px; }
    .page .section-title { font-size: 24px; }
    .nav-top__links { display: none; }
    .psychologists__avatar,
    .psychologists__avatar-more { width: 80px; height: 80px; }
    .unique__grid { grid-template-columns: 1fr; }
    .community-hero { padding: 94px 0 50px; }
    .community-hero__title { font-size: 22px; }
    .comm-for-you__list { grid-template-columns: 1fr; }
    .comm-for-you__title { font-size: 22px; }
    .comm-mission { padding: 48px 0; }
    .comm-mission__title { font-size: 22px; margin-bottom: 20px; }
    .comm-mission__text { font-size: 15px; }
    .comm-mission__list li { padding: 12px 20px 12px 46px; font-size: 14px; }
    .comm-benefits__grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
    .comm-schedule__grid { grid-template-columns: 1fr; }
    .comm-founders__card { flex-direction: column; align-items: center; text-align: center; }
    .comm-founders__details li { text-align: left; }
    .comm-pricing__card { padding: 32px 24px; }
    .comm-pricing__bottom { flex-direction: column; text-align: center; }
    .comm-pricing__price { font-size: 24px; }
    .comm-marketplace__card { padding: 32px 24px; }
    .comm-marketplace__title { font-size: 20px; }
    .comm-cta__title { font-size: 22px; }
}
