/* ==========================================================================
   MAIN PAGE — ALL BLOCKS REDESIGN v1.37.0
   Единый зелёный стиль, согласованный с hero-блоком (.home-hero-v2)
   Палитра: #059669 (primary), #047857 (dark), #065f46 (darker),
            #f0fdf4 / #ecfdf5 (bg), #d1fae5 (border), #10b981 (accent)
   ========================================================================== */

/* ==========================================================================
   0. GLOBAL MOBILE FIXES — предотвращение горизонтального скролла
   ========================================================================== */
html, body {
    overflow-x: hidden !important;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* box-sizing страховка для контейнеров (max-width задан в base.css) */
.wrap, .container {
    box-sizing: border-box;
}

/* Кнопки не должны выходить за ширину экрана */
.cases__btn {
    max-width: 100%;
    box-sizing: border-box;
}

/* Все изображения — max-width: 100% fallback */
img {
    max-width: 100%;
    height: auto;
}

/* Старый mobile-img — страховка если где-то остались ссылки */
.home-hero-v2__mobile-img {
    display: none !important;
}

/* Карточки hero — скрытие на мобильных (fix: .home-hero-v2__cards grid перебивал .hide_992) */
@media (max-width: 1024px) {
    .home-hero-v2__cards.hide_992 {
        display: none !important;
    }
}

/* ==========================================================================
   1. SERVICES SECTION — Карточки услуг
   ========================================================================== */

.services__title {
    position: relative;
    padding-left: 20px;
}
.services__title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    border-radius: 2px;
    background: linear-gradient(180deg, #059669, #10b981);
}

/* Кнопка "Все услуги" / "Все кейсы" — зелёный стиль */
.cases__btn {
    color: #059669 !important;
    border-color: #059669 !important;
    background: transparent !important;
    border-radius: 50px !important;
    transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease !important;
}
.cases__btn:hover {
    background: #059669 !important;
    color: #fff !important;
    border-color: #059669 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.25);
}

/* Service cards — зелёный hover + верхний акцент */
.service-card {
    position: relative;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: none;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #059669, #10b981, #34d399);
    opacity: 0;
    transition: opacity 0.35s ease;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(5, 150, 105, 0.12);
    border-color: #d1fae5;
}
.service-card:hover::before {
    opacity: 1;
}
.service-card:hover .service-card__title {
    color: #059669 !important;
}

/* Service card icon — зелёный фон */
.service-card__icon {
    width: 56px;
    height: 56px;
    background: #f0fdf4;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
}
/* Перекраска SVG из серого/чёрного в зелёный */
.service-card__icon img {
    filter: brightness(0) saturate(100%) invert(38%) sepia(91%) saturate(497%) hue-rotate(117deg) brightness(96%) contrast(96%);
}
.service-card:hover .service-card__icon {
    background: #ecfdf5;
    transform: scale(1.05);
}

/* Ссылка "Подробнее" — зелёная */
.service-card__link {
    color: #059669 !important;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
}
.service-card__link::after {
    content: '\2192';
    transition: transform 0.3s ease;
}
.service-card__link:hover {
    color: #047857 !important;
}
.service-card__link:hover::after {
    transform: translateX(4px);
}

/* ==========================================================================
   2. CASES SECTION — Слайдер кейсов
   ========================================================================== */

.cases__title {
    position: relative;
    padding-left: 20px;
}
.cases__title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    border-radius: 2px;
    background: linear-gradient(180deg, #059669, #10b981);
}

/* Case cards — зелёный стиль */
.case-page-card .case-card__content,
.case-card__content {
    border: 1px solid #e5e7eb;
    transition: transform 0.35s ease, opacity 0.35s ease, box-shadow 0.35s ease;
}
.case-page-card:hover .case-card__content,
.case-card:hover .case-card__content {
    border-color: #d1fae5;
    box-shadow: 0 12px 32px rgba(5, 150, 105, 0.1);
}

/* Case stat checkmarks — зелёные */
.case-card__stat svg path {
    stroke: #059669 !important;
}

/* Case card link */
.case-card__link {
    color: #059669 !important;
    transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
}
.case-card__link:hover {
    color: #047857 !important;
}
.case-card__link svg path {
    stroke: #059669 !important;
}

/* Case metrics */
.case-card__metrics {
    color: #059669 !important;
}

/* Case slider arrows */
.case-slider-arrow {
    transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
}
.case-slider-arrow:hover {
    background: #f0fdf4;
}
.case-slider-dots .slick-active {
    background: #059669 !important;
}

/* ==========================================================================
   3. STRATEGY SECTION — Расширенный блок стратегии
   ========================================================================== */

/* --- Header Block (центрированный заголовок) --- */
.strategy__header-block {
    text-align: center;
    margin-bottom: 48px;
}

.strategy__header-block .strategy__tag {
    display: inline-flex;
    margin: 0 auto 20px;
}

.strategy__header-block .strategy__title {
    padding-left: 0;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 16px;
}
.strategy__header-block .strategy__title::before {
    display: none;
}

.strategy__subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: #4b5563;
    max-width: 720px;
    margin: 0 auto;
    font-weight: 400;
}

