:root {
    --bg: #28252c;
    --white: #ffffff;
    --line: #d5d5d5;
    --muted: #acacac;
    --blue: #2d7ee8;
    --ui-blue: #2859a0;
    --ui-blue-active: #5c89c9;
}

* {
    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;
}

.mobile-cart,
.mobile-menu {
    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: 440px;
}

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

.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: 820px;
    display: block;
    width: 560px;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.55;
}

.site-footer address span {
    display: block;
    margin-bottom: 5px;
}

.site-footer address a {
    display: inline-block;
    margin-top: 12px;
    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;
    overflow-x: hidden;
    background: var(--white);
}

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

.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-page--index {
    padding: 80px 0 203px;
}

.catalog-page--listing {
    padding: 80px 0 170px;
}

.catalog-breadcrumb {
    display: flex;
    gap: 5px;
    align-items: center;
    height: 36px;
    color: var(--bg);
    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: 12px;
    line-height: 32px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.catalog-breadcrumb a {
    color: var(--muted);
}

.catalog-breadcrumb span:last-child,
.catalog-breadcrumb a:last-child {
    max-width: 520px;
    overflow: hidden;
    color: var(--bg);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.catalog-page--index > h1 {
    margin-top: 30px;
    color: var(--bg);
    font-size: 36px;
    line-height: 1.3;
    text-transform: uppercase;
}

.catalog-page--listing > h1 {
    margin-top: 30px;
    color: var(--bg);
    font-size: 36px;
    line-height: 1.3;
    text-transform: uppercase;
}

.catalog-sections {
    display: grid;
    position: relative;
    width: 1320px;
    margin-top: 83px;
    grid-template-columns: repeat(2, 650px);
    grid-auto-rows: 358px;
    gap: 20px;
}

.catalog-section {
    position: relative;
    overflow: hidden;
    padding: 35px 39px;
    border: 1px dashed #989aa1;
    border-radius: 2px;
    background: var(--white);
    color: var(--bg);
}

.catalog-section h2 {
    position: relative;
    z-index: 1;
    width: 360px;
    font-size: 24px;
    line-height: 1.3;
    text-transform: uppercase;
}

.catalog-section__visual {
    position: absolute;
    right: 40px;
    bottom: 40px;
    display: block;
}

.catalog-section__visual::before {
    position: absolute;
    right: 16px;
    bottom: 0;
    width: 220px;
    height: 140px;
    border-radius: 50%;
    background: rgba(54, 124, 211, 0.18);
    filter: blur(17px);
    content: "";
}

.catalog-section__visual img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
}

.catalog-section--generator .catalog-section__visual {
    width: 160px;
    height: 212px;
}

.catalog-section--spectrum .catalog-section__visual {
    width: 230px;
    height: 196px;
}

.catalog-section--oscilloscope .catalog-section__visual {
    width: 256px;
    height: 190px;
}

.catalog-section--vna .catalog-section__visual {
    width: 230px;
    height: 204px;
}

.catalog-section--source .catalog-section__visual {
    right: 50px;
    width: 124px;
    height: 250px;
}

.catalog-section--power .catalog-section__visual {
    width: 200px;
    height: 214px;
}

.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;
    margin-top: 60px;
    grid-template-columns: repeat(4, 312px);
    gap: 24px;
}

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

.product-card__favorite {
    position: absolute;
    z-index: 2;
    top: 10px;
    right: 10px;
    display: grid;
    width: 42px;
    height: 42px;
    padding: 6px;
    border: 0;
    background: transparent;
    cursor: pointer;
    place-items: center;
}

.product-card__favorite img {
    width: 30px;
    height: 30px;
    transform: rotate(180deg) scaleX(-1);
}

.product-card__media {
    position: relative;
    display: block;
    width: 312px;
    height: 312px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    overflow: hidden;
}

