:root {
    --header-height-xl: 92px;
    --header-height-sm: 74px;
    --color-dark: #071018;
    --color-blue: #0879ff;
    --color-blue-2: #005ed8;
    --color-text: #1b2430;
    --color-line: #e3e8ef;
    --color-bg: #f4f5f7;
    --shadow-card: 0 2px 3.4px rgba(0, 0, 0, .14);
    font-size: 16px;
    line-height: 1.5;
}

BODY {
    width: 100%;
    background: var(--color-bg);
    color: var(--color-text);
    font-family: 'Inter', Arial, sans-serif;
    max-width: 2300px;
    margin-left: auto;
    margin-right: auto;
}

BODY.menu-opened {
    overflow: hidden;
}

A {
    color: inherit;
}

.header-wrap {
    position: fixed;
    z-index: 20;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height-xl);
    background: #071018;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
    transition: transform .25s ease-out, box-shadow .25s ease-out;
}

.header-wrap.hide-on-scroll {
    transform: translateY(-110%);
}

.page-scrolled .header-wrap {
    box-shadow: 0 18px 40px rgba(0, 0, 0, .24);
}

.header {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-left: 50px;
    padding-right: 50px;
}

.header-max-width,
.laser-hero-inner {
    max-width: none;
}

.logo-header {
    display: inline-flex;
    align-items: center;
    width: 168px;
    min-width: 168px;
    transform: translateX(-13px);
    text-decoration: none;
}

.logo-header IMG {
    display: block;
    width: 100%;
}

.main-menu {
    display: flex;
    align-items: center;
    gap: 38px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu A {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}

.main-menu LI:not(.menu-cta):not(.mobile-menu-head) A {
    margin-left: -14px;
    margin-right: -14px;
    padding-left: 14px;
    padding-right: 14px;
}

.main-menu A SPAN {
    position: relative;
    display: inline-flex;
    border-bottom: 0;
    transition: color .2s ease-out;
}

.main-menu A SPAN::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -18px;
    width: calc(100% + 34px);
    height: 1px;
    background: var(--color-blue);
    opacity: 0;
    transform: translateX(-50%);
    transition: opacity .2s ease-out;
}

.main-menu A:hover SPAN,
.main-menu A:focus SPAN,
.main-menu A:active SPAN {
    color: #f4f9ff;
}

.main-menu A:hover SPAN::after,
.main-menu A:focus SPAN::after,
.main-menu A:active SPAN::after,
.main-menu LI.active A SPAN::after {
    opacity: 1;
}

.main-menu .menu-cta A {
    min-height: 40px;
    padding: 0 22px;
    background: var(--color-blue);
    border: 1px solid var(--color-blue);
    border-radius: 3px;
    transition: background .2s ease-out, border-color .2s ease-out;
}

.main-menu .menu-cta A:hover,
.main-menu .menu-cta A:focus,
.main-menu .menu-cta A:active {
    background: var(--color-blue-2);
    border-color: var(--color-blue-2);
}

.main-menu .menu-cta A SPAN {
    border: 0;
    color: #fff;
}

.main-menu .menu-cta A SPAN::after {
    display: none;
}

.menu-toggle-button,
.mobile-menu-head {
    display: none;
}

.menu-toggle-button {
    align-items: center;
    gap: 12px;
    color: #fff;
    background: transparent;
    border: 0;
    font-weight: 800;
    cursor: pointer;
}

.menu-toggle-button I {
    width: 24px;
    height: 16px;
    display: inline-block;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    position: relative;
}

.menu-toggle-button I::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 100%;
    border-top: 2px solid #fff;
}

@media(min-width: 1351px) {
    .main-menu {
        gap: 53px;
    }
}

.site-content {
    margin-top: var(--header-height-xl);
}

.btn-cluster {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 42px;
    padding: 0 24px;
    border: 2px solid transparent;
    border-radius: 3px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    text-decoration: none;
    transition: background .2s ease-out, border-color .2s ease-out, color .2s ease-out;
}