/* --- Тег "Стратегия" — зелёный --- */
.strategy__tag {
    color: #059669 !important;
    border-color: #d1fae5 !important;
    background: #f0fdf4 !important;
}

.strategy__title {
    position: relative;
    padding-left: 20px;
}
.strategy__title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    border-radius: 2px;
    background: linear-gradient(180deg, #059669, #10b981);
}

/* --- Stats Row (4 карточки с числами) --- */
.strategy__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}

.strategy__stat {
    text-align: center;
    padding: 28px 16px;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 50%, rgba(255,255,255,0.8) 100%);
    border: 1px solid #d1fae5;
    border-radius: 16px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.strategy__stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #059669, #10b981, #34d399);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.strategy__stat:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(5, 150, 105, 0.15);
    border-color: #a7f3d0;
}
.strategy__stat:hover::before {
    opacity: 1;
}

.strategy__stat-value {
    display: block;
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #047857, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.strategy__stat-label {
    display: block;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    font-weight: 500;
}

/* --- Accordion — расширенный стиль --- */
.accordion-item__number {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: linear-gradient(135deg, #059669, #10b981);
    color: white;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.accordion-item--active .accordion-item__number {
    transform: scale(1.12);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.35);
    background: linear-gradient(135deg, #047857, #059669);
}

.accordion-item__divider {
    background: #e5e7eb !important;
    transition: background 0.3s ease;
}
.accordion-item--active .accordion-item__divider {
    background: #059669 !important;
}

.accordion-item__toggle:hover {
    background: rgba(5, 150, 105, 0.1) !important;
}

.accordion-item__header:hover .accordion-item__title {
    color: #059669;
}

.accordion-item__icon {
    filter: hue-rotate(90deg) saturate(1.5);
}

/* Accordion content — больше места для расширенного текста */
.accordion-item--active .accordion-item__content {
    max-height: 500px !important;
}

/* --- Visual container — вертикальная раскладка (override main.css flex) --- */
.strategy__visual {
    flex-direction: column !important;
    gap: 28px !important;
    margin-top: 0 !important;
}

/* --- Progress container — gap override --- */
.strategy__progress {
    gap: 0 !important;
}

/* --- Progress items — сброс конфликтующих базовых стилей main.css --- */
.strategy .progress-item {
    border-radius: 14px !important;
    box-shadow: none !important;
    margin-left: 0 !important;
    display: block !important;
    padding: 16px 20px !important;
    border: 1px solid #f3f4f6 !important;
    background: white !important;
    margin-bottom: 16px !important;
}
.strategy .progress-item:nth-child(2),
.strategy .progress-item:nth-child(3) {
    margin-left: 0 !important;
}
.strategy .progress-item:hover {
    border-color: #d1fae5 !important;
    box-shadow: 0 4px 20px rgba(5, 150, 105, 0.1) !important;
    transform: translateX(4px);
}
.strategy .progress-item:last-child {
    margin-bottom: 0 !important;
}

/* --- Process Steps (4 шага) --- */
.strategy__process {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 28px 24px;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 50%, rgba(255,255,255,0.9) 100%);
    border: 1px solid #d1fae5;
    border-radius: 20px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}
.strategy__process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #059669, #10b981, #34d399, #6ee7b7);
}

.strategy__process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    padding: 0 8px;
}

.strategy__process-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, #059669, #10b981);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(5, 150, 105, 0.2);
}

