/* Home / Front page AS2 */

.front-page {
    padding-top: 0;
}

.front-page section {
    padding: 60px 0;
}

.front-page .container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

.front-page .section-title {
    font-size: 32px;
    line-height: 110%;
    font-weight: 600;
    letter-spacing: -0.03em;
    color: var(--color-black);
    margin-bottom: 24px;
}

.front-page .section-title.white {
    color: var(--color-white);
}

.front-page .section-title.center {
    text-align: center;
}

.front-page .section-label {
    display: block;
    font-size: 14px;
    line-height: 130%;
    color: var(--color-dark-green);
    margin-bottom: 8px;
    font-weight: 400;
}

.directions-copy-mobile {
    display: none;
}

/* Header tweaks on homepage */
body.home .site-header {
    padding-top: 12px;
}

/* Hero */
.home-hero {
    padding: 20px 0 0;
}

.home-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
}

.home-hero-title-wrap {
    order: 1;
}

.home-hero-image-wrap {
    order: 2;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.home-hero-desc-block {
    order: 3;
}

.home-hero-bottom {
    order: 4;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.home-hero-title {
    font-size: 28px;
    line-height: 94%;
    font-weight: 400;
    letter-spacing: -0.03em;
    color: var(--color-black);
    margin: 0 0 12px;
}

.home-hero-title span {
    display: block;
}

.home-hero-title .text-green {
    color: var(--color-green);
    font-weight: 600;
}

.home-hero-title .title-line-dark {
    color: var(--color-black);
    font-style: italic;
}

.home-hero-desc {
    font-size: 16px;
    line-height: 19px;
    color: var(--color-black);
    margin: 0;
    font-weight: 400;
}

.home-hero-thumb {
    display: none;
}

.home-hero-check-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: transparent;
    border-radius: 0;
    padding: 0;
}

.home-hero-check {
    background: var(--color-white-2);
    border-radius: 12px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    line-height: 130%;
    color: var(--color-black);
}

.home-hero-check svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.home-hero-cta,
.home-hero-shop-btn-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 56px;
    text-align: center;
    padding: 14px 16px;
    border-radius: var(--radius-control);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.home-hero-cta {
    background: var(--gradient-green);
    color: var(--color-white);
}

.home-hero-shop-btn-mobile {
    background: linear-gradient(20.1958deg, var(--color-light-green-1) 18.162%, var(--color-light-green-2) 79.556%);
    color: var(--color-white);
}

.home-hero-shop-btn {
    display: none;
}

.home-hero-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: var(--radius-card);
    display: block;
}

.home-hero-badges {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: flex-end;
    justify-content: space-between;
}

.home-hero-badge.stat {
    flex: 0 0 auto;
}

.home-hero-badge {
    background: rgba(54, 118, 67, 0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--color-white);
    padding: 10px 14px;
    border-radius: var(--radius-control);
    font-size: 12px;
    line-height: 130%;
    display: flex;
    flex-direction: column;
}

.home-hero-badge.light {
    flex: 0 1 50%;
    background: rgba(239, 239, 239, 0.92);
    color: var(--color-black);
}

.home-hero-badge .badge-text {
    font-weight: 600;
}

.home-hero-badge.stat .badge-text {
    font-size: 28px;
    line-height: 1;
    font-weight: 600;
}

.home-hero-badge .badge-sub {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.9;
}

/* Mobile hero 375 fine-tuning (Figma AS2 frame 3116:538) */
@media (max-width: 991px) {
    body.home .site-header {
        padding: 12px 0 0;
    }

    body.home .site-header .container {
        padding: 0 var(--container-padding-xs);
    }

    body.home .site-header .header-container {
        flex-wrap: nowrap;
        gap: 8px;
        width: 100%;
        min-height: 44px;
        padding: 0 16px;
        background: transparent;
        border-radius: 0;
    }

    body.home .site-header .logo img {
        width: 100px;
        height: auto;
    }

    body.home .site-header .header-actions {
        gap: 8px;
    }

    body.home .site-header .header-action-compare {
        display: none;
    }

    body.home .site-header .menu-toggle {
        margin-left: 0;
        width: 44px;
        height: 44px;
        background: linear-gradient(20.1958deg, var(--color-light-green-1) 18.162%, var(--color-light-green-2) 79.556%);
        border-radius: var(--radius-control);
    }

    body.home .site-header .menu-toggle span {
        background: var(--color-white);
    }

    .front-page .home-hero {
        padding: 32px 0 0;
    }

    .front-page .home-about {
        padding: 78px 0 60px;
    }

    .front-page .home-directions {
        padding-bottom: 36px;
    }

    .home-about-grid {
        gap: 20px;
    }

    .home-hero .container {
        padding: 0 var(--container-padding-mobile);
    }

    .home-hero-grid {
        gap: 20px;
    }

    .home-hero-title-wrap {
        margin-bottom: 0;
    }

    .home-hero-title {
        font-size: 26px;
        line-height: 94%;
        letter-spacing: -0.03em;
        margin-bottom: 0;
    }

    .home-hero-image-wrap {
        border-radius: var(--radius-card);
    }

    .home-hero-image {
        height: 244px;
        min-height: 244px;
        border-radius: var(--radius-card);
    }

    .home-hero-badges {
        left: 12px;
        right: auto;
        bottom: 12px;
        width: 319px;
        height: 78px;
        gap: 8px;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: stretch;
    }

    .home-hero-badge {
        padding: 12px;
        border-radius: 12px;
        line-height: 120%;
        height: 78px;
        box-sizing: border-box;
    }

    .home-hero-badge.light {
        flex: 0 0 179px;
        width: 179px;
        max-width: 179px;
        align-items: flex-end;
        background: rgba(39, 81, 69, 0.05);
        backdrop-filter: blur(40px);
        -webkit-backdrop-filter: blur(40px);
        border: 1px solid rgba(255, 255, 255, 0.25);
        color: var(--color-white);
    }

    .home-hero-badge.light::before {
        content: "";
        width: 12px;
        height: 12px;
        margin-bottom: 10px;
        background: url('../img/main/hero-badge-plus.svg') center / contain no-repeat;
    }

    .home-hero-badge .badge-text {
        font-weight: 400;
    }

    .home-hero-badge.stat {
        flex: 0 0 132px;
        width: 132px;
        padding: 8px 12px 16px;
        background: var(--gradient-light-green);
        color: var(--color-white);
        justify-content: center;
    }

    .home-hero-badge.stat .badge-text {
        font-size: 28px;
        line-height: 1.1;
        font-weight: 600;
    }

    .home-hero-desc {
        font-size: 16px;
        line-height: 19px;
    }

    .home-hero-check-card {
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 4px;
    }

    .home-hero-check {
        width: max-content;
        max-width: 100%;
        min-height: 44px;
        padding: 14px 16px;
        border-radius: var(--radius-control);
        gap: 16px;
        font-size: 12px;
        line-height: 130%;
        background: var(--color-gray);
    }

    .home-hero-cta,
    .home-hero-shop-btn-mobile {
        min-height: var(--button-height);
        font-size: 14px;
    }

    .home-hero-shop-btn-mobile {
        background: var(--gradient-light-green);
    }

    .home-hero-shop-btn-mobile svg {
        display: inline-block;
    }

    .home-directions .container {
        padding-left: 40px;
        padding-right: 40px;
    }

    .home-directions-header {
        display: flex;
        flex-direction: column;
        width: 295px;
        margin-top: 25px;
        margin-bottom: 64px;
    }

    .home-directions-header .section-label {
        order: 1;
        margin: 0 0 12px;
    }

    .home-directions-header .section-label {
        font-size: 14px;
        line-height: 17px;
        color: var(--color-black);
    }

    .home-directions-header .directions-copy-desktop {
        display: none;
    }

    .home-directions-header .directions-copy-mobile {
        display: inline;
    }

    .home-directions-header .section-label::after {
        content: none;
    }

    .home-directions-header .section-title {
        order: 2;
        width: 295px;
        height: auto;
        margin: 0;
        font-size: 24px;
        line-height: 26px;
        letter-spacing: -0.03em;
    }

    .home-directions-header .section-title::after {
        content: none;
    }

    .home-directions .directions-grid {
        width: 295px;
        gap: 20px;
    }

    .direction-card,
    .direction-card.large {
        width: 295px;
        height: 180px;
        min-height: 180px;
    }

    .direction-card:nth-child(1) { order: 1; }
    .direction-card:nth-child(2) { order: 2; }
    .direction-card:nth-child(4) { order: 3; }
    .direction-card:nth-child(5) { order: 4; }
    .direction-card:nth-child(3) { order: 5; }

    .direction-card:nth-child(1) {
        background-image: url('../img/main/figma-direction-mobile-01.png') !important;
    }

    .direction-card:nth-child(2) {
        background-image: url('../img/main/figma-direction-mobile-02.png') !important;
    }

    .direction-card:nth-child(4) {
        background-image: url('../img/main/figma-direction-mobile-03.png') !important;
    }

    .direction-card:nth-child(5) {
        background-image: url('../img/main/figma-direction-mobile-04.png') !important;
    }

    .direction-card:nth-child(3) {
        background-image: url('../img/main/figma-direction-mobile-05.png') !important;
    }

    .direction-card {
        background-size: 100% 100%;
        background-position: center;
        background-repeat: no-repeat;
    }

    .direction-card .direction-overlay,
    .direction-card .direction-title,
    .direction-card .direction-arrow {
        display: none;
    }

    .home-tasks .container {
        width: 100%;
        max-width: calc(100vw - 32px);
        padding: 40px 24px 47px;
        background: var(--color-white-2);
        border-radius: 20px;
        box-sizing: border-box;
    }

    .front-page .home-tasks {
        padding-top: 0;
        padding-bottom: 85px;
    }

    .home-tasks .section-title {
        width: 100%;
        max-width: 295px;
        margin: 0 auto 28px;
        font-family: 'Exo 2', sans-serif;
        font-size: 24px;
        font-weight: 600;
        line-height: 1.1;
        letter-spacing: -0.03em;
        color: var(--color-black);
    }

    .home-tasks .section-title .text-green {
        color: var(--color-green);
    }

    .home-tasks .tasks-grid {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 295px;
        margin: 0 auto;
        gap: 20px;
    }

    .home-tasks .task-card {
        position: relative;
        width: 100%;
        max-width: 295px;
        min-height: 200px;
        height: 200px;
        border-radius: var(--radius-card);
        overflow: hidden;
        padding: 0;
        box-sizing: border-box;
    }

    .task-card .task-overlay,
    .task-card .task-arrow {
        display: none;
    }

    .task-card .task-num,
    .task-card .task-title {
        position: absolute;
        z-index: 2;
        font-family: 'Exo 2', sans-serif;
        margin: 0;
    }

    .task-card .task-num {
        top: 24px;
        left: 24px;
        font-size: 12px;
        line-height: 130%;
        font-weight: 600;
        opacity: 0.85;
    }

    .task-card .task-title {
        left: 24px;
        bottom: 24px;
        width: calc(100% - 48px);
        font-size: 18px;
        font-weight: 600;
        line-height: 1.1;
    }

    /* Photo cards (odd) */
    .task-card:nth-child(odd) {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        color: var(--color-white);
    }

    .task-card:nth-child(odd) .task-overlay {
        display: block;
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
        z-index: 1;
    }

    /* Illustration cards (even) */
    .task-card:nth-child(even) {
        background-color: var(--color-white);
        background-repeat: no-repeat;
        color: var(--color-black);
    }

    .task-card:nth-child(even) .task-overlay {
        display: none;
    }

    .task-card:nth-child(2) {
        background-size: 158px 150px;
        background-position: right 16px top 8px;
    }

    .task-card:nth-child(4) {
        background-size: 138px 149px;
        background-position: right 16px top 8px;
    }

    .task-card:nth-child(6) {
        background-size: 199px 116px;
        background-position: right 16px top 8px;
    }
}

/* About */
.home-about {
    background: var(--color-white);
    padding: 80px 0;
}

.home-about .container {
    padding: 0 var(--container-padding-mobile);
}

.home-about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.home-about-mobile-label {
    display: none;
}

.home-about-left {
    display: contents;
}

    .home-about-text {
        background: linear-gradient(135deg, var(--color-green) 0%, var(--color-dark-green) 100%);
        border-radius: 20px;
        padding: 20px;
        min-height: 221px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

.home-about-text .section-title {
    margin: 0;
    font-size: 22px;
    line-height: 110%;
    letter-spacing: -0.03em;
    color: var(--color-white);
}

.home-about-desc {
    color: var(--color-white);
    font-size: 14px;
    line-height: 120%;
    margin: 0;
}

.home-about-add {
    color: var(--color-black);
    font-size: 16px;
    line-height: 110%;
    letter-spacing: -0.03em;
    margin: 0;
}

.home-about-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.home-about-image {
    display: none;
}

.home-about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    width: 100%;
}

.about-stat {
    border-radius: var(--radius-card);
    padding: 16px;
    min-height: 151px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
}

.about-stat:nth-child(1) {
    background: var(--color-white-2);
    color: var(--color-black);
}