.btn IMG {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.btn-play-icon {
    position: relative;
    display: inline-flex;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
}

.btn-play-icon IMG {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transition: opacity .16s ease-out;
}

.btn-play-icon .play-icon-hover {
    opacity: 0;
}

.btn-with-icon:hover .play-icon-default,
.btn-with-icon:focus .play-icon-default,
.btn-with-icon:active .play-icon-default {
    opacity: 0;
}

.btn-with-icon:hover .play-icon-hover,
.btn-with-icon:focus .play-icon-hover,
.btn-with-icon:active .play-icon-hover {
    opacity: 1;
}

.btn-primary {
    background: var(--color-blue);
    border-color: var(--color-blue);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background: #fff;
    color: var(--color-blue);
}

.btn-outline {
    background: rgba(255, 255, 255, .02);
    border-color: rgba(255, 255, 255, .6);
}

.btn-outline:hover,
.btn-outline:focus,
.btn-outline:active {
    background: #fff;
    border-color: #fff;
    color: var(--color-dark);
}

.laser-hero {
    background: var(--color-dark);
    color: #fff;
    overflow: hidden;
}

.laser-hero-inner {
    min-height: 454px;
    display: grid;
    grid-template-columns: 560px minmax(0, 1fr);
    align-items: stretch;
    position: relative;
    padding-left: 50px;
    padding-right: 50px;
}

.laser-hero-copy {
    position: relative;
    z-index: 2;
    min-width: 0;
    padding-top: 70px;
    padding-bottom: 44px;
}

.laser-hero H1 {
    margin: 0 0 30px;
    font-size: 64px;
    line-height: normal;
    letter-spacing: 0;
    font-weight: 600;
}

.laser-hero H1 SPAN {
    display: block;
    color: var(--color-blue);
}

.hero-lead {
    max-width: 520px;
    margin: 0 0 44px;
    color: rgba(255, 255, 255, .88);
    font-size: 24px;
    line-height: 45px;
    font-weight: 600;
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    gap: 28px 42px;
    margin-top: 70px;
    max-width: none;
}

.hero-point {
    display: grid;
    grid-template-columns: 56px max-content;
    align-items: center;
    gap: 16px;
}

.hero-point IMG {
    width: 56px;
    height: 56px;
    padding: 11px;
    border: 2px solid rgba(255, 255, 255, .44);
    border-radius: 50%;
    background: rgba(5, 10, 16, .22);
    object-fit: contain;
}

.hero-point-text {
    display: block;
    color: rgba(255, 255, 255, .94);
    font-size: 18px;
    line-height: normal;
    font-weight: 600;
}

.hero-point-line {
    display: block;
    white-space: nowrap;
}

.laser-hero-visual {
    position: absolute;
    top: 0;
    right: -48px;
    width: calc(100% - 360px);
    height: 100%;
    min-height: 454px;
    clip-path: polygon(18% 0, 100% 0, 82% 100%, 0 100%);
}

.laser-hero-visual::before {
    content: '';
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 16, 24, .76) 0%, rgba(7, 16, 24, .26) 22%, rgba(7, 16, 24, 0) 48%, rgba(7, 16, 24, 0) 100%);
}

.laser-hero-visual IMG {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 48% 57%;
    filter: contrast(1.14) saturate(1.18) brightness(1.03);
}

.section-space {
    padding-top: 80px;
    padding-bottom: 80px;
}

.about-section {
    background: #f6f7f9;
    padding-top: 92px;
    padding-bottom: 86px;
}

.about-grid {
    max-width: 1670px;
    display: grid;
    grid-template-columns: minmax(0, 860px) minmax(420px, 520px);
    gap: 110px;
    align-items: start;
}

H1,
H2,
H3,
P {
    letter-spacing: 0;
}

.about-text H2 {
    margin: 0 0 58px;
    font-size: 40px;
    line-height: normal;
    font-weight: 600;
}

.section-heading H2 {
    margin: 0;
    color: #050b12;
    font-size: 40px;
    line-height: normal;
    font-weight: 600;
}