.strategy__process-step:hover .strategy__process-icon {
    transform: scale(1.12) rotate(5deg);
    box-shadow: 0 8px 28px rgba(5, 150, 105, 0.35);
}

.strategy__process-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.strategy__process-name {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.3;
}

.strategy__process-desc {
    display: block;
    font-size: 12px;
    color: #6b7280;
    line-height: 1.5;
}

.strategy__process-arrow {
    display: flex;
    align-items: center;
    color: #10b981;
    padding-top: 16px;
    opacity: 0.5;
    flex-shrink: 0;
}

/* --- Progress Section --- */
.strategy__progress-section {
    margin-bottom: 20px;
}

.strategy__progress-title {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
    padding-left: 4px;
}

/* Progress items — см. override выше через .strategy .progress-item */

/* Info row: avatar + label + percent */
.progress-item__info {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    gap: 12px;
}

/* Avatar resize for new layout */
.strategy .progress-item__avatar {
    width: 44px !important;
    height: 44px !important;
}

.progress-item__label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    flex: 1;
    line-height: 1.4;
}

.progress-item__percent {
    font-size: 18px;
    font-weight: 800;
    background: linear-gradient(135deg, #047857, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Progress fills — зелёная палитра */
.progress-item__fill--blue {
    background: linear-gradient(90deg, #059669, #10b981) !important;
}
.progress-item__fill--yellow {
    background: linear-gradient(90deg, #10b981, #34d399) !important;
}
.progress-item__fill--blue-light {
    background: linear-gradient(90deg, #6ee7b7, #a7f3d0) !important;
}
.progress-item__fill--red {
    background: linear-gradient(90deg, #047857, #059669) !important;
}

/* --- Coverage Badge --- */
.strategy__coverage {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(5,150,105,0.06), rgba(16,185,129,0.03));
    border: 1px solid #d1fae5;
    border-radius: 14px;
    font-size: 14px;
    color: #374151;
    line-height: 1.6;
    transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
}
.strategy__coverage:hover {
    background: linear-gradient(135deg, rgba(5,150,105,0.1), rgba(16,185,129,0.05));
    box-shadow: 0 4px 16px rgba(5, 150, 105, 0.08);
}

.strategy__coverage svg {
    flex-shrink: 0;
    color: #059669;
}

.strategy__coverage strong {
    color: #059669;
    font-weight: 700;
}

/* --- Strategy Responsive --- */
@media (max-width: 1200px) {
    .strategy__stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }
    .strategy__stat-value {
        font-size: 28px;
    }
}

@media (max-width: 1024px) {
    .strategy__stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .strategy__process {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }
    .strategy__process-arrow {
        display: none;
    }
    .strategy__process-step {
        width: 45%;
        flex: none;
    }
}

@media (max-width: 768px) {
    .strategy__header-block {
        text-align: left;
        margin-bottom: 32px;
    }
    .strategy__header-block .strategy__tag {
        margin: 0 0 16px;
    }
    .strategy__header-block .strategy__title {
        text-align: left;
        margin: 0 0 12px;
    }
    .strategy__subtitle {
        font-size: 16px;
        line-height: 1.6;
    }
    .strategy__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 36px;
    }
    .strategy__stat {
        padding: 20px 12px;
    }
    .strategy__stat-value {
        font-size: 24px;
    }
    .strategy__stat-label {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .strategy__stats {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .strategy__stat {
        padding: 16px 10px;
    }
    .strategy__stat-value {
        font-size: 22px;
    }
}

/* ==========================================================================
   4. ABOUT SECTION — О компании (v2 — philosophy + expertise)
   ========================================================================== */

/* --- Header Block (centered) --- */
.about__header-block {
    text-align: center;
    margin-bottom: 48px;
}
.about__header-block .about__tag {
    margin: 0 auto 20px;
}
.about__header-block .about__title {
    max-width: 720px;
    margin: 0 auto;
    padding-left: 0;
}
.about__header-block .about__title::before {
    display: none;
}

/* --- Тег "О компании" — зелёный --- */
.about__tag {
    color: #059669 !important;
    border-color: #d1fae5 !important;
    background: #f0fdf4 !important;
}

/* --- Philosophy Card --- */
.about__philosophy {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 50%, #f8fafc 100%);
    border: 1px solid #d1fae5;
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
}
.about__philosophy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #059669, #10b981, #34d399);
}

.about__philosophy-quote {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 20px;
}
.about__philosophy-quote svg {
    flex-shrink: 0;
    color: #059669;
    opacity: 0.5;
    margin-top: 2px;
}
.about__philosophy-quote p {
    font-family: var(--font-family-primary);
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-gray-900);
    margin: 0;
    font-style: italic;
    font-weight: 500;
}

.about__philosophy-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(5, 150, 105, 0.12);
}
.about__philosophy-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #059669, #10b981);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}
.about__philosophy-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.about__philosophy-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--color-gray-900);
}
.about__philosophy-role {
    font-size: 13px;
    color: #6b7280;
}

