.home-page {
    padding-top: var(--header-height);
    background: var(--color-bg-page);
}

.home-container {
    max-width: var(--container-max-wide);
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--container-padding-x-wide);
    box-sizing: border-box;
}

/* ── Typography ── */
.home-section-heading {
    margin: 0;
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-tight);
    color: var(--color-primary);
}

.home-section-heading--light {
    color: var(--color-white);
}

.home-section-body {
    margin: 0;
    font-size: var(--font-size-md);
    line-height: var(--line-height-relaxed);
    color: var(--color-text-muted);
}

.home-section-body--light {
    color: var(--color-white);
}

/* ── Buttons ── */
.home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    min-height: var(--btn-min-height);
    padding: 0 var(--btn-padding-x);
    box-sizing: border-box;
    text-decoration: none;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-tight);
    text-transform: uppercase;
    border: 0;
    cursor: pointer;
    white-space: nowrap;
}

.home-btn img {
    width: 13.5px;
    height: 13.73px;
    flex-shrink: 0;
}

.home-btn--solid-red {
    background: var(--color-accent);
    color: var(--color-white);
}

.home-btn--outline-white {
    background: var(--color-white);
    color: var(--color-accent);
    border: 1px solid var(--color-accent);
    min-width: var(--btn-min-width-outline);
}

.home-btn--outline-blue {
    background: var(--color-white);
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    min-height: var(--btn-min-height-lg);
}

.home-btn--outline-blue span {
    background: var(--gradient-primary-165);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.home-btn,
.home-hero-cta,
.home-product-link {
    transition:
        background-color var(--transition-base),
        color var(--transition-base),
        border-color var(--transition-base),
        transform var(--transition-bounce),
        box-shadow var(--transition-base);
}

.home-btn img,
.home-hero-cta img {
    transition: transform var(--transition-bounce);
}

.home-btn--solid-red:hover,
.home-hero-cta:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(227, 30, 36, 0.28);
}

.home-btn--solid-red:active,
.home-hero-cta:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(227, 30, 36, 0.2);
}

.home-btn--outline-white:hover {
    background: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(227, 30, 36, 0.22);
}

.home-btn--outline-white:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(227, 30, 36, 0.16);
}

.home-btn--outline-blue:hover {
    background: var(--color-bg-blue-wash);
    border-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(30, 70, 131, 0.18);
}

.home-btn--outline-blue:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(30, 70, 131, 0.12);
}

.home-btn:hover img,
.home-hero-cta:hover img {
    transform: translate(3px, -3px);
}

.home-btn:focus-visible,
.home-hero-cta:focus-visible,
.home-product-link:focus-visible,
.home-carousel-btn:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 3px;
}

.home-product-link img {
    transition: transform var(--transition-bounce);
}

.home-product-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46, 49, 146, 0.28);
}

.home-product-link:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(46, 49, 146, 0.2);
}

.home-product-link:hover img {
    transform: scale(1.06);
}

@media (prefers-reduced-motion: reduce) {
    .home-btn,
    .home-hero-cta,
    .home-product-link,
    .home-carousel-btn,
    .home-btn img,
    .home-hero-cta img,
    .home-product-link img {
        transition: none;
    }

    .home-btn--solid-red:hover,
    .home-hero-cta:hover,
    .home-btn--outline-white:hover,
    .home-btn--outline-blue:hover,
    .home-product-link:hover,
    .home-carousel-btn:not(:disabled):hover,
    .home-btn:hover img,
    .home-hero-cta:hover img,
    .home-product-link:hover img {
        transform: none;
        box-shadow: none;
    }
}


/* ── Hero ── */
.home-hero {
    position: relative;
    height: 680px;
    min-height: 680px;
    background: var(--color-bg-blue-wash);
    overflow: hidden;
    box-sizing: border-box;
}

.home-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.home-hero-pattern-wrap {
    position: absolute;
    top: -15.38%;
    right: -1.15%;
    bottom: -68.9%;
    left: -2.14%;
}