.about-text,
.faq-list,
.usage-card,
.process-card {
    min-width: 0;
}

.about-text H2 SPAN,
.section-heading H2 SPAN,
.footer-partner H3 SPAN {
    color: var(--color-blue);
}

.about-text P {
    max-width: 860px;
    margin: 0 0 34px;
    color: #050b12;
    font-size: 24px;
    line-height: 45px;
    font-weight: 400;
}

.about-text B {
    font-weight: 700;
}

.about-gallery-stage {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #fff;
    touch-action: pan-y;
}

.about-gallery-stage::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #fff;
    opacity: 0;
    pointer-events: none;
    transition: opacity .08s ease-out;
}

.about-gallery.is-switching .about-gallery-stage::after {
    opacity: .78;
}

.about-gallery-main {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: auto;
    opacity: 1;
    transition: opacity .08s ease-out;
}

.about-gallery.is-switching .about-gallery-main {
    opacity: .18;
}

.about-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 18px;
}

.about-thumb {
    display: block;
    overflow: hidden;
    padding: 0;
    aspect-ratio: 1 / .82;
    background: #fff;
    border: 2px solid var(--color-line);
    cursor: pointer;
    opacity: .72;
    transition: border-color .16s ease-out, opacity .16s ease-out;
}

.about-thumb:hover,
.about-thumb:focus,
.about-thumb:active,
.about-thumb.active {
    border-color: var(--color-blue);
    opacity: 1;
}

.about-thumb:focus {
    outline: 2px solid rgba(8, 121, 255, .28);
    outline-offset: 2px;
}

.about-thumb IMG {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: auto;
}

.feature-section {
    background: #f6f7f9;
    padding-bottom: 78px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    justify-content: center;
    gap: 14px;
    max-width: 1694px;
}

.feature-card {
    justify-self: center;
    width: 100%;
    max-width: 256px;
    min-width: 0;
    min-height: 238px;
    padding: 34px 18px 30px;
    background: #fff;
    border: 1px solid rgba(227, 232, 239, .72);
    border-radius: 4px;
    box-shadow: var(--shadow-card);
    text-align: center;
}

.feature-card IMG {
    width: 86px;
    height: 86px;
    object-fit: contain;
    transform: translateX(10px);
}

.feature-card H3 {
    margin: 18px 0 8px;
    color: #050b12;
    font-size: 24px;
    line-height: normal;
    font-weight: 600;
}

.feature-card P {
    max-width: 310px;
    margin: 0 auto;
    color: #050b12;
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
}

.section-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 52px;
    max-width: 1120px;
    margin: 0 auto 58px;
    padding-left: 30px;
    padding-right: 30px;
    text-align: center;
}

.section-heading::before,
.section-heading::after {
    content: '';
    width: 100px;
    height: 3px;
    background: var(--color-blue);
}

.usage-section,
.process-section,
.faq-section {
    background: var(--color-bg);
}

.usage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1518px;
}

.usage-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid #e7ebf0;
    border-radius: 4px;
    box-shadow: var(--shadow-card);
    text-align: center;
}

.usage-card IMG {
    display: block;
    width: 100%;
    aspect-ratio: 1.72 / 1;
    object-fit: cover;
}

.usage-card DIV {
    padding: 24px 18px 28px;
}

.usage-card H3 {
    margin: 0 0 8px;
    color: #050b12;
    font-size: 24px;
    line-height: normal;
    font-weight: 600;
}

.usage-card P {
    margin: 0 auto;
    max-width: 310px;
    color: #050b12;
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 94px;
    position: relative;
    max-width: 1594px;
}

.process-card {
    min-height: 326px;
    position: relative;
    background: #fff;
    border: 1px solid rgba(227, 232, 239, .72);
    border-radius: 4px;
    box-shadow: var(--shadow-card);
    padding: 66px 28px 40px;
    text-align: center;
}

.process-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -59px;
    width: 24px;
    height: 24px;
    border-top: 4px solid #cfd5dd;
    border-right: 4px solid #cfd5dd;
    transform: translateY(-50%) rotate(45deg);
}

