:root {
    --bg: #28252c;
    --white: #ffffff;
    --line: #d5d5d5;
    --muted: #acacac;
    --blue: #2d7ee8;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--white);
    color: var(--bg);
    font-family: "Manrope", Arial, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

.page {
    position: relative;
    width: 100%;
    max-width: 1440px;
    min-height: 5630px;
    margin: 0 auto;
    overflow: hidden;
    background: var(--white);
}

.site-header {
    position: absolute;
    z-index: 20;
    top: 0;
    left: 0;
    width: 100%;
    height: 118px;
    background: var(--bg);
}

.site-header__inner {
    position: relative;
    width: 1320px;
    height: 54px;
    margin: 32px auto 0;
}

.logo {
    display: flex;
    align-items: center;
    width: 223px;
    height: 47px;
}

.logo img {
    display: block;
    width: 47px;
    height: 47px;
}

.logo span {
    display: block;
    margin-left: 20px;
    color: var(--white);
    font-family: "Exo 2", Arial, sans-serif;
    font-size: 26.7px;
    font-stretch: condensed;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
}

.site-header__logo {
    position: absolute;
    top: 3px;
    left: 0;
}

.site-nav {
    position: absolute;
    top: 11px;
    left: 343px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.site-nav a,
.site-footer__bottom,
.site-footer address,
.figma-button {
    font-family: "Space Grotesk", Arial, sans-serif;
    text-transform: uppercase;
}

.site-nav a {
    color: var(--white);
    font-size: 14px;
    line-height: 32px;
    letter-spacing: 1px;
}

.figma-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 215px;
    height: 54px;
    padding: 10px 22px;
    border: 0;
    border-radius: 2px;
    background: transparent;
    color: var(--white);
    cursor: pointer;
}

.figma-button::before,
.figma-button::after {
    position: absolute;
    pointer-events: none;
    content: "";
}

.figma-button::before {
    inset: -72px -128px;
    z-index: 0;
    background: url("/assets/img/figma/button-glow.svg") center / 82% 76% no-repeat;
    opacity: 0.78;
}

.figma-button::after {
    inset: -13px -12px;
    z-index: 1;
    background:
        linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)) left 0 top 14px / 100% 1px no-repeat,
        linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)) left 0 bottom 14px / 100% 1px no-repeat,
        linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)) left 12px top 0 / 1px 100% no-repeat,
        linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)) right 12px top 0 / 1px 100% no-repeat;
}

.figma-button span {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
}

.site-header__button {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 215px;
}

.site-header__button span {
    font-weight: 500;
    font-size: 14px;
}

.menu-toggle {
    display: none;
}

.hero {
    position: relative;
    height: 916px;
    background: var(--bg);
}

.hero__graphic {
    position: absolute;
    top: 215px;
    left: 606px;
    width: 855px;
    height: 570px;
    object-fit: contain;
    mix-blend-mode: lighten;
}

.hero__copy {
    position: absolute;
    top: 282px;
    left: 60px;
    width: 750px;
    color: var(--white);
}

h1,
h2,
h3,
p {
    margin: 0;
}

h1,
h2,
h3 {
    font-family: "Space Grotesk", Arial, sans-serif;
    font-weight: 500;
    text-transform: uppercase;
}

.hero h1 {
    width: 750px;
    font-size: 36px;
    line-height: 1.3;
}

.hero p {
    width: 562px;
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.5;
}

.hero__button {
    margin-top: 33px;
    min-width: 342px;
}

.industries {
    position: relative;
    height: 995px;
}

.industries h2 {
    position: absolute;
    top: 140px;
    left: 60px;
    width: 786px;
    font-size: 36px;
    line-height: 1.3;
}

.industry-grid {
    position: absolute;
    top: 287px;
    left: 60px;
    display: grid;
    width: 1320px;
    height: 708px;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    border-left: 1px solid transparent;
}

.industry-grid::before,
.industry-grid::after {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--line);
    content: "";
}

.industry-grid::before {
    left: 424px;
}