.about-stat:nth-child(2) {
    background: var(--color-green);
    color: var(--color-white);
}

.about-stat:nth-child(3) {
    background: var(--gradient-light-green);
    color: var(--color-white);
}

.about-stat:nth-child(4) {
    background: var(--color-gray);
    color: var(--color-black);
}

.about-stat-num {
    font-size: 24px;
    line-height: 110%;
    font-weight: 600;
    margin-bottom: 4px;
}

.about-stat-label {
    font-size: 14px;
    line-height: 110%;
}

@media (max-width: 991px) {
    .home-about-mobile-label {
        display: block;
        width: 100%;
        color: var(--color-black);
        font-size: 14px;
        line-height: 17px;
        font-weight: 400;
        text-align: center;
    }

    .home-about-text {
        background: linear-gradient(-87.471deg, var(--color-green) 0%, var(--color-dark-green) 100%);
        border-radius: var(--radius-card);
        min-height: 221px;
        padding: 66px 0 20px 20px;
        gap: 12px;
    }

    .front-page .home-about-text .section-title {
        width: 321px;
        max-width: 321px;
        font-size: 22px;
        line-height: 110%;
    }

    .home-about-desc {
        width: 295px;
        max-width: 295px;
        font-size: 14px;
        line-height: 120%;
    }

    .home-about-text::before,
    .home-about-text::after {
        content: "";
        position: absolute;
        background: var(--color-light-green-2);
        border-radius: 8px;
    }

    .home-about-text::before {
        top: 31px;
        right: 22px;
        width: 29px;
        height: 12px;
    }

    .home-about-text::after {
        top: 22px;
        right: 31px;
        width: 12px;
        height: 29px;
    }

    .home-about-add {
        margin-top: 8px;
    }

    .home-about-stats {
        gap: 8px;
    }

    .about-stat {
        border-radius: var(--radius-card);
        min-height: 151px;
        overflow: hidden;
    }

    .about-stat-num,
    .about-stat-label {
        position: relative;
        z-index: 2;
    }

    .about-stat:nth-child(1) .about-stat-num,
    .about-stat:nth-child(4) .about-stat-num {
        color: var(--color-green);
    }

    .about-stat:nth-child(1)::after {
        content: "";
        position: absolute;
        right: 12px;
        top: 12px;
        width: 64px;
        height: 64px;
        border-radius: 4px;
        background: url('../img/main/10-2.png') center / cover no-repeat;
    }

    .about-stat:nth-child(2) {
        background: url('../img/main/3-0.png') center / cover no-repeat;
        color: var(--color-white);
    }

    .about-stat:nth-child(2)::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        background: rgba(54, 118, 67, 0.5);
        z-index: 1;
    }

    .about-stat:nth-child(2)::after,
    .about-stat:nth-child(3)::after {
        content: "";
        position: absolute;
        right: 16px;
        top: 16px;
        width: 12px;
        height: 12px;
        background: url('../img/main/hero-badge-plus.svg') center / contain no-repeat;
        z-index: 2;
    }

    .about-stat:nth-child(3) {
        background: linear-gradient(90deg, var(--color-light-green-1) 0%, var(--color-light-green-2) 100%);
    }

    .about-stat:nth-child(4)::after {
        content: "";
        position: absolute;
        right: -4px;
        top: -10px;
        width: 108px;
        height: 98px;
        background: url('../img/main/12-2.png') center / contain no-repeat;
    }

    .front-page .home-audience {
        padding: 44px 0 80px;
    }

    .home-audience .container {
        padding: 0 var(--container-padding-mobile);
    }

    .home-audience-grid {
        gap: 8px;
    }

    .audience-left {
        width: 343px;
        max-width: 100%;
        height: 206px;
        min-height: 206px;
        padding: 20px;
        border-radius: var(--radius-card);
        box-sizing: border-box;
        background: linear-gradient(90deg, var(--color-green) 0%, var(--color-dark-green) 100%);
        justify-content: flex-start;
    }

    .audience-left .section-label {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 152px;
        height: 39px;
        min-height: 39px;
        margin: 0 0 49px;
        border-radius: var(--radius-control);
        background: rgba(54, 118, 67, 0.5);
        color: var(--color-white);
        font-size: 14px;
        line-height: 110%;
    }

    .audience-left .section-title {
        width: 306px;
        max-width: 100%;
        font-size: 24px;
        line-height: 110%;
    }

    .audience-list {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        align-items: flex-start;
        width: 100%;
        max-width: 343px;
    }

    .audience-list li {
        flex: 0 0 auto;
        min-height: 54px;
        height: 54px;
        padding: 12px;
        border-radius: var(--radius-card);
        box-sizing: border-box;
        background: var(--color-white-2);
        gap: 10px;
        font-size: 14px;
        font-weight: 400;
        line-height: 17px;
        color: var(--color-black);
        white-space: nowrap;
    }

    .audience-list img {
        width: 30px;
        height: 30px;
        flex-shrink: 0;
    }

    .audience-list li:nth-child(1) { width: 247px; order: 1; }
    .audience-list li:nth-child(5) { width: 153px; order: 2; }
    .audience-list li:nth-child(2) { width: 154px; order: 3; }
    .audience-list li:nth-child(6) { width: 245px; order: 4; }
    .audience-list li:nth-child(3) { width: 179px; order: 5; }
    .audience-list li:nth-child(7) { width: 135px; height: 48px; min-height: 48px; order: 6; }
    .audience-list li:nth-child(4) { width: 159px; order: 7; }
    .audience-list li:nth-child(8) { width: 232px; order: 8; }
}

/* Directions */
.home-directions {
    background: var(--color-white);
}

.home-directions-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.home-directions-header .section-title {
    margin: 0;
    font-size: 32px;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--color-black);
}

.home-directions-header .section-title .text-green {
    color: var(--color-green);
}

.home-directions-header .section-label {
    font-size: 14px;
    line-height: 130%;
    color: var(--color-black);
    margin: 0;
}

.directions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.direction-card {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 180px;
    border-radius: var(--radius-card);
    overflow: hidden;
    padding: 16px;
    background-size: cover;
    background-position: center;
    color: var(--color-white);
    text-decoration: none;
}

.direction-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 52.636%, rgba(0, 0, 0, 0.6) 109.75%);
    z-index: 1;
}

.direction-title {
    position: relative;
    z-index: 2;
    font-size: 18px;
    line-height: 1.1;
    font-weight: 600;
    color: var(--color-white);
    max-width: calc(100% - 50px);
}

.direction-arrow {
    position: absolute;
    bottom: 17px;
    right: 16px;
    z-index: 2;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-white);
}

.direction-arrow svg {
    width: 24px;
    height: 24px;
}

.direction-card:nth-child(4) .direction-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 39.75%, rgba(0, 0, 0, 0.6) 109.75%);
}

/* Audience */
.home-audience {
    background: var(--color-white);
}

.home-audience-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.audience-left {
    background: var(--color-green);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 280px;
}

.audience-left .section-label {
    color: var(--color-white);
    opacity: 0.9;
}

.audience-left .section-title {
    margin-bottom: 0;
    font-size: 28px;
}

.audience-title-mobile {
    display: none;
}

.audience-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.audience-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--color-white-2);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14px;
    line-height: 130%;
    color: var(--color-black);
    font-weight: 500;
}

.audience-list img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Tasks */
.home-tasks {
    background: var(--color-white);
}

.tasks-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.task-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 180px;
    border-radius: var(--radius-card);
    overflow: hidden;
    padding: 16px;
    background-size: cover;
    background-position: center;
    color: var(--color-white);
    text-decoration: none;
}

.task-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(53, 53, 53, 0.15) 0%, rgba(53, 53, 53, 0.65) 100%);
}

.task-num {
    position: relative;
    z-index: 1;
    font-size: 12px;
    line-height: 130%;
    opacity: 0.85;
    margin-bottom: 4px;
}

.task-title {
    position: relative;
    z-index: 1;
    font-size: 18px;
    line-height: 120%;
    font-weight: 600;
}

.task-arrow {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 1;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-tasks .task-arrow {
    display: none;
}

/* Projects */
.home-projects {
    background: var(--color-white);
}

.home-projects-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.home-projects-header .section-title {
    margin: 0;
}

.home-projects-header .btn {
    align-self: flex-start;
}

.projects-btn-mobile {
    display: none;
}

.home-projects-slider {
    position: relative;
}

.home-projects-slider .project-slide {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
}

.home-projects-slider .slider-arrow {
    display: none;
}

.projects-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    scrollbar-width: none;
}

.projects-grid::-webkit-scrollbar {
    display: none;
}

.project-card {
    flex: 0 0 328px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: var(--color-white-2);
    border-radius: var(--radius-card);
    padding: 12px;
    text-decoration: none;
    color: var(--color-black);
    position: relative;
}

.project-image {
    border-radius: 8px;
    overflow: hidden;
    height: 220px;
    min-height: 220px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-body {
    min-height: 150px;
    padding: 0 24px 4px 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.project-cat {
    display: block;
    font-size: 11px;
    line-height: 130%;
    color: var(--color-green);
    margin-bottom: 6px;
}

.project-title {
    font-size: 15px;
    line-height: 120%;
    font-weight: 600;
    margin: 0 0 8px;
}

.project-desc {
    font-size: 12px;
    line-height: 140%;
    color: var(--color-black);
    opacity: 0.8;
    margin: 0;
}

.project-arrow {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(54, 118, 67, 0.1);
    color: var(--color-green);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Categories */
.home-categories {
    background: var(--color-white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.category-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 140px;
    border-radius: var(--radius-card);
    overflow: hidden;
    padding: 12px;
    background-size: cover;
    background-position: center;
    color: var(--color-white);
    text-decoration: none;
}

.category-num {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--color-green);
    color: var(--color-white);
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-title {
    position: relative;
    z-index: 1;
    font-size: 13px;
    line-height: 120%;
    font-weight: 600;
}

@media (max-width: 991px) {
    .front-page .home-categories {
        padding: 0;
        background: var(--color-white);
    }

    .home-categories .container {
        width: 343px;
        min-height: 1838px;
        margin: 0 auto;
        padding: 40px 24px 47px;
        border-radius: 20px;
        background: var(--color-white-2);
        box-sizing: border-box;
    }

    .home-categories .section-title {
        width: 285px;
        margin: 0 0 29px;
        font-size: 24px;
        line-height: 26px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        width: 295px;
    }

    .category-card {
        width: 295px;
        height: 218px;
        min-height: 218px;
        padding: 0 24px 0 40px;
        border-radius: 0;
        background-image: none !important;
        color: var(--color-black);
        overflow: visible;
    }

    .category-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 295px;
        height: 180px;
        border-radius: var(--radius-card);
        background-size: 295px 180px;
        background-position: center;
        background-repeat: no-repeat;
    }

    .category-card:nth-child(1)::before { background-image: url('../img/main/figma-category-img-mobile-01.png'); }
    .category-card:nth-child(2)::before { background-image: url('../img/main/figma-category-img-mobile-02.png'); }
    .category-card:nth-child(3)::before { background-image: url('../img/main/figma-category-img-mobile-03.png'); }
    .category-card:nth-child(4)::before { background-image: url('../img/main/figma-category-img-mobile-04.png'); }
    .category-card:nth-child(5)::before { background-image: url('../img/main/figma-category-img-mobile-05.png'); }
    .category-card:nth-child(6)::before { background-image: url('../img/main/figma-category-img-mobile-06.png'); }
    .category-card:nth-child(7)::before { background-image: url('../img/main/figma-category-img-mobile-07.png'); }

    .category-image {
        display: none;
    }

    .category-num {
        top: 194px;
        left: 0;
        width: 24px;
        height: 24px;
        border-radius: 2.18px;
        font-size: 13px;
        line-height: 14px;
        font-weight: 800;
        background: linear-gradient(20.1958deg, var(--color-light-green-1) 18.162%, var(--color-light-green-2) 79.556%);
    }

    .category-title {
        width: 231px;
        font-size: 20px;
        line-height: 22px;
        font-weight: 400;
        margin-bottom: 1px;
    }
}

@media (max-width: 991px) {
    .front-page .home-projects {
        padding: 0 0 81px;
        background: var(--color-white);
    }

    .home-projects .container {
        padding: 0 var(--container-padding-mobile);
    }

    .home-projects-header {
        margin-bottom: 29px;
    }

    .home-projects-header .section-title {
        width: 300px;
        font-size: 24px;
        line-height: 26px;
    }

    .projects-btn-desktop {
        display: none;
    }

    .projects-btn-mobile {
        display: flex;
        width: 343px;
        height: var(--button-height);
        margin-top: 28px;
    }

    .projects-grid {
        gap: 16px;
        padding-bottom: 0;
    }

    .project-card {
        flex-basis: 328px;
        max-width: 328px;
        min-height: 0;
        padding: 0;
        gap: 12px;
        background: transparent;
        border-radius: 0;
        overflow: visible;
    }

    .project-image {
        width: 328px;
        height: 194px;
        min-height: 194px;
        border-radius: var(--radius-card);
    }

    .project-card:nth-child(1) .project-image {
        background: url('../img/main/figma-project-mobile-01.png') center / 100% 100% no-repeat;
    }

    .project-card:nth-child(1) .project-image img {
        opacity: 0;
    }

    .project-body {
        width: 328px;
        height: 220px;
        min-height: 220px;
        padding: 20px 24px;
        background: #fff;
        border-radius: var(--radius-card);
        box-sizing: border-box;
        position: relative;
    }

    .project-cat {
        color: var(--color-black);
        font-size: 12px;
        line-height: 1.2;
        letter-spacing: -0.03em;
        margin-bottom: 31px;
        width: 170px;
    }

    .project-title {
        font-size: 20px;
        line-height: 1.2;
        letter-spacing: -0.03em;
        margin-bottom: 20px;
    }

    .project-desc {
        font-size: 16px;
        line-height: 1.2;
        letter-spacing: -0.03em;
        opacity: 1;
    }

    .project-arrow {
        display: flex;
        top: 226px;
        right: 24px;
        width: 32px;
        height: 32px;
        border-radius: 2.182px;
        background: var(--gradient-green);
        color: var(--color-white);
    }
}

/* Steps */
.home-steps {
    background: var(--color-white);
}

.steps-layout {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
        "header"
        "cards";
    gap: 24px;
}

.home-steps .steps-label {
    display: none;
}

.steps-header {
    grid-area: header;
}

.steps-header .section-title {
    margin-bottom: 0;
    font-size: 24px;
    white-space: nowrap;
}

.steps-cards {
    grid-area: cards;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.step-card {
    background: var(--color-white-2);
    color: var(--color-black);
    border-radius: var(--radius-card);
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 136px;
}

.step-card:nth-child(1),
.step-card:nth-child(4) {
    background: linear-gradient(135deg, var(--color-light-green-1) 0%, var(--color-light-green-2) 100%);
    color: var(--color-white);
}

.step-card-mobile {
    grid-column: span 2;
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.42) 100%), var(--step-bg);
    background-size: cover;
    background-position: center;
    color: var(--color-white);
}

.step-num {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-control);
    background: linear-gradient(135deg, var(--color-light-green-1) 0%, var(--color-light-green-2) 100%);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-card:nth-child(1) .step-num,
.step-card:nth-child(4) .step-num {
    background: var(--color-white);
    color: #366D43;
}

.step-card-mobile .step-num {
    background: linear-gradient(135deg, var(--color-light-green-1) 0%, var(--color-light-green-2) 100%);
    color: var(--color-white);
}

.step-title {
    font-size: 15px;
    line-height: 120%;
    font-weight: 600;
}

.steps-image-wrap,
.step-image-card {
    display: none;
}

/* Partners */
.home-partners {
    background: var(--color-white);
}

.partners-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    scrollbar-width: none;
}

.partners-grid::-webkit-scrollbar {
    display: none;
}

.partner-card {
    flex: 0 0 243px;
    min-height: 253px;
    scroll-snap-align: start;
    background: var(--color-white);
    border-radius: var(--radius-card);
    padding: 16px;
    text-align: center;
    text-decoration: none;
    color: var(--color-black);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.partner-logo {
    height: 98px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    max-height: 100%;
    width: auto;
}

.partner-name {
    font-size: 18px;
    line-height: 120%;
    font-weight: 600;
    margin: 0 0 8px;
}

.partner-desc {
    font-size: 13px;
    line-height: 140%;
    color: var(--color-black);
    opacity: 0.8;
    margin: 0;
}

.partners-dots {
    display: none;
}

.partners-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(54, 118, 67, 0.22);
    cursor: pointer;
    transition: width .2s ease, background-color .2s ease, border-radius .2s ease;
}

.partners-dot.active {
    width: 24px;
    border-radius: 999px;
    background: var(--color-green);
}

/* Testimonials */
.home-testimonials {
    background: var(--color-white);
}

.testimonials-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.testimonials-intro .section-title {
    margin-bottom: 0;
}

.testimonials-content .section-label {
    display: block;
    margin-bottom: 12px;
}

.testimonials-dot {
    cursor: pointer;
    transition: width .2s ease, background-color .2s ease, border-radius .2s ease;
}

.testimonials-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    scrollbar-width: none;
}