.process-number {
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-blue);
    border-radius: 50%;
    color: #fff;
    font-size: 28px;
    line-height: 1;
    font-weight: 700;
}

.process-card IMG {
    width: 86px;
    height: 86px;
    object-fit: contain;
}

.process-card H3 {
    margin: 26px 0 10px;
    color: #050b12;
    font-size: 24px;
    line-height: normal;
    font-weight: 600;
}

.process-card P {
    margin: 0 auto;
    max-width: 310px;
    color: #050b12;
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
}

.faq-section {
    padding-bottom: 150px;
}

.faq-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
    gap: 78px;
    align-items: start;
    max-width: 1518px;
}

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

.faq-item {
    background: #fff;
    border: 1px solid rgba(227, 232, 239, .72);
    border-radius: 4px;
    box-shadow: var(--shadow-card);
}

.faq-item .question {
    width: 100%;
    min-height: 94px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    padding: 0 48px;
    background: transparent;
    border: 0;
    color: #050b12;
    font: inherit;
    font-size: 24px;
    line-height: normal;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.faq-item .question I {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-right: 5px solid var(--color-blue);
    border-bottom: 5px solid var(--color-blue);
    transform: translateY(-4px) rotate(45deg);
    transition: transform .2s ease-out;
}

.faq-item.active .question I {
    transform: rotate(225deg);
}

.answer-holder {
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease-out;
}

.faq-item.active .answer-holder {
    max-height: 240px;
}

.answer-holder P {
    margin: 0;
    padding: 0 48px 44px;
    color: #050b12;
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
}

.faq-side {
    display: grid;
    gap: 88px;
    justify-items: center;
}

.video-trigger {
    position: relative;
    display: block;
    width: 100%;
    max-width: 460px;
    overflow: hidden;
    background: #000;
    border: 0;
    border-radius: 4px;
    box-shadow: var(--shadow-card);
    cursor: pointer;
}

.video-trigger-poster {
    display: block;
    width: 100%;
    aspect-ratio: 1.6 / 1;
    object-fit: cover;
    object-position: center;
    filter: saturate(.95);
    transition: transform .24s ease-out, filter .24s ease-out;
}

.video-trigger:hover .video-trigger-poster,
.video-trigger:focus .video-trigger-poster {
    filter: saturate(1.08) contrast(1.04);
    transform: scale(1.025);
}

.video-play-mark {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 112px;
    height: 112px;
    transform: translate(-50%, -50%);
}

.video-play-mark::before {
    content: '';
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    background: #e52620;
    opacity: 0;
    transition: opacity .18s ease-out;
}

.video-play-mark IMG {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, .22));
}

.video-trigger:hover .video-play-mark::before,
.video-trigger:focus .video-play-mark::before {
    opacity: 1;
}

.faq-logo {
    width: 420px;
    max-width: 100%;
}

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 42px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .18s ease-out, visibility .18s ease-out;
}

BODY.video-modal-open {
    overflow: hidden;
}

BODY.inquiry-modal-open {
    overflow: hidden;
}

.video-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .88);
}

.video-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(1100px, 100%);
}

.video-modal-player {
    display: block;
    width: 100%;
    max-height: calc(100vh - 120px);
    background: #000;
    border-radius: 4px;
}

.video-modal-close {
    position: absolute;
    right: -18px;
    top: -54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
}

.inquiry-modal {
    position: fixed;
    inset: 0;
    z-index: 110;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 42px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .18s ease-out, visibility .18s ease-out;
}

.inquiry-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.inquiry-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .88);
}

.inquiry-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(640px, 100%);
    max-height: calc(100vh - 84px);
    overflow: auto;
    padding: 42px 48px 46px;
    background: #fff;
    border: 1px solid rgba(227, 232, 239, .72);
    border-radius: 4px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .32);
    color: #050b12;
}

.inquiry-modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    background: transparent;
    border: 0;
    color: #050b12;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