/* --- Expertise Grid --- */
.about__expertise {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.about__expertise-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 20px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
}
.about__expertise-item:hover {
    border-color: #d1fae5;
    box-shadow: 0 4px 16px rgba(5, 150, 105, 0.08);
    transform: translateY(-2px);
}
.about__expertise-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #059669;
}
.about__expertise-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.about__expertise-text strong {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-gray-900);
    line-height: 1.3;
}
.about__expertise-text span {
    font-size: 13px;
    line-height: 1.5;
    color: #6b7280;
}

/* --- Text Main --- */
.about__text-main p {
    font-family: var(--font-family-primary);
    font-size: 17px;
    line-height: 1.75;
    color: var(--color-gray-900);
    margin: 0 0 16px;
    font-weight: 500;
}
.about__text-main p:last-child {
    margin-bottom: 0;
}

/* --- Differentiators --- */
.about__diff {
    margin-top: 8px;
}
.about__diff-title {
    font-family: var(--font-family-heading);
    font-weight: 700;
    font-size: 20px;
    color: var(--color-gray-900);
    margin: 0 0 16px;
    position: relative;
    padding-left: 16px;
}
.about__diff-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    bottom: 2px;
    width: 3px;
    border-radius: 2px;
    background: linear-gradient(180deg, #059669, #10b981);
}
.about__diff-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.about__diff-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    background: #f9fafb;
    border-radius: 12px;
    transition: background 0.2s ease;
}
.about__diff-item:hover {
    background: #f0fdf4;
}
.about__diff-marker {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #059669, #10b981);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    margin-top: 1px;
}
.about__diff-marker svg {
    width: 14px;
    height: 14px;
}
.about__diff-item span {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-gray-900);
    font-weight: 500;
}

/* --- Bottom Metrics --- */
.about__metrics {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 16px;
    padding: 24px 32px;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 40%, #f8fafc 100%);
    border: 1px solid #d1fae5;
    border-radius: 16px;
}
.about__metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
}
.about__metric-value {
    font-family: var(--font-family-heading);
    font-weight: 800;
    font-size: 28px;
    line-height: 1;
    color: #059669;
    letter-spacing: -0.5px;
}
.about__metric-label {
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
}
.about__metric-sep {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, #d1fae5, transparent);
    flex-shrink: 0;
    margin: 0 8px;
}

/* --- About Content right column --- */
.about .about__content {
    gap: 28px;
}

