@font-face {
    font-family: "Druk Cyr";
    src:
        url("./assets/fonts/DrukCyr-Heavy.woff2") format("woff2"),
        url("./assets/fonts/DrukCyr-Heavy.woff") format("woff"),
        url("./assets/fonts/DrukCyr-Heavy.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Druk Cyr";
    src:
        url("./assets/fonts/DrukCyr-Medium.woff2") format("woff2"),
        url("./assets/fonts/DrukCyr-Medium.woff") format("woff"),
        url("./assets/fonts/DrukCyr-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gilroy";
    src: url("./assets/fonts/Gilroy-Regular_0.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gilroy";
    src: url("./assets/fonts/Gilroy-Medium_0.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gilroy";
    src: url("./assets/fonts/Gilroy-Semibold_0.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gilroy";
    src: url("./assets/fonts/Gilroy-Bold_0.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --surface: #ffffff;
    --ink: #101010;
    --muted: #2f2f2f;
    --accent-start: #ffad19;
    --accent-end: #ffd500;
    --container: 1506px;
    --card-shadow:
        -19px 88px 36px rgba(0, 0, 0, 0.01),
        -11px 50px 30px rgba(0, 0, 0, 0.05),
        -5px 22px 23px rgba(0, 0, 0, 0.09),
        -1px 6px 12px rgba(0, 0, 0, 0.10);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background: #ffffff;
    color: var(--ink);
    font-family: "Gilroy", Arial, sans-serif;
}

img {
    display: block;
    max-width: 100%;
}

button {
    font: inherit;
}

.landing-page {
    overflow-x: clip;
}

.showcase {
    position: relative;
    min-height: 1838px;
    overflow: hidden;
    background: #ffffff;
}

.showcase::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 1920px;
    height: 1315px;
    transform: translateX(-50%);
    background: url("./assets/hero-bg.png") center top / 1920px 1315px no-repeat;
    z-index: 0;
    pointer-events: none;
}

.showcase::after {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 0;
    z-index: 0;
    pointer-events: none;
}

.hero,
.catalog {
    position: relative;
    z-index: 1;
}

.hero {
    width: min(calc(100% - 64px), var(--container));
    margin: 0 auto;
    min-height: 1048px;
    padding-top: 41px;
}

.hero__inner {
    width: 1074px;
}

.hero__logo-shell {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 153px;
    height: 154px;
    margin-left: 25px;
    border-radius: 24px;
    background: #ffffff;
}

.hero__logo {
    width: 118px;
    height: 136px;
    object-fit: contain;
}

.hero__title {
    margin: 21px 0 0;
}

.hero__title-line {
    display: block;
    margin: 0;
    font-family: "Druk Cyr", Impact, sans-serif;
    font-style: normal;
    white-space: nowrap;
}

.hero__title-line--accent {
    font-weight: 500;
    font-size: 182px;
    line-height: 0.84;
    letter-spacing: -0.011em;
    color: #ff9c00;
}

.hero__title-line--dark {
    margin-top: 9px;
    font-weight: 500;
    font-size: 104px;
    line-height: 0.84;
    letter-spacing: -0.01em;
    color: #000000;
}

.hero__subtitle {
    margin: 33px 0 0;
    max-width: 1074px;
    font-size: 32px;
    line-height: 0.98;
    font-weight: 400;
    color: #101010;
}

.cta-button,
.price-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    cursor: pointer;
    overflow: hidden;
    color: #2f2f2f;
    background:
        linear-gradient(0deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08)),
        linear-gradient(90deg, var(--accent-start) 0%, var(--accent-end) 100%);
    box-shadow:
        inset 0 3px 20px rgba(255, 255, 255, 0.2),
        0 12px 22px rgba(255, 180, 0, 0.14);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button::before,
.price-button::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -14px;
    width: 132%;
    height: 58px;
    transform: translateX(-50%) rotate(-2deg);
    background: rgba(255, 255, 255, 0.52);
    mix-blend-mode: overlay;
    filter: blur(18px);
    pointer-events: none;
}

.cta-button:hover,
.price-button:hover {
    transform: translateY(-2px);
    box-shadow:
        inset 0 3px 20px rgba(255, 255, 255, 0.2),
        0 16px 30px rgba(255, 166, 0, 0.18);
}

.cta-button span,
.price-button span {
    position: relative;
    z-index: 1;
}

.cta-button {
    width: 507.69px;
    min-height: 94.44px;
    margin-top: 28px;
    border-radius: 20px;
}

.cta-button span {
    font-size: 20px;
    line-height: 23px;
    font-weight: 600;
    letter-spacing: 0.135em;
    text-transform: uppercase;
}

.hero__benefits {
    list-style: none;
    margin: 46px 0 0;
    padding: 0;
    width: 650px;
    display: grid;
    gap: 14px;
}

.hero__benefit {
    display: grid;
    grid-template-columns: 27px minmax(0, 1fr);
    align-items: start;
    column-gap: 18px;
}

.hero__benefit img {
    width: 20px;
    height: 20px;
    margin-top: 11px;
}

.hero__benefit span {
    font-size: 25px;
    line-height: 0.99;
    font-weight: 400;
    color: #101010;
}

.catalog {
    width: min(calc(100% - 64px), var(--container));
    margin: 0 auto;
    padding-bottom: 72px;
}

.catalog__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px 31px;
}

.catalog-card {
    position: relative;
    height: 326px;
    padding: 50px 34px 29px;
    border-radius: 44px;
    background: #ffffff;
    box-shadow: var(--card-shadow);
    overflow: hidden;
}

.catalog-card__title {
    margin: 0;
    position: relative;
    z-index: 1;
    font-size: 33px;
    line-height: 0.9;
    font-weight: 600;
    letter-spacing: -0.03em;
    color: #000000;
}

.catalog-card--wire .catalog-card__title {
    max-width: 210px;
}

.catalog-card--wall .catalog-card__title {
    max-width: 274px;
}

.catalog-card--drill .catalog-card__title {
    max-width: 238px;
}

.catalog-card--floor .catalog-card__title {
    max-width: 242px;
}

.catalog-card--oil .catalog-card__title {
    max-width: 255px;
}

.catalog-card--hydraulic .catalog-card__title {
    max-width: 278px;
}

.catalog-card__media {
    position: absolute;
    z-index: 0;
}

.catalog-card__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.catalog-card__media--wire {
    width: 275px;
    height: 177px;
    right: 7px;
    top: 50px;
}

.catalog-card__media--wall {
    width: 263px;
    height: 190px;
    right: 0;
    top: 76px;
}

.catalog-card__media--drill {
    width: 191px;
    height: 205px;
    right: 39px;
    top: 50px;
}

.catalog-card__media--floor {
    width: 252px;
    height: 182px;
    right: 0;
    top: 55px;
}

.catalog-card__media--oil {
    width: 239px;
    height: 225px;
    right: 18px;
    top: 55px;
}

.catalog-card__media--hydraulic {
    width: 208px;
    height: 234px;
    right: 22px;
    top: 49px;
}

.price-button {
    position: absolute;
    left: 34px;
    bottom: 46px;
    width: 194.26px;
    min-height: 69.28px;
    border-radius: 20px;
}

.price-button span {
    font-size: 20px;
    line-height: 23px;
    font-weight: 600;
}

.workflow {
    position: relative;
    padding: 69px 0 100px;
    background: #f9f9f9;
    overflow: hidden;
}

.workflow__inner {
    width: min(calc(100% - 64px), 1538px);
    margin: 0 auto;
}

.workflow__title {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 14px;
    margin: 0;
}

.workflow__title-accent,
.workflow__title-dark {
    font-family: "Druk Cyr", Impact, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 96px;
    line-height: 0.84;
    letter-spacing: -0.014em;
}

.workflow__title-accent {
    color: #ff9c00;
}

.workflow__title-dark {
    color: #000000;
}

.workflow__board {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 132px 37px;
    margin-top: 86px;
    padding: 56px 0 14px;
}

.workflow__connector {
    position: absolute;
    width: 152px;
    height: 58px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    opacity: 0.72;
    filter: grayscale(1) brightness(0.72) contrast(0.9);
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 2;
}

.workflow__connector--1,
.workflow__connector--3,
.workflow__connector--5,
.workflow__connector--7 {
    background-image: url("./assets/workflow-arrow-top.png");
}

.workflow__connector--2,
.workflow__connector--4,
.workflow__connector--6,
.workflow__connector--8 {
    background-image: url("./assets/workflow-arrow-bottom.png");
}

.workflow__connector--1 {
    left: 14.8%;
    top: 8px;
}

.workflow__connector--2 {
    left: 35.5%;
    top: 302px;
}

.workflow__connector--3 {
    left: 56.2%;
    top: 8px;
}

.workflow__connector--4 {
    left: 76.8%;
    top: 302px;
}

.workflow__connector--5 {
    left: 14.8%;
    top: 390px;
}

.workflow__connector--6 {
    left: 35.5%;
    top: 654px;
}

.workflow__connector--7 {
    left: 56.2%;
    top: 390px;
}

.workflow__connector--8 {
    left: 76.8%;
    top: 654px;
}

.workflow-card {
    position: relative;
    z-index: 3;
    min-height: 220px;
    padding: 18px 20px 24px;
    border-radius: 44px;
    background: #ffffff;
    box-shadow: var(--card-shadow);
}

.workflow-card__icon-shell {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 69px;
    border-radius: 12px;
    background:
        linear-gradient(0deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08)),
        linear-gradient(90deg, var(--accent-start) 0%, var(--accent-end) 100%);
    box-shadow:
        inset 0 3px 20px rgba(255, 255, 255, 0.2),
        0 10px 18px rgba(255, 180, 0, 0.12);
}

.workflow-card__icon-shell::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -11px;
    width: 123px;
    height: 51px;
    transform: translateX(-50%) rotate(5deg);
    background: rgba(255, 255, 255, 0.58);
    mix-blend-mode: overlay;
    filter: blur(18px);
    pointer-events: none;
}