.inquiry-modal-head {
    padding-right: 38px;
    margin-bottom: 26px;
}

.inquiry-modal-head P {
    margin: 0 0 8px;
    color: var(--color-blue);
    font-size: 18px;
    line-height: normal;
    font-weight: 700;
}

.inquiry-modal-head H2 {
    margin: 0;
    color: #050b12;
    font-size: 40px;
    line-height: normal;
    font-weight: 600;
}

.inquiry-alert {
    margin-bottom: 22px;
    padding: 14px 18px;
    border-radius: 4px;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
}

.inquiry-alert-success {
    background: rgba(8, 121, 255, .1);
    color: #055ec8;
}

.inquiry-alert-error {
    background: rgba(229, 38, 32, .09);
    color: #b51c18;
}

.inquiry-form {
    display: grid;
    gap: 18px;
}

.inquiry-field {
    display: grid;
    gap: 8px;
}

.inquiry-field SPAN {
    color: #050b12;
    font-size: 18px;
    line-height: normal;
    font-weight: 700;
}

.inquiry-field INPUT,
.inquiry-field TEXTAREA {
    width: 100%;
    border: 1px solid #d7dee8;
    border-radius: 4px;
    background: #fff;
    color: #050b12;
    font: inherit;
    font-size: 18px;
    line-height: 28px;
    transition: border-color .18s ease-out, box-shadow .18s ease-out;
}

.inquiry-field INPUT {
    min-height: 54px;
    padding: 0 16px;
}

.inquiry-field TEXTAREA {
    min-height: 150px;
    resize: vertical;
    padding: 13px 16px;
}

.inquiry-field INPUT:focus,
.inquiry-field TEXTAREA:focus {
    outline: 0;
    border-color: var(--color-blue);
    box-shadow: 0 0 0 3px rgba(8, 121, 255, .16);
}

.inquiry-field-hidden {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

.inquiry-form .btn {
    justify-self: start;
    min-width: 170px;
    margin-top: 4px;
    cursor: pointer;
}

FOOTER {
    background: var(--color-dark);
    color: #fff;
    overflow: hidden;
}

.footer-grid {
    min-height: 540px;
    max-width: 1594px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
    grid-template-areas:
        "contact map"
        "partner logo";
    gap: 48px 78px;
    align-items: center;
    padding-top: 86px;
    padding-bottom: 78px;
}

.footer-contact {
    grid-area: contact;
    align-self: start;
    padding-top: 6px;
}

.footer-contact H2 {
    margin: 0 0 42px;
    font-size: 40px;
    line-height: normal;
    font-weight: 600;
}

.footer-contact P {
    margin: 0;
}

.footer-contact P + P {
    margin-top: 18px;
}

.footer-contact A {
    color: #fff;
    font-size: 24px;
    line-height: normal;
    font-weight: 700;
    text-underline-offset: 4px;
}

.footer-phone A {
    color: var(--color-blue);
    font-size: 32px;
    text-decoration: none;
}

.footer-map {
    grid-area: map;
    justify-self: end;
    align-self: start;
    width: 100%;
    max-width: 430px;
    text-align: center;
}

.footer-map P {
    margin: 0 0 14px;
    color: #fff;
    font-size: 24px;
    line-height: normal;
    font-weight: 400;
}

.footer-map IMG {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.footer-partner {
    grid-area: partner;
    align-self: center;
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    align-items: center;
    gap: 38px;
    transform: translateY(-50px);
}

.footer-partner > IMG {
    width: 260px;
    min-width: 0;
}

.footer-partner H3 {
    margin: 0 0 8px;
    font-size: 32px;
    line-height: normal;
    font-weight: 600;
}

.footer-partner P {
    margin: 0;
    color: #fff;
    font-size: 22px;
    line-height: 30px;
    font-weight: 400;
}

.footer-logo {
    grid-area: logo;
    align-self: center;
    justify-self: center;
    transform: translateY(-50px);
}

.footer-logo IMG {
    width: 230px;
}

#back-to-top {
    position: fixed;
    right: 26px;
    bottom: 26px;
    z-index: 30;
    opacity: 0;
    pointer-events: none;
    padding: 5px 14px;
    background: var(--color-blue);
    color: #fff;
    font-size: .64rem;
    font-weight: 800;
    text-decoration: none;
    transition: opacity .2s ease-out;
}

.page-scrolled #back-to-top {
    opacity: .82;
    pointer-events: auto;
}