.testimonials-grid::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 322px;
    max-width: 322px;
    min-height: 260px;
    scroll-snap-align: start;
    background: var(--color-white-2);
    border-radius: var(--radius-card);
    padding: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: var(--color-white);
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-avatar img + span {
    display: none;
}

.testimonial-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-meta strong {
    font-size: 14px;
    line-height: 130%;
    font-weight: 600;
}

.testimonial-meta span {
    font-size: 12px;
    line-height: 130%;
    color: var(--color-black);
    opacity: 0.7;
}

.testimonial-text {
    font-size: 13px;
    line-height: 150%;
    color: var(--color-black);
    margin: 0;
}

/* Request form */
.home-request {
    background: var(--color-green);
    padding: 50px 0;
}

.request-copy-mobile {
    display: none;
}

.request-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.request-text {
    color: var(--color-white);
    position: relative;
    padding-top: 48px;
}

.request-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 6v20M6 16h20' stroke='%23EFEFEF' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.request-text .section-title {
    margin-bottom: 12px;
    font-size: 28px;
}

.request-text p {
    font-size: 15px;
    line-height: 140%;
    opacity: 0.9;
    margin: 0;
}

.request-form-wrap {
    background: var(--color-white);
    border-radius: 16px;
    padding: 24px;
}

.form-message {
    margin-top: 12px;
    font-size: 13px;
    line-height: 140%;
}