.workflow-card__icon {
    position: relative;
    z-index: 1;
    max-width: 47px;
    max-height: 47px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.workflow-card__icon--wide {
    max-width: 39px;
    max-height: 39px;
}

.workflow-card__icon--step-03 {
    transform: translateY(2px);
}

.workflow-card__step {
    position: absolute;
    top: 17px;
    right: 23px;
    font-family: "Druk Cyr", Impact, sans-serif;
    font-size: 84px;
    line-height: 0.84;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.21);
}

.workflow-card__title {
    margin: 18px 0 0;
    max-width: 220px;
    font-size: 24px;
    line-height: 0.98;
    font-weight: 700;
    color: #000000;
}

.workflow-card__desc {
    margin: 8px 0 0;
    max-width: 248px;
    font-size: 18px;
    line-height: 1.15;
    font-weight: 400;
    color: #000000;
}

.service-callout {
    position: relative;
    overflow: hidden;
    background: #f9f9f9;
}

.service-callout::before {
    content: "";
    position: absolute;
    inset: 0;
    background: none;
    pointer-events: none;
    z-index: 0;
}

.service-callout::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 1920px;
    height: 736px;
    transform: translateX(-50%);
    background: url("./assets/service-bg.png") center bottom / 1920px 736px no-repeat;
    opacity: 0.92;
    pointer-events: none;
    z-index: 0;
}