.home-hero-pattern-masked {
    position: absolute;
    top: -4.71%;
    right: -11.05%;
    bottom: 26.87%;
    left: 67.36%;
    overflow: hidden;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

.home-hero-pattern-grid {
    position: absolute;
    inset: -0.29% -0.18%;
    width: calc(100% + 0.36%);
    height: calc(100% + 0.58%);
    max-width: none;
    display: block;
}

.home-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 850px) minmax(0, 785px);
    column-gap: 20px;
    align-items: center;
    justify-content: start;
    height: 680px;
    width: 100%;
    box-sizing: border-box;
}

.home-hero-copy {
    position: relative;
    align-self: center;
    width: 100%;
    max-width: 850px;
    height: 423px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    box-sizing: border-box;
}

.home-hero-text {
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.home-hero-heading {
    margin: 0;
    max-width: 852px;
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-tight);
    color: var(--color-indigo);
}

.home-hero-body {
    margin: 0;
    max-width: 562px;
    font-size: var(--font-size-md);
    line-height: var(--line-height-relaxed);
    color: var(--color-text-gray-dark);
}

.home-hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 239.5px;
    max-width: 100%;
    height: 59px;
    padding: 0 18px 0 30px;
    background: var(--color-accent);
    color: var(--color-white);
    text-decoration: none;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-tight);
    text-transform: uppercase;
    box-sizing: border-box;
    flex-shrink: 0;
}

.home-hero-cta img {
    width: 13.5px;
    height: 13.73px;
    flex-shrink: 0;
}

.home-hero-media {
    position: relative;
    align-self: center;
    width: 100%;
    max-width: 785px;
    height: 573px;
    overflow: hidden;
    pointer-events: none;
    justify-self: end;
}

.home-hero-image {
    position: absolute;
    left: 0;
    top: -36.97%;
    width: 100%;
    height: 136.97%;
    max-width: none;
    display: block;
}

.home-hero-image--mobile {
    display: none;
}

/* ── Quick stats ── */
.home-quick-stats {
    background: var(--color-white);
    padding: 40px 0;
    box-sizing: border-box;
}

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

.home-quick-stat {
    padding-left: 30px;
    border-left: 2px solid var(--color-bg-sky);
    box-sizing: border-box;
}

.home-quick-stat-value {
    margin: 0;
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    line-height: 1.5;
    color: var(--color-indigo);
}

.home-quick-stat-label {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--color-text-muted);
}

.home-stat-second {
    white-space: nowrap;
}

.home-stat-break::before {
    content: '\00a0';
}

.home-stat-break {
    display: inline;
}

@media screen and (min-width: 1441px) {
    .home-stat-second {
        white-space: normal;
    }

    .home-stat-break {
        display: block;
    }

    .home-stat-break::before {
        content: none;
    }
}

/* ── Industries ── */
.home-industries {
    padding: 80px 0;
    background: linear-gradient(142.63deg, var(--color-primary) 3.55%, var(--color-primary-dark) 95.75%);
    box-sizing: border-box;
}

.home-industries-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 43px;
    margin-bottom: 43px;
}

.home-industries-intro {
    flex: 1 1 auto;
    max-width: 1157px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.home-industries-intro .home-section-body {
    line-height: var(--line-height-normal);
}

.home-industries-keep {
    white-space: nowrap;
}

.home-industries-break::before {
    content: ' ';
}

.home-industries-break {
    display: inline;
}

@media screen and (min-width: 1601px) {
    .home-industries-break {
        display: block;
    }

    .home-industries-break::before {
        content: none;
    }
}

.home-industries-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.home-industries-actions--mobile {
    display: none;
}

.home-industry-card {
    flex-shrink: 0;
    min-height: 350px;
    background: var(--color-white);
    padding: 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
}

.home-industry-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
}

