:root {
    --bm-orange: #ff6200;
    --bm-orange-2: #e85800;
    --bm-green: #73b942;
    --bm-green-2: #8aca50;
    --bm-ink: #101111;
    --bm-dark: #070808;
    --bm-panel: #111313;
    --bm-paper: #f1f1ee;
    --bm-white: #ffffff;
    --bm-muted: rgba(255, 255, 255, 0.7);
    --bm-line: rgba(255, 255, 255, 0.14);
    --bm-container: 1240px;
}

body {
    background: var(--bm-dark);
    color: var(--bm-white);
}

.home-page {
    overflow: hidden;
    background: #090a0a;
}

.home-container {
    width: min(90%, var(--bm-container));
    margin: 0 auto;
}

.home-page h1,
.home-page h2,
.home-page h3,
.home-page p,
.home-page figure,
.home-page ol,
.home-page ul {
    margin-top: 0;
}

.home-page h1,
.home-page h2,
.home-page h3 {
    font-family: var(--text-logo);
    letter-spacing: 0;
    text-transform: uppercase;
}

.home-eyebrow,
.home-section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--bm-orange);
    font-family: var(--text-logo);
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
}

.home-eyebrow::before,
.home-section-label::before {
    width: 34px;
    height: 2px;
    flex: 0 0 auto;
    background: currentColor;
    content: "";
}

.home-btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-family: var(--text-logo);
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.home-btn:hover {
    transform: translateY(-2px);
}

.home-btn-primary {
    background: var(--bm-orange);
    color: var(--bm-white);
}

.home-btn-primary:hover {
    background: var(--bm-orange-2);
}

.home-btn-outline {
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(0, 0, 0, 0.26);
    color: var(--bm-white);
}

.home-btn-outline:hover {
    border-color: var(--bm-white);
    background: rgba(255, 255, 255, 0.08);
}

.home-btn-dark {
    background: #151616;
    color: var(--bm-white);
}

.home-btn-dark:hover {
    background: #000000;
}

.home-btn-whatsapp {
    border-color: rgba(255, 255, 255, 0.72);
    color: var(--bm-white);
}

.home-btn-whatsapp:hover {
    border-color: var(--bm-white);
    background: rgba(0, 0, 0, 0.1);
}

.home-btn-whatsapp img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.home-text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--bm-orange);
    font-family: var(--text-logo);
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.home-text-link span {
    transition: transform 180ms ease;
}

.home-text-link:hover span {
    transform: translateX(4px);
}

.home-section-heading,
.home-sustainability-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
    gap: 70px;
    align-items: end;
    margin-bottom: 42px;
}

.home-section-heading h2,
.home-sustainability-heading h2,
.home-factory-copy h2,
.home-final-cta h2 {
    margin: 18px 0 0;
    color: var(--bm-white);
    font-size: 46px;
    font-weight: 600;
    line-height: 0.96;
}

.home-section-heading > p,
.home-sustainability-heading > p,
.home-factory-copy > p,
.home-final-cta p {
    margin: 0;
    color: var(--bm-muted);
    font-size: 15px;
    line-height: 1.75;
}

/* Hero */
.home-hero {
    position: relative;
    min-height: 650px;
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background-color: #070808;
    background-image:
        linear-gradient(90deg, rgba(4, 5, 5, 0.97) 0%, rgba(4, 5, 5, 0.84) 42%, rgba(4, 5, 5, 0.22) 72%, rgba(4, 5, 5, 0.28) 100%),
        url("../assets/imagens-fundo/brutusmaq-index-background.webp");
    background-position: center, right center;
    background-repeat: no-repeat;
    background-size: cover, auto 100%;
}

.home-hero::after {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), transparent 58%, rgba(0, 0, 0, 0.66));
    content: "";
}

.home-hero-inner {
    position: relative;
    z-index: 1;
    min-height: 650px;
    display: grid;
    grid-template-rows: 1fr auto;
    gap: 40px;
    padding: 34px 0 32px;
}

.home-hero-copy {
    width: min(100%, 700px);
    align-self: center;
    padding: 42px 0;
}

.home-hero h1 {
    max-width: 700px;
    margin: 18px 0 20px;
    color: var(--bm-white);
    font-size: 72px;
    font-weight: 700;
    line-height: 0.88;
}