.service-callout__inner {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 64px), var(--container));
    min-height: 740px;
    margin: 0 auto;
    padding: 40px 0 58px;
}

.service-callout__title {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 12px;
    margin: 0;
}

.service-callout__title-dark,
.service-callout__title-accent {
    font-family: "Druk Cyr", Impact, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 96px;
    line-height: 0.84;
    letter-spacing: -0.015em;
}

.service-callout__title-dark {
    color: #000000;
}

.service-callout__title-accent {
    color: #ff9c00;
}

.service-callout__panel {
    position: relative;
    z-index: 2;
    width: 765px;
    min-height: 540px;
    margin-top: 28px;
    padding: 36px 38px 40px;
    border-radius: 44px;
    background: #ffffff;
    box-shadow: var(--card-shadow);
}

.service-callout__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 28px;
}

.service-callout__item {
    display: grid;
    grid-template-columns: 37px minmax(0, 1fr);
    align-items: center;
    column-gap: 20px;
}

.service-callout__icon {
    width: 37px;
    height: 37px;
    object-fit: contain;
}

.service-callout__item span {
    font-size: 24px;
    line-height: 0.98;
    font-weight: 700;
    color: #000000;
}

.service-callout__item strong {
    color: #ff9c00;
    font-weight: 700;
}

.cta-button--service {
    width: 428px;
    min-height: 69.28px;
    margin-top: 34px;
    border-radius: 20px;
}

.service-callout__truck {
    position: absolute;
    z-index: 3;
    right: -210px;
    bottom: 0;
    width: 1080px;
    pointer-events: none;
}

.service-callout__truck img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.company-details {
    position: relative;
    background: #ffffff;
    padding: 112px 0 92px;
}

.company-details__inner {
    width: min(calc(100% - 64px), 1549px);
    margin: 0 auto;
}

.company-details__title {
    margin: 0;
    font-family: "Druk Cyr", Impact, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 96px;
    line-height: 0.84;
    letter-spacing: -0.015em;
    color: #000000;
}

.company-details__list {
    margin: 114px 0 0;
    padding: 0;
}

.company-details__row {
    display: grid;
    grid-template-columns: minmax(300px, 43%) minmax(300px, 40%);
    justify-content: space-between;
    align-items: start;
    gap: 40px;
    padding: 28px 0 31px;
    border-bottom: 1px solid #bdbdbd;
}