.subpage-hero {
    padding-top: 80px;
    padding-bottom: 80px;
    background: var(--color-dark);
    color: #fff;
}

.subpage-hero H1 {
    margin: 0;
    font-size: 2rem;
}

.subpage-content {
    padding-top: 70px;
    padding-bottom: 90px;
    background: #fff;
}

.subpage-content P {
    max-width: 820px;
    margin: 0 0 18px;
}

@media(max-width: 1500px) {
    .about-grid {
        max-width: 1340px;
        grid-template-columns: minmax(0, 1fr) minmax(360px, 440px);
        gap: 72px;
    }

    .about-thumbs {
        gap: 14px;
        margin-top: 14px;
    }
}

@media(max-width: 1700px) {
    .feature-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        max-width: 884px;
    }
}

@media(max-width: 1450px) {
    .footer-partner H3 {
        font-size: 28px;
    }

    .footer-partner P {
        font-size: 20px;
        line-height: 28px;
    }
}

@media(max-width: 1220px) {
    .main-menu {
        gap: 18px;
    }

    .main-menu A {
        font-size: 16px;
    }

    .laser-hero-inner {
        grid-template-columns: 500px minmax(0, 1fr);
    }

    .about-grid {
        grid-template-columns: minmax(0, 1fr) minmax(340px, 400px);
        gap: 58px;
    }

    .usage-grid {
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
        max-width: 818px;
    }

    .usage-card {
        width: 100%;
        max-width: 350px;
    }

    .usage-card DIV {
        padding-top: 29px;
        padding-bottom: 33px;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
        gap: 30px;
        max-width: 818px;
    }

    .process-card {
        width: 100%;
        max-width: 350px;
    }

    .process-card:not(:last-child)::after {
        display: none;
    }

    .footer-grid {
        min-height: 0;
        grid-template-columns: 1fr;
        grid-template-areas:
            "contact"
            "map"
            "partner"
            "logo";
        gap: 58px;
        max-width: 760px;
        padding-top: 74px;
        padding-bottom: 76px;
        text-align: center;
    }

    .footer-contact {
        padding-top: 0;
    }

    .footer-map {
        justify-self: center;
        align-self: center;
    }

    .footer-partner {
        justify-self: center;
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 26px;
        max-width: 620px;
        transform: none;
    }

    .footer-partner > IMG {
        width: 260px;
    }

    .footer-logo {
        align-self: center;
        transform: none;
    }
}

@media(max-width: 1100px) {
    .about-grid {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 340px);
        gap: 42px;
    }

    .about-thumbs {
        gap: 10px;
        margin-top: 10px;
    }
}