.form-message.success { color: var(--color-green); }
.form-message.error { color: #c33; }

/* Desktop */
@media (min-width: 992px) {
    .front-page section {
        padding: 80px 0;
    }

    .front-page .section-title {
        font-size: 44px;
        margin-bottom: 32px;
    }

    .home-hero .container {
        padding: 0;
    }

    .front-page .home-hero {
        padding: 20px 0 0;
    }

    .home-hero-grid {
        grid-template-columns: minmax(0, 726px) 594px;
        grid-template-rows: auto auto auto;
        column-gap: 24px;
        row-gap: 20px;
        align-items: start;
    }

    .home-hero-title-wrap {
        grid-column: 1;
        grid-row: 1;
        margin-top: 35px;
    }

    .home-hero-desc-block {
        grid-column: 1;
        grid-row: 2;
    }

    .home-hero-image-wrap {
        grid-column: 2;
        grid-row: 1 / 4;
        height: 100%;
        min-height: 550px;
        border-radius: 16px;
    }

    .home-hero-bottom {
        grid-column: 1;
        grid-row: 3;
        align-self: end;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        column-gap: 17px;
        row-gap: 31px;
    }

    .home-hero-title {
        font-size: 58px;
        line-height: 94%;
        margin-bottom: 26px;
    }

    .home-hero-desc {
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 0;
    }

    .home-hero-thumb {
        display: block;
        flex: 0 0 343px;
        height: 148px;
        border-radius: var(--radius-card);
        overflow: hidden;
    }

    .home-hero-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 50% 40%;
        display: block;
    }

    .home-hero-check-card {
        flex: 0 0 335px;
        background: transparent;
        padding: 0;
        gap: 12px;
        justify-content: flex-start;
        flex-direction: column;
    }

    .home-hero-check {
        min-height: 52px;
        background: var(--color-gray);
        border-radius: 12px;
        padding: 12px 24px;
        font-size: 16px;
    }

    .home-hero-cta {
        flex: 0 0 auto;
        width: 100%;
        max-width: 695px;
        min-height: var(--button-height);
        padding: 0 20px;
        border-radius: var(--radius-control);
        background: var(--gradient-green);
        color: var(--color-white);
        font-size: 14px;
        font-weight: 600;
        line-height: 1;
        text-align: center;
        margin-top: 0;
    }

    .home-hero-shop-btn-mobile {
        display: none;
    }

    .home-hero-shop-btn {
        display: inline-flex;
        position: absolute;
        top: 36px;
        right: 36px;
        z-index: 3;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background: linear-gradient(20.1958deg, var(--color-light-green-1) 18.162%, var(--color-light-green-2) 79.556%);
        color: var(--color-white);
        padding: 12px 20px;
        border-radius: var(--radius-control);
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        width: 162px;
        min-height: var(--button-height);
    }

    .home-hero-image {
        height: 550px;
        min-height: 550px;
        border-radius: 16px;
    }

    .home-hero-badges {
        left: 36px;
        right: 36px;
        bottom: 36px;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 13px;
        height: 104px;
    }

    .home-hero-badge {
        font-size: 16px;
        line-height: 120%;
        padding: 20px;
        border-radius: 12px;
        max-width: none;
        position: relative;
    }

    .home-hero-badge:first-child {
        flex: 0 0 343px;
        width: 343px;
        height: 104px;
        background: rgba(39, 81, 69, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: var(--color-white);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        justify-content: flex-end;
    }

    .home-hero-badge:first-child .badge-text {
        font-weight: 400;
    }

    .home-hero-badge:first-child::after {
        content: "";
        position: absolute;
        right: 20px;
        top: 20px;
        width: 22px;
        height: 22px;
        background: url('../img/main/hero-badge-plus.svg') center / contain no-repeat;
    }

    .home-hero-badge:last-child {
        flex: 0 0 166px;
        width: 166px;
        height: 104px;
        background: rgba(239, 239, 239, 0.92);
        color: var(--color-black);
        padding: 12px 20px;
        justify-content: flex-start;
    }

    .home-hero-badge.light {
        background: rgba(39, 81, 69, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: var(--color-white);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    .home-hero-badge.stat .badge-text {
        font-size: 40px;
        line-height: 48px;
        font-weight: 600;
        color: var(--color-black);
    }

    .home-hero-badge:last-child .badge-sub {
        color: var(--color-black);
        opacity: 1;
    }

    .home-hero-badge .badge-sub {
        font-size: 14px;
        line-height: 16.8px;
    }

    /* About */
    .front-page .home-about {
        padding: 139px 0 140px;
    }

    .home-about .container {
        max-width: none;
        padding: 0;
    }

    .home-about-grid {
        grid-template-columns: 376px 792px;
        gap: 32px;
        align-items: start;
        max-width: 1200px;
        width: 1200px;
    }

    .home-about-text {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        gap: 137px;
        width: 1200px;
        height: 260px;
        min-height: 260px;
        padding: 81px 48px 40px 58px;
        background: linear-gradient(277deg, var(--color-green) 0%, var(--color-dark-green) 100%);
        box-sizing: border-box;
    }

    .home-about-text::before,
    .home-about-text::after {
        content: "";
        position: absolute;
        background: var(--color-light-green-2);
        border-radius: 14px;
    }

    .home-about-text::before {
        top: 47px;
        right: 50px;
        width: 55px;
        height: 23px;
    }

    .home-about-text::after {
        top: 31px;
        right: 66px;
        width: 23px;
        height: 55px;
    }

    .front-page .home-about-text .section-title {
        flex: 0 0 549px;
        color: var(--color-white);
        font-family: var(--font-main);
        font-size: 40px;
        line-height: 108%;
        font-weight: 400;
        letter-spacing: -0.03em;
        margin: 0;
    }

    .front-page .home-about-text .section-title strong,
    .front-page .home-about-text .section-title b {
        font-weight: 600;
    }

    .home-about-desc {
        flex: 0 0 408px;
        width: 408px;
        max-width: 408px;
        font-size: 20px;
        line-height: 1.2;
        font-weight: 400;
        color: var(--color-white);
        margin: 57px 0 0;
    }

    .home-about-add {
        grid-column: 1;
        align-self: start;
        width: 362px;
        max-width: 362px;
        color: var(--color-black);
        font-size: 20px;
        font-weight: 400;
        line-height: 1.1;
        letter-spacing: -0.6px;
        padding-top: 26px;
    }

    .home-about-visual {
        grid-column: 2;
        align-items: flex-end;
        width: 792px;
    }

    .home-about-stats {
        display: grid;
        grid-template-columns: repeat(2, 382px);
        gap: 28px;
        width: 792px;
        max-width: 792px;
    }

    .about-stat {
        width: 382px;
        height: 229px;
        min-height: 229px;
        border-radius: var(--radius-card);
        padding: 0;
        overflow: hidden;
        box-sizing: border-box;
    }

    .about-stat-num {
        font-size: 48px;
        position: absolute;
        left: 32px;
        top: 114px;
        z-index: 2;
        margin: 0;
    }

    .about-stat:nth-child(1) .about-stat-num,
    .about-stat:nth-child(4) .about-stat-num {
        color: var(--color-green);
    }

    .about-stat:nth-child(2) .about-stat-num {
        font-size: 40px;
        line-height: 1.1;
        color: var(--color-white);
        left: 28px;
        top: 123px;
    }

    .about-stat:nth-child(2) .about-stat-label {
        left: 28px;
        top: 171px;
        color: var(--color-white);
        font-size: 24px;
        font-weight: 400;
        line-height: 1.1;
    }

    .about-stat-label {
        font-size: 24px;
        font-weight: 400;
        position: absolute;
        left: 32px;
        top: 171px;
        z-index: 2;
        max-width: 281px;
        margin: 0;
        line-height: 110%;
    }

    .about-stat:nth-child(1) {
        background: var(--color-white-2);
    }

    .about-stat:nth-child(1) .about-stat-num {
        color: var(--color-green);
        font-weight: 600;
    }

    .about-stat:nth-child(1) .about-stat-label {
        color: var(--color-black);
        line-height: 1.1;
    }

    .about-stat:nth-child(1)::after {
        content: "";
        position: absolute;
        right: 28px;
        top: 28px;
        width: 113px;
        height: 113px;
        border-radius: 6px;
        background: url('../img/main/10-2.png') center / cover no-repeat;
    }

    .about-stat:nth-child(2) {
        background: url('../img/main/3-0.png') center / cover no-repeat;
        color: var(--color-white);
    }

    .about-stat:nth-child(2)::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(54, 118, 67, 0.5);
        z-index: 1;
    }

    .about-stat:nth-child(2)::after {
        content: "";
        position: absolute;
        right: 20px;
        top: 16px;
        width: 20px;
        height: 20px;
        background: url('../img/main/hero-badge-plus.svg') center / contain no-repeat;
        z-index: 2;
    }

    .about-stat:nth-child(3) {
        background: linear-gradient(32.076deg, var(--color-light-green-1) 18.162%, var(--color-light-green-2) 79.556%);
    }

    .about-stat:nth-child(3)::after {
        content: "";
        position: absolute;
        right: 20px;
        top: 20px;
        width: 20px;
        height: 20px;
        background: url('../img/main/hero-badge-plus.svg') center / contain no-repeat;
        z-index: 2;
    }

    .about-stat:nth-child(3) .about-stat-num {
        left: 32px;
        top: 88px;
        font-size: 48px;
        line-height: 1.1;
        font-weight: 600;
        color: var(--color-white);
    }

    .about-stat:nth-child(3) .about-stat-label {
        left: 32px;
        top: 149px;
        max-width: 259px;
        font-size: 24px;
        line-height: 1.1;
        font-weight: 400;
        color: var(--color-white);
    }

    .about-stat:nth-child(4) {
        background: var(--color-gray);
    }

    .about-stat:nth-child(4)::after {
        content: "";
        position: absolute;
        right: -3px;
        top: -6px;
        width: 170px;
        height: 154px;
        background: url('../img/main/12-2.png') center / contain no-repeat;
    }

    .about-stat:nth-child(4) .about-stat-num {
        left: 32px;
        top: 114px;
        font-size: 48px;
        line-height: 1.1;
        font-weight: 600;
        color: var(--color-green);
    }

    .about-stat:nth-child(4) .about-stat-label {
        left: 32px;
        top: 171px;
        font-size: 24px;
        line-height: 1.1;
        font-weight: 400;
        color: var(--color-black);
        max-width: 281px;
    }

    /* Directions */
    .front-page .home-directions {
        padding-top: 0;
        padding-bottom: 80px;
    }

    .home-directions .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0;
    }

    .home-directions-header {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 69px;
    }

    .home-directions-header .section-title {
        width: 549px;
        max-width: 549px;
        margin: 0;
        font-size: 48px;
        line-height: 1.08;
        letter-spacing: -1.44px;
        color: var(--color-black);
    }

    .home-directions-header .section-title .text-green {
        color: var(--color-green);
    }

    .home-directions-header .section-label {
        width: 201px;
        font-size: 20px;
        line-height: 1.3;
        font-weight: 400;
        color: var(--color-black);
        margin: 5px 0 0 auto;
        text-align: right;
    }

    .home-directions-header .directions-copy-desktop {
        display: inline;
    }

    .home-directions-header .directions-copy-mobile {
        display: none;
    }

    .directions-grid {
        width: 1200px;
        display: grid;
        grid-template-columns: 382px 382px 382px;
        grid-template-rows: 200px 200px;
        gap: 27px 26px;
    }

    .direction-card {
        position: relative;
        width: auto;
        height: 200px;
        min-height: 200px;
        border-radius: var(--radius-card);
        overflow: hidden;
        padding: 0;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .direction-card:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
    }

    .direction-card:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }

    .direction-card:nth-child(4) {
        grid-column: 1;
        grid-row: 2;
    }

    .direction-card:nth-child(5) {
        grid-column: 2;
        grid-row: 2;
    }

    .direction-card.large {
        grid-column: 3;
        grid-row: 1 / 3;
        width: auto;
        height: 427px;
        min-height: 427px;
    }

    .direction-overlay {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 52.636%, rgba(0, 0, 0, 0.6) 109.75%);
    }

    .direction-card:nth-child(4) .direction-overlay {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 39.75%, rgba(0, 0, 0, 0.6) 109.75%);
    }

    .direction-card .direction-title {
        position: absolute;
        left: 24px;
        bottom: 24px;
        z-index: 2;
        font-size: 24px;
        line-height: 1.1;
        font-weight: 600;
        color: var(--color-white);
        max-width: calc(100% - 70px);
    }

    .direction-arrow {
        position: absolute;
        right: 22px;
        bottom: 24px;
        z-index: 2;
        width: 24px;
        height: 24px;
        color: var(--color-white);
    }

    .direction-arrow svg {
        width: 24px;
        height: 24px;
    }

    /* Audience */
    .home-audience .container {
        max-width: 1200px;
        padding-left: 0;
        padding-right: 0;
    }

    .front-page .home-audience {
        padding: 27px 0 140px;
    }

    .home-audience-grid {
        display: flex;
        gap: 21px;
        align-items: stretch;
    }

    .audience-left {
        flex: 0 0 563px;
        flex-shrink: 0;
        width: 563px;
        height: 432px;
        min-height: 432px;
        padding: 44px;
        border-radius: var(--radius-card);
        box-sizing: border-box;
        background: linear-gradient(-88.020deg, var(--color-green) 0%, var(--color-dark-green) 100%);
        justify-content: flex-start;
    }

    .audience-left .section-label {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        align-self: flex-start;
        width: auto;
        min-width: 0;
        max-width: max-content;
        padding: 12px 18px;
        margin: 0 0 113px;
        border-radius: var(--radius-control);
        background: rgba(54, 118, 67, 0.5);
        font-family: var(--font-main);
        font-size: 14px;
        line-height: 1.1;
        font-weight: 400;
        color: var(--color-white);
        opacity: 1;
    }

    .audience-left .section-title {
        width: 455px;
        margin: 0;
        font-size: 44px;
        line-height: 1.1;
        font-weight: 600;
        letter-spacing: -1.32px;
        color: var(--color-white);
        font-style: normal;
    }

    .audience-left .section-title em {
        font-style: italic;
        font-weight: 600;
    }

    .audience-list {
        display: grid;
        flex: 0 0 616px;
        align-self: flex-start;
        grid-template-columns: repeat(2, 300px);
        grid-template-rows: repeat(4, 96px);
        grid-auto-flow: column;
        gap: 16px;
        width: 616px;
        height: 432px;
    }

    .audience-list li {
        display: flex;
        align-items: center;
        width: 300px;
        height: 96px;
        min-height: 96px;
        padding: 24px 16px;
        border-radius: var(--radius-card);
        box-sizing: border-box;
        background: var(--color-white-2);
        gap: 20px;
        font-family: var(--font-main);
        font-size: 20px;
        line-height: normal;
        font-weight: 400;
        color: var(--color-black);
    }

    .audience-list img {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }

    .audience-list li:nth-child(7) img {
        width: 40px;
        height: 34px;
    }

    .audience-list li:nth-child(1) span {
        width: 167px;
    }

    .audience-list li:nth-child(6) span {
        width: 191px;
    }

    .audience-list li:nth-child(8) span {
        width: 168px;
    }

    /* Tasks / Что входит */
    .front-page .home-tasks {
        padding: 80px 0;
    }

    .home-tasks .container {
        height: 772px;
        padding: 72px;
        background: var(--color-white-2);
        border-radius: 20px;
        box-sizing: border-box;
    }

    .home-tasks .section-title {
        width: 828px;
        max-width: 828px;
        margin: 0 0 52px;
        margin-left: -1px;
        font-family: 'Exo 2', sans-serif;
        font-size: 48px;
        font-weight: 600;
        line-height: 1.1;
        letter-spacing: -1.44px;
        color: var(--color-black);
    }

    .home-tasks .section-title .text-green {
        color: var(--color-green);
    }

    .tasks-grid {
        display: grid;
        grid-template-columns: repeat(3, 382px);
        grid-template-rows: repeat(2, 220px);
        gap: 28px 27px;
        width: 1200px;
    }

    .task-card {
        position: relative;
        width: 382px;
        height: 220px;
        min-height: 220px;
        border-radius: var(--radius-card);
        overflow: hidden;
        padding: 0;
        text-decoration: none;
    }

    .task-card:nth-child(odd) {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        color: var(--color-white);
    }

    .task-card:nth-child(odd) .task-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
        z-index: 1;
    }

    .task-card:nth-child(1) {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .task-card:nth-child(1) .task-overlay {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.54) 100%);
    }

    .task-card:nth-child(even) {
        background-color: var(--color-white);
        background-repeat: no-repeat;
        color: var(--color-black);
    }

    .task-card:nth-child(even) .task-overlay,
    .task-card:nth-child(even) .task-arrow {
        display: none;
    }

    .task-card:nth-child(2) {
        background-size: 158px 150px;
        background-position: 217px 5px;
    }

    .task-card:nth-child(4) {
        background-size: 138px 149px;
        background-position: 226px 9px;
    }

    .task-card:nth-child(6) {
        background-size: 199px 116px;
        background-position: 173px 7px;
    }

    .task-num {
        position: absolute;
        left: 28px;
        top: 28px;
        z-index: 2;
        font-family: 'Exo 2', sans-serif;
        font-size: 16px;
        font-weight: 600;
        line-height: 1.1;
        opacity: 1;
        margin: 0;
    }

    .task-title {
        position: absolute;
        left: 28px;
        top: 166px;
        z-index: 2;
        width: calc(100% - 48px);
        font-family: 'Exo 2', sans-serif;
        font-size: 24px;
        font-weight: 600;
        line-height: 1.1;
        margin: 0;
    }

    .task-arrow {
        display: none;
    }

    /* Projects */
    .home-projects-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .home-projects-header .btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 305px;
        height: var(--button-height);
        padding: 20px 75px;
        border-radius: var(--radius-control);
        background: linear-gradient(-81.923deg, var(--color-green) 0%, var(--color-dark-green) 100%);
        font-family: 'Exo 2', sans-serif;
        font-size: 14px;
        font-weight: 600;
        color: var(--color-white);
        text-align: center;
        box-sizing: border-box;
    }

    .projects-grid {
        display: grid;
        grid-template-columns: 589px 588px;
        gap: 24px;
        overflow: visible;
        padding-bottom: 0;
    }

    .home-projects-slider {
        height: 464px;
    }

    .home-projects-slider .slider-arrow {
        display: flex;
        width: 32px;
        height: 48px;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        top: 232px;
        transform: translateY(-50%);
    }

    .home-projects-slider .slider-arrow:hover {
        background: transparent;
        opacity: 0.75;
    }

    .home-projects-slider .slider-arrow.prev {
        left: -83px;
    }

    .home-projects-slider .slider-arrow.next {
        right: -83px;
    }

    .home-projects-slider .slider-arrow::before {
        width: 16px;
        height: 16px;
        border-color: var(--color-green);
        border-width: 0 4px 4px 0;
    }

    .project-card {
        flex: initial;
        display: grid;
        grid-template-columns: 175px 402px;
        gap: 12px;
        width: 589px;
        height: 220px;
        padding: 0;
        background: transparent;
        border-radius: 0;
    }

    .project-card:nth-child(even) {
        grid-template-columns: 175px 401px;
        width: 588px;
    }

    .project-image {
        width: 175px;
        height: 220px;
        min-height: 220px;
        border-radius: 8px;
    }

    .project-body {
        width: 402px;
        height: 220px;
        min-height: 220px;
        padding: 20px 24px;
        justify-content: flex-start;
        background: #fff;
        border-radius: 8px;
        box-sizing: border-box;
        position: relative;
    }

    .project-card:nth-child(even) .project-body {
        width: 401px;
    }

    .project-cat {
        font-size: 12px;
        line-height: 1.2;
        letter-spacing: -0.03em;
        color: var(--color-black);
        margin-bottom: 73px;
        width: 306px;
    }

    .project-card:nth-child(4) .project-cat {
        margin-bottom: 32px;
    }

    .project-title {
        font-size: 20px;
        line-height: 1.2;
        letter-spacing: -0.03em;
        width: 354px;
        margin-bottom: 12px;
    }

    .project-card:first-child .project-title {
        font-size: 19.5px;
        white-space: nowrap;
    }

    .project-card:nth-child(4) .project-title {
        margin-bottom: 8px;
    }

    .project-desc {
        font-size: 16px;
        line-height: 1.2;
        letter-spacing: -0.03em;
        width: 353px;
    }

    .project-arrow {
        top: 20px;
        right: 24px;
        width: 32px;
        height: 32px;
        border-radius: 2.182px;
        background: var(--gradient-light-green);
        color: var(--color-white);
    }

    /* Categories */
    .front-page .home-categories {
        padding-bottom: 40px;
        min-height: 750px;
    }

    .front-page .home-categories .container {
        max-width: 1344px;
        padding-left: 0;
        padding-right: 0;
    }

    .categories-layout {
        position: relative;
        display: block;
        width: 1344px;
        height: 630px;
        padding: 0;
        box-sizing: border-box;
        background: #fff;
        border-radius: 20px;
    }

    .home-categories .section-title {
        position: absolute;
        left: 36px;
        top: 72px;
        width: 300px;
        margin: 0;
        font-size: 36px;
        line-height: 110%;
        letter-spacing: -0.03em;
    }

    .categories-grid {
        position: absolute;
        left: 36px;
        top: 72px;
        display: block;
        width: 1224px;
        height: 430px;
    }

    .category-card:nth-child(1) { left: 316px; top: 0; }
    .category-card:nth-child(2) { left: 629px; top: 0; }
    .category-card:nth-child(3) { left: 942px; top: 0; }
    .category-card:nth-child(4) { left: 0; top: 250px; }
    .category-card:nth-child(5) { left: 316px; top: 250px; }
    .category-card:nth-child(6) { left: 629px; top: 250px; }
    .category-card:nth-child(7) { left: 942px; top: 250px; }

    .category-card {
        position: absolute;
        width: 285px;
        height: 180px;
        min-height: auto;
        padding: 0;
        overflow: visible;
        color: var(--color-black);
        border-radius: 0;
        background-size: 285px 180px;
        background-repeat: no-repeat;
        background-position: top center;
    }

    .category-num {
        top: 198px;
        left: 0;
        width: 24px;
        height: 24px;
        border-radius: 2px;
        font-size: 13px;
        line-height: 14px;
    }

    .category-title {
        position: absolute;
        top: 198px;
        left: 39px;
        width: 240px;
        font-size: 16px;
        line-height: 19px;
        font-weight: 400;
    }

    /* Steps */
    body.home .home-steps .container {
        max-width: 1202px;
    }

    body.home .home-steps {
        padding-top: 80px;
        padding-bottom: 100px;
    }

    .steps-layout {
        grid-template-columns: 664px 522px;
        grid-template-rows: 77px 456px;
        grid-template-areas:
            "label header"
            "cards image";
        gap: 24px 16px;
        align-items: start;
        width: 1202px;
        height: 557px;
    }

    .home-steps .steps-label {
        grid-area: label;
        display: block;
        margin-bottom: 0;
        font-size: 20px;
        line-height: 24px;
        color: var(--color-black);
    }

    .steps-header {
        grid-area: header;
        text-align: right;
    }

    .steps-header .section-title {
        width: 522px;
        font-size: 48px;
        line-height: 110%;
        letter-spacing: -0.03em;
    }

    .steps-cards {
        grid-area: cards;
        grid-template-columns: 324px 324px;
        grid-template-rows: 220px 220px;
        gap: 16px;
        width: 664px;
        height: 456px;
    }

    .step-card {
        width: 324px;
        height: 220px;
        min-height: 220px;
        padding: 28px;
        border-radius: var(--radius-card);
    }

    .step-card .step-num,
    .step-image-card .step-num {
        width: 44px;
        height: 44px;
        border-radius: 4px;
        font-size: 24px;
        line-height: 110%;
        font-weight: 800;
    }

    .step-card .step-title {
        max-width: 250px;
        font-size: 24px;
        line-height: 110%;
    }

    .step-card:nth-child(3) {
        grid-column: auto;
        min-height: 220px;
    }

    .step-card-mobile {
        display: none;
    }

    .steps-image-wrap {
        grid-area: image;
        display: block;
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        width: 522px;
        height: 456px;
        background: var(--color-white-2);
    }

    .steps-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .step-image-card {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        position: absolute;
        inset: 0;
        padding: 28px;
        border-radius: var(--radius-card);
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.42) 100%);
        color: var(--color-white);
    }

    .step-image-card .step-num {
        background: linear-gradient(135deg, var(--color-light-green-1) 0%, var(--color-light-green-2) 100%);
        color: var(--color-white);
    }

    .step-image-card .step-title {
        max-width: 220px;
        font-size: 24px;
        line-height: 1.1;
        letter-spacing: -0.72px;
    }

    /* Partners */
    .front-page .home-partners {
        padding-top: 48px;
        padding-bottom: 52px;
    }

    .front-page .home-partners .section-title {
        margin-bottom: 52px;
    }

    .front-page .home-partners .partners-grid {
        display: grid;
        grid-template-columns: repeat(3, 382px);
        gap: 29px;
        overflow: visible;
        padding-bottom: 0;
    }

    .front-page .home-partners .partner-card {
        flex: initial;
        width: 382px;
        height: 258px;
        min-height: 0;
        padding: 24px 18px 18px;
        background: #fff;
        border-radius: 8px;
        box-sizing: border-box;
    }

    .front-page .home-partners .partner-logo {
        height: 112px;
        margin-bottom: 15px;
    }

    .front-page .home-partners .partner-logo img {
        max-width: 164px;
        max-height: 112px;
    }

    .front-page .home-partners .partner-name {
        font-size: 16px;
        line-height: 120%;
        margin-bottom: 12px;
    }

    .front-page .home-partners .partner-desc {
        width: 346px;
        font-size: 14px;
        line-height: 120%;
        opacity: 1;
    }

    /* Testimonials */
    body.home .home-testimonials {
        height: 492px;
        padding-top: 9px;
        padding-bottom: 0;
        box-sizing: border-box;
        overflow: hidden;
    }

    body.home .home-testimonials .container {
        max-width: 1200px;
        padding: 0;
        margin: 0 auto;
    }

    .testimonials-layout {
        display: block;
        position: relative;
        width: 1200px;
        height: 484px;
        margin-left: 0;
    }

    .testimonials-intro {
        position: absolute;
        left: 0;
        top: 0;
        width: 549px;
        height: 104px;
    }

    .testimonials-intro .section-title {
        width: 549px;
        font-size: 48px;
        line-height: 108%;
        letter-spacing: -0.03em;
        margin: 0;
    }

    .testimonials-content {
        position: absolute;
        left: 0;
        top: 152px;
        width: 1200px;
        height: 332px;
    }

    .testimonials-content .section-label {
        position: absolute;
        left: 949px;
        top: -147px;
        width: 251px;
        margin: 0;
        font-size: 20px;
        line-height: 24px;
        text-align: right;
    }

    .testimonials-grid {
        width: 1200px;
        height: 292px;
        gap: 27px;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 0;
    }

    .testimonials-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
        width: 1200px;
    }

    .testimonials-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(54, 118, 67, 0.22);
    }

    .testimonials-dot.active {
        width: 24px;
        border-radius: 999px;
        background: var(--color-green);
    }

    /* Desktop testimonials nav: same JS-generated arrows as mobile, pinned to
       the row ends; dots keep their strict center position. */
    body.home .home-testimonials .testimonials-dots {
        position: relative;
        align-items: center;
    }

    body.home .home-testimonials .scroll-slider-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 50%;
        width: 32px;
        height: 32px;
        padding: 0;
        border: 0;
        border-radius: 50%;
        background: var(--color-green);
        cursor: pointer;
        transform: translateY(-50%);
        transition: opacity 0.2s ease;
    }

    body.home .home-testimonials .scroll-slider-arrow:hover {
        opacity: 0.85;
    }

    body.home .home-testimonials .scroll-slider-arrow.prev { left: 0; }
    body.home .home-testimonials .scroll-slider-arrow.next { right: 0; }

    body.home .home-testimonials .scroll-slider-arrow::before {
        content: '';
        width: 8px;
        height: 8px;
        border: solid var(--color-white);
        border-width: 0 2px 2px 0;
        transform: translateX(1px) rotate(135deg);
    }

    body.home .home-testimonials .scroll-slider-arrow.next::before {
        transform: translateX(-1px) rotate(-45deg);
    }

    .testimonial-card {
        flex: 0 0 381px;
        max-width: 381px;
        width: 381px;
        height: 292px;
        min-height: 292px;
        padding: 20px 22px;
        border-radius: var(--radius-card);
        box-sizing: border-box;
        background: var(--color-gray);
    }

    .testimonial-author {
        width: 337px;
        height: 60px;
        gap: 16px;
        margin-bottom: 20px;
    }

    .testimonial-avatar {
        width: 60px;
        height: 60px;
        background: url('../img/main/10-2.png') center / cover no-repeat !important;
        color: transparent !important;
    }

    .testimonial-meta {
        gap: 4px;
        width: 261px;
    }

    .testimonial-meta strong {
        font-size: 16px;
        line-height: 120%;
    }

    .testimonial-meta span {
        font-size: 14px;
        line-height: 120%;
        font-style: italic;
        opacity: 1;
    }

    .testimonial-text {
        width: 337px;
        font-size: 14px;
        line-height: 120%;
    }

    /* Request */
    .front-page .home-request {
        background: var(--color-white);
        padding-top: 56px;
        padding-bottom: 140px;
    }

    .request-grid {
        position: relative;
        height: 478px;
        min-height: 478px;
        grid-template-columns: 445px 490px;
        justify-content: space-between;
        gap: 0;
        align-items: start;
        padding: 30px;
        border-radius: 14px;
        background: var(--gradient-light-green);
        overflow: hidden;
        box-sizing: border-box;
    }

    .request-text .section-title {
        font-family: 'Exo 2', sans-serif;
        font-size: 36px;
        font-weight: 600;
        line-height: 1.1;
        letter-spacing: -1.08px;
        color: var(--color-white);
        margin: 0 0 16px;
    }

    .request-text .section-title em {
        font-style: italic;
        font-weight: 600;
    }

    .request-text {
        position: absolute;
        left: 48px;
        top: 316px;
        bottom: auto;
        width: 445px;
        padding: 0;
        transform: none;
    }

    .request-text p {
        font-family: 'Exo 2', sans-serif;
        font-size: 16px;
        font-weight: 400;
        line-height: 1.1;
        color: var(--color-white);
        opacity: 1;
        margin: 0;
    }

    .request-form-wrap {
        position: absolute;
        top: 30px;
        right: 30px;
        width: 490px;
        height: 416px;
        padding: 30px;
        border-radius: var(--radius-card);
        box-sizing: border-box;
    }

    .request-plus {
        position: absolute;
        left: 48px;
        top: 83px;
        width: 40px;
        height: 40px;
        color: var(--color-white);
        background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 0C25.5 0 28 4.5 28 10C28 12.2 29.8 14 32 14C37.5 14 40 16.8 40 20C40 23.2 37.5 26 32 26C29.8 26 28 27.8 28 30C28 35.5 25.5 40 20 40C14.5 40 12 35.5 12 30C12 27.8 10.2 26 8 26C2.5 26 0 23.2 0 20C0 16.8 2.5 14 8 14C10.2 14 12 12.2 12 10C12 4.5 14.5 0 20 0Z' fill='%23EFEFEF'/%3E%3C/svg%3E") center / contain no-repeat;
    }

    .request-plus path {
        display: none;
    }

    .request-text::before {
        display: none;
    }

    .home-request-form .form-row {
        margin-bottom: 12px;
    }

    .home-request-form .form-field-label {
        display: none;
    }

    .home-request-form .form-field input,
    .home-request-form .form-field textarea {
        width: 429px;
        height: var(--control-height);
        padding: 20px 16px;
        border-radius: var(--radius-control);
        font-size: 12px;
        line-height: 1;
        letter-spacing: -0.24px;
        border: 0;
        background: var(--color-gray);
        box-sizing: border-box;
        font-weight: 400;
    }

    .home-request-form .form-field textarea {
        height: 53px;
        min-height: 53px;
        resize: none;
    }

    .home-request-form .form-field-phone .phone-flag {
        left: 16px;
        top: 50%;
        bottom: auto;
        width: 20px;
        height: 13px;
        transform: translateY(-50%);
        object-fit: cover;
    }

    .home-request-form .form-field-phone input {
        height: 53px;
        padding-left: 44px;
    }

    .home-request-form .form-field input::placeholder,
    .home-request-form .form-field textarea::placeholder {
        font-family: 'HelveticaNeueCyr', 'Helvetica Neue', Arial, sans-serif;
        font-size: 12px;
        font-weight: 400;
        letter-spacing: -0.24px;
        color: var(--color-black);
        opacity: 0.6;
    }

    .home-request-form .checkbox-label {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        width: 301px;
        color: var(--color-dark-green);
        opacity: 1;
    }

    .home-request-form .form-agree {
        margin-top: 20px;
        margin-bottom: 12px;
    }

    .home-request-form .checkbox-label input[type="checkbox"] {
        width: var(--form-checkbox-size);
        height: var(--form-checkbox-size);
        margin: 0;
        border: 1px solid var(--color-dark-green);
        border-radius: 2px;
        background: transparent;
        flex: 0 0 var(--form-checkbox-size);
    }

    .home-request-form .checkbox-label span {
        width: 278px;
        font-family: 'HelveticaNeueCyr', 'Helvetica Neue', Arial, sans-serif;
        font-size: 12px;
        font-weight: 400;
        line-height: 1.1;
        letter-spacing: -0.24px;
        color: var(--color-dark-green);
        opacity: 0.6;
    }

    .home-request-form .checkbox-label a {
        color: var(--color-dark-green);
    }

    .home-request-form .request-submit {
        min-width: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 429px;
        height: var(--button-height);
        padding: 20px 14px;
        border-radius: var(--radius-control);
        background: linear-gradient(-78.711deg, var(--color-green) 0%, var(--color-dark-green) 100%);
        font-family: 'Exo 2', sans-serif;
        font-size: 14px;
        font-weight: 600;
        color: var(--color-white);
        text-align: center;
        box-sizing: border-box;
    }

}