.company-details__label,
.company-details__value {
    margin: 0;
    font-family: "Gilroy", Arial, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.15;
}

.company-details__label {
    color: #999999;
}

.company-details__value {
    color: #000000;
}

.order-request {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(0deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.84)),
        #ffffff;
}

.order-request::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("./assets/order-form-bg.png") center center / cover no-repeat;
    opacity: 0.55;
    pointer-events: none;
}

.order-request__inner {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 64px), 1599px);
    margin: 0 auto;
    padding: 92px 0 88px;
}

.order-request__title {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 12px;
    margin: 0;
}

.order-request__title-accent,
.order-request__title-dark {
    font-family: "Druk Cyr", Impact, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 96px;
    line-height: 0.84;
    letter-spacing: -0.015em;
}

.order-request__title-accent {
    color: #ff9c00;
}

.order-request__title-dark {
    color: #000000;
}

.order-request__form {
    margin-top: 54px;
}

.order-request__notice {
    margin-bottom: 24px;
    padding: 16px 20px;
    border-radius: 18px;
    font-family: "Gilroy", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 500;
}

.order-request__notice--success {
    background: rgba(32, 178, 88, 0.12);
    color: #167a41;
}

.order-request__notice--error {
    background: rgba(193, 39, 45, 0.1);
    color: #b22b32;
}

.order-request__fields {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.order-request__field {
    display: block;
}

.order-request__input {
    width: 100%;
    height: 160px;
    padding: 0 40px;
    border: 2px solid #b4b4b4;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.94);
    font-family: "Gilroy", Arial, sans-serif;
    font-size: 32px;
    line-height: 0.98;
    font-weight: 400;
    color: #101010;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.order-request__input::placeholder {
    color: #8f8f8f;
}

.order-request__input:focus {
    border-color: #ffb000;
    box-shadow: 0 0 0 5px rgba(255, 185, 0, 0.12);
    background: #ffffff;
}

.order-request__upload {
    margin-top: 22px;
}

.order-request__upload-trigger {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: "Gilroy", Arial, sans-serif;
    font-size: 24px;
    line-height: 1.4;
    font-weight: 500;
    color: #c1272d;
    text-decoration: underline;
    cursor: pointer;
}

.order-request__upload-trigger img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.order-request__file-input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.cta-button--order {
    width: 100%;
    min-height: 94px;
    margin-top: 28px;
    border-radius: 20px;
}

.order-request__consent {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 22px;
    font-family: "Gilroy", Arial, sans-serif;
    font-size: 20px;
    line-height: 1.15;
    font-weight: 400;
    color: #000000;
    cursor: pointer;
}

.order-request__consent input {
    width: 22px;
    height: 22px;
    margin: 0;
    accent-color: #c1272d;
    flex: 0 0 auto;
}

.repair-gallery {
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.repair-gallery::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(0deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.82)),
        url("./assets/repair-slider-stripes.png") center top / cover no-repeat;
    pointer-events: none;
    opacity: 1;
}

.repair-gallery__inner {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 64px), 1599px);
    margin: 0 auto;
    padding: 118px 0 136px;
}

.repair-gallery__title {
    margin: 0;
    text-align: center;
    font-family: "Druk Cyr", Impact, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 96px;
    line-height: 0.84;
    letter-spacing: -0.015em;
    color: #ff9c00;
}

.repair-gallery__slider {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr) 84px;
    align-items: center;
    gap: 38px;
    margin-top: 92px;
}

.repair-gallery__viewport {
    overflow: hidden;
}

.repair-gallery__track {
    display: flex;
    transition: transform 0.45s ease;
    will-change: transform;
}

.repair-gallery__slide {
    flex: 0 0 100%;
    min-width: 100%;
}

.repair-gallery__pair {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 46px;
    align-items: start;
    justify-content: center;
}

.repair-gallery__frame {
    margin: 0;
    display: grid;
    justify-items: center;
    gap: 24px;
}

.repair-gallery__frame img {
    display: block;
    width: min(100%, 424px);
    aspect-ratio: 424 / 593;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 12px 38px rgba(0, 0, 0, 0.08);
}

.repair-gallery__frame figcaption {
    font-family: "Gilroy", Arial, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 1.15;
    color: #000000;
}

.repair-gallery__nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 47px;
    height: 47px;
    padding: 0;
    border: 0;
    border-radius: 7px;
    background: #ff9c00;
    box-shadow: 0 10px 20px rgba(255, 156, 0, 0.2);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.repair-gallery__nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(255, 156, 0, 0.26);
}