.industry-grid::after {
    left: 895px;
}

.industry-card {
    position: relative;
    padding: 0 40px 0 8px;
}

.industry-card:nth-child(n + 4) {
    border-top: 1px solid var(--line);
}

.industry-card__art {
    position: relative;
    width: 180px;
    height: 160px;
    margin-top: 18px;
}

.industry-card__icon,
.industry-card__shadow {
    position: absolute;
    display: block;
}

.industry-card__icon {
    top: 0;
    left: 4px;
    max-width: 132px;
    max-height: 112px;
}

.industry-card__shadow {
    top: 58px;
    left: 15px;
    width: 136px;
    height: 76px;
}

.industry-card h3 {
    width: 355px;
    margin-top: 4px;
    font-size: 18px;
    line-height: 1.3;
}

.industry-card p {
    width: 390px;
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.3;
}

.services {
    position: relative;
    height: 857px;
}

.services h2 {
    position: absolute;
    top: 140px;
    left: 50%;
    width: 531px;
    transform: translateX(-50%);
    font-size: 36px;
    line-height: 1.3;
    text-align: center;
}

.service-row {
    position: absolute;
    top: 287px;
    left: 60px;
    display: grid;
    width: 1320px;
    grid-template-columns: repeat(4, 312px);
    gap: 24px;
}

.service-card {
    position: relative;
    width: 312px;
    height: 430px;
    border: 1px solid var(--line);
    border-radius: 2px;
    background: var(--white);
}

.service-card__art {
    position: relative;
    height: 246px;
}

.service-card__icon {
    position: absolute;
    top: 50px;
    left: 50%;
    display: block;
    max-width: 220px;
    max-height: 170px;
    transform: translateX(-50%);
}

.service-card__shadow {
    position: absolute;
    left: 50%;
    bottom: 16px;
    display: block;
    width: 190px;
    transform: translateX(-50%);
}

.service-card h3 {
    margin: 27px 22px 0;
    font-size: 18px;
    line-height: 1.3;
}

.service-card p {
    margin: 26px 22px 0;
    font-size: 14px;
    line-height: 1.3;
}

.equipment {
    position: relative;
    height: 823px;
    background: var(--bg);
    color: var(--white);
}

.equipment h2 {
    position: absolute;
    top: 100px;
    right: 60px;
    width: 1085px;
    font-size: 36px;
    line-height: 1.3;
    text-align: right;
}

.equipment-grid {
    position: absolute;
    top: 247px;
    left: 60px;
    display: grid;
    width: 1320px;
    height: 476px;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    border: 1px solid var(--blue);
    border-right: 0;
    border-left: 0;
}

.equipment-grid::before,
.equipment-grid::after {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--blue);
    content: "";
}

.equipment-grid::before {
    left: 437px;
}

.equipment-grid::after {
    left: 884px;
}

.equipment-card {
    position: relative;
    min-height: 238px;
    padding: 30px 26px;
}

.equipment-card:nth-child(n + 4) {
    border-top: 1px solid var(--blue);
}

.equipment-card h3 {
    width: 294px;
    font-size: 18px;
    line-height: 1.3;
}

.equipment-card__shadow {
    position: absolute;
    right: 80px;
    bottom: 28px;
    width: 120px;
}

.equipment-card__icon {
    position: absolute;
    right: 60px;
    bottom: 54px;
    display: block;
    max-width: 156px;
    max-height: 136px;
}

.trust {
    position: relative;
    height: 791px;
}

.trust h2 {
    position: absolute;
    top: 140px;
    left: 60px;
    width: 531px;
    font-size: 36px;
    line-height: 1.3;
}

.trust__wave {
    position: absolute;
    top: 294px;
    left: 0;
    width: 1440px;
    height: 357px;
    object-fit: fill;
}

.trust-points {
    position: absolute;
    inset: 0;
}

.trust-point {
    position: absolute;
    width: 304px;
}

.trust-point span {
    position: absolute;
    top: 152px;
    left: -35px;
    width: 52px;
    height: 48px;
    border-radius: 50%;
    background: rgba(45, 126, 232, 0.16);
    filter: blur(1px);
}