@media (min-width: 1200px) {
    .front-page .section-title {
        font-size: 48px;
    }

    .request-text .section-title {
        font-size: 44px;
    }

    body.home .home-request .request-text .section-title {
        width: 445px;
        font-size: 36px;
        line-height: 110%;
    }

    body.home .home-directions .container,
    body.home .home-audience .container,
    body.home .home-tasks .container,
    body.home .home-projects .container,
    body.home .home-categories .container,
    body.home .home-steps .container,
    body.home .home-partners .container,
    body.home .home-testimonials .container,
    body.home .home-request .container {
        max-width: 1200px;
        padding-left: 0;
        padding-right: 0;
    }

    body.home .home-categories .container {
        max-width: 1344px;
    }

    body.home .home-tasks .container {
        width: calc(100% - 96px);
        max-width: 1344px;
        height: 772px;
        padding: 72px;
        background: var(--color-white-2);
        border-radius: 20px;
        box-sizing: border-box;
    }

    body.home .home-request .container,
    body.home .home-request .request-grid {
        width: 1200px;
        max-width: 1200px;
    }

    body.home .home-request .request-grid {
        height: 478px;
        min-height: 478px;
        padding: 30px;
        border-radius: 20px;
        background: linear-gradient(22.609deg, var(--color-light-green-1) 18.162%, var(--color-light-green-2) 79.556%);
        box-sizing: border-box;
    }

    body.home .home-categories .section-title {
        font-size: 36px;
        line-height: 110%;
    }

    body.home .directions-grid,
    body.home .tasks-grid,
    body.home .categories-grid {
        gap: 28px;
    }

    body.home .home-tasks .tasks-grid {
        gap: 28px 27px;
    }

    body.home .home-directions {
        padding-top: 0;
    }

    body.home .home-directions-header {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 69px;
    }

    body.home .home-directions-header .section-title {
        width: 549px;
        max-width: 549px;
        margin: 0;
        font-size: 48px;
        line-height: 1.08;
        letter-spacing: -1.44px;
        color: var(--color-black);
    }

    body.home .home-directions-header .section-title .text-green {
        color: var(--color-green);
    }

    body.home .home-directions-header .section-label {
        width: 201px;
        font-size: 20px;
        line-height: 1.3;
        font-weight: 400;
        color: var(--color-black);
        margin: 5px 0 0 auto;
        text-align: right;
    }

    body.home .directions-grid {
        width: 1200px;
        display: grid;
        grid-template-columns: 382px 382px 382px;
        grid-template-rows: 200px 200px;
        gap: 27px 26px;
    }

    body.home .direction-card {
        position: relative;
        width: auto;
        height: 200px;
        min-height: 200px;
        padding: 0;
        border-radius: var(--radius-card);
        overflow: hidden;
    }

    body.home .direction-card:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    body.home .direction-card:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    body.home .direction-card:nth-child(4) {
        grid-column: 1;
        grid-row: 2;
    }

    body.home .direction-card:nth-child(5) {
        grid-column: 2;
        grid-row: 2;
    }

    body.home .direction-card.large {
        grid-column: 3;
        grid-row: 1 / 3;
        width: auto;
        height: 427px;
        min-height: 427px;
    }

    body.home .direction-card .direction-overlay {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 52.636%, rgba(0, 0, 0, 0.6) 109.75%);
    }

    body.home .direction-card:nth-child(4) .direction-overlay {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 39.75%, rgba(0, 0, 0, 0.6) 109.75%);
    }

    body.home .direction-card .direction-title {
        position: absolute;
        left: 24px;
        bottom: 24px;
        z-index: 2;
        max-width: calc(100% - 70px);
        font-size: 24px;
        line-height: 1.1;
        font-weight: 600;
        color: var(--color-white);
    }

    body.home .direction-arrow {
        top: auto;
        right: 22px;
        bottom: 24px;
        width: 24px;
        height: 24px;
        color: var(--color-white);
    }

    body.home .direction-card:nth-child(1) .direction-arrow {
        /* Figma node 3116:189: 33.941×33.941 container at x328 y149 inside 382×200 card */
        right: 20.059px;
        bottom: 17.059px;
        width: 33.941px;
        height: 33.941px;
    }

    body.home .direction-card:nth-child(2) .direction-arrow {
        /* Figma node 3116:196: 33.941×33.941 container at x328 y149 inside 382×200 card */
        right: 20.059px;
        bottom: 17.059px;
        width: 33.941px;
        height: 33.941px;
    }

    body.home .direction-card:nth-child(4) {
        /* Figma node 3116:202: local asset, object-position bottom */
        background-position: center bottom;
        background-repeat: no-repeat;
    }

    body.home .direction-card:nth-child(4) .direction-title {
        /* Figma node 3116:203: x24 y124, width 258, multiline */
        width: 258px;
        max-width: 258px;
    }

    body.home .direction-card:nth-child(4) .direction-arrow {
        /* Figma node 3116:204: 33.941×33.941 container at x328 y149 inside 382×200 card */
        right: 20.059px;
        bottom: 17.059px;
        width: 33.941px;
        height: 33.941px;
    }

    body.home .direction-card:nth-child(5) .direction-title {
        /* Figma node 3116:210: x24 y124, width 140 */
        width: 140px;
        max-width: 140px;
    }

    body.home .direction-card:nth-child(5) .direction-arrow {
        /* Figma node 3116:211: 33.941×33.941 container at x328 y149 inside 382×200 card */
        right: 20.059px;
        bottom: 17.059px;
        width: 33.941px;
        height: 33.941px;
    }

    body.home .direction-card.large {
        /* Figma node 3116:216: 382×427 card, image crop 123.82%×166.16%, top -33.05%, left 0 */
        background-size: 123.82% 166.16%;
        background-position: left 49.9%;
        background-repeat: no-repeat;
    }

    body.home .direction-card.large .direction-title {
        /* Figma node 3116:217: x24 y351, width 203, multiline */
        width: 203px;
        max-width: 203px;
    }

    body.home .direction-card.large .direction-arrow {
        /* Figma node 3116:218: 33.941×33.941 container at right-bottom */
        right: 20.059px;
        bottom: 17.059px;
        width: 33.941px;
        height: 33.941px;
    }

    body.home .direction-arrow svg {
        width: 24px;
        height: 24px;
    }

}