.repair-gallery__nav:active {
    transform: translateY(0);
}

.repair-gallery__nav span {
    width: 12px;
    height: 12px;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
}

.repair-gallery__nav--prev span {
    transform: rotate(-135deg);
    margin-left: 4px;
}

.repair-gallery__nav--next span {
    transform: rotate(45deg);
    margin-right: 4px;
}

.repair-gallery__nav[disabled] {
    opacity: 0.55;
    cursor: default;
    box-shadow: none;
}

.contacts {
    background: #ffffff;
}

.contacts__inner {
    width: min(calc(100% - 64px), 1200px);
    margin: 0 auto;
    padding: 66px 0 70px;
    text-align: center;
}

.contacts__title {
    margin: 0;
    font-family: "Druk Cyr", Impact, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 72px;
    line-height: 0.9;
    text-transform: uppercase;
    color: #ff9c00;
}

.contacts__list {
    display: grid;
    gap: 14px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.contacts__item,
.contacts__item a {
    font-family: "Gilroy", Arial, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 28px;
    line-height: 1.25;
    color: #111111;
}

.contacts__item a {
    text-decoration: none;
    transition: color 0.2s ease;
}

.contacts__item a:hover {
    color: #c1272d;
}

.site-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 72px;
    padding: 22px 16px;
    background: #1f1f1f;
}

.site-footer__link {
    font-family: "Gilroy", Arial, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3;
    color: #ffffff;
    text-align: center;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.2s ease;
}

.site-footer__link:hover {
    color: #ffb000;
}

@media (max-width: 1600px) {
    .showcase::before {
        width: 1920px;
        height: 1315px;
        background-size: 1920px 1315px;
        background-position: center top;
    }

    .hero__inner {
        width: min(74vw, 1074px);
    }

    .hero__title-line--accent {
        font-size: clamp(8.8rem, 9.4vw, 11.375rem);
    }

    .hero__title-line--dark {
        font-size: clamp(4.7rem, 5.25vw, 6.5rem);
    }
}

@media (max-width: 1360px) {
    .hero,
    .catalog {
        width: min(calc(100% - 40px), var(--container));
    }

    .showcase {
        min-height: 1690px;
    }

    .hero {
        min-height: 970px;
        padding-top: 30px;
    }

    .hero__inner {
        width: min(76vw, 980px);
    }

    .hero__logo-shell {
        width: 136px;
        height: 136px;
    }

    .hero__logo {
        width: 102px;
        height: 118px;
    }

    .hero__title-line--accent {
        font-size: clamp(7.3rem, 8.6vw, 10rem);
    }

    .hero__title-line--dark {
        font-size: clamp(4rem, 4.7vw, 5.8rem);
    }

    .hero__subtitle {
        font-size: clamp(1.65rem, 2vw, 2rem);
    }

    .hero__benefits {
        width: min(47vw, 650px);
    }

    .hero__benefit span {
        font-size: clamp(1.15rem, 1.4vw, 1.5rem);
    }

    .catalog__grid {
        gap: 26px 24px;
    }

    .catalog-card {
        height: 314px;
        padding: 44px 26px 28px;
        border-radius: 34px;
    }

    .catalog-card__title {
        font-size: 30px;
    }

    .price-button {
        left: 26px;
        bottom: 28px;
        width: 182px;
        min-height: 64px;
    }

    .workflow__inner {
        width: min(calc(100% - 40px), 1538px);
    }

    .workflow__board {
        gap: 42px 26px;
        margin-top: 70px;
    }

    .workflow__connector {
        display: none;
    }

    .workflow__title-accent,
    .workflow__title-dark {
        font-size: clamp(4.4rem, 5.8vw, 6rem);
    }

    .service-callout__inner {
        width: min(calc(100% - 40px), var(--container));
    }

    .service-callout__title-dark,
    .service-callout__title-accent {
        font-size: clamp(4.4rem, 5.8vw, 6rem);
    }

    .service-callout__truck {
        right: -206px;
        width: min(63vw, 1040px);
    }

    .company-details__inner {
        width: min(calc(100% - 40px), 1549px);
    }

    .company-details__title {
        font-size: clamp(4.4rem, 5.8vw, 6rem);
    }

    .company-details__row {
        grid-template-columns: minmax(250px, 41%) minmax(280px, 44%);
        gap: 32px;
    }

    .order-request__inner {
        width: min(calc(100% - 40px), 1599px);
    }

    .order-request__title-accent,
    .order-request__title-dark {
        font-size: clamp(4.4rem, 5.8vw, 6rem);
    }

    .order-request__input {
        font-size: 28px;
        height: 148px;
        padding: 0 34px;
    }

    .repair-gallery__inner {
        width: min(calc(100% - 40px), 1599px);
    }

    .repair-gallery__title {
        font-size: clamp(4.4rem, 5.8vw, 6rem);
    }

    .repair-gallery__pair {
        gap: 28px;
    }
}