.trust-point h3 {
    font-size: 18px;
    line-height: 1.3;
}

.trust-point p {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.3;
}

.trust-point--1 {
    top: 287px;
    left: 81px;
}

.trust-point--2 {
    top: 381px;
    left: 467px;
}

.trust-point--3 {
    top: 558px;
    left: 821px;
}

.trust-point--4 {
    top: 474px;
    left: 1188px;
    width: 213px;
}

.contact {
    position: relative;
    height: 926px;
    background: var(--bg);
    color: var(--white);
}

.contact__wave {
    position: absolute;
    top: 294px;
    left: -76px;
    width: 1733px;
    height: 459px;
}

.contact__content {
    position: absolute;
    top: 122px;
    left: 50%;
    width: 749px;
    transform: translateX(-50%);
    text-align: center;
}

.contact h2 {
    font-size: 36px;
    line-height: 1.3;
}

.contact__content > p {
    width: 567px;
    margin: 32px auto 91px;
    font-size: 16px;
    line-height: 1.3;
}

.lead-form {
    position: relative;
    width: 647px;
    margin: 0 auto;
}

.lead-form label {
    display: block;
    height: 58px;
    text-align: left;
}

.lead-form span {
    display: block;
    color: var(--white);
    font-size: 14px;
    line-height: 1.3;
    letter-spacing: 1px;
}

.lead-form input,
.lead-form textarea {
    display: block;
    width: 100%;
    height: 30px;
    margin: 0;
    padding: 0;
    resize: none;
    border: 0;
    border-radius: 0;
    outline: none;
    background: transparent;
    color: var(--white);
}

.lead-form__button {
    width: 647px;
    margin-top: 24px;
}

.lead-form__button::before {
    inset: -88px -170px;
    background-size: 100% 96%;
    opacity: 1;
}

.lead-form__button span {
    transform: translateY(2px);
}

.lead-form small {
    display: block;
    margin-top: 28px;
    color: var(--muted);
    font-weight: 300;
    font-size: 12px;
    line-height: 1.3;
    letter-spacing: 1px;
    text-align: center;
}

.form-notice {
    display: block;
    margin-top: 12px;
    font-weight: 400;
    font-size: 14px;
}

.form-notice--error {
    color: #ffb8b8;
}

.site-footer {
    position: relative;
    height: 322px;
    color: var(--muted);
    background: var(--white);
}

.site-footer__logo {
    position: absolute;
    top: 60px;
    left: 60px;
}

.site-footer__logo img {
    width: 47px;
}

.site-footer__logo span {
    color: var(--muted);
}

.site-footer address {
    position: absolute;
    top: 60px;
    left: 920px;
    display: block;
    width: 461px;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 32px;
}

.site-footer address a {
    display: inline-block;
    margin-top: 19px;
    margin-right: 29px;
    color: var(--muted);
}

.site-footer__bottom {
    position: absolute;
    right: 59px;
    bottom: 30px;
    left: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    color: var(--muted);
    font-family: "Manrope", Arial, sans-serif;
    font-size: 12px;
    line-height: 1.4;
    text-transform: none;
}

.site-footer__bottom a:nth-child(2) {
    justify-self: center;
}

.site-footer__bottom a:nth-child(3) {
    justify-self: end;
}

.text-page {
    width: min(760px, calc(100% - 48px));
    margin: 80px auto;
    color: var(--bg);
}

.text-page a {
    display: inline-block;
    margin-bottom: 32px;
    color: var(--blue);
    font-family: "Space Grotesk", Arial, sans-serif;
    text-transform: uppercase;
}

.text-page h1 {
    margin-bottom: 24px;
    font-size: 36px;
    line-height: 1.3;
}

.text-page p {
    font-size: 16px;
    line-height: 1.6;
}

.catalog-layout {
    min-height: 100vh;
    background: var(--white);
}

.catalog-layout .site-header {
    position: relative;
}