@media(max-width: 980px) {
    :root {
        --header-height-xl: var(--header-height-sm);
        font-size: 17px;
    }

    .header {
        width: 100vw;
        max-width: 100vw;
        margin-left: 0;
        margin-right: 0;
        padding-left: 28px;
        padding-right: 28px;
    }

    .max-width {
        width: 100vw;
        max-width: 100vw;
        margin-left: 0;
        margin-right: 0;
    }

    .logo-header {
        width: 146px;
        min-width: 146px;
        transform: translateX(-11px);
    }

    .header .menu-toggle-button {
        position: absolute;
        top: 50%;
        right: 28px;
        z-index: 70;
        display: inline-flex;
        transform: translateY(-50%);
    }

    .nav-holder {
        position: fixed;
        inset: 0;
        z-index: 60;
        visibility: hidden;
        pointer-events: none;
    }

    .main-menu {
        width: 100%;
        min-height: 100%;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        padding: 28px;
        background: #071018;
        opacity: 0;
        transform: translateY(-20px);
        transition: opacity .2s ease-out, transform .2s ease-out;
    }

    .menu-opened .nav-holder {
        visibility: visible;
        pointer-events: auto;
    }

    .menu-opened .main-menu {
        opacity: 1;
        transform: translateY(0);
    }

    .menu-opened .header-wrap {
        z-index: 80;
    }

    .menu-opened .header .menu-toggle-button {
        display: none;
    }

    .mobile-menu-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        margin-bottom: 26px;
    }

    .mobile-menu-head IMG {
        width: 180px;
    }

    .mobile-menu-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 52px;
        height: 52px;
        padding: 0;
        background: transparent;
        border: 0;
        color: #fff;
        font-size: 2.55rem;
        font-weight: 500;
        line-height: 1;
        cursor: pointer;
    }

    .main-menu LI:not(.mobile-menu-head):not(.menu-cta) {
        width: 100%;
        border-top: 1px solid rgba(255, 255, 255, .12);
        text-align: center;
    }

    .main-menu A {
        justify-content: center;
        width: auto;
        min-height: 58px;
        font-size: 1rem;
    }

    .main-menu A SPAN::after {
        display: none;
    }

    .main-menu LI:not(.menu-cta):not(.mobile-menu-head) A {
        margin-left: auto;
        margin-right: auto;
        padding-left: 16px;
        padding-right: 16px;
    }

    .main-menu .menu-cta {
        display: flex;
        justify-content: center;
        margin-top: 24px;
    }

    .main-menu .menu-cta A {
        justify-content: center;
        min-height: 50px;
    }

    .laser-hero-inner {
        min-height: 0;
        grid-template-columns: 1fr;
        padding-top: 0;
        padding-bottom: 0;
    }

    .laser-hero-copy {
        padding-top: 58px;
        padding-bottom: 48px;
    }

    .laser-hero-visual {
        inset: 0;
        width: 100%;
        min-height: 100%;
        clip-path: none;
        opacity: 1;
    }

    .laser-hero-visual::before {
        background: linear-gradient(90deg, rgba(7, 16, 24, .9) 0%, rgba(7, 16, 24, .72) 58%, rgba(7, 16, 24, .54) 100%);
    }

    .laser-hero-visual IMG {
        object-position: 0 50%;
    }

    .hero-points {
        grid-template-columns: 1fr;
        max-width: 430px;
        gap: 16px;
    }

    .hero-point {
        grid-template-columns: 56px minmax(0, 1fr);
    }

    .hero-point-line {
        display: inline;
        white-space: normal;
    }

    .hero-point-line + .hero-point-line::before {
        content: ' ';
    }

    .about-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .about-gallery {
        width: 100%;
        max-width: 430px;
        margin-left: auto;
        margin-right: auto;
    }

    .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 580px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-grid {
        gap: 52px;
        padding-top: 70px;
        padding-bottom: 72px;
    }

    .footer-contact H2 {
        margin-bottom: 32px;
        font-size: 36px;
    }

    .footer-phone A {
        font-size: 30px;
    }

    .footer-map P {
        font-size: 22px;
    }

    .footer-partner H3 {
        font-size: 32px;
    }

    .footer-partner P {
        font-size: 20px;
        line-height: 30px;
    }

    .footer-logo IMG {
        width: 230px;
    }

    .faq-side {
        gap: 58px;
    }

    .faq-logo {
        width: 340px;
    }
}

@media(min-width: 701px) and (max-width: 980px) {
    .laser-hero-visual {
        overflow: hidden;
    }

    .laser-hero-visual::before {
        background: linear-gradient(90deg, rgba(7, 16, 24, .78) 0%, rgba(7, 16, 24, .48) 54%, rgba(7, 16, 24, .24) 100%);
    }

    .laser-hero-visual IMG {
        width: 112%;
        max-width: none;
        object-position: 0 50%;
        transform: translateX(11%);
    }
}