.product-card__media img {
    position: absolute;
    top: 27.13%;
    left: 9.43%;
    display: block;
    width: 81.14%;
    height: 45.64%;
    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 {
    display: grid;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 78px;
    grid-template-columns: 1fr 77px;
    border-top: 1px solid var(--line);
}

.product-card h3 {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0 20px;
    border-right: 1px solid var(--line);
    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
}

.product-card h3 a {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow-wrap: anywhere;
}

.product-card__price {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0 8px;
    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    white-space: nowrap;
}

.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-page--detail {
    padding: 80px 0 170px;
}

.product-breadcrumb span:last-child {
    max-width: 336px;
}

.product-detail {
    display: grid;
    margin-top: 60px;
    grid-template-columns: 460px 1fr;
}

.product-detail__media {
    position: relative;
    display: block;
    width: 460px;
    height: 460px;
    border: 1px solid var(--line);
    border-radius: 2px 0 0 2px;
    overflow: hidden;
}

.product-detail__media > img {
    position: absolute;
    top: 27.13%;
    left: 9.43%;
    width: 81.14%;
    height: 45.64%;
    object-fit: contain;
}

.product-detail__favorite {
    top: 20px;
    right: 20px;
}

.product-detail__copy {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 460px;
    padding: 40px 50px;
    border: 1px solid var(--line);
    border-left: 0;
    border-radius: 0 2px 2px 0;
}

.product-detail__copy h1 {
    width: 544px;
    margin: 0;
    font-size: 24px;
    line-height: 1.3;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.product-detail__price {
    position: absolute;
    top: 40px;
    right: 50px;
    margin: 0;
    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.3;
    text-transform: uppercase;
    white-space: nowrap;
}

.product-detail__brand {
    margin-top: 14px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.3;
}

.product-detail__summary,
.product-detail__specs {
    width: min(570px, 100%);
    margin: 28px 0 0;
    padding-left: 21px;
    font-size: 14px;
    line-height: 1.3;
}

.product-detail__specs {
    margin-top: 24px;
}

.product-detail__spacer {
    display: block;
    flex: 1 0 40px;
    min-height: 40px;
}

.product-cart-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 52px;
    width: 100%;
    height: 52px;
    color: var(--bg);
    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 32px;
    text-transform: uppercase;
}

.product-cart-button::before {
    position: absolute;
    inset: -15px;
    border: solid var(--bg);
    border-width: 1px 0;
    content: "";
}

.product-cart-button::after {
    position: absolute;
    top: -15px;
    bottom: -15px;
    left: 15px;
    right: 15px;
    border: solid var(--bg);
    border-width: 0 1px;
    content: "";
}

.related-title {
    margin-top: 80px;
    font-size: 24px;
    line-height: 1.3;
    text-transform: uppercase;
}

.related-products {
    display: grid;
    margin-top: 60px;
    grid-template-columns: repeat(4, 312px);
    gap: 24px;
}

.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;
    }

    body.menu-open {
        overflow: hidden;
    }

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

    .site-header {
        height: 132px;
        background: var(--bg);
    }

    .site-header__inner {
        width: auto;
        height: 44px;
        margin: 56px 24px 0;
    }

    .site-header__logo {
        top: 4px;
        left: 0;
        width: 199px;
        height: 32px;
    }

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

    .site-header__logo span {
        margin-left: 10px;
        font-size: 26.7px;
    }

    .site-nav {
        display: none;
    }

    .site-header__button {
        display: none;
    }

    .mobile-cart {
        position: absolute;
        top: 0;
        right: 45px;
        display: block;
        width: 36px;
        height: 36px;
    }

    .mobile-cart img {
        display: block;
        width: 100%;
        height: 100%;
    }

    .menu-toggle {
        position: absolute;
        z-index: 60;
        top: 7px;
        right: 0;
        display: flex;
        width: 30px;
        height: 25px;
        padding: 0;
        border: 0;
        background: transparent;
        flex-direction: column;
        justify-content: space-between;
    }

    .menu-toggle span {
        display: block;
        width: 30px;
        height: 3px;
        border-radius: 1px;
        background: var(--white);
    }

    .mobile-menu {
        position: fixed;
        z-index: 100;
        top: 0;
        left: 50%;
        display: block;
        width: min(100vw, 390px);
        height: min(100vh, 691px);
        max-height: 691px;
        transform: translateX(-50%) translateY(-105%);
        background: var(--bg);
        color: var(--white);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.24s ease, opacity 0.24s ease;
    }

    .mobile-menu.is-open {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-menu__top {
        position: absolute;
        top: 56px;
        right: 24px;
        left: 24px;
        height: 44px;
    }

    .mobile-menu__logo {
        position: absolute;
        top: 4px;
        left: 0;
        width: 199px;
        height: 32px;
    }

    .mobile-menu__logo img {
        width: 32px;
        height: 32px;
    }

    .mobile-menu__logo span {
        margin-left: 10px;
        font-size: 26.7px;
    }

    .mobile-menu__cart {
        position: absolute;
        top: 0;
        right: 45px;
        display: block;
        width: 36px;
        height: 36px;
    }

    .mobile-menu__cart img {
        display: block;
        width: 100%;
        height: 100%;
    }

    .mobile-menu__close {
        position: absolute;
        top: 4px;
        right: 1px;
        width: 31px;
        height: 31px;
        padding: 0;
        border: 0;
        background: transparent;
    }

    .mobile-menu__close span {
        position: absolute;
        top: 14px;
        left: -4px;
        display: block;
        width: 40px;
        height: 3px;
        border-radius: 1px;
        background: var(--white);
    }

    .mobile-menu__close span:first-child {
        transform: rotate(45deg);
    }

    .mobile-menu__close span:last-child {
        transform: rotate(-45deg);
    }

    .mobile-menu__nav {
        position: absolute;
        top: 161px;
        right: 24px;
        left: 24px;
        display: grid;
        gap: 31px;
    }

    .mobile-menu__nav a,
    .mobile-menu__phone,
    .mobile-menu address {
        font-family: "Space Grotesk", Arial, sans-serif;
        font-weight: 500;
        text-transform: uppercase;
    }

    .mobile-menu__nav a {
        display: block;
        font-size: 24px;
        line-height: 1.3;
    }

    .mobile-menu__phone {
        position: absolute;
        top: 510px;
        right: 24px;
        left: 24px;
        display: block;
        font-size: 24px;
        line-height: 1.3;
    }

    .mobile-menu address {
        position: absolute;
        top: 565px;
        right: 24px;
        left: 24px;
        margin: 0;
        color: var(--muted);
        font-style: normal;
        font-size: 14px;
        line-height: 32px;
    }

    .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 {
        display: block;
        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 131px;
        font-size: 14px;
    }

    .lead-form {
        width: 342px;
    }

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

    .lead-form input,
    .lead-form textarea {
        height: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.75);
    }

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

    .lead-form small {
        width: 267px;
        margin: 48px 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-page--index {
        width: 390px;
        padding: 48px 0 154px;
    }

    .catalog-page--listing {
        width: 390px;
        padding: 48px 0 120px;
    }

    .product-page--detail {
        width: 390px;
        padding: 48px 0 168px;
    }

    .catalog-breadcrumb {
        width: 342px;
        margin-left: 24px;
        font-size: 12px;
        overflow: hidden;
        white-space: nowrap;
    }

    .catalog-breadcrumb span:last-child,
    .catalog-breadcrumb a:last-child {
        min-width: 0;
        max-width: 156px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

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

    .catalog-page--index > h1 {
        width: 342px;
        margin-top: 31px;
        margin-left: 24px;
        font-size: 24px;
        line-height: 1.3;
    }

    .catalog-page--listing > h1 {
        width: 342px;
        margin: 31px 0 0 24px;
        font-size: 24px;
        line-height: 1.3;
    }

    .catalog-sections {
        display: block;
        width: 382px;
        margin-top: 68px;
        margin-left: 4px;
        border-right: 1px dashed #989aa1;
        border-left: 1px dashed #989aa1;
    }

    .catalog-section {
        display: block;
        width: 340px;
        height: 250px;
        margin-left: 20px;
        padding: 21px 23px;
        border: 0;
        border-top: 1px dashed #989aa1;
        border-radius: 0;
    }

    .catalog-section:last-child {
        border-bottom: 1px dashed #989aa1;
    }

    .catalog-section::before {
        position: absolute;
        top: -1px;
        left: -20px;
        width: 382px;
        border-top: 1px dashed #989aa1;
        content: "";
    }

    .catalog-section:first-child::before {
        display: none;
    }

    .catalog-section h2 {
        width: 294px;
        font-size: 18px;
        line-height: 1.3;
    }

    .catalog-section__visual::before {
        display: none;
    }

    .catalog-section--generator .catalog-section__visual {
        right: 34px;
        bottom: 34px;
        width: 88px;
        height: 116px;
    }

    .catalog-section--spectrum .catalog-section__visual {
        right: 34px;
        bottom: 34px;
        width: 140px;
        height: 118px;
    }

    .catalog-section--oscilloscope .catalog-section__visual {
        right: 34px;
        bottom: 34px;
        width: 156px;
        height: 116px;
    }

    .catalog-section--vna .catalog-section__visual {
        right: 34px;
        bottom: 34px;
        width: 122px;
        height: 108px;
    }

    .catalog-section--source .catalog-section__visual {
        right: 44px;
        bottom: 34px;
        width: 68px;
        height: 136px;
    }

    .catalog-section--power .catalog-section__visual {
        right: 34px;
        bottom: 34px;
        width: 114px;
        height: 124px;
    }

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

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

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

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

    .products-grid {
        width: 342px;
        margin: 31px 0 0 24px;
        grid-template-columns: 342px;
        gap: 24px;
    }

    .products-grid--placeholder .product-card:nth-child(n + 5) {
        display: none;
    }

    .product-card {
        width: 342px;
        height: 426px;
    }

    .product-card__media {
        width: 342px;
        height: 342px;
    }

    .product-card__body {
        height: 85px;
        grid-template-columns: 1fr 85px;
    }

    .product-card h3 {
        padding: 0 20px;
        font-size: 15.346px;
    }

    .product-card__price {
        font-size: 15.346px;
    }

    .product-detail {
        display: block;
        width: 342px;
        margin: 62px 0 0 24px;
    }

    .product-detail__media {
        width: 342px;
        height: 342px;
        border-radius: 1px;
    }

    .product-detail__favorite {
        top: 10px;
        right: 10px;
    }

    .product-detail__copy {
        width: 342px;
        min-height: 444px;
        padding: 34px 20px 42px;
        border: 1px solid var(--line);
        border-top: 0;
        border-radius: 0 0 2px 2px;
    }

    .product-detail__copy h1 {
        width: 302px;
        font-size: 18px;
    }

    .product-detail__price {
        top: 34px;
        right: 17px;
        font-size: 15.346px;
    }

    .product-detail__brand {
        margin-top: 24px;
        font-size: 14px;
    }

    .product-detail__summary,
    .product-detail__specs {
        width: 100%;
        margin-top: 18px;
        padding-left: 18px;
        font-size: 13.5px;
        line-height: 1.25;
    }

    .product-detail__specs {
        margin-top: 14px;
    }

    .product-cart-button {
        flex-basis: 54px;
        height: 54px;
        font-size: 14px;
    }

    .related-title {
        margin: 79px 0 0 24px;
        font-size: 24px;
    }

    .related-products {
        display: flex;
        width: 390px;
        margin-top: 46px;
        padding: 0;
        gap: 0;
        overflow-x: auto;
        overflow-y: hidden;
    }

    .related-products::before,
    .related-products::after {
        display: block;
        flex: 0 0 24px;
        content: "";
    }

    .related-products .product-card {
        flex: 0 0 312px;
        width: 312px;
        height: 389px;
        margin-right: 24px;
    }

    .related-products .product-card__media {
        width: 312px;
        height: 312px;
    }

    .related-products .product-card__body {
        height: 78px;
        grid-template-columns: 1fr 77px;
    }

    .related-products .product-card h3,
    .related-products .product-card__price {
        font-size: 14px;
    }

    .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;
    }

    .catalog-page,
    .product-page {
        width: calc(100% - 48px);
    }

    .catalog-sections {
        width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 320px;
    }

    .catalog-section h2 {
        width: min(360px, 58%);
    }

    .catalog-content {
        grid-template-columns: 280px minmax(0, 1fr);
    }

    .products-grid,
    .related-products {
        grid-template-columns: repeat(auto-fill, 312px);
    }

    .product-detail {
        grid-template-columns: minmax(360px, 460px) minmax(0, 1fr);
    }

    .product-detail__media {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
    }

    .product-detail__copy h1 {
        width: 100%;
    }

    .product-breadcrumb span:last-child {
        max-width: 38vw;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .product-detail {
        display: block;
        width: min(460px, 100%);
        margin-right: auto;
        margin-left: auto;
    }

    .product-detail__copy {
        min-height: 0;
        border: 1px solid var(--line);
        border-top: 0;
        border-left: 1px solid var(--line);
        border-radius: 0 0 2px 2px;
    }

    .product-detail__media {
        border-radius: 2px 2px 0 0;
    }
}