.catalog-page,
.product-page {
    width: 1320px;
    margin: 0 auto;
    padding: 80px 0 120px;
}

.catalog-hero {
    margin-bottom: 56px;
}

.catalog-hero a,
.back-link,
.product-card__link {
    color: var(--blue);
    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: 14px;
    line-height: 32px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.catalog-hero h1,
.product-hero h1 {
    width: min(900px, 100%);
    margin-top: 16px;
    font-size: 36px;
    line-height: 1.3;
}

.catalog-hero p {
    width: min(680px, 100%);
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.5;
}

.catalog-content {
    display: grid;
    grid-template-columns: 312px 1fr;
    gap: 24px;
    align-items: start;
}

.catalog-sidebar {
    display: grid;
    border: 1px solid var(--line);
    border-radius: 2px;
    background: var(--white);
}

.catalog-sidebar a {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
    border-bottom: 1px solid var(--line);
    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.3;
    text-transform: uppercase;
}

.catalog-sidebar a:last-child {
    border-bottom: 0;
}

.catalog-sidebar a.is-active {
    background: var(--bg);
    color: var(--white);
}

.catalog-search {
    display: grid;
    grid-template-columns: 1fr 144px;
    gap: 12px;
    margin-bottom: 24px;
}

.catalog-search input {
    height: 54px;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: 2px;
}

.catalog-search button,
.empty-catalog a {
    height: 54px;
    border: 0;
    border-radius: 2px;
    background: var(--bg);
    color: var(--white);
    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    min-height: 420px;
    border: 1px solid var(--line);
    border-radius: 2px;
    background: var(--white);
}

.product-card__media {
    display: grid;
    height: 210px;
    place-items: center;
    border-bottom: 1px solid var(--line);
    background: #f7f8fa;
}

.product-card__media img {
    display: block;
    max-width: 86%;
    max-height: 170px;
    object-fit: contain;
}

.product-card__media span {
    width: 80%;
    color: var(--muted);
    font-family: "Space Grotesk", Arial, sans-serif;
    text-align: center;
    text-transform: uppercase;
}

.product-card__body {
    padding: 22px;
}

.product-card__body > p:first-child,
.product-hero__copy > p:first-child {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-card h3 {
    margin-top: 12px;
    font-size: 18px;
    line-height: 1.3;
}

.product-card__body > p:not(:first-child) {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.4;
}

.product-card__sku,
.product-sku {
    color: var(--bg);
    font-family: "Space Grotesk", Arial, sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-card__link {
    display: inline-block;
    margin-top: 22px;
}

.empty-catalog {
    padding: 48px;
    border: 1px solid var(--line);
    border-radius: 2px;
    background: #f7f8fa;
}

.empty-catalog h2 {
    font-size: 24px;
    line-height: 1.3;
}

.empty-catalog p {
    width: min(620px, 100%);
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.5;
}

.empty-catalog a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 28px;
    padding: 0 22px;
}

.product-hero {
    display: grid;
    grid-template-columns: 536px 1fr;
    gap: 56px;
    align-items: start;
    margin-top: 24px;
}

.product-hero__media {
    display: grid;
    min-height: 440px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 2px;
    background: #f7f8fa;
}

.product-hero__media img {
    max-width: 88%;
    max-height: 380px;
}

.product-hero__media span {
    width: 80%;
    color: var(--muted);
    font-family: "Space Grotesk", Arial, sans-serif;
    text-align: center;
    text-transform: uppercase;
}

.product-hero__copy > p:not(:first-child) {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.5;
}

.product-hero__button {
    margin-top: 32px;
}

.datasheet-link {
    display: inline-flex;
    align-items: center;
    height: 54px;
    margin-top: 32px;
    margin-left: 18px;
    color: var(--blue);
    font-family: "Space Grotesk", Arial, sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-specs {
    margin-top: 64px;
}

.product-specs h2 {
    margin-bottom: 24px;
    font-size: 24px;
}

.product-specs table {
    width: 100%;
    border-collapse: collapse;
}

.product-specs th,
.product-specs td {
    padding: 16px;
    border: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.product-specs th {
    width: 34%;
    font-family: "Space Grotesk", Arial, sans-serif;
    font-weight: 500;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    body {
        min-width: 320px;
    }

    .page {
        max-width: 390px;
        min-height: 7874px;
    }

    .site-header {
        height: 128px;
        background: transparent;
    }

    .site-header__inner {
        width: 342px;
        height: 68px;
        margin-top: 60px;
    }

    .site-header__logo {
        top: 0;
        left: 0;
    }

    .site-header__logo img {
        width: 43px;
        height: 44px;
    }

    .site-header__logo span {
        margin-left: 18px;
        font-size: 24.4px;
    }

    .site-nav {
        position: fixed;
        z-index: 50;
        top: 0;
        right: 0;
        left: 0;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 128px 24px 32px;
        background: rgba(40, 37, 44, 0.98);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        width: 100%;
        padding: 14px 0;
        border-bottom: 1px solid rgba(45, 126, 232, 0.45);
        font-size: 16px;
    }

    .site-header__button {
        display: none;
    }

    .menu-toggle {
        position: absolute;
        z-index: 60;
        top: 2px;
        right: 0;
        display: grid;
        width: 32px;
        height: 28px;
        padding: 0;
        border: 0;
        background: transparent;
        gap: 8px;
    }

    .menu-toggle span {
        display: block;
        width: 32px;
        height: 4px;
        background: var(--white);
    }

    .hero {
        height: 691px;
    }

    .hero__graphic {
        top: 215px;
        left: -37px;
        width: 704px;
        height: 469px;
        opacity: 0.14;
    }

    .hero__copy {
        top: 191px;
        left: 24px;
        width: 342px;
    }

    .hero h1 {
        width: 342px;
        font-size: 24px;
    }

    .hero p {
        width: 337px;
        margin-top: 28px;
        font-size: 16px;
        line-height: 1.32;
    }

    .hero__button {
        width: 342px;
        min-width: 342px;
        margin-top: 45px;
    }

    .industries {
        height: 2499px;
    }

    .industries h2 {
        top: 73px;
        left: 24px;
        width: 341px;
        font-size: 24px;
    }

    .industry-grid {
        top: 167px;
        left: 4px;
        display: block;
        width: 382px;
        height: 2252px;
        border-right: 1px solid var(--line);
        border-left: 1px solid var(--line);
    }

    .industry-grid::before,
    .industry-grid::after {
        display: none;
    }

    .industry-card {
        height: 375px;
        padding: 49px 44px 0;
        border-top: 1px solid var(--line);
    }

    .industry-card:nth-child(1) {
        border-top: 0;
    }

    .industry-card:nth-child(n + 4) {
        border-top: 1px solid var(--line);
    }

    .industry-card__art {
        width: 170px;
        height: 156px;
        margin-top: 0;
    }

    .industry-card__icon {
        left: 0;
        max-width: 132px;
        max-height: 110px;
    }

    .industry-card__shadow {
        top: 44px;
        left: 18px;
        width: 136px;
        height: 76px;
    }

    .industry-card h3 {
        width: 303px;
        margin-top: 0;
        font-size: 18px;
    }

    .industry-card p {
        width: 303px;
        margin-top: 13px;
        font-size: 14px;
    }

    .services {
        height: 611px;
    }

    .services h2 {
        top: 0;
        left: 24px;
        width: 263px;
        transform: none;
        font-size: 24px;
        text-align: left;
    }

    .service-row {
        top: 79px;
        left: 0;
        display: flex;
        width: 390px;
        height: 478px;
        gap: 24px;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 24px;
        scroll-snap-type: x mandatory;
    }

    .service-card {
        flex: 0 0 312px;
        scroll-snap-align: start;
    }

    .equipment {
        height: 1838px;
    }

    .equipment h2 {
        top: 80px;
        right: auto;
        left: 24px;
        width: 342px;
        font-size: 24px;
        text-align: left;
    }

    .equipment-grid {
        top: 247px;
        left: 4px;
        display: block;
        width: 382px;
        height: 1509px;
        border: 0;
    }

    .equipment-grid::before,
    .equipment-grid::after {
        display: none;
    }

    .equipment-card {
        height: 250px;
        min-height: 250px;
        padding: 24px 44px;
        border-top: 1px solid var(--blue);
    }

    .equipment-card:nth-child(n + 4) {
        border-top: 1px solid var(--blue);
    }

    .equipment-card h3 {
        width: 294px;
        font-size: 18px;
    }

    .equipment-card__shadow {
        right: 84px;
        bottom: 30px;
        width: 120px;
    }

    .equipment-card__icon {
        right: 58px;
        bottom: 57px;
        max-width: 156px;
        max-height: 136px;
    }

    .trust {
        height: 744px;
    }

    .trust h2 {
        top: 80px;
        left: 24px;
        width: 342px;
        font-size: 24px;
    }

    .trust__wave {
        display: none;
    }

    .trust-point {
        left: 68px;
        width: 318px;
    }

    .trust-point span {
        top: 24px;
        left: -29px;
        width: 36px;
        height: 36px;
        background: rgba(45, 126, 232, 0.18);
    }

    .trust-point h3 {
        font-size: 18px;
    }

    .trust-point p {
        margin-top: 12px;
        font-size: 14px;
    }

    .trust-point--1 {
        top: 158px;
    }

    .trust-point--2 {
        top: 297px;
    }

    .trust-point--3 {
        top: 436px;
        width: 239px;
    }

    .trust-point--4 {
        top: 575px;
        width: 266px;
    }

    .contact {
        height: 949px;
    }

    .contact__wave {
        top: 336px;
        left: -502px;
        width: 1485px;
        height: 394px;
    }

    .contact__content {
        top: 80px;
        width: 342px;
    }

    .contact h2 {
        width: 342px;
        font-size: 24px;
    }

    .contact__content > p {
        width: 342px;
        margin: 44px auto 90px;
        font-size: 14px;
    }

    .lead-form {
        width: 342px;
    }

    .lead-form label {
        height: 58px;
    }

    .lead-form__button {
        width: 342px;
        min-width: 342px;
        margin-top: 24px;
    }

    .lead-form small {
        width: 267px;
        margin: 28px auto 0;
        color: #6f707a;
        font-size: 9px;
    }

    .site-footer {
        height: 542px;
    }

    .site-footer__logo {
        top: 80px;
        left: 24px;
    }

    .site-footer__logo img {
        width: 43px;
        height: 44px;
    }

    .site-footer__logo span {
        margin-left: 18px;
        font-size: 24.4px;
    }

    .site-footer address {
        top: 162px;
        left: 24px;
        width: 342px;
        font-size: 14px;
        line-height: 32px;
    }

    .site-footer address a {
        display: block;
        margin-top: 20px;
        margin-right: 0;
    }

    .site-footer__bottom {
        right: auto;
        bottom: 24px;
        left: 24px;
        display: flex;
        width: 342px;
        flex-direction: column-reverse;
        gap: 16px;
        font-size: 12px;
    }

    .site-footer__bottom a:nth-child(2),
    .site-footer__bottom a:nth-child(3) {
        justify-self: auto;
    }

    .catalog-page,
    .product-page {
        width: 342px;
        padding: 48px 0 80px;
    }

    .catalog-hero h1,
    .product-hero h1 {
        font-size: 24px;
    }

    .catalog-content,
    .product-hero {
        display: block;
    }

    .catalog-sidebar {
        margin-bottom: 24px;
    }

    .catalog-search {
        grid-template-columns: 1fr;
    }

    .catalog-search button {
        width: 100%;
    }

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

    .empty-catalog {
        padding: 28px;
    }

    .empty-catalog h2 {
        font-size: 22px;
    }

    .product-hero__media {
        min-height: 300px;
        margin-bottom: 32px;
    }

    .product-specs th,
    .product-specs td {
        display: block;
        width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 1439px) {
    .page {
        transform-origin: top center;
    }
}
