.home-hero {
    background:
        linear-gradient(90deg, rgba(13, 35, 30, 0.94), rgba(13, 35, 30, 0.72) 48%, rgba(13, 35, 30, 0.2)),
        url("/wp-content/uploads/2025/01/website_design_making-1024x574.jpeg") center / cover;
}

.home-hero h1 {
    max-width: 900px;
}

.home-intro,
.home-fit,
.home-method {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
}

.home-intro {
    padding: 92px 0 54px;
}

.home-intro h2,
.home-fit h2,
.home-method h2 {
    margin: 0;
    font-size: 42px;
    line-height: 1.08;
    letter-spacing: 0;
}

.home-intro p,
.home-fit p,
.home-method p {
    margin: 0 0 20px;
    color: var(--muted);
}

.home-proof {
    width: min(1180px, calc(100% - 48px));
    margin: 36px auto 94px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.home-proof div {
    padding: 30px;
    border-right: 1px solid var(--line);
}

.home-proof div:last-child {
    border-right: 0;
}

.home-proof strong {
    display: block;
    color: var(--green);
    font-size: 30px;
    line-height: 1.1;
}

.home-proof span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 15px;
}

.home-services,
.home-examples {
    padding: 90px 24px;
    background: var(--white);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.home-examples {
    background: #f2f7f5;
}

.home-service-grid,
.home-project-grid {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.home-project-grid {
    grid-template-columns: repeat(3, 1fr);
}

.home-service-grid article,
.home-project-grid article,
.fit-list article {
    min-height: 100%;
    padding: 28px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.home-project-grid article,
.fit-list article {
    background: var(--white);
}

.home-service-grid p,
.home-project-grid p {
    margin: 0 0 12px;
    color: var(--coral);
    font-size: 13px;
    font-weight: 850;
    text-transform: uppercase;
}

.home-service-grid h3,
.home-project-grid h3,
.fit-list h3 {
    margin: 0;
    color: var(--green-dark);
    font-size: 22px;
    line-height: 1.25;
}

.home-service-grid span,
.home-project-grid span {
    display: block;
    margin: 16px 0 22px;
    color: var(--muted);
}

.home-service-grid a,
.home-project-grid a {
    color: var(--green);
    font-weight: 850;
    text-decoration: none;
}

.home-fit {
    padding: 94px 0;
}

.fit-list {
    display: grid;
    gap: 16px;
}

.fit-list p {
    margin: 10px 0 0;
}

.home-method {
    padding: 94px 0;
}

@media (max-width: 1100px) {
    .home-service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 960px) {
    .home-intro,
    .home-fit,
    .home-method,
    .home-proof,
    .home-project-grid {
        grid-template-columns: 1fr;
    }

    .home-proof div {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .home-proof div:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 640px) {
    .home-hero {
        background:
            linear-gradient(180deg, rgba(13, 35, 30, 0.94), rgba(13, 35, 30, 0.72)),
            url("/wp-content/uploads/2025/01/website_design_making-1024x574.jpeg") center / cover;
    }

    .home-intro,
    .home-fit,
    .home-method,
    .home-proof {
        width: min(100% - 32px, 1180px);
    }

    .home-intro h2,
    .home-fit h2,
    .home-method h2 {
        font-size: 34px;
    }

    .home-services,
    .home-examples {
        padding: 70px 16px;
    }

    .home-service-grid {
        grid-template-columns: 1fr;
    }
}