@media (max-width: 480px) {
    body.home .home-steps {
        margin-top: 80px;
        height: 570px;
        padding: 0;
        box-sizing: border-box;
    }

    body.home .home-steps .container {
        padding: 0 var(--container-padding-mobile);
    }

    body.home .steps-header .section-title {
        width: 343px;
        text-align: center;
    }

    body.home .steps-layout {
        gap: 32px;
        width: 343px;
        margin-left: auto;
        margin-right: auto;
    }

    body.home .steps-cards {
        grid-template-columns: 167px 167px;
        gap: 12px 8px;
        width: 342px;
        margin-left: auto;
        margin-right: auto;
    }

    body.home .step-card {
        min-height: 136px;
        height: 136px;
        border-radius: 8px;
        padding: 16px;
    }

    body.home .step-num {
        width: 24px;
        height: 24px;
        border-radius: 4px;
        font-size: 14px;
        line-height: 1;
    }

    body.home .step-card-mobile {
        width: 343px;
    }

    body.home .home-directions .home-directions-header {
        margin-bottom: 32px;
    }

    body.home .home-partners {
        height: 443px;
        padding: 0;
        box-sizing: border-box;
        overflow: hidden;
    }

    body.home .home-partners .container {
        padding: 0 var(--container-padding-mobile);
    }

    body.home .home-partners .section-title {
        width: 343px;
        margin: 0 0 16px;
        font-size: 24px;
        line-height: 26px;
        letter-spacing: -0.03em;
        text-align: center;
    }

    body.home .partners-grid {
        display: flex;
        gap: 12px;
        width: calc(100vw - 32px);
        max-width: 498px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 0;
        overscroll-behavior-x: contain;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-x;
        padding-bottom: 0;
        scrollbar-width: none;
        margin-left: calc(-1 * var(--container-padding-mobile));
    }

    body.home .partners-grid::-webkit-scrollbar {
        display: none;
    }

    body.home .partners-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        width: calc(100vw - 32px);
        max-width: 498px;
        margin-top: 12px;
        margin-left: calc(-1 * var(--container-padding-mobile));
    }

    body.home .partner-card {
        flex: 0 0 243px;
        width: 243px;
        height: 293px;
        min-height: 293px;
        padding: 16px;
        background: #fff;
        border-radius: var(--radius-card);
        box-sizing: border-box;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    body.home .partner-logo {
        width: 211px;
        height: 98px;
        margin-bottom: 16px;
    }

    body.home .partner-logo img {
        width: 174px;
        max-width: 174px;
        max-height: 98px;
    }

    body.home .partner-name {
        font-size: 16px;
        line-height: 19px;
        margin-bottom: 8px;
    }

    body.home .partner-desc {
        width: 207px;
        font-size: 14px;
        line-height: 20px;
    }

    body.home .home-testimonials {
        height: 421px;
        margin-top: 32px;
        padding: 0;
        box-sizing: border-box;
        overflow: hidden;
    }

    body.home .home-testimonials .container {
        max-width: none;
        padding: 0;
    }

    body.home .home-request {
        height: 746px;
        padding: 0;
        background: var(--color-white);
        box-sizing: border-box;
        overflow: hidden;
    }

    body.home .home-request .container {
        padding: 0 var(--container-padding-mobile);
    }

    body.home .home-request .request-grid {
        width: 343px;
        height: 646px;
        min-height: 646px;
        display: block;
        position: relative;
        margin-left: auto;
        margin-right: auto;
        padding: 0;
        background: var(--gradient-light-green);
        border-radius: var(--radius-card);
        box-sizing: border-box;
        overflow: hidden;
    }

    body.home .home-request .request-plus {
        position: absolute;
        display: block;
        left: 164px;
        top: 38px;
        width: 16px;
        height: 16px;
        color: var(--color-white);
        background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 0C25.5 0 28 4.5 28 10C28 12.2 29.8 14 32 14C37.5 14 40 16.8 40 20C40 23.2 37.5 26 32 26C29.8 26 28 27.8 28 30C28 35.5 25.5 40 20 40C14.5 40 12 35.5 12 30C12 27.8 10.2 26 8 26C2.5 26 0 23.2 0 20C0 16.8 2.5 14 8 14C10.2 14 12 12.2 12 10C12 4.5 14.5 0 20 0Z' fill='%23EFEFEF'/%3E%3C/svg%3E") center / contain no-repeat;
    }

    body.home .home-request .request-plus path {
        display: none;
    }

    body.home .home-request .request-form-wrap {
        position: absolute;
        left: 18px;
        top: 227px;
        width: 308px;
        height: 402px;
        margin-left: 0;
        margin-top: 0;
        padding: 20px;
        box-sizing: border-box;
        overflow: hidden;
    }

    body.home .home-request .request-copy-desktop {
        display: none;
    }

    body.home .home-request .request-copy-mobile {
        display: inline;
    }

    body.home .home-request .request-text {
        position: static;
        transform: none;
        padding: 100px 23px 0;
        height: 194px;
        text-align: center;
        box-sizing: border-box;
    }

    body.home .home-request .request-text::before {
        content: none;
    }

    body.home .home-request .request-text .section-title {
        width: 297px;
        margin: 0 0 12px;
        font-size: 24px;
        line-height: 26px;
        letter-spacing: 0;
    }

    body.home .home-request .request-text p {
        width: 297px;
        margin: 0;
        font-size: 14px;
        line-height: 1.1;
    }

    body.home .home-request .request-submit {
        font-size: 14px;
        line-height: 17px;
    }

    body.home .home-request .request-text .section-title::after {
        content: none;
    }

    body.home .home-request .request-text p::after {
        content: none;
    }

    body.home .home-request .request-submit::after {
        content: none;
    }

    body.home .home-request-form .form-row {
        margin-bottom: 12px;
    }

    body.home .home-request-form .form-field-label {
        display: none;
    }

    body.home .home-request-form .form-field input,
    body.home .home-request-form .form-field textarea {
        width: 100%;
        height: var(--control-height);
        padding: 20px 16px;
        border-radius: var(--radius-control);
        font-size: 12px;
        letter-spacing: -0.24px;
        font-weight: 400;
        box-sizing: border-box;
    }

    body.home .home-request-form .form-field textarea {
        height: 53px;
        min-height: 53px;
        line-height: 1;
        overflow: hidden;
        resize: none;
    }

    body.home .home-request-form .form-field-phone .phone-flag {
        left: 16px;
        top: 50%;
        bottom: auto;
        width: 20px;
        height: 13px;
        transform: translateY(-50%);
        object-fit: cover;
    }

    body.home .home-request-form .form-field-phone input {
        padding-left: 44px;
    }

    body.home .home-request-form .checkbox-label {
        gap: 8px;
        font-size: 12px;
        line-height: normal;
        letter-spacing: -0.24px;
        width: 265px;
    }

    body.home .home-request-form .checkbox-label span {
        width: 242px;
        font-size: 12px;
        letter-spacing: -0.24px;
        opacity: 0.6;
    }

    body.home .home-request-form .checkbox-label input[type="checkbox"] {
        width: var(--form-checkbox-size);
        height: var(--form-checkbox-size);
        flex: 0 0 var(--form-checkbox-size);
    }

    body.home .home-request-form .request-submit {
        width: 100%;
        min-width: 0;
        height: var(--button-height);
        padding: 0 16px;
        border-radius: var(--radius-control);
        background: linear-gradient(-78.711deg, var(--color-green) 0%, var(--color-dark-green) 100%);
        font-family: 'Exo 2', sans-serif;
        font-size: 14px;
        font-weight: 600;
        color: var(--color-white);
        text-align: center;
        box-sizing: border-box;
    }

    body.home .project-card {
        display: flex;
        grid-template-columns: none;
        flex-basis: 328px;
        max-width: 328px;
        padding: 0;
        background: transparent;
    }

    body.home .project-image {
        width: 328px;
        height: 194px;
        min-height: 194px;
    }

    body.home .project-body {
        width: 328px;
        height: 220px;
        min-height: 220px;
        padding: 20px 24px;
        background: #fff;
        border-radius: var(--radius-card);
        box-sizing: border-box;
        justify-content: flex-start;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    body.home .categories-grid {
        width: 295px;
        gap: 24px;
    }

    body.home .category-card {
        width: 295px;
        height: 218px;
        min-height: 218px;
        padding: 0 0 0 40px;
        box-sizing: border-box;
    }

    body.home .home-categories {
        padding: 0;
        background: var(--color-white);
    }

    body.home .home-categories .container {
        width: 343px;
        min-height: 1838px;
        margin: 0 auto;
        padding: 40px 24px 47px;
        border-radius: 20px;
        background: var(--color-white-2);
        box-sizing: border-box;
    }

    body.home .category-card::before {
        border-radius: var(--radius-card);
    }

    body.home .category-num {
        border-radius: 2.18px;
        font-size: 13px;
        line-height: 14px;
        font-weight: 800;
    }

    body.home .category-title {
        width: 231px;
    }

    .testimonials-intro .section-title {
        width: 310px;
        max-width: 310px;
        font-size: 24px;
        line-height: 110%;
        letter-spacing: 0;
        text-align: center;
        word-break: normal;
        overflow-wrap: normal;
    }

    .testimonials-layout {
        display: block;
        position: relative;
        width: 656px;
        height: 405px;
        margin-left: 16px;
    }

    .testimonials-intro {
        position: absolute;
        left: 16px;
        top: 29px;
        width: 310px;
        height: 52px;
    }

    .testimonials-content {
        position: absolute;
        left: 0;
        top: 0;
        width: 656px;
        height: 405px;
    }

    .testimonials-content .section-label {
        position: absolute;
        left: 84px;
        top: 0;
        width: 176px;
        height: 17px;
        margin: 0;
        font-size: 14px;
        line-height: 17px;
        text-align: center;
    }

    .testimonials-grid {
        position: absolute;
        left: 0;
        top: 113px;
        display: flex;
        grid-template-columns: none;
        gap: 12px;
        overflow-x: auto;
        width: 656px;
        height: 260px;
        padding-bottom: 0;
    }

    .testimonial-card {
        flex: 0 0 322px;
        max-width: 322px;
        height: 260px;
        min-height: 260px;
        max-height: 260px;
        width: auto;
        overflow: hidden;
        border-radius: 8px;
    }

    body.home .testimonial-author {
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 16px;
    }

    body.home .testimonial-avatar {
        width: 60px;
        height: 60px;
        font-size: 0;
    }

    body.home .testimonial-meta {
        width: 206px;
        gap: 4px;
        padding-top: 6px;
    }

    body.home .testimonial-meta strong {
        font-size: 14px;
        line-height: 120%;
    }

    body.home .testimonial-meta span {
        font-size: 12px;
        line-height: 120%;
        opacity: 1;
        font-style: italic;
    }

    body.home .testimonial-text {
        font-size: 13px;
        line-height: 120%;
    }
}


/* Mobile overflow protection (front page) */
@media (max-width: 991px) {
    body.home .container,
    .front-page .container,
    .home-tasks .container,
    .home-categories .container,
    .home-projects .container,
    .home-request .container,
    .home-steps .container,
    .home-partners .container,
    .home-testimonials .container,
    .home-directions .container,
    .home-audience .container,
    .home-about .container,
    .home-hero .container {
        width: 100%;
        max-width: calc(100vw - 32px);
        box-sizing: border-box;
    }

    .home-hero-grid,
    .home-about-grid,
    .home-directions-header,
    .home-directions-header .section-title,
    .directions-grid,
    .tasks-grid,
    .categories-grid,
    .steps-layout,
    .testimonials-layout,
    .request-grid {
        min-width: 0;
        width: 100%;
    }

    .home-hero-title-wrap,
    .home-hero-image-wrap,
    .home-hero-desc-block,
    .home-hero-bottom,
    .home-hero-cta,
    .home-hero-shop-btn-mobile,
    .home-hero-check-card,
    .home-hero-badges {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .home-hero-title {
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .home-hero-title .text-green {
        white-space: normal;
    }

    .home-hero-badge.light {
        flex: 1 1 calc(58% - 4px);
        width: auto;
        max-width: none;
        min-width: 0;
    }

    .home-hero-badge.stat {
        flex: 1 1 calc(42% - 4px);
        width: auto;
        max-width: none;
        min-width: 0;
    }

    .home-about-text,
    .home-about-add,
    .home-about-visual,
    .home-about-stats,
    .home-about-mobile-label,
    .home-about-left {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .home-about-desc,
    .home-about-text .section-title {
        width: 100%;
        max-width: 100%;
    }

    .home-directions .directions-grid,
    .direction-card,
    .direction-card.large,
    .home-categories .section-title,
    .home-categories .categories-grid,
    .category-card,
    .category-card::before,
    .category-title,
    .home-projects-header .section-title,
    .projects-btn-mobile,
    .projects-grid,
    .project-card,
    .project-image,
    .project-body,
    .testimonials-grid,
    .testimonial-card,
    .home-request .request-grid,
    .home-request .request-form-wrap {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    body.home .categories-grid {
        margin-left: auto;
        margin-right: auto;
    }

    body.home .home-request .request-form-wrap {
        left: calc(50vw - var(--container-padding-mobile));
        width: calc(100% - 36px);
        max-width: 308px;
        transform: translateX(-50%);
    }

    .project-card {
        flex-basis: auto;
    }

    .testimonial-card {
        flex: 0 0 auto;
    }

    .category-card::before {
        background-size: cover;
    }

    .home-partners .section-title,
    .partner-card,
    .steps-header .section-title,
    .step-card-mobile,
    .step-card,
    .request-form {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .direction-card .direction-title,
    .task-card .task-title,
    .category-card .category-title,
    .project-card .project-title,
    .testimonial-text {
        word-break: break-word;
        overflow-wrap: break-word;
    }
}

@media (max-width: 480px) {
    body.home .steps-header .section-title,
    body.home .steps-layout,
    body.home .step-card-mobile,
    body.home .home-partners .section-title,
    body.home .home-request .request-grid,
    body.home .home-testimonials .testimonials-grid,
    body.home .home-testimonials .testimonial-card {
        width: 100%;
        max-width: calc(100vw - 32px);
    }

    body.home .home-request .container {
        width: var(--mobile-content-width);
        max-width: var(--mobile-content-width);
        padding-left: 0;
        padding-right: 0;
        box-sizing: border-box;
    }

    body.home .home-request .request-grid {
        width: var(--mobile-content-width);
        max-width: var(--mobile-content-width);
    }

    body.home .home-request .request-form-wrap {
        left: 50%;
        width: min(308px, calc(100% - 35px));
        max-width: 308px;
        transform: translateX(-50%);
    }
}

@media (max-width: 991px) {
    body.home .home-audience .container {
        width: 100%;
        max-width: calc(100vw - 24px);
        padding-left: 0;
        padding-right: 0;
        box-sizing: border-box;
    }

    body.home .home-audience-grid {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    body.home .audience-left {
        width: 100%;
        max-width: 100%;
        height: 269px;
        min-height: 269px;
        padding: 26px;
        border-radius: var(--radius-card);
        background: linear-gradient(-87.471deg, var(--color-green) 0%, var(--color-dark-green) 100%);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        box-sizing: border-box;
    }

    body.home .audience-left .section-label {
        width: auto;
        height: auto;
        min-height: 0;
        padding: 12px 16px;
        margin: 0 0 68px;
        border-radius: var(--radius-control);
        font-size: 16px;
        line-height: 1.1;
        font-weight: 400;
    }

    body.home .audience-left .section-title {
        width: 100%;
        max-width: 100%;
        font-size: 24px;
        line-height: 1.15;
        letter-spacing: -0.72px;
        font-weight: 600;
    }

    body.home .audience-title-desktop {
        display: none;
    }

    body.home .audience-title-mobile {
        display: inline;
    }

    body.home .audience-list {
        display: flex;
        flex-flow: row wrap;
        align-items: flex-start;
        width: 100%;
        max-width: 100%;
        gap: 10px;
    }

    body.home .audience-list li {
        flex: 0 0 auto;
        width: fit-content;
        max-width: 100%;
        height: 64px;
        min-height: 64px;
        padding: 14px;
        gap: 12px;
        border-radius: var(--radius-card);
        font-size: 16px;
        line-height: normal;
        font-weight: 400;
        white-space: nowrap;
        box-sizing: border-box;
    }

    body.home .audience-list img {
        width: 34px;
        height: 34px;
    }

    body.home .audience-list li:nth-child(7) img {
        width: 34px;
        height: 29px;
    }

    body.home .audience-list li:nth-child(1) { width: 323px; order: 1; }
    body.home .audience-list li:nth-child(5) { width: 170px; order: 2; }
    body.home .audience-list li:nth-child(2) { width: 171px; order: 3; }
    body.home .audience-list li:nth-child(6) { width: 323px; order: 4; }
    body.home .audience-list li:nth-child(3) { width: 186px; order: 5; }
    body.home .audience-list li:nth-child(7) { width: 155px; height: 64px; min-height: 64px; order: 6; }
    body.home .audience-list li:nth-child(4) { width: 190px; order: 7; }
    body.home .audience-list li:nth-child(8) { width: 303px; order: 8; }
}

@media (max-width: 480px) {
    body.home .home-directions .container,
    body.home .home-tasks .container {
        width: var(--mobile-content-width);
        max-width: var(--mobile-content-width);
        margin-left: auto;
        margin-right: auto;
        padding-left: 0;
        padding-right: 0;
        box-sizing: border-box;
    }

    body.home .home-directions {
        padding-bottom: 80px;
    }

    body.home .home-directions-header {
        width: min(295px, 100%);
        margin: 0 auto 20px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    body.home .home-directions-header .directions-copy-desktop {
        display: none;
    }

    body.home .home-directions-header .directions-copy-mobile {
        display: inline;
    }

    body.home .home-directions-header .section-label {
        width: auto;
        max-width: 100%;
        margin: 0;
        font-size: 14px;
        line-height: normal;
        font-weight: 400;
        text-align: left;
        color: var(--color-black);
    }

    body.home .home-directions-header .section-title {
        width: min(283px, 100%);
        max-width: min(283px, 100%);
        margin: 0;
        font-size: 24px;
        line-height: 1.1;
        letter-spacing: -0.72px;
    }

    body.home .home-directions .directions-grid {
        width: min(295px, 100%);
        max-width: min(295px, 100%);
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    body.home .direction-card,
    body.home .direction-card.large {
        width: 100%;
        max-width: 100%;
        height: 180px;
        min-height: 180px;
        border-radius: var(--radius-card);
        background-size: cover;
        background-repeat: no-repeat;
    }

    body.home .direction-card:nth-child(1) { order: 1; }
    body.home .direction-card:nth-child(2) { order: 2; }
    body.home .direction-card:nth-child(4) { order: 3; }
    body.home .direction-card:nth-child(5) { order: 4; }
    body.home .direction-card:nth-child(3) { order: 5; }

    body.home .direction-card:nth-child(1) {
        background-image: url('../img/main/figma-direction-mobile-01.png') !important;
        background-size: cover;
        background-position: center;
    }

    body.home .direction-card:nth-child(2) {
        background-image: url('../img/main/figma-direction-mobile-02.png') !important;
        background-size: cover;
        background-position: center;
    }

    body.home .direction-card:nth-child(3) {
        background-image: url('../img/main/figma-direction-mobile-05.png') !important;
        background-size: cover;
        background-position: center;
    }

    body.home .direction-card:nth-child(4) {
        background-image: url('../img/main/figma-direction-mobile-03.png') !important;
    }

    body.home .direction-card:nth-child(5) {
        background-image: url('../img/main/figma-direction-mobile-04.png') !important;
    }

    body.home .direction-card:nth-child(5) {
        background-size: cover;
        background-position: center;
    }

    body.home .direction-card.large {
        background-size: cover;
        background-position: center;
    }

    body.home .direction-card .direction-title {
        display: none;
        left: 24px;
        bottom: 24px;
        max-width: 237px;
        font-size: 20px;
        line-height: 1.2;
        letter-spacing: -0.6px;
        color: var(--color-white);
    }

    body.home .direction-card:nth-child(3) .direction-title {
        bottom: 48px;
    }

    body.home .direction-card .direction-overlay,
    body.home .direction-arrow {
        display: none;
    }

    body.home .direction-arrow {
        top: 12px;
        right: 12px;
        bottom: auto;
        width: 27px;
        height: 27px;
    }

    body.home .direction-arrow svg {
        width: 27px;
        height: 27px;
    }

    body.home .home-audience .container {
        width: var(--mobile-content-width);
        max-width: var(--mobile-content-width);
    }

    body.home .home-audience-grid {
        gap: 8px;
    }

    body.home .audience-left {
        width: 100%;
        height: 206px;
        min-height: 206px;
        padding: 20px;
    }

    body.home .audience-left .section-label {
        padding: 12px;
        margin: 0 0 48px;
        font-size: 14px;
    }

    body.home .audience-left .section-title {
        width: min(306px, 100%);
        max-width: min(306px, 100%);
        font-size: 24px;
        line-height: 1.1;
    }

    body.home .audience-list {
        width: 100%;
        gap: 8px;
    }

    body.home .audience-list li {
        height: 54px;
        min-height: 54px;
        padding: 12px;
        gap: 10px;
        font-size: 14px;
    }

    body.home .audience-list img {
        width: 30px;
        height: 30px;
    }

    body.home .audience-list li:nth-child(7) img {
        width: 30px;
        height: 24px;
    }

    body.home .audience-list li:nth-child(1) { width: 247px; }
    body.home .audience-list li:nth-child(5) { width: 153px; }
    body.home .audience-list li:nth-child(2) { width: 155px; }
    body.home .audience-list li:nth-child(6) { width: 245px; }
    body.home .audience-list li:nth-child(3) { width: 180px; }
    body.home .audience-list li:nth-child(7) { width: 137px; height: 54px; min-height: 54px; }
    body.home .audience-list li:nth-child(4) { width: 159px; }
    body.home .audience-list li:nth-child(8) { width: 232px; }

    body.home .home-projects .project-card,
    body.home .home-projects .project-image,
    body.home .home-projects .project-body {
        width: min(328px, calc(100vw - 32px));
        max-width: min(328px, calc(100vw - 32px));
        flex-basis: min(328px, calc(100vw - 32px));
    }

    body.home .home-testimonials .testimonials-dots {
        position: absolute;
        left: calc(50vw - var(--container-padding-mobile));
        top: 385px;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 72px;
        height: 8px;
        margin: 0;
        transform: translateX(-50%);
    }

    body.home .home-testimonials .testimonials-dot {
        display: block;
        flex: 0 0 auto;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(54, 118, 67, 0.22);
    }

    body.home .home-testimonials .testimonials-dot.active {
        width: 24px;
        border-radius: 999px;
        background: var(--color-green);
    }

    body.home .home-tasks .container {
        min-height: 1360px;
        height: auto;
        padding: 36px 24px;
        border-radius: 20px;
        background: var(--color-white-2);
    }

    body.home .home-tasks .section-title {
        width: min(293px, 100%);
        max-width: min(293px, 100%);
        margin: 0 auto 24px;
        font-size: 24px;
        line-height: 1.1;
        letter-spacing: -0.72px;
    }

    body.home .tasks-grid {
        width: min(295px, 100%);
        max-width: min(295px, 100%);
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    body.home .task-card {
        width: 100%;
        height: 180px;
        min-height: 180px;
        border-radius: var(--radius-card);
    }

    body.home .task-num {
        left: 24px;
        top: 24px;
        font-size: 14px;
        line-height: 1.1;
    }

    body.home .task-title {
        left: 24px;
        bottom: 24px;
        max-width: 237px;
        font-size: 20px;
        line-height: 1.2;
        letter-spacing: -0.6px;
    }

    body.home .task-card:nth-child(5) .task-title,
    body.home .task-card:nth-child(6) .task-title {
        bottom: 48px;
    }

    body.home .task-card:nth-child(1) {
        background-size: 100% 100%;
        background-position: center;
    }

    body.home .task-card:nth-child(2) {
        background-size: 120px 114px;
        background-position: 169px 4px;
    }

    body.home .task-card:nth-child(3) {
        background-size: 100% 100%;
        background-position: center;
    }

    body.home .task-card:nth-child(4) {
        background-size: 102px 107px;
        background-position: 183px 10px;
    }

    body.home .task-card:nth-child(5) {
        background-size: 100% 100%;
        background-position: center;
    }

    body.home .task-card:nth-child(6) {
        background-size: 139px 81px;
        background-position: 143px 11px;
    }
}

@media (max-width: 520px) {
    body.home .home-tasks {
        padding-bottom: 62px;
    }

    body.home .home-projects {
        padding: 0 0 72px;
        overflow: hidden;
    }

    body.home .home-projects .container {
        width: var(--mobile-content-width);
        max-width: var(--mobile-content-width);
        margin-left: auto;
        margin-right: auto;
        padding-left: 0;
        padding-right: 0;
        box-sizing: border-box;
    }

    body.home .home-projects-header {
        position: relative;
        width: 100%;
        margin-bottom: 32px;
        padding-right: 54px;
        box-sizing: border-box;
    }

    body.home .home-projects-header::after {
        content: "";
        position: absolute;
        top: 2px;
        right: 0;
        width: 32px;
        height: 32px;
        opacity: 0.18;
        background: var(--color-black);
        -webkit-mask: url('../img/main/hero-badge-plus.svg') center / contain no-repeat;
        mask: url('../img/main/hero-badge-plus.svg') center / contain no-repeat;
    }

    body.home .home-projects-header .section-title {
        width: 100%;
        max-width: 100%;
        font-size: 24px;
        line-height: 1.1;
        letter-spacing: -0.72px;
    }

    body.home .home-projects .projects-grid {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 426px;
        align-items: flex-start;
        overflow-x: auto;
        overflow-y: visible;
        padding-bottom: 0;
    }

    body.home .home-projects .project-card {
        width: 328px;
        max-width: 328px;
        flex: 0 0 328px;
        flex-basis: 328px;
        height: 426px;
        min-height: 426px;
        gap: 12px;
    }

    body.home .home-projects .project-image {
        width: 328px;
        max-width: 328px;
        flex: 0 0 auto;
        flex-basis: auto;
        height: 194px;
        min-height: 194px;
        aspect-ratio: auto;
        border-radius: var(--radius-card);
    }

    body.home .home-projects .project-body {
        width: 328px;
        max-width: 328px;
        flex: 0 0 auto;
        flex-basis: auto;
        height: 220px;
        min-height: 220px;
        padding: 20px 24px;
        border-radius: var(--radius-card);
    }

    body.home .home-projects .project-card:nth-child(4),
    body.home .home-projects .project-card:nth-child(4) .project-body {
        height: auto;
    }

    body.home .home-projects .project-cat {
        width: 214px;
        margin-bottom: 46px;
        font-size: 14px;
        line-height: 1.1;
        letter-spacing: -0.42px;
    }

    body.home .home-projects .project-title {
        width: 100%;
        max-width: 100%;
        margin-bottom: 18px;
        font-size: 20px;
        line-height: 1.08;
        letter-spacing: -0.72px;
    }

    body.home .home-projects .project-desc {
        width: min(344px, 100%);
        max-width: 100%;
        font-size: 16px;
        line-height: 1.08;
        letter-spacing: -0.6px;
    }

    body.home .home-projects .project-arrow {
        top: 226px;
        right: 24px;
        width: 32px;
        height: 32px;
        border-radius: 4px;
    }

    body.home .home-projects .projects-btn-mobile {
        width: 100%;
        max-width: 100%;
        margin-top: 35px;
    }
}

@media (min-width: 361px) and (max-width: 991px) {
    body.home .home-hero .container {
        max-width: 343px;
        padding-left: 0;
        padding-right: 0;
    }

    body.home .home-hero-image-wrap,
    body.home .home-hero-image {
        width: 343px;
        max-width: 343px;
    }

    body.home .home-hero-badges {
        left: 12px;
        width: 319px;
        max-width: 319px;
    }

    body.home .home-hero-badge.light {
        flex: 0 0 179px;
        width: 179px;
        max-width: 179px;
    }

    body.home .home-hero-badge.stat {
        flex: 0 0 132px;
        width: 132px;
        max-width: 132px;
    }
}

@media (max-width: 360px) {
    body.home .site-header .container,
    body.home .home-hero .container,
    body.home .home-about .container,
    body.home .home-directions .container,
    body.home .home-audience .container,
    body.home .home-tasks .container,
    body.home .home-projects .container,
    body.home .home-categories .container,
    body.home .home-steps .container,
    body.home .home-partners .container,
    body.home .home-testimonials .container,
    body.home .home-request .container {
        width: calc(100vw - 32px) !important;
        max-width: calc(100vw - 32px) !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        box-sizing: border-box;
    }

    body.home .home-hero-title {
        font-size: 24px;
        line-height: 96%;
    }

    body.home .home-hero-desc {
        font-size: 15px;
        line-height: 18px;
    }

    body.home .home-hero-badge {
        padding: 10px;
    }

    body.home .home-hero-badge.stat .badge-text {
        font-size: 24px;
    }

    body.home .home-about-text .section-title {
        font-size: 20px;
        line-height: 1.1;
    }

    body.home .home-about-desc {
        font-size: 13px;
        line-height: 1.2;
    }

    body.home .home-about-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    body.home .about-stat {
        min-width: 0;
    }

    /* Audience: shrink to fit very narrow viewports while keeping the row groupings */
    body.home .audience-left {
        width: 100%;
        max-width: 100%;
    }

    body.home .audience-left .section-title {
        width: 100%;
    }

    body.home .audience-list {
        width: 100%;
        max-width: 100%;
    }

    body.home .audience-list li {
        width: auto;
        max-width: 100%;
        flex: 0 1 auto;
        min-width: 0;
        height: auto;
        min-height: 54px;
        white-space: normal;
    }

    body.home .audience-list li:nth-child(7) {
        height: auto;
        min-height: 48px;
    }
}


/* ==========================================================================
   Unified mobile slider controls (front page)
   Arrows + centered bottom dots are generated by assets/js/main.js for the
   existing scroll carousels (projects, partners, testimonials).
   Desktop controls/markup are unchanged.
   ========================================================================== */
.scroll-slider-arrow,
.home-projects-dots {
    display: none;
}

@media (max-width: 991px) {
    body.home .scroll-slider-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        flex: 0 0 32px;
        padding: 0;
        border: 0;
        border-radius: 50%;
        background: var(--color-green);
        cursor: pointer;
        position: relative;
        transition: opacity 0.2s ease;
    }

    body.home .scroll-slider-arrow:hover {
        opacity: 0.85;
    }

    body.home .scroll-slider-arrow::before {
        content: '';
        width: 8px;
        height: 8px;
        border: solid var(--color-white);
        border-width: 0 2px 2px 0;
        transform: translateX(1px) rotate(135deg);
    }

    body.home .scroll-slider-arrow.next::before {
        transform: translateX(-1px) rotate(-45deg);
    }

    body.home .home-projects-dots {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        margin-top: 12px;
    }

    body.home .home-projects-dot {
        width: 8px;
        height: 8px;
        padding: 0;
        border: 0;
        border-radius: 50%;
        background: rgba(54, 118, 67, 0.22);
        cursor: pointer;
        transition: width .2s ease, background-color .2s ease, border-radius .2s ease;
    }

    body.home .home-projects-dot.active {
        width: 24px;
        border-radius: 999px;
        background: var(--color-green);
    }

    body.home .partners-dots,
    body.home .testimonials-dots {
        align-items: center;
    }

    /* .home-projects-slider is display:flex (main.css .projects-slider):
       wrap so the generated dots row lands below the slide, centered,
       instead of overflowing off-screen to the right. */
    body.home .home-projects-slider {
        flex-wrap: wrap;
        row-gap: 0;
    }
}