/* --- Responsive: About Section --- */
@media (max-width: 1024px) {
    .about .about-row {
        flex-direction: column !important;
        gap: 32px;
    }
    .about__header-block {
        margin-bottom: 36px;
    }
    .about__header-block .about__title {
        font-size: 32px;
    }
    .about__expertise {
        grid-template-columns: 1fr;
    }
    .about__philosophy {
        padding: 24px;
    }
    .about__metrics {
        padding: 20px 16px;
    }
    .about__metric-value {
        font-size: 24px;
    }
    .about__diff-title {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .about__header-block {
        margin-bottom: 28px;
    }
    .about__header-block .about__title {
        font-size: 26px;
    }
    .about__philosophy-quote p {
        font-size: 15px;
    }
    .about__expertise-item {
        padding: 16px;
    }
    .about__expertise-icon {
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }
    .about__text-main p {
        font-size: 15px;
    }
    .about__diff-item {
        padding: 10px 14px;
    }
    .about__diff-item span {
        font-size: 14px;
    }
    .about__metrics {
        flex-wrap: wrap;
        gap: 16px;
        padding: 20px;
    }
    .about__metric {
        flex: 0 0 calc(50% - 16px);
    }
    .about__metric-sep {
        display: none;
    }
    .about__metric-value {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .about__header-block .about__title {
        font-size: 22px;
    }
    .about__philosophy {
        padding: 20px;
    }
    .about__philosophy-quote {
        flex-direction: column;
        gap: 12px;
    }
    .about__philosophy-quote svg {
        width: 24px;
        height: 18px;
    }
    .about__expertise-item {
        padding: 14px;
    }
    .about__expertise-text strong {
        font-size: 14px;
    }
    .about__expertise-text span {
        font-size: 12px;
    }
    .about__diff-title {
        font-size: 17px;
    }
    .about__metrics {
        padding: 16px;
    }
    .about__metric {
        flex: 0 0 calc(50% - 8px);
    }
    .about__metric-value {
        font-size: 20px;
    }
    .about__metric-label {
        font-size: 12px;
        white-space: normal;
    }
}

/* ==========================================================================
   5. WHY CHOOSE US SECTION — Почему выбирают
   ========================================================================== */

.why-choose__title {
    position: relative;
    display: inline-block;
}

/* Why choose background card */
.why-choose-bg {
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}
.why-choose-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #059669, #10b981, #34d399, #10b981, #059669);
}

/* Why choose items — зелёные иконки */
.why-choose__icon {
    background: #f0fdf4;
    border-radius: 14px;
    padding: 6px;
    transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
}
/* Перекрашиваем SVG иконки из синего (#059669) в зелёный (#059669) */
.why-choose__icon img {
    filter: brightness(0) saturate(100%) invert(38%) sepia(91%) saturate(497%) hue-rotate(117deg) brightness(96%) contrast(96%);
}
.why-choose__item:hover .why-choose__icon {
    background: #ecfdf5;
    transform: scale(1.1);
}
.why-choose__item {
    transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
    padding: 16px;
    border-radius: 16px;
}
.why-choose__item:hover {
    background: #f0fdf4;
}

.why-choose__item-title {
    transition: color 0.3s ease;
}
.why-choose__item:hover .why-choose__item-title {
    color: #059669;
}

/* Buttons — зелёные */
.why-choose__btn--primary {
    background: #059669 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 16px 36px !important;
    font-weight: 600 !important;
    transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease !important;
}
.why-choose__btn--primary:hover {
    background: #047857 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.3) !important;
}

.why-choose__btn--secondary {
    color: #059669 !important;
    border: 2px solid #059669 !important;
    background: transparent !important;
    border-radius: 50px !important;
    padding: 14px 36px !important;
    font-weight: 600 !important;
    transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease !important;
}
.why-choose__btn--secondary:hover {
    background: #059669 !important;
    color: #fff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.3) !important;
}

/* Show more link */
.why-choose__show-more-link {
    color: #059669 !important;
}
.why-choose__show-more-link:hover {
    color: #047857 !important;
}

/* ==========================================================================
   6. BRANDS SECTION — Партнёры
   ========================================================================== */

.brands {
    position: relative;
}
.brands::before,
.brands::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.brands::before {
    left: 0;
    background: linear-gradient(90deg, #fff 0%, transparent 100%);
}
.brands::after {
    right: 0;
    background: linear-gradient(270deg, #fff 0%, transparent 100%);
}

.brands__logo:hover {
    filter: grayscale(0%) !important;
    opacity: 1 !important;
    transform: scale(1.05);
}

/* ==========================================================================
   7. REVIEWS SECTION — Отзывы
   ========================================================================== */

/* Reviews tag — зелёный */
.reviews__tag {
    color: #059669 !important;
    border-color: #d1fae5 !important;
    background: #f0fdf4 !important;
}

.reviews__title {
    position: relative;
    padding-left: 20px;
}
.reviews__title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    border-radius: 2px;
    background: linear-gradient(180deg, #059669, #10b981);
}

/* Review cards — зелёный hover */
.reviews__carousel .review-card .inner {
    border: 1px solid #e5e7eb;
    transition: all 0.35s ease !important;
}
.reviews__carousel .review-card:hover .inner {
    border-color: #d1fae5;
    box-shadow: 0 12px 32px rgba(5, 150, 105, 0.1) !important;
}

/* Review card link — зелёная */
.reviews__carousel .review-card__link {
    color: #059669 !important;
}
.reviews__carousel .review-card__link:hover {
    color: #047857 !important;
}

/* Review card name underline — зелёный */
.reviews__carousel .review-card__name {
    text-decoration-color: #d1fae5;
}
.reviews__carousel .review-card__name:hover {
    text-decoration-color: #059669;
}

/* ==========================================================================
   8. СЕКЦИОННЫЕ РАЗДЕЛИТЕЛИ 
   Горизонтальный градиент между блоками
   ========================================================================== */

.services::after,
.cases::after,
.strategy::after,
.about::after,
.why-choose::after {
    content: '';
    display: block;
    height: 1px;
    margin: 0 auto;
    width: 80%;
    max-width: 900px;
    background: linear-gradient(90deg, transparent, #d1fae5 30%, #10b981 50%, #d1fae5 70%, transparent);
    opacity: 0.5;
}
/* Исключаем brands::after т.к. уже используется для fade */

/* ==========================================================================
   9. СЕКЦИОННЫЕ БЕЙДЖИ/ТЕГИ — единый стиль
   Все теги: pill с зелёной рамкой и иконкой
   ========================================================================== */

.round-border {
    color: #059669 !important;
    border-color: #d1fae5 !important;
    background: #f0fdf4 !important;
}

/* ==========================================================================
   10. АНИМАЦИИ ПОЯВЛЕНИЯ ПРИ СКРОЛЛЕ
   ========================================================================== */

/* Секции скрыты до попадания в viewport (scroll-animate.js добавляет .is-animated) */
.services,
.cases,
.strategy,
.about,
.why-choose,
.brands,
.reviews {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.services.is-animated,
.cases.is-animated,
.strategy.is-animated,
.about.is-animated,
.why-choose.is-animated,
.brands.is-animated,
.reviews.is-animated {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger: каждая секция появляется с небольшой задержкой */
.cases { transition-delay: 0ms; }
.strategy { transition-delay: 0ms; }
.about { transition-delay: 0ms; }
.brands { transition-delay: 0ms; }
.reviews { transition-delay: 0ms; }

/* Stagger для дочерних карточек внутри .is-animated секции */
.services.is-animated .services__card,
.cases.is-animated .case-slider__wrapper {
    animation: mainBlockStaggerIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.services.is-animated .services__card:nth-child(2),
.cases.is-animated .case-slider__wrapper:nth-child(2) { animation-delay: 80ms; }
.services.is-animated .services__card:nth-child(3),
.cases.is-animated .case-slider__wrapper:nth-child(3) { animation-delay: 160ms; }
.services.is-animated .services__card:nth-child(4) { animation-delay: 240ms; }

@keyframes mainBlockStaggerIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .services,
    .cases,
    .strategy,
    .about,
    .why-choose,
    .brands,
    .reviews {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .services.is-animated .services__card,
    .cases.is-animated .case-slider__wrapper {
        animation: none;
    }
}

/* ==========================================================================
   11. АДАПТИВНОСТЬ
   ========================================================================== */

@media (max-width: 1024px) {
    .services__title::before,
    .cases__title::before,
    .strategy__title::before,
    .about__title::before,
    .reviews__title::before {
        top: 2px;
        bottom: 2px;
    }
}

@media (max-width: 768px) {
    .services__title,
    .cases__title,
    .strategy__title,
    .about__title,
    .reviews__title {
        padding-left: 16px;
    }
    .services__title::before,
    .cases__title::before,
    .strategy__title::before,
    .about__title::before,
    .reviews__title::before {
        width: 3px;
    }
    
    .why-choose-bg {
        padding: 40px 20px !important;
    }
    .why-choose__item {
        padding: 12px;
    }

    .service-card__icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }

    /* Секционные разделители — уже */
    .services::after,
    .cases::after,
    .strategy::after,
    .about::after,
    .why-choose::after {
        width: 60%;
    }
}

@media (max-width: 480px) {
    .why-choose__btn--primary,
    .why-choose__btn--secondary {
        padding: 14px 24px !important;
        font-size: 14px !important;
    }
}

/* ==========================================================================
   12. REDUCED MOTION
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
    .services,
    .cases,
    .strategy,
    .about,
    .why-choose,
    .brands,
    .reviews {
        animation: none;
    }
    .service-card,
    .case-card__content,
    .progress-item,
    .about__image-card,
    .why-choose__item,
    .reviews__carousel .review-card .inner {
        transition: none;
    }
}