@media (max-width: 1120px) {
    .showcase {
        min-height: auto;
    }

    .showcase::before {
        width: 100%;
        height: 980px;
        transform: none;
        left: 0;
        background-size: cover;
        background-position: 72% top;
    }

    .hero {
        width: min(calc(100% - 40px), 920px);
        min-height: auto;
        padding-top: 28px;
    }

    .hero__inner {
        width: 100%;
        max-width: 700px;
    }

    .hero__title-line {
        white-space: normal;
    }

    .hero__title-line--accent {
        font-size: clamp(4.7rem, 10vw, 8.2rem);
    }

    .hero__title-line--dark {
        margin-top: 6px;
        font-size: clamp(3.2rem, 6.2vw, 5.6rem);
    }

    .hero__subtitle {
        margin-top: 24px;
        line-height: 1;
    }

    .hero__benefits {
        width: 100%;
        max-width: 650px;
    }

    .catalog {
        width: min(calc(100% - 40px), 920px);
        margin-top: 30px;
    }

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

    .workflow {
        padding: 52px 0 28px;
    }

    .workflow__inner {
        width: min(calc(100% - 40px), 920px);
    }

    .workflow__title {
        gap: 10px;
    }

    .workflow__title-accent,
    .workflow__title-dark {
        font-size: clamp(3.5rem, 8vw, 5rem);
    }

    .workflow__board {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 26px 24px;
        margin-top: 42px;
    }

    .service-callout {
        padding-bottom: 26px;
    }

    .service-callout::after {
        height: 520px;
        background-size: cover;
        opacity: 0.75;
    }

    .service-callout__inner {
        width: min(calc(100% - 40px), 920px);
        min-height: auto;
        padding: 14px 0 0;
    }

    .service-callout__title-dark,
    .service-callout__title-accent {
        font-size: clamp(3.5rem, 8vw, 5rem);
    }

    .service-callout__panel {
        width: min(100%, 640px);
        min-height: auto;
        padding: 32px 30px 32px;
    }

    .service-callout__item span {
        font-size: 21px;
    }

    .service-callout__truck {
        right: -128px;
        bottom: -10px;
        width: min(88vw, 880px);
        opacity: 0.9;
    }

    .company-details {
        padding: 88px 0 72px;
    }

    .company-details__inner {
        width: min(calc(100% - 40px), 920px);
    }

    .company-details__title {
        font-size: clamp(3.5rem, 8vw, 5rem);
    }

    .company-details__list {
        margin-top: 74px;
    }

    .company-details__row {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 22px 0 24px;
    }

    .order-request {
        background:
            linear-gradient(0deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)),
            #ffffff;
    }

    .order-request__inner {
        width: min(calc(100% - 40px), 920px);
        padding: 78px 0 72px;
    }

    .order-request__title-accent,
    .order-request__title-dark {
        font-size: clamp(3.5rem, 8vw, 5rem);
    }

    .order-request__fields {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .order-request__input {
        height: 132px;
        padding: 0 28px;
        font-size: 26px;
    }

    .order-request__upload-trigger {
        font-size: 22px;
    }

    .cta-button--order {
        min-height: 88px;
    }

    .order-request__consent {
        font-size: 18px;
    }

    .repair-gallery__inner {
        width: min(calc(100% - 40px), 920px);
        padding: 88px 0 96px;
    }

    .repair-gallery__title {
        font-size: clamp(3.5rem, 8vw, 5rem);
    }

    .repair-gallery__slider {
        grid-template-columns: 56px minmax(0, 1fr) 56px;
        gap: 22px;
        margin-top: 64px;
    }

    .repair-gallery__pair {
        gap: 22px;
    }

    .repair-gallery__frame {
        gap: 18px;
    }

    .repair-gallery__frame figcaption {
        font-size: 24px;
    }
}