@media(max-width: 700px) {
    .laser-hero-visual IMG {
        width: 100%;
        max-width: 100%;
        object-position: 0 50%;
        transform: none;
    }
}

@media(max-width: 680px) {
    :root {
        font-size: 16px;
    }

    .header {
        padding-left: 18px;
        padding-right: 18px;
    }

    .header .menu-toggle-button {
        right: 18px;
    }

    .logo-header {
        width: 134px;
        min-width: 134px;
        transform: translateX(-10px);
    }

    .laser-hero H1 {
        font-size: 42px;
    }

    .laser-hero-copy {
        padding-top: 48px;
    }

    .hero-lead {
        max-width: 430px;
        font-size: 18px;
        line-height: 30px;
    }

    .about-text H2 {
        margin-bottom: 32px;
        font-size: 32px;
    }

    .section-heading H2 {
        font-size: 32px;
    }

    .about-text P {
        margin-bottom: 24px;
        font-size: 18px;
        line-height: 32px;
    }

    .btn-cluster {
        align-items: stretch;
        flex-direction: column;
        max-width: 320px;
    }

    .feature-grid,
    .usage-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid {
        gap: 24px;
    }

    .feature-card {
        min-height: 0;
        padding-top: 44px;
        padding-bottom: 40px;
    }

    .process-grid {
        gap: 24px;
    }

    .process-card {
        min-height: 0;
        padding: 56px 24px 36px;
    }

    .process-number {
        width: 36px;
        height: 36px;
        font-size: 24px;
    }

    .process-card IMG {
        width: 78px;
        height: 78px;
    }

    .process-card H3 {
        margin-top: 24px;
    }

    .section-heading {
        gap: 18px;
        margin-bottom: 34px;
    }

    .section-heading::before,
    .section-heading::after {
        display: none;
    }

    .faq-item .question {
        min-height: 76px;
        gap: 18px;
        padding-left: 22px;
        padding-right: 22px;
        font-size: 20px;
    }

    .faq-item .question I {
        width: 18px;
        height: 18px;
        min-width: 18px;
        border-width: 4px;
    }

    .answer-holder P {
        padding: 0 22px 30px;
        font-size: 18px;
        line-height: 32px;
    }

    .faq-side {
        gap: 42px;
    }

    .video-play-mark {
        width: 86px;
        height: 86px;
    }

    .video-modal {
        padding: 16px;
    }

    .video-modal-player {
        max-height: calc(100vh - 92px);
    }

    .video-modal-close {
        top: -50px;
        right: 0;
    }

    .inquiry-modal {
        padding: 18px;
    }

    .inquiry-modal-dialog {
        max-height: calc(100vh - 36px);
        padding: 34px 24px 30px;
    }

    .inquiry-modal-close {
        top: 10px;
        right: 10px;
    }

    .inquiry-modal-head {
        margin-bottom: 22px;
        padding-right: 34px;
    }

    .inquiry-modal-head H2 {
        font-size: 32px;
    }

    .inquiry-alert,
    .inquiry-field SPAN,
    .inquiry-field INPUT,
    .inquiry-field TEXTAREA {
        font-size: 16px;
    }

    .inquiry-form .btn {
        justify-self: stretch;
    }

    .footer-grid {
        gap: 40px;
        padding-top: 56px;
        padding-bottom: 64px;
    }

    .footer-contact H2 {
        margin-bottom: 24px;
        font-size: 32px;
    }

    .footer-contact P + P {
        margin-top: 12px;
    }

    .footer-phone A {
        font-size: 26px;
    }

    .footer-email A {
        font-size: 22px;
    }

    .footer-map {
        max-width: 360px;
    }

    .footer-map P {
        margin-bottom: 10px;
        font-size: 20px;
    }

    .footer-partner {
        gap: 22px;
    }

    .footer-partner > IMG {
        width: 220px;
        min-width: 0;
    }

    .footer-partner H3 {
        font-size: 26px;
    }

    .footer-partner P {
        font-size: 18px;
        line-height: 28px;
    }

    .footer-logo IMG {
        width: 210px;
    }
}