.home-hero h1 strong,
.home-final-cta h2 strong {
    color: var(--bm-orange);
    font: inherit;
}

.home-hero-copy > p {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    line-height: 1.65;
}

.home-actions,
.home-final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.home-actions {
    margin-top: 28px;
}

.home-hero-proof {
    width: min(100%, 840px);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 0;
    padding: 20px 0 0;
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.home-hero-proof li {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 11px;
    padding-right: 18px;
}

.home-hero-proof img {
    width: 35px;
    height: 35px;
    flex: 0 0 auto;
    object-fit: contain;
}

.home-hero-proof span {
    color: var(--bm-white);
    font-family: var(--text-logo);
    font-size: 16px;
    font-weight: 600;
    line-height: 0.95;
    text-transform: uppercase;
}

/* Numbers */
.home-stats-strip {
    background: var(--bm-paper);
    color: var(--bm-ink);
}

.home-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-stats-grid article {
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 28px;
}

.home-stats-grid article + article {
    border-left: 1px solid rgba(15, 16, 16, 0.15);
}

.home-stats-grid strong {
    color: var(--bm-orange-2);
    font-family: var(--text-logo);
    font-size: 34px;
    line-height: 1;
    text-transform: uppercase;
}

.home-stats-grid span {
    max-width: 230px;
    margin-top: 9px;
    color: #505252;
    font-size: 13px;
    line-height: 1.5;
}

/* Equipment */
.home-equipment-section {
    padding: 104px 0 110px;
    background: #090a0a;
}

.home-equipment-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.home-equipment-card {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    padding: 28px 22px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 6px;
    background: #121313;
    color: var(--bm-white);
    transition: border-color 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.home-equipment-card:hover {
    border-color: rgba(255, 98, 0, 0.58);
    background: #161818;
    transform: translateY(-4px);
}

.home-equipment-featured {
    min-height: 534px;
    grid-column: span 2;
    grid-row: span 2;
    padding: 0;
    overflow: hidden;
}

.home-equipment-visual {
    position: relative;
    min-height: 292px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 44%, rgba(255, 98, 0, 0.2), transparent 54%),
        #0d0e0e;
}

.home-equipment-visual span {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 7px 10px 5px;
    border: 1px solid rgba(255, 98, 0, 0.62);
    border-radius: 3px;
    color: var(--bm-orange);
    font-family: var(--text-logo);
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.home-equipment-visual img {
    width: 78%;
    max-height: 310px;
    object-fit: contain;
    filter: drop-shadow(0 22px 24px rgba(0, 0, 0, 0.42));
    transition: transform 220ms ease;
}

.home-equipment-card:hover .home-equipment-visual img {
    transform: scale(1.035);
}

.home-equipment-content {
    padding: 28px 30px 30px;
}

.home-equipment-card > .home-equipment-icon {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.home-equipment-content .home-equipment-icon {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.home-equipment-card h3 {
    margin: 30px 0 10px;
    color: var(--bm-white);
    font-size: 27px;
    font-weight: 600;
    line-height: 1;
}

.home-equipment-content h3 {
    margin-top: 24px;
    font-size: 31px;
}

.home-equipment-card p {
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 13px;
    line-height: 1.65;
}

.home-equipment-card strong {
    margin-top: auto;
    color: var(--bm-orange);
    font-family: var(--text-logo);
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.home-equipment-card strong span {
    display: inline-block;
    transition: transform 180ms ease;
}

.home-equipment-card:hover strong span {
    transform: translateX(4px);
}

.home-equipment-used {
    background: linear-gradient(180deg, rgba(115, 185, 66, 0.12), rgba(18, 19, 19, 1));
}

/* Factory */
.home-factory {
    padding: 104px 0 110px;
    background: var(--bm-paper);
    color: var(--bm-ink);
}

.home-factory-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 72px;
    align-items: center;
}

.home-factory-image {
    position: relative;
    min-height: 500px;
    margin: 0;
    overflow: hidden;
    border-radius: 6px;
    background: #151616;
}

.home-factory-image::after {
    position: absolute;
    inset: 42% 0 0;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.92));
    content: "";
}

.home-factory-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    display: block;
    object-fit: cover;
}

.home-factory-image figcaption {
    position: absolute;
    z-index: 1;
    right: 24px;
    bottom: 22px;
    left: 24px;
    display: grid;
    gap: 4px;
}

.home-factory-image strong {
    color: var(--bm-white);
    font-family: var(--text-logo);
    font-size: 27px;
    line-height: 1;
    text-transform: uppercase;
}

.home-factory-image span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.5;
}