.home-industry-copy {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.home-industry-title {
    margin: 0;
    font-size: var(--font-size-md);
    font-weight: 500;
    line-height: var(--line-height-tight);
    background: linear-gradient(172.83deg, var(--color-primary) 3.55%, var(--color-primary-dark) 95.75%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.home-industry-body {
    margin: 0;
    font-size: var(--font-size-sm);
    line-height: 1.5;
    color: var(--color-text-muted);
}

/* ── Carousel ── */
.home-carousel {
    position: relative;
}

.home-carousel-viewport {
    overflow: hidden;
    container-type: inline-size;
}

.home-carousel-track {
    display: flex;
    gap: 16px;
    transition: transform var(--transition-slow) ease;
    will-change: transform;
}

.home-industries .home-industry-card {
    flex: 0 0 calc((100cqi - 48px) / 4);
    width: calc((100cqi - 48px) / 4);
    max-width: calc((100cqi - 48px) / 4);
}

@media screen and (max-width: 1440px) {
    .home-industries .home-industry-card {
        flex: 0 0 calc((100cqi - 32px) / 3);
        width: calc((100cqi - 32px) / 3);
        max-width: calc((100cqi - 32px) / 3);
    }
}

.home-carousel-slide {
    flex-shrink: 0;
}

.home-carousel-nav {
    display: flex;
    justify-content: flex-end;
    gap: var(--space-2);
    margin-top: 40px;
}

.home-carousel-btn {
    width: 50px;
    height: 50px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
    overflow: hidden;
    line-height: 0;
    transition:
        transform var(--transition-bounce),
        opacity var(--transition-base);
}

.home-carousel-btn:not(:disabled):hover {
    transform: scale(1.08);
}

.home-carousel-btn:not(:disabled):active {
    transform: scale(0.96);
}

.home-carousel-btn img {
    width: 50px;
    height: 50px;
    display: block;
    object-fit: contain;
}

.home-carousel-btn:disabled {
    opacity: 0.4;
    cursor: default;
}

.home-carousel--mobile-only {
    display: none;
}

/* ── Products ── */
.home-products {
    padding: 80px 0;
    background: var(--color-white);
    box-sizing: border-box;
}

.home-products-header {
    margin-bottom: 34px;
}

.home-products-intro {
    display: flex;
    flex-direction: column;
    gap: 22px;
    max-width: 997px;
}

.home-carousel--products .home-product-card {
    flex: 0 0 418px;
    width: 418px;
}

@media screen and (min-width: 1441px) {
    .home-carousel--products .home-carousel-viewport {
        overflow: visible;
    }

    .home-carousel--products .home-carousel-track {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 16px;
        transform: none !important;
        transition: none;
        align-items: stretch;
    }

    .home-carousel--products .home-product-card {
        flex: unset;
        width: auto;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .home-carousel--products .home-product-info {
        flex: 1 1 auto;
        display: flex;
        flex-direction: column;
    }

    .home-carousel--products .home-product-info-inner {
        flex: 1 1 auto;
        height: 100%;
    }
}

@media screen and (min-width: 1441px) and (max-width: 1600px) {
    .home-product-visual {
        height: 300px;
        flex-shrink: 0;
    }

    .home-product-info,
    .home-product-info-inner {
        height: 200px;
        min-height: 200px;
    }

    .home-product-info-inner {
        padding: 12px 16px 16px;
        box-sizing: border-box;
    }

    .home-product-body {
        padding-right: 58px;
        font-size: 15px;
        line-height: 1.5;
    }

    .home-product-link {
        right: 0;
        bottom: 0;
    }
}

@media screen and (max-width: 1440px) {
    .home-hero,
    .home-hero-inner {
        height: 600px;
        min-height: 600px;
    }

    .home-hero-media {
        height: 493px;
    }

    .home-carousel--products .home-carousel-viewport {
        cursor: grab;
        touch-action: pan-y;
    }

    .home-carousel--products .home-carousel-viewport:active {
        cursor: grabbing;
    }

    .home-product-visual {
        height: clamp(280px, 32vw, 404px);
        flex-shrink: 0;
    }

    .home-carousel--products .home-carousel-track {
        align-items: stretch;
    }

    .home-carousel--products .home-product-card {
        display: flex;
        flex-direction: column;
        height: auto;
        align-self: stretch;
        flex: 0 0 calc((100cqi - 32px) / 3);
        width: calc((100cqi - 32px) / 3);
        max-width: calc((100cqi - 32px) / 3);
    }

    .home-product-info {
        flex: 1 1 auto;
        height: 210px;
        min-height: 210px;
        overflow: visible;
        display: flex;
        flex-direction: column;
    }

    .home-product-info-inner {
        flex: 1 1 auto;
        height: 100%;
        min-height: 210px;
        padding: 12px 16px 16px;
        box-sizing: border-box;
    }

    .home-product-body {
        padding-right: 58px;
        font-size: clamp(14px, 1.35vw, 16px);
        line-height: 1.55;
    }

    .home-product-link {
        right: 0;
        bottom: 0;
    }

    .home-product-title {
        font-size: clamp(17px, 1.6vw, 20px);
    }

    .home-product-title-icon {
        width: auto;
        max-width: 50px;
        height: 45px;
    }
}

.home-product-card {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    min-width: 0;
}

.home-product-visual {
    position: relative;
    height: 404px;
    background: var(--color-bg-gray-pale);
    overflow: hidden;
}

.home-product-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.home-product-image {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 85%;
    max-height: 88%;
    width: auto;
    height: auto;
    display: block;
}

.home-product-info {
    position: relative;
    min-height: 181px;
    height: auto;
}

.home-product-info-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    pointer-events: none;
}

.home-product-info-inner {
    position: relative;
    z-index: 1;
    min-height: 181px;
    height: 100%;
    padding: 12px 20px 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    overflow: visible;
}

.home-product-title-row {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 29px;
}

.home-product-title-icon {
    width: auto;
    max-width: 50px;
    height: 50px;
    object-fit: contain;
    flex-shrink: 0;
}

.home-product-title {
    margin: 0;
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-tight);
    color: var(--color-primary);
}

.home-product-body {
    margin: 16px 0 0;
    flex: 1;
    padding-right: 58px;
    font-size: var(--font-size-sm);
    line-height: var(--line-height-relaxed);
    color: var(--color-text-muted);
}

.home-product-link {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50px;
    height: 50px;
    display: block;
    flex-shrink: 0;
    line-height: 0;
}

.home-product-link img {
    width: 50px;
    height: 50px;
    display: block;
    object-fit: contain;
}

/* ── Certifications ── */
.home-certifications {
    padding: 48px 0 80px;
    background: var(--color-bg-page);
    box-sizing: border-box;
}

.home-certifications-header {
    display: flex;
    flex-direction: column;
    gap: 22px;
    max-width: 997px;
    margin-bottom: 42px;
}

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

.home-cert-card {
    position: relative;
    min-height: 358px;
    background: var(--color-white);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.home-cert-image {
    width: auto;
    height: auto;
    max-width: 316px;
    max-height: 210px;
    object-fit: contain;
    display: block;
    margin-bottom: 24px;
}

.home-cert-label {
    margin: 0;
    max-width: 378px;
    text-align: center;
    font-size: var(--font-size-md);
    line-height: var(--line-height-relaxed);
    color: var(--color-primary-dark);
}

.home-cert-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 42px;
}

.home-cert-footer .home-btn {
    min-width: 290px;
}

/* ── Stats ── */
.home-stats {
    position: relative;
    padding: 70px 0 80px;
    background: var(--color-bg-blue-frost);
    overflow: hidden;
    box-sizing: border-box;
}

.home-stats-pattern {
    position: absolute;
    left: -273px;
    top: -230px;
    width: 683px;
    height: auto;
    opacity: 0.08;
    pointer-events: none;
}

.home-stats-header {
    max-width: 1127px;
    margin: 0 auto 80px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.home-stats-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

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

.home-stat-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.home-stat-value {
    margin: 0;
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-tight);
    color: var(--color-primary);
}

.home-stat-label {
    margin: 0;
    padding-top: 20px;
    border-top: 1px solid var(--color-border-dark);
    font-size: 18px;
    font-weight: 500;
    line-height: var(--line-height-tight);
    color: var(--color-text-muted);
}

/* ── Why ── */
.home-why {
    padding: 75px 0 80px;
    background: var(--color-white);
    box-sizing: border-box;
}

.home-why-inner {
    display: grid;
    grid-template-columns: 560px minmax(0, 1fr);
    column-gap: 164px;
    align-items: center;
}

.home-why-copy {
    grid-column: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 22px;
}

.home-why-media {
    grid-column: 2;
    min-height: 530px;
    overflow: hidden;
}

.home-why-image {
    width: 100%;
    height: 530px;
    display: block;
}

.home-why-cta--desktop {
    margin-top: 2px;
}

.home-why-cta--mobile {
    display: none;
}

/* ── Responsive ── */
@media screen and (max-width: 1439px) {
    .home-container {
        padding: 0 60px;
    }

    .home-section-heading {
        font-size: clamp(32px, 3.2vw, 40px);
    }

    .home-hero-heading {
        font-size: clamp(32px, 3.5vw, 40px);
    }

    .home-hero-body,
    .home-section-body {
        font-size: clamp(16px, 1.8vw, 18px);
        line-height: 1.6;
    }

    .home-hero-inner {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        column-gap: clamp(16px, 2vw, 20px);
    }

    .home-hero-copy {
        max-width: none;
        height: auto;
        min-height: 360px;
    }

    .home-hero-text {
        gap: clamp(40px, 4vw, 70px);
    }

    .home-hero-media {
        max-width: none;
        height: clamp(360px, 38vw, 573px);
    }

    .home-quick-stat-value,
    .home-stat-value {
        font-size: clamp(32px, 3.2vw, 40px);
    }

    .home-why-inner {
        column-gap: var(--space-9);
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
        align-items: stretch;
    }

    .home-why-media {
        position: relative;
        min-height: 420px;
        height: auto;
        overflow: hidden;
        align-self: stretch;
    }

    .home-why-image {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center;
    }

    .home-certifications {
        padding: 40px 0 60px;
    }

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

    .home-cert-card {
        min-height: 260px;
        padding: 16px;
    }

    .home-cert-image {
        max-width: 200px;
        max-height: 130px;
        margin-bottom: 16px;
    }

    .home-cert-label {
        max-width: none;
        font-size: clamp(16px, 1.6vw, 18px);
        line-height: 1.5;
    }

    .home-cert-footer {
        margin-top: 32px;
    }

    .home-cert-footer .home-btn {
        min-width: 240px;
    }
}

@media screen and (max-width: 1280px) {
    .home-container {
        padding: 0 40px;
    }

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

    .home-hero-copy {
        min-height: 320px;
    }

    .home-hero-text {
        gap: var(--space-8);
    }

    .home-hero-media {
        height: 393px;
    }

    .home-quick-stats {
        padding: 28px 0;
    }

    .home-industries {
        padding: 48px 0;
    }

    .home-industries-header {
        gap: 24px;
        margin-bottom: 28px;
        align-items: flex-end;
    }

    .home-industries-intro {
        gap: 14px;
    }

    .home-industries-actions {
        gap: 14px;
    }

    .home-industry-card {
        min-height: 300px;
        padding: 24px;
        gap: 18px;
    }

    .home-carousel-nav {
        margin-top: 28px;
    }

    .home-products {
        padding: 48px 0;
    }

    .home-products-header {
        margin-bottom: 24px;
    }

    .home-products-intro {
        gap: 14px;
    }

    .home-product-visual {
        height: 280px;
    }

    .home-product-body {
        margin-top: 12px;
    }

    .home-certifications {
        padding: 48px 0;
    }

    .home-certifications-header {
        gap: 14px;
        margin-bottom: 28px;
    }

    .home-stats {
        padding: 48px 0;
    }

    .home-stats-header {
        gap: 20px;
        margin-bottom: 48px;
    }

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

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

    .home-why {
        padding: 48px 0;
    }

    .home-why-copy {
        gap: 16px;
    }
}

@media screen and (max-width: 1080px) {
    .home-quick-stat {
        padding-left: 16px;
    }

    .home-quick-stat-value {
        font-size: 36px;
        line-height: 1.3;
    }

    .home-quick-stat-label {
        font-size: 14px;
        line-height: 1.35;
    }

    .home-product-title-icon {
        height: 40px;
        max-width: 44px;
    }

    .home-cert-image {
        max-height: 100px;
    }

    .home-cert-card {
        min-height: 240px;
    }
}

@media screen and (min-width: 990px) and (max-width: 1200px) {
    .home-stats-row {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 32px;
    }

    .home-stat-value {
        font-size: clamp(28px, 3vw, 40px);
    }

    .home-stat-label {
        font-size: 15px;
    }
}

@media screen and (max-width: 1200px) {
    .home-why {
        padding: 48px 0;
    }

    .home-why-inner {
        column-gap: 32px;
        align-items: stretch;
    }

    .home-why-copy {
        justify-content: flex-start;
        gap: 16px;
    }

    .home-why-media {
        position: relative;
        min-height: 0;
        align-self: stretch;
        overflow: hidden;
    }

    .home-why-image {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center;
    }

    .home-why .home-section-body {
        font-size: 18px;
        line-height: 1.6;
    }
}

@media screen and (max-width: 1199px) and (min-width: 992px) {
    .home-hero-text {
        gap: 40px;
    }

    .home-hero-media {
        height: clamp(280px, 34vw, 480px);
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .home-carousel--products .home-product-card {
        flex: 0 0 calc((100cqi - 16px) / 2);
        width: calc((100cqi - 16px) / 2);
        max-width: calc((100cqi - 16px) / 2);
    }

    .home-hero {
        height: 480px;
        min-height: 480px;
    }

    .home-hero-inner {
        display: grid;
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
        column-gap: 20px;
        align-items: center;
        height: 480px;
        padding-top: 0;
        padding-bottom: 0;
        gap: 0;
    }

    .home-hero-copy {
        position: relative;
        width: 100%;
        max-width: none;
        height: auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 28px;
    }

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

    .home-hero-heading {
        font-size: 34px;
        max-width: none;
    }

    .home-hero-body {
        font-size: 15px;
        line-height: 1.6;
        max-width: 100%;
    }

    .home-hero-cta {
        width: 220px;
        max-width: 100%;
        height: 52px;
        justify-content: space-between;
        gap: 0;
    }

    .home-hero-media {
        position: relative;
        order: 0;
        align-self: center;
        width: 100%;
        max-width: none;
        height: 360px;
        overflow: hidden;
        top: auto;
        left: auto;
        right: auto;
    }

    .home-hero-image {
        position: absolute;
        left: 0;
        top: -28%;
        width: 100%;
        height: 140%;
        max-width: none;
        display: block;
    }

    .home-hero-image--desktop {
        display: block;
    }

    .home-hero-image--mobile {
        display: none;
    }

    .home-hero-pattern-wrap {
        top: -15.38%;
        right: -1.15%;
        bottom: -68.9%;
        left: -2.14%;
    }

    .home-hero-pattern-masked {
        left: 55%;
        top: -4.71%;
        right: -11.05%;
        bottom: 26.87%;
    }
}

@media screen and (max-width: 991px) {
    .home-page {
        padding-top: 60px;
    }

    .home-container {
        padding: 0 20px;
    }

    .home-industries {
        padding: 40px 0;
    }

    .home-industries-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 24px;
    }

    .home-industries-actions--desktop {
        display: none;
    }

    .home-industries-actions--mobile {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: stretch;
        width: 100%;
        gap: 12px;
        margin-top: 24px;
    }

    .home-industries-actions--mobile .home-btn {
        flex: 1 1 0;
        width: auto;
        min-width: 0;
        padding: 0 12px;
        white-space: nowrap;
    }

    .home-industries-actions--mobile .home-btn--outline-white {
        min-width: 0;
    }

    .home-industry-card {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
        min-height: auto;
        padding: 20px;
    }

    .home-industries .home-industry-card {
        flex: 0 0 100cqi;
        width: 100cqi;
        max-width: 100cqi;
    }

    .home-industry-icon {
        width: 40px;
        height: 40px;
    }

    .home-industry-title {
        font-size: var(--font-size-sm);
    }

    .home-industry-body {
        font-size: var(--font-size-xs);
    }

    .home-carousel-nav {
        justify-content: center;
        margin-top: 24px;
    }

    .home-products {
        padding: 40px 0;
    }

    .home-product-visual {
        height: 260px;
    }

    .home-product-info-inner {
        min-height: 160px;
        padding: 12px 14px 14px;
    }

    .home-product-body {
        padding-right: 48px;
        font-size: var(--font-size-xs);
        line-height: 1.55;
    }

    .home-product-title {
        font-size: var(--font-size-sm);
    }

    .home-product-link {
        width: 44px;
        height: 44px;
    }

    .home-product-link img {
        width: 44px;
        height: 44px;
    }

    .home-product-image {
        object-fit: contain;
        max-height: 75%;
    }

    .home-certifications {
        padding: 40px 0;
    }

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

    .home-cert-footer {
        justify-content: stretch;
    }

    .home-cert-footer .home-btn {
        width: 100%;
        min-width: 0;
    }

    .home-stat-label {
        font-size: clamp(11px, 2vw, 18px);
    }

    .home-why {
        padding: 40px 0;
    }

    .home-why-inner {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .home-why-copy {
        padding-top: 0;
    }

    .home-why-media {
        order: 2;
        position: static;
        min-height: auto;
        width: 100%;
        overflow: visible;
    }

    .home-why-image {
        position: static;
        inset: auto;
        width: 100%;
        height: 240px;
        object-fit: cover;
        object-position: center;
    }

    .home-why-cta--desktop {
        display: none;
    }

    .home-why-cta--mobile {
        display: inline-flex;
        width: 100%;
        justify-content: center;
    }
}

@media screen and (max-width: 767px) {
    .home-hero {
        height: auto;
        min-height: 0;
    }

    .home-hero-inner {
        display: flex;
        flex-direction: column;
        height: auto;
        grid-template-columns: none;
        padding-top: 40px;
        padding-bottom: 0;
        gap: 24px;
    }

    .home-hero-copy {
        position: static;
        width: 100%;
        max-width: none;
        height: auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 24px;
    }

    .home-hero-text {
        gap: 16px;
    }

    .home-hero-heading {
        font-size: 32px;
    }

    .home-hero-body {
        font-size: var(--font-size-xs);
        line-height: 1.5;
        max-width: none;
    }

    .home-hero-cta {
        width: 100%;
        max-width: none;
        justify-content: center;
        gap: var(--space-2);
    }

    .home-hero-media {
        position: static;
        order: -1;
        width: 100%;
        max-width: none;
        height: 280px;
        top: auto;
        left: auto;
        right: auto;
    }

    .home-hero-image {
        position: static;
        width: 100%;
        height: 100%;
        top: auto;
    }

    .home-hero-image--desktop {
        display: none;
    }

    .home-hero-image--mobile {
        display: block;
        object-fit: contain;
        object-position: center;
    }

    .home-hero-pattern-wrap {
        top: -10%;
        bottom: -20%;
        left: -5%;
        right: -5%;
    }

    .home-hero-pattern-masked {
        left: 40%;
    }
}

@media screen and (min-width: 501px) and (max-width: 990px) {
    .home-industries .home-industry-card {
        flex: 0 0 calc((100cqi - 16px) / 2);
        width: calc((100cqi - 16px) / 2);
        max-width: calc((100cqi - 16px) / 2);
    }

    .home-industry-card {
        flex: 0 0 calc(50% - 8px);
        width: calc(50% - 8px);
    }

    .home-carousel--products .home-product-card {
        flex: 0 0 calc((100cqi - 16px) / 2);
        width: calc((100cqi - 16px) / 2);
        max-width: calc((100cqi - 16px) / 2);
    }

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

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

    .home-quick-stat-value {
        font-size: clamp(28px, 4vw, 40px);
        line-height: 1.3;
    }

    .home-quick-stat-label {
        font-size: clamp(14px, 1.8vw, 16px);
    }

    .home-stats-header {
        text-align: center;
        gap: clamp(24px, 4vw, 40px);
        margin-bottom: clamp(40px, 6vw, 80px);
    }

    .home-stats-grid {
        gap: clamp(40px, 6vw, 80px);
    }

    .home-stats-row {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: clamp(12px, 2.5vw, 60px);
    }

    .home-stat-value {
        font-size: clamp(22px, 3.8vw, 48px);
    }

    .home-stat-label {
        font-size: clamp(11px, 1.6vw, 18px);
        padding-top: clamp(10px, 1.8vw, 20px);
    }
}

@media screen and (min-width: 601px) and (max-width: 990px) {
    .home-hero-body,
    .home-section-body,
    .home-why .home-section-body,
    .home-industry-body,
    .home-product-body,
    .home-quick-stat-label,
    .home-stat-label,
    .home-cert-label {
        font-size: var(--font-size-sm);
    }
}

@media screen and (max-width: 600px) {
    .home-page {
        padding-top: 48px;
    }

    .home-container {
        padding: 0 16px;
    }

    .home-section-heading {
        font-size: 28px;
        line-height: 1.25;
    }

    .home-section-body {
        font-size: var(--font-size-sm);
        line-height: 1.4;
    }

    .home-btn {
        min-height: 52px;
        padding: 0 20px;
        font-size: var(--font-size-xs);
    }

    .home-hero-inner {
        padding-top: 32px;
        gap: 20px;
    }

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

    .home-hero-text {
        gap: 12px;
    }

    .home-hero-heading {
        font-size: 28px;
        line-height: 1.25;
    }

    .home-hero-body {
        font-size: var(--font-size-sm);
        line-height: 1.4;
    }

    .home-hero-media {
        height: 240px;
    }

    .home-quick-stats {
        padding: 20px 0;
    }

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

    .home-quick-stat {
        padding-left: 16px;
    }

    .home-quick-stat-value {
        font-size: 28px;
        line-height: var(--line-height-tight);
    }

    .home-quick-stat-label {
        font-size: 14px;
        line-height: 1.45;
        overflow-wrap: anywhere;
        word-break: normal;
    }

    .home-quick-stat .home-stat-second {
        white-space: normal;
    }

    .home-quick-stat .home-stat-break {
        display: block;
    }

    .home-quick-stat .home-stat-break::before {
        content: none;
    }

    .home-industries {
        padding: 32px 0;
    }

    .home-industries-header {
        gap: 16px;
        margin-bottom: 20px;
    }

    .home-industries-actions--mobile {
        gap: var(--space-2);
        margin-top: 20px;
    }

    .home-industry-card {
        padding: 16px;
        gap: 12px;
    }

    .home-industry-title {
        font-size: 15px;
    }

    .home-industry-body {
        font-size: var(--font-size-sm);
        line-height: 1.45;
    }

    .home-carousel-nav {
        margin-top: 20px;
    }

    .home-products {
        padding: 32px 0;
    }

    .home-products-header {
        margin-bottom: 20px;
    }

    .home-products-intro {
        gap: 14px;
    }

    .home-carousel--products .home-product-card {
        flex: 0 0 calc((100cqi - 16px) / 2);
        width: calc((100cqi - 16px) / 2);
        max-width: calc((100cqi - 16px) / 2);
    }

    .home-product-visual {
        height: 240px;
    }

    .home-product-info-inner {
        min-height: 150px;
        padding: 10px 12px 12px;
    }

    .home-product-body {
        padding-right: 44px;
        font-size: var(--font-size-sm);
        line-height: 1.45;
    }

    .home-product-title {
        font-size: 15px;
    }

    .home-product-link {
        width: 40px;
        height: 40px;
    }

    .home-product-link img {
        width: 40px;
        height: 40px;
    }

    .home-certifications {
        padding: 32px 0;
    }

    .home-certifications-header {
        gap: 14px;
        margin-bottom: 24px;
    }

    .home-cert-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: var(--space-2);
    }

    .home-cert-card {
        min-height: 180px;
        padding: 12px 8px;
    }

    .home-cert-image {
        max-width: 100px;
        max-height: 68px;
        margin-bottom: 8px;
    }

    .home-cert-label {
        font-size: var(--font-size-sm);
        line-height: 1.45;
    }

    .home-cert-footer {
        margin-top: 24px;
    }

    .home-stats {
        padding: 32px 0;
    }

    .home-stats-header {
        margin-bottom: 24px;
        gap: 12px;
        text-align: left;
    }

    .home-stats-grid {
        gap: 24px;
    }

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

    .home-stat-item {
        gap: var(--space-2);
    }

    .home-stat-value {
        font-size: 24px;
        line-height: var(--line-height-tight);
    }

    .home-stat-label {
        font-size: var(--font-size-sm);
        line-height: 1.35;
        padding-top: 8px;
    }

    .home-why {
        padding: 32px 0;
    }

    .home-why-inner {
        gap: 16px;
    }

    .home-why-copy {
        gap: 14px;
    }

    .home-why-image {
        height: 220px;
    }
}

@media screen and (max-width: 500px) {
    .home-industries-actions--mobile {
        flex-direction: column;
        align-items: stretch;
    }

    .home-industries-actions--mobile .home-btn {
        width: 100%;
        flex: 1 1 auto;
    }

    .home-carousel--products .home-product-card {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
    }
}