@media (max-width: 720px) {
    .showcase::before {
        height: 910px;
        background-size: 1180px auto;
        background-position: calc(100% + 124px) top;
    }

    .showcase::after {
        height: 910px;
        background:
            linear-gradient(
                90deg,
                rgba(255, 255, 255, 0.96) 0%,
                rgba(255, 255, 255, 0.88) 21%,
                rgba(255, 255, 255, 0.62) 44%,
                rgba(255, 255, 255, 0.16) 68%,
                rgba(255, 255, 255, 0) 82%
            );
    }

    .hero,
    .catalog {
        width: min(calc(100% - 24px), 720px);
    }

    .hero {
        padding-top: 22px;
    }

    .hero__logo-shell {
        width: 112px;
        height: 112px;
        border-radius: 20px;
    }

    .hero__logo {
        width: 84px;
        height: 98px;
    }

    .hero__title {
        margin-top: 18px;
    }

    .hero__title-line--accent {
        font-size: clamp(3.65rem, 15vw, 5.4rem);
        line-height: 0.88;
    }

    .hero__title-line--dark {
        font-size: clamp(2.5rem, 9vw, 3.8rem);
        line-height: 0.9;
    }

    .hero__subtitle {
        max-width: 312px;
        font-size: clamp(1.1rem, 4.2vw, 1.42rem);
        margin-top: 18px;
        line-height: 1.02;
    }

    .cta-button {
        width: 100%;
        min-height: 82px;
        margin-top: 22px;
        padding-inline: 18px;
    }

    .cta-button span {
        font-size: 18px;
        line-height: 1.15;
        letter-spacing: 0.11em;
    }

    .hero__benefits {
        max-width: 314px;
        margin-top: 24px;
        gap: 16px;
    }

    .hero__benefit {
        grid-template-columns: 22px minmax(0, 1fr);
        column-gap: 12px;
    }

    .hero__benefit img {
        width: 18px;
        height: 18px;
        margin-top: 2px;
    }

    .hero__benefit span {
        font-size: 18px;
        line-height: 1.04;
    }

    .catalog {
        margin-top: 22px;
        padding-bottom: 20px;
    }

    .catalog__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .catalog-card {
        height: 320px;
        padding: 34px 22px 24px;
        border-radius: 28px;
    }

    .catalog-card__title {
        font-size: 28px;
        line-height: 0.92;
    }

    .catalog-card--wire .catalog-card__title,
    .catalog-card--wall .catalog-card__title,
    .catalog-card--drill .catalog-card__title,
    .catalog-card--floor .catalog-card__title,
    .catalog-card--oil .catalog-card__title,
    .catalog-card--hydraulic .catalog-card__title {
        max-width: 220px;
    }

    .catalog-card__media--wire {
        width: 230px;
        height: 148px;
        right: 10px;
        top: 90px;
    }

    .catalog-card__media--wall {
        width: 224px;
        height: 162px;
        right: 4px;
        top: 100px;
    }

    .catalog-card__media--drill {
        width: 156px;
        height: 172px;
        right: 18px;
        top: 88px;
    }

    .catalog-card__media--floor {
        width: 214px;
        height: 154px;
        right: 8px;
        top: 98px;
    }

    .catalog-card__media--oil {
        width: 200px;
        height: 188px;
        right: 14px;
        top: 82px;
    }

    .catalog-card__media--hydraulic {
        width: 136px;
        height: 178px;
        right: 18px;
        top: 78px;
    }

    .price-button {
        left: 22px;
        bottom: 24px;
        width: 164px;
        min-height: 62px;
    }

    .price-button span {
        font-size: 18px;
    }

    .workflow {
        padding: 42px 0 20px;
    }

    .workflow__inner {
        width: min(calc(100% - 24px), 720px);
    }

    .workflow__title {
        gap: 8px;
    }

    .workflow__title-accent,
    .workflow__title-dark {
        font-size: clamp(2.7rem, 12vw, 4rem);
        line-height: 0.9;
    }

    .workflow__board {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 32px;
    }

    .workflow-card {
        min-height: 206px;
        padding: 18px 18px 22px;
        border-radius: 30px;
    }

    .workflow-card__step {
        top: 18px;
        right: 16px;
        font-size: 66px;
    }

    .workflow-card__title {
        max-width: 190px;
        font-size: 20px;
    }

    .workflow-card__desc {
        max-width: 210px;
        font-size: 16px;
    }

    .service-callout::before {
        background: none;
    }

    .service-callout::after {
        height: 280px;
        background-size: cover;
        background-position: center bottom;
        opacity: 0.38;
    }

    .service-callout__inner {
        width: min(calc(100% - 24px), 720px);
        padding: 16px 0 28px;
    }

    .service-callout__title {
        gap: 8px;
    }

    .service-callout__title-dark,
    .service-callout__title-accent {
        font-size: clamp(2.7rem, 12vw, 4rem);
        line-height: 0.9;
    }

    .service-callout__panel {
        width: 100%;
        margin-top: 22px;
        padding: 26px 20px 24px;
        border-radius: 30px;
    }

    .service-callout__list {
        gap: 22px;
    }

    .service-callout__item {
        grid-template-columns: 30px minmax(0, 1fr);
        column-gap: 14px;
        align-items: start;
    }

    .service-callout__icon {
        width: 30px;
        height: 30px;
        margin-top: 2px;
    }

    .service-callout__item span {
        font-size: 18px;
        line-height: 1.04;
    }

    .cta-button--service {
        width: 100%;
        min-height: 82px;
        margin-top: 28px;
    }

    .service-callout__truck {
        position: relative;
        right: auto;
        bottom: auto;
        width: min(100%, 560px);
        margin: 18px auto 0;
        opacity: 1;
    }

    .company-details {
        padding: 64px 0 56px;
    }

    .company-details__inner {
        width: min(calc(100% - 24px), 720px);
    }

    .company-details__title {
        font-size: clamp(2.7rem, 12vw, 4rem);
        line-height: 0.9;
    }

    .company-details__list {
        margin-top: 48px;
    }

    .company-details__row {
        gap: 12px;
        padding: 18px 0 20px;
    }

    .company-details__label,
    .company-details__value {
        font-size: 16px;
        line-height: 1.2;
    }

    .order-request__inner {
        width: min(calc(100% - 24px), 720px);
        padding: 62px 0 56px;
    }

    .order-request__title {
        gap: 8px;
    }

    .order-request__title-accent,
    .order-request__title-dark {
        font-size: clamp(2.7rem, 12vw, 4rem);
        line-height: 0.9;
    }

    .order-request__form {
        margin-top: 36px;
    }

    .order-request__input {
        height: 96px;
        padding: 0 20px;
        border-radius: 22px;
        font-size: 18px;
    }

    .order-request__upload {
        margin-top: 18px;
    }

    .order-request__upload-trigger {
        font-size: 18px;
        gap: 10px;
    }

    .order-request__upload-trigger img {
        width: 22px;
        height: 22px;
    }

    .cta-button--order {
        min-height: 82px;
        margin-top: 22px;
    }

    .order-request__consent {
        align-items: flex-start;
        gap: 10px;
        font-size: 15px;
        line-height: 1.25;
    }

    .order-request__consent input {
        width: 18px;
        height: 18px;
        margin-top: 1px;
    }

    .order-request__notice {
        font-size: 15px;
        line-height: 1.3;
        padding: 14px 16px;
        border-radius: 14px;
    }

    .repair-gallery__inner {
        width: min(calc(100% - 20px), 720px);
        padding: 52px 0 64px;
    }

    .repair-gallery__title {
        font-size: clamp(2.25rem, 10.5vw, 3.6rem);
        line-height: 0.92;
        max-width: 340px;
        margin-inline: auto;
    }

    .repair-gallery__slider {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-areas:
            "prev next"
            "viewport viewport";
        gap: 18px 20px;
        margin-top: 34px;
        align-items: center;
    }

    .repair-gallery__viewport {
        grid-area: viewport;
        width: 100%;
        order: initial;
    }

    .repair-gallery__pair {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .repair-gallery__frame {
        gap: 12px;
        padding: 14px 14px 16px;
        background: rgba(255, 255, 255, 0.96);
        border-radius: 28px;
        box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
    }

    .repair-gallery__frame img {
        width: 100%;
        max-width: none;
        border-radius: 18px;
        box-shadow: none;
    }

    .repair-gallery__frame figcaption {
        font-size: 20px;
        line-height: 1.1;
        text-align: center;
    }

    .contacts__inner {
        width: min(calc(100% - 24px), 720px);
        padding: 44px 0 48px;
    }

    .contacts__title {
        font-size: clamp(2.7rem, 12vw, 4rem);
        line-height: 0.9;
    }

    .contacts__list {
        gap: 10px;
        margin-top: 22px;
    }

    .contacts__item,
    .contacts__item a {
        font-size: 19px;
        line-height: 1.25;
        overflow-wrap: anywhere;
    }

    .repair-gallery__nav {
        width: 52px;
        height: 52px;
        border-radius: 14px;
    }

    .repair-gallery__slider > .repair-gallery__nav {
        margin-top: 0;
    }

    .repair-gallery__nav--prev,
    .repair-gallery__nav--next {
        order: initial;
    }

    .repair-gallery__nav--prev {
        grid-area: prev;
        justify-self: start;
    }

    .repair-gallery__nav--next {
        grid-area: next;
        justify-self: end;
    }
}