.home-factory-copy .home-section-label {
    color: var(--bm-orange-2);
}

.home-factory-copy h2 {
    max-width: 590px;
    color: var(--bm-ink);
}

.home-factory-copy > p {
    max-width: 610px;
    margin: 18px 0 30px;
    color: #555957;
}

.home-factory-copy ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0 0 31px;
    padding: 0;
    list-style: none;
}

.home-factory-copy li {
    min-height: 92px;
    display: grid;
    grid-template-columns: 31px 1fr;
    gap: 13px;
    align-items: start;
    padding: 18px 18px 18px 0;
    border-top: 1px solid #ced0cd;
}

.home-factory-copy li:nth-child(even) {
    padding-left: 20px;
    border-left: 1px solid #ced0cd;
}

.home-factory-copy li img {
    width: 29px;
    height: 29px;
    object-fit: contain;
}

.home-factory-copy li span {
    color: #5d5f5f;
    font-size: 12px;
    line-height: 1.5;
}

.home-factory-copy li strong {
    display: block;
    margin-bottom: 5px;
    color: var(--bm-ink);
    font-family: var(--text-logo);
    font-size: 19px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
}

/* Sustainability */
.home-sustainability {
    position: relative;
    padding: 104px 0 110px;
    background:
        linear-gradient(110deg, rgba(8, 9, 9, 0.98), rgba(16, 27, 16, 0.94)),
        url("../assets/imagens-fundo/fundo-pagina-index.webp") center / cover no-repeat;
}

.home-sustainability .home-section-label {
    color: var(--bm-green);
}

.home-process-flow {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 0 0 62px;
    padding: 0;
    list-style: none;
}

.home-process-flow li {
    position: relative;
    min-height: 220px;
    padding: 38px 30px 30px 0;
    border-top: 1px solid rgba(115, 185, 66, 0.52);
}

.home-process-flow li::before {
    position: absolute;
    top: -7px;
    left: 0;
    width: 13px;
    height: 13px;
    border: 3px solid #091008;
    border-radius: 50%;
    background: var(--bm-green-2);
    box-shadow: 0 0 0 1px var(--bm-green-2);
    content: "";
}

.home-process-flow li > span {
    display: block;
    margin-bottom: 34px;
    color: var(--bm-green-2);
    font-family: var(--text-logo);
    font-size: 22px;
    line-height: 1;
}

.home-process-flow h3 {
    margin: 0 0 9px;
    color: var(--bm-white);
    font-size: 25px;
    font-weight: 600;
    line-height: 1;
}

.home-process-flow p {
    max-width: 240px;
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    line-height: 1.65;
}

.home-impact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.home-impact-grid article {
    min-height: 150px;
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 17px;
    align-items: center;
    padding: 28px 30px 28px 0;
}

.home-impact-grid article + article {
    padding-left: 30px;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.home-impact-grid img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.home-impact-grid h3 {
    margin: 0 0 5px;
    color: var(--bm-white);
    font-size: 23px;
    font-weight: 600;
    line-height: 1;
}

.home-impact-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 12px;
    line-height: 1.5;
}

/* Insights */
.home-insights {
    padding: 104px 0 110px;
    background: var(--bm-paper);
    color: var(--bm-ink);
}

.home-insights .home-section-label {
    color: var(--bm-orange-2);
}

.home-insights .home-section-heading h2,
.home-insight-card h3 {
    color: var(--bm-ink);
}

.home-insights .home-section-heading > p {
    color: #5d5f5f;
}

.home-insights-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.home-insight-card {
    overflow: hidden;
    border: 1px solid rgba(16, 17, 17, 0.14);
    border-radius: 6px;
    background: var(--bm-white);
    transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.home-insight-card:hover {
    border-color: rgba(232, 88, 0, 0.55);
    box-shadow: 0 15px 34px rgba(16, 17, 17, 0.09);
    transform: translateY(-4px);
}

.home-insight-card figure {
    position: relative;
    height: 225px;
    display: grid;
    place-items: center;
    margin: 0;
    overflow: hidden;
    background:
        radial-gradient(circle at center, rgba(255, 98, 0, 0.17), transparent 53%),
        #111212;
}

.home-insight-card figure span {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 7px 10px 5px;
    border-radius: 3px;
    background: rgba(255, 98, 0, 0.12);
    color: var(--bm-orange);
    font-family: var(--text-logo);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.home-insight-card figure img {
    width: 74%;
    height: 82%;
    object-fit: contain;
    transition: transform 220ms ease;
}

.home-insight-card:hover figure img {
    transform: scale(1.035);
}

.home-insight-card > div {
    padding: 25px 26px 28px;
}

.home-insight-card small {
    display: block;
    margin-bottom: 10px;
    color: var(--bm-orange-2);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.home-insight-card h3 {
    margin: 0 0 18px;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.04;
}

.home-insight-card strong {
    color: var(--bm-orange-2);
    font-family: var(--text-logo);
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.home-insight-card strong span {
    display: inline-block;
    transition: transform 180ms ease;
}

.home-insight-card:hover strong span {
    transform: translateX(4px);
}

/* Final CTA */
.home-final-cta {
    background: var(--bm-orange-2);
    color: var(--bm-white);
}

.home-final-cta-inner {
    min-height: 330px;
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.5fr);
    gap: 80px;
    align-items: center;
    padding: 64px 0;
}

.home-final-cta .home-section-label {
    color: #171818;
}

.home-final-cta h2 {
    max-width: 720px;
    font-size: 52px;
}

.home-final-cta h2 strong {
    color: #171818;
}

.home-final-cta p {
    max-width: 720px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.9);
}

.home-final-actions {
    display: grid;
}

@media (max-width: 1120px) {
    .home-container {
        width: min(92%, 1040px);
    }

    .home-hero h1 {
        font-size: 64px;
    }

    .home-equipment-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-equipment-featured {
        min-height: 500px;
        grid-column: span 2;
        grid-row: auto;
    }

    .home-factory-grid {
        gap: 48px;
    }

    .home-factory-image,
    .home-factory-image img {
        min-height: 430px;
    }
}

@media (max-width: 860px) {
    .home-hero,
    .home-hero-inner {
        min-height: 620px;
    }

    .home-hero {
        background-color: #070808;
        background-image:
            linear-gradient(90deg, rgba(4, 5, 5, 0.97) 0%, rgba(4, 5, 5, 0.88) 58%, rgba(4, 5, 5, 0.52) 100%),
            url("../assets/imagens-fundo/brutusmaq-index-background.webp");
        background-position: center, 68% center;
        background-repeat: no-repeat;
        background-size: cover, auto 100%;
    }

    .home-hero h1 {
        font-size: 56px;
    }

    .home-hero-proof {
        width: 100%;
    }

    .home-hero-proof img {
        width: 30px;
        height: 30px;
    }

    .home-hero-proof span {
        font-size: 14px;
    }

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

    .home-stats-grid article:nth-child(3) {
        border-left: 0;
    }

    .home-stats-grid article:nth-child(n + 3) {
        border-top: 1px solid rgba(15, 16, 16, 0.15);
    }

    .home-equipment-section,
    .home-factory,
    .home-sustainability,
    .home-insights {
        padding: 78px 0 84px;
    }

    .home-section-heading,
    .home-sustainability-heading,
    .home-factory-grid,
    .home-final-cta-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .home-section-heading h2,
    .home-sustainability-heading h2,
    .home-factory-copy h2,
    .home-final-cta h2 {
        font-size: 40px;
    }

    .home-process-flow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px 28px;
    }

    .home-process-flow li {
        min-height: 0;
        padding-top: 28px;
    }

    .home-impact-grid,
    .home-insights-grid {
        grid-template-columns: 1fr;
    }

    .home-impact-grid article,
    .home-impact-grid article + article {
        min-height: 120px;
        padding: 24px 0;
        border-left: 0;
    }

    .home-impact-grid article + article {
        border-top: 1px solid rgba(255, 255, 255, 0.18);
    }

    .home-final-cta-inner {
        min-height: 0;
        padding: 58px 0;
    }

    .home-final-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .home-container {
        width: calc(100% - 32px);
    }

    .home-hero,
    .home-hero-inner {
        min-height: 0;
    }

    .home-hero {
        background-color: #070808;
        background-image:
            linear-gradient(90deg, rgba(4, 5, 5, 0.97) 0%, rgba(4, 5, 5, 0.92) 62%, rgba(4, 5, 5, 0.68) 100%),
            url("../assets/imagens-fundo/brutusmaq-index-background.webp");
        background-position: center, 70% center;
        background-repeat: no-repeat;
        background-size: cover, auto 100%;
    }

    .home-hero-inner {
        display: block;
        padding: 20px 0 24px;
    }

    .home-hero-copy {
        width: 100%;
        min-height: 475px;
        padding: 46px 0 42px;
    }

    .home-eyebrow,
    .home-section-label {
        font-size: 15px;
    }

    .home-eyebrow::before,
    .home-section-label::before {
        width: 24px;
    }

    .home-hero h1 {
        max-width: 390px;
        margin: 14px 0 18px;
        font-size: 43px;
        line-height: 0.9;
    }

    .home-hero-copy > p,
    .home-section-heading > p,
    .home-sustainability-heading > p,
    .home-factory-copy > p,
    .home-final-cta p {
        font-size: 13px;
        line-height: 1.7;
    }

    .home-actions,
    .home-final-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .home-btn {
        width: 100%;
        min-height: 48px;
        padding: 11px 16px;
        font-size: 16px;
    }

    .home-hero-proof {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 12px;
        padding-top: 20px;
    }

    .home-hero-proof li {
        padding-right: 0;
    }

    .home-hero-proof span {
        font-size: 13px;
    }

    .home-stats-grid article {
        min-height: 130px;
        padding: 22px 16px;
    }

    .home-stats-grid strong {
        font-size: 27px;
    }

    .home-stats-grid span {
        font-size: 11px;
        line-height: 1.45;
    }

    .home-equipment-section,
    .home-factory,
    .home-sustainability,
    .home-insights {
        padding: 58px 0 64px;
    }

    .home-section-heading,
    .home-sustainability-heading {
        margin-bottom: 30px;
    }

    .home-section-heading h2,
    .home-sustainability-heading h2,
    .home-factory-copy h2,
    .home-final-cta h2 {
        margin-top: 14px;
        font-size: 34px;
        line-height: 0.98;
    }

    .home-equipment-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .home-equipment-featured {
        min-height: 0;
        grid-column: auto;
    }

    .home-equipment-used {
        grid-column: auto;
    }

    .home-equipment-visual {
        min-height: 245px;
    }

    .home-equipment-visual img {
        width: 88%;
        max-height: 230px;
    }

    .home-equipment-card,
    .home-equipment-content {
        padding: 22px;
    }

    .home-equipment-card {
        min-height: 220px;
    }

    .home-factory-image,
    .home-factory-image img {
        min-height: 300px;
    }

    .home-factory-image figcaption {
        right: 18px;
        bottom: 18px;
        left: 18px;
    }

    .home-factory-copy ul {
        grid-template-columns: 1fr;
    }

    .home-factory-copy li,
    .home-factory-copy li:nth-child(even) {
        min-height: 0;
        padding: 16px 0;
        border-left: 0;
    }

    .home-process-flow {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 42px;
    }

    .home-process-flow li {
        min-height: 0;
        padding: 21px 0 25px 26px;
        border-top: 0;
        border-left: 1px solid rgba(115, 185, 66, 0.55);
    }

    .home-process-flow li::before {
        top: 25px;
        left: -7px;
    }

    .home-process-flow li > span {
        margin-bottom: 11px;
    }

    .home-process-flow p {
        max-width: 100%;
    }

    .home-impact-grid article,
    .home-impact-grid article + article {
        grid-template-columns: 38px 1fr;
        min-height: 104px;
        padding: 20px 0;
    }

    .home-insight-card figure {
        height: 210px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-page *,
    .home-page *::before,
    .home-page *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
