@charset "UTF-8";
:root {
  --mobile-header-height: 0px;
  --page: #f3f0ec;
  --text: #060606;
  --muted: #737373;
  --line: rgba(5, 5, 5, 0.15);
  --white: #fff;
  --orange: #ff8a00;
  --orange-dark: #fb5a00;
  --yellow: #f5bf17;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow: 0 20px 55px rgba(0, 0, 0, .07);
  --gradient: linear-gradient(94deg, #fb5a00 0%, #ff8a00 48%, #f3bc17 100%);
  --font: Inter, Arial, Helvetica, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.45;
  background: var(--page);
}
body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(100% - 32px, 1280px);
  margin-inline: auto;
}

.section {
  padding: 76px 0 0;
}

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

h1 {
  max-width: 690px;
  font-size: clamp(50px, 7vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}
h1 span {
  display: block;
  color: var(--orange);
}

h2 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.03;
  letter-spacing: -0.05em;
}

h3 {
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.btn {
  min-height: 56px;
  padding: 0 30px;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn--primary {
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 16px 34px rgba(255, 120, 0, 0.2);
}
.btn--outline {
  border-color: rgba(0, 0, 0, 0.28);
  color: #424242;
  background: rgba(255, 255, 255, 0.4);
}
.btn--light {
  color: #1b1b1b;
  background: #fff;
}
.btn--phone {
  padding-right: 10px;
}
.btn--phone::after {
  content: "";
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 50%;
  background: #fff url("../assets/img/phone.svg") center/18px 18px no-repeat;
  box-shadow: none;
}

.mobile-menu {
  display: grid;
  gap: 14px;
}
.mobile-menu[hidden] {
  display: none;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 24px 0 18px;
  background: linear-gradient(180deg, rgba(243, 240, 236, 0.98) 0%, rgba(243, 240, 236, 0.92) 76%, rgba(243, 240, 236, 0.74) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.header__top {
  min-height: 56px;
  padding: 0 46px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: clamp(22px, 5vw, 88px);
  color: #161616;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.02);
}
.header__top a {
  font-size: 16px;
  color: #232323;
  white-space: nowrap;
}
.header__nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.7vw, 42px);
}
.header__main {
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.header__logo-mobile {
  display: none !important;
}
.header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}
.header__actions .btn {
  white-space: nowrap;
}
.header .BTNMenu {
  display: none;
}

.link-muted {
  font-size: 16px;
  color: #232323;
  white-space: nowrap;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.logo img {
  display: block;
  width: 132px;
  height: auto;
}
.logo__mark {
  position: relative;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gradient);
}
.logo__mark::before {
  content: "";
  position: absolute;
  left: 7px;
  top: -7px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #050505;
  box-shadow: 14px -8px 0 -4px #050505, 24px 0 0 -6px #050505;
}
.logo__text {
  display: grid;
  line-height: 0.86;
  letter-spacing: -0.03em;
}
.logo__text b {
  font-size: 18px;
}
.logo__text small {
  margin-top: 4px;
  font-size: 7px;
  letter-spacing: 0.14em;
  font-weight: 800;
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
}
.burger span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 6px auto;
  background: #111;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.burger.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.burger.is-active span:nth-child(2) {
  opacity: 0;
}
.burger.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 122px 16px auto;
  padding: 24px;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}
.mobile-menu a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-weight: 700;
}

.hero {
  padding: 94px 0 56px;
  overflow: hidden;
}
.hero__grid {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 560px);
  align-items: center;
  gap: clamp(36px, 5vw, 72px);
}
.hero__content p {
  max-width: 560px;
  margin-top: 36px;
  color: #6b6b6b;
  font-size: 19px;
  line-height: 1.7;
}
.hero__content .btn {
  min-width: 236px;
  margin-top: 34px;
  justify-content: space-between;
}
.hero__media {
  min-width: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.hero__media img {
  display: block;
  width: min(100%, 540px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 26px 42px rgba(255, 121, 0, 0.12));
}

.section-line {
  height: 1px;
  margin-bottom: 84px;
  background: rgba(0, 0, 0, 0.17);
}

.logos-section {
  padding: 28px 0 12px;
  overflow: hidden;
}
.logos-section h2 {
  margin-bottom: 44px;
}
.logos-section .brand-slide img[alt=Kcell] {
  max-height: 64px;
}
.logos-section .brand-slide img[alt="Formula 7"] {
  max-height: 52px;
}

.brands-slider {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 56px;
  align-items: center;
  gap: 20px;
}
.brands-slider--full {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 0 28px;
}
.brands-slider--partners .brand-slide img {
  max-width: 86%;
  max-height: 58px;
}
.brands-slider__viewport {
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
}
.brands-slider__viewport:active {
  cursor: grabbing;
}
.brands-slider__track {
  display: flex;
  align-items: center;
  gap: 24px;
  transition: transform 0.35s ease;
  will-change: transform;
}
.brands-slider__nav {
  width: 56px;
  height: 56px;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.66);
  display: grid;
  place-items: center;
  color: #3f3f3f;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.brands-slider__nav:hover {
  background: #fff;
  border-color: rgba(255, 138, 0, 0.45);
  transform: translateY(-2px);
}
.brands-slider__nav:disabled {
  opacity: 0.35;
  cursor: default;
}
.brands-slider__nav:disabled:hover {
  background: rgba(255, 255, 255, 0.66);
  border-color: rgba(0, 0, 0, 0.14);
  transform: none;
}
.brands-slider__nav span {
  margin-top: -2px;
  font-size: 32px;
  line-height: 1;
}

.brand-slide {
  min-height: 134px;
  padding: 18px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.brand-slide img {
  max-width: 84%;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) saturate(0);
  opacity: 0.48;
  mix-blend-mode: multiply;
  transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}
.brand-slide:hover img {
  filter: grayscale(0) saturate(1);
  opacity: 1;
  transform: scale(1.045);
}

.marquee {
  width: 100%;
  overflow: hidden;
  user-select: none;
}

.logo-row {
  display: flex;
  align-items: center;
  gap: clamp(70px, 10vw, 170px);
  width: max-content;
  animation: marquee 30s linear infinite;
}
.logo-row img {
  flex: 0 0 auto;
  width: auto;
  max-width: 220px;
  max-height: 62px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.58;
  mix-blend-mode: multiply;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.service-list {
  margin-top: 50px;
  display: grid;
  gap: 52px;
}

.service-card {
  position: relative;
  min-height: 160px;
  padding: 38px 54px 38px 74px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.045);
  display: grid;
  grid-template-columns: 72px minmax(250px, 1fr) minmax(380px, 420px);
  gap: 28px;
  align-items: center;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 10px;
  border-radius: 18px 0 0 18px;
  background: var(--gradient);
}
.service-card__icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.service-card__icon img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}
.service-card__content h3 {
  font-size: clamp(20px, 2vw, 26px);
}
.service-card__content p {
  margin-top: 8px;
  color: #767676;
}
.service-card__content a {
  display: inline-flex;
  margin-top: 22px;
  color: var(--orange);
  font-weight: 600;
}
.service-card__content a::after {
  content: "⟶";
  margin-left: 12px;
}
.service-card__tags {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 18px 24px;
  align-items: start;
}
.service-card__tags--single {
  grid-template-columns: 1fr;
}

.service-chip {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #666;
}
.service-chip__icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-chip__icon img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}
.service-chip b {
  font-weight: 500;
}
.service-chip--long {
  justify-self: start;
}

.calc {
  position: relative;
  min-height: 390px;
  padding: 42px 42px 40px;
  border-radius: 18px;
  color: #fff;
  background: var(--gradient);
  overflow: hidden;
}
.calc__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}
.calc__head a {
  white-space: nowrap;
}
.calc__head a::after {
  content: "⟶";
  margin-left: 12px;
}
.calc__form {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 212px;
  gap: 28px;
  align-items: end;
}
.calc label {
  display: grid;
  gap: 10px;
}
.calc label span {
  font-size: 14px;
  opacity: 0.86;
}
.calc select,
.calc input {
  width: 100%;
  height: 56px;
  padding: 0 22px;
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  color: #fff;
  background: transparent;
  outline: 0;
  font-weight: 700;
}
.calc select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #fff 50%), linear-gradient(135deg, #fff 50%, transparent 50%);
  background-position: calc(100% - 24px) 24px, calc(100% - 17px) 24px;
  background-size: 7px 7px;
  background-repeat: no-repeat;
}
.calc option {
  color: #111;
}
.calc input::placeholder {
  color: rgba(255, 255, 255, 0.8);
}
.calc__results {
  position: relative;
  z-index: 1;
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1.35fr 0.88fr 0.82fr 0.82fr 0.95fr;
  gap: 28px;
}
.calc__results div {
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.9);
}
.calc__results small {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 14px;
}
.calc__results small::before {
  content: "";
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  background-image: url("../assets/img/calc-result-icon.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.calc__results b {
  display: block;
  font-size: 20px;
  line-height: 1;
}
.calc__shape {
  position: absolute;
  right: 38px;
  bottom: 16px;
  width: 230px;
  opacity: 0.24;
  transform: rotate(-34deg);
}

.tabs {
  margin-top: 42px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: clamp(26px, 5vw, 86px);
  overflow-x: auto;
  scrollbar-width: none;
}
.tabs::-webkit-scrollbar {
  display: none;
}
.tabs button {
  position: relative;
  flex: 0 0 auto;
  padding: 0 0 16px;
  border: 0;
  color: #666;
  background: transparent;
  font-weight: 600;
}
.tabs button.is-active {
  color: #111;
}
.tabs button.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -19px;
  width: 34px;
  height: 2px;
  background: #111;
}

.portfolio-slider {
  margin-top: 46px;
}
.portfolio-slider__viewport {
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
}
.portfolio-slider__viewport:active {
  cursor: grabbing;
}
.portfolio-slider__track {
  display: flex;
  gap: 40px;
  counter-reset: case;
  transition: transform 0.35s ease;
  will-change: transform;
}

.case-card {
  position: relative;
  flex: 0 0 calc((100% - 40px) / 2);
  min-height: 440px;
  padding: 48px 38px;
  overflow: hidden;
  counter-increment: case;
  border: 1.5px solid rgba(255, 122, 0, 0.55);
  border-radius: 18px;
  background: radial-gradient(circle at 83% 16%, rgba(255, 255, 255, 0.78), transparent 28%), #fff3e6;
}
.case-card::after {
  content: counter(case, decimal-leading-zero);
  position: absolute;
  right: 28px;
  top: 18px;
  z-index: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 82px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.06em;
  pointer-events: none;
}
.case-card > * {
  position: relative;
  z-index: 1;
}
.case-card small {
  color: #777;
  font-size: 15px;
}
.case-card h3 {
  margin-top: 30px;
}
.case-card p {
  margin-top: 24px;
  color: #555;
}
.case-card b {
  display: block;
  margin-top: 20px;
  font-size: 21px;
}
.case-card em {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 0;
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
}
.case-card em img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex: 0 0 auto;
}
.case-card strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--orange-dark);
  font-size: 34px;
}
.case-card strong img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex: 0 0 auto;
}
.case-card a {
  display: inline-flex;
  margin-top: 10px;
  font-weight: 600;
}
.case-card a::after {
  content: "⟶";
  margin-left: 18px;
}

.slider-dots {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.slider-dots button {
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #d6d6d6;
}
.slider-dots button.is-active {
  background: #666;
}

.numbers__grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1.45fr 0.68fr 0.68fr;
  gap: 40px;
}

.number-card {
  min-height: 220px;
  padding: 42px 44px;
  border-radius: 18px;
  color: #fff;
  background: var(--gradient);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.number-card b {
  font-size: clamp(56px, 7vw, 84px);
  line-height: 0.9;
  letter-spacing: -0.04em;
}
.number-card span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
}

.request-box {
  position: relative;
  min-height: 500px;
  padding: 48px 70px 48px 48px;
  border-radius: 18px;
  background: #fee8d0;
  display: grid;
  grid-template-columns: minmax(300px, 420px) minmax(0, 1fr);
  gap: clamp(42px, 5vw, 76px);
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.request-box::before {
  content: none;
}
.request-box__media {
  position: relative;
  z-index: 0;
  min-height: 404px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  pointer-events: none;
}
.request-box__media img {
  position: static;
  width: min(100%, 420px);
  max-width: 100%;
  max-height: 420px;
  opacity: 0.78;
  object-fit: contain;
  filter: drop-shadow(0 22px 34px rgba(255, 111, 0, 0.16));
  transform: none;
}

.request-form {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 690px;
  margin: 0 0 0 auto;
  padding: 0;
  display: grid;
  gap: 26px;
}
.request-form h2 {
  margin-bottom: 8px;
}
.request-form input {
  width: 100%;
  height: 56px;
  padding: 0 36px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 999px;
  background: #fff;
  outline: 0;
}
.request-form .btn {
  width: 100%;
  min-height: 56px;
}

.advantages__grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.adv-card {
  min-height: 264px;
  padding: 34px 22px 22px;
  border: 1.5px solid rgba(255, 138, 0, 0.55);
  border-radius: 24px;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.adv-card:hover {
  color: #fff;
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 18px 40px rgba(255, 138, 0, 0.18);
}
.adv-card:hover .adv-card__icon img {
  filter: brightness(0) invert(1);
}
.adv-card:hover p {
  color: rgba(255, 255, 255, 0.78);
}
.adv-card__icon {
  width: 100%;
  min-height: 74px;
  margin-bottom: 22px;
  color: var(--orange);
}
.adv-card__icon img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}
.adv-card h3 {
  margin-bottom: 12px;
  font-size: clamp(18px, 2vw, 22px);
}
.adv-card p {
  color: #777;
  font-size: 15px;
  line-height: 1.5;
}

.site-bottom {
  position: relative;
  margin-top: 64px;
  padding: 110px 0 84px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(243, 240, 236, 0) 0%, rgba(245, 242, 236, 0.14) 10%, rgba(251, 247, 233, 0.52) 22%, rgba(252, 243, 219, 0.92) 38%, rgb(252, 243, 219) 100%), radial-gradient(circle at 9% 78%, rgba(247, 208, 84, 0.4), transparent 24%), radial-gradient(circle at 88% 86%, rgba(219, 128, 50, 0.24), transparent 22%);
}
.site-bottom::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -140px;
  height: 220px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(243, 240, 236, 0) 0%, rgba(243, 240, 236, 0.55) 48%, rgba(252, 243, 219, 0.98) 100%);
  filter: blur(12px);
}

.partners {
  position: relative;
  z-index: 1;
  padding-top: 0;
  overflow: hidden;
}
.partners h2 {
  margin-bottom: 58px;
}
.partners .brands-slider--full {
  margin-top: 8px;
}

.footer {
  position: relative;
  z-index: 1;
  margin-top: 96px;
  background: transparent;
}
.footer .logo img {
  width: 130px;
}
.footer__box {
  min-height: 160px;
  padding: 30px 54px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.9);
  display: grid;
  grid-template-columns: 1fr auto auto 1fr auto;
  align-items: center;
  gap: 36px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.04);
}
.footer__box > span {
  justify-self: center;
  color: #777;
  text-align: center;
}
.footer__box > span a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.socials {
  display: flex;
  align-items: center;
  gap: 18px;
}
.socials a {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 138, 0, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  display: grid;
  place-items: center;
  color: #2d2d2d;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.socials a:hover {
  border-color: rgba(255, 138, 0, 0.6);
  background: #fff;
  transform: translateY(-2px);
}
.socials a[aria-label=YouTube] img {
  width: 27px;
  height: auto;
}
.socials img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.socials svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.FooterMenu {
  text-align: center;
  margin-top: 5px;
}
.FooterMenu a {
  color: #777;
  text-decoration: underline;
}

@media (max-width: 1180px) {
  .header__top {
    padding: 0 26px;
    gap: 24px;
  }
  .header__nav {
    gap: 20px;
  }
  .header__actions {
    gap: 12px;
  }
  .header__actions .btn {
    padding: 0 20px;
  }
  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 500px);
    gap: 40px;
  }
  .service-card {
    grid-template-columns: 72px 1fr;
    padding-right: 38px;
  }
  .service-card__tags {
    grid-column: 2;
    max-width: 540px;
  }
  .calc__form, .calc__results {
    grid-template-columns: repeat(2, 1fr);
  }
  .request-box {
    grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
    padding: 42px 44px;
    gap: 38px;
  }
  .request-box__media img {
    width: min(100%, 360px);
    max-height: 370px;
  }
  .advantages__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__box {
    grid-template-columns: 1fr 1fr;
  }
  .footer__box > span {
    justify-self: start;
    text-align: left;
  }
}
@media (max-width: 900px) {
  .container {
    width: min(100% - 24px, 1280px);
  }
  .section {
    padding-top: 58px;
  }
  .section h2 {
    text-align: center;
  }
  .section-line {
    margin-bottom: 54px;
  }
  .header {
    padding: 10px 0 12px;
    background: rgba(243, 240, 236, 0.95);
  }
  .header__top {
    min-height: 72px;
    grid-template-columns: auto 1fr auto;
    border-radius: 28px;
  }
  .header__top > a:not(.header__logo-mobile) {
    display: none;
  }
  .header .BTNMenu {
    display: block !important;
    position: absolute;
    right: 110px;
    color: #fff;
    padding: 5px 20px;
    border-radius: 20px;
  }
  .header__nav, .header__actions {
    display: none;
  }
  .header__logo-mobile {
    display: inline-flex !important;
  }
  .header__logo-mobile img {
    width: 128px;
  }
  .header__main {
    display: none;
  }
  .logo img {
    width: 126px;
  }
  .burger {
    display: block;
    grid-column: 3;
  }
  .mobile-menu {
    inset: calc(var(--mobile-header-height) + 8px) 12px auto;
    max-height: calc(100dvh - var(--mobile-header-height) - 20px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
  .hero {
    position: relative;
    padding-top: 34px;
  }
  .hero__grid {
    position: relative;
    min-height: 470px;
    grid-template-columns: 1fr;
    display: flex;
    align-items: center;
    justify-content: center;
    isolation: isolate;
  }
  .hero__media {
    position: absolute;
    inset: 0 0 auto;
    z-index: 0;
    min-height: 330px;
    justify-content: center;
    pointer-events: none;
    opacity: 0.16;
  }
  .hero__media img {
    width: min(108%, 500px);
    filter: drop-shadow(0 20px 34px rgba(255, 121, 0, 0.08));
  }
  .hero__content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-top: 72px;
    text-align: center;
  }
  .hero__content h1 {
    max-width: 620px;
    margin-inline: auto;
    font-size: clamp(38px, 7.2vw, 52px);
    line-height: 1;
  }
  .hero__content p {
    margin: 20px auto 0;
    font-size: 16px;
    line-height: 1.5;
  }
  .hero__content .btn {
    width: auto;
    min-width: 238px;
    margin: 22px auto 0;
  }
  .logos-section h2 {
    margin-bottom: 28px;
    text-align: center;
  }
  .partners h2 {
    text-align: center;
  }
  .brands-slider {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 12px;
  }
  .brands-slider--full {
    padding: 0 12px;
  }
  .brands-slider__nav {
    width: 44px;
    height: 44px;
  }
  .brand-slide {
    min-height: 104px;
    padding: 14px 8px;
  }
  .brand-slide img {
    max-height: 44px;
  }
  .service-list {
    margin-top: 34px;
    gap: 22px;
  }
  .service-card {
    min-height: 0;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 18px;
    padding: 30px 24px;
    border-radius: 18px;
    text-align: center;
  }
  .service-card__icon {
    justify-content: center;
  }
  .service-card__icon img {
    width: 46px;
    height: 46px;
  }
  .service-card__content h3 br {
    display: none;
  }
  .service-card__content a {
    justify-content: center;
  }
  .service-card__tags {
    grid-column: 1;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 14px;
    max-width: 100%;
  }
  .service-card__tags--grid {
    grid-template-columns: repeat(2, minmax(128px, 1fr));
    width: min(100%, 390px);
  }
  .service-chip {
    justify-content: center;
    text-align: center;
  }
  .service-chip--long {
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    text-align: center;
  }
  .service-chip__icon {
    width: 52px;
    height: 52px;
  }
  .service-chip__icon img {
    width: 52px;
    height: 52px;
  }
  .calc {
    padding: 38px 22px;
    border-radius: 22px;
  }
  .calc__head {
    display: block;
  }
  .calc__head a {
    display: inline-block;
    margin-top: 20px;
  }
  .calc__form, .calc__results {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .calc__shape {
    display: none;
  }
  .tabs {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 14px;
    overflow: visible;
    padding-bottom: 18px;
  }
  .tabs button {
    max-width: 100%;
    padding: 8px 10px 12px;
    border-radius: 999px;
    white-space: normal;
    line-height: 1.2;
  }
  .tabs button.is-active::after {
    left: 50%;
    bottom: 4px;
    transform: translateX(-50%);
  }
  .portfolio-slider__track {
    gap: 18px;
  }
  .case-card {
    flex-basis: 100%;
    min-height: 380px;
  }
  .slider-dots {
    margin-top: 34px;
  }
  .numbers h2 {
    text-align: center;
  }
  .numbers__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .number-card {
    min-height: 170px;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
  }
  .request-box {
    display: block;
    min-height: auto;
    padding: 42px 24px;
  }
  .request-box::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url("../assets/img/request-wire.png") center center/min(74%, 380px) auto no-repeat;
    opacity: 0.12;
    pointer-events: none;
  }
  .request-box__media {
    display: none;
  }
  .request-form {
    position: relative;
    z-index: 2;
    max-width: 690px;
    margin-inline: auto;
    gap: 18px;
    padding: 0;
    text-align: center;
  }
  .request-form input {
    height: 60px;
    padding: 0 24px;
  }
  .advantages__grid {
    margin-top: 32px;
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .adv-card {
    min-height: 240px;
    align-items: center;
    text-align: center;
  }
  .adv-card__icon {
    display: flex;
    justify-content: center;
  }
  .site-bottom {
    margin-top: 46px;
    padding-top: 86px;
  }
  .footer {
    margin-top: 48px;
  }
  .footer__box {
    padding: 28px;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 22px;
    text-align: center;
  }
  .footer__box > span {
    justify-self: center;
    text-align: center;
  }
}
@media (max-width: 575px) {
  .op-modal[aria-hidden=false] {
    padding: 20px 12px;
  }
  .op-modal__dialog {
    margin: 20px auto;
  }
  .op-modal .modal-content {
    padding: 34px 20px 26px;
    border-radius: 22px;
  }
  .op-modal .modal-title {
    font-size: 30px;
  }
  .op-modal .close {
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
  }
  .op-modal .form-control {
    height: 50px;
    font-size: 15px;
  }
  .op-modal .row {
    display: grid;
    gap: 14px;
  }
  .op-modal [class*=col-] {
    width: 100%;
  }
}
@media (max-width: 560px) {
  body {
    font-size: 15px;
  }
  .btn {
    width: 100%;
    min-height: 56px;
    padding: 0 22px;
  }
  .header__top {
    padding: 0 18px;
  }
  .header__logo-mobile img {
    width: 118px;
  }
  .logo img {
    width: 118px;
  }
  .logo__mark {
    width: 46px;
    height: 46px;
  }
  .mobile-menu {
    inset-inline: 8px;
    border-radius: 22px;
  }
  .hero {
    padding-top: 26px;
  }
  .hero__grid {
    min-height: 420px;
  }
  .hero__media {
    min-height: 300px;
    opacity: 0.17;
  }
  .hero__media img {
    width: min(126%, 430px);
  }
  .hero__content {
    padding-top: 54px;
  }
  .hero__content h1 {
    font-size: clamp(34px, 10vw, 44px);
  }
  .hero__content p {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.45;
  }
  .hero__content .btn {
    width: auto;
    min-width: 220px;
    min-height: 52px;
    margin-top: 20px;
  }
  .service-card__tags--grid {
    grid-template-columns: 1fr;
    width: min(100%, 260px);
  }
  .tabs {
    gap: 10px;
  }
  .tabs button {
    padding-inline: 9px;
    font-size: 14px;
  }
  .case-card {
    padding: 30px 22px;
  }
  .case-card strong {
    font-size: 28px;
  }
  .number-card {
    padding: 32px 26px;
  }
  .request-box {
    padding: 34px 18px;
    border-radius: 22px;
  }
  .request-box::before {
    background-size: min(118%, 430px) auto;
    opacity: 0.1;
  }
  .socials a {
    width: 44px;
    height: 44px;
  }
}
.op-modal[aria-hidden=true] {
  display: none;
}
.op-modal[aria-hidden=false] {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: block;
  padding: 32px 16px;
  overflow: auto;
  background: rgba(6, 6, 6, 0.56);
  backdrop-filter: blur(4px);
}
.op-modal__dialog {
  width: min(560px, 100%);
  margin: 40px auto;
}
.op-modal .modal-content {
  position: relative;
  overflow: hidden;
  padding: 42px 46px 36px;
  border: 0;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(6, 6, 6, 0.24);
}
.op-modal .modal-content::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle at 100% 0, rgba(255, 138, 0, 0.16), transparent 34%), radial-gradient(circle at 0 100%, rgba(245, 191, 23, 0.14), transparent 34%);
}
.op-modal .modal-content > * {
  position: relative;
  z-index: 1;
}
.op-modal .modal-header {
  display: block;
  padding: 0;
  margin-bottom: 24px;
  border: 0;
}
.op-modal .modal-title {
  margin: 0;
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  color: #060606;
  text-transform: uppercase;
}
.op-modal .modal-body {
  padding: 0;
}
.op-modal .close {
  position: absolute;
  top: -30px;
  right: -30px;
  z-index: 3;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(6, 6, 6, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.op-modal .close::before, .op-modal .close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  background: #060606;
  transform-origin: center;
}
.op-modal .close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.op-modal .close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.op-modal .close:hover {
  transform: rotate(90deg);
  box-shadow: 0 12px 28px rgba(6, 6, 6, 0.12);
}
.op-modal form {
  display: grid;
  gap: 12px;
}
.op-modal .form-group {
  margin: 0;
}
.op-modal .form-control {
  width: 100%;
  height: 54px;
  padding: 0 22px;
  border: 1px solid rgba(6, 6, 6, 0.16);
  border-radius: 999px;
  background-color: #fff;
  color: #060606;
  font-size: 16px;
  outline: none;
  box-shadow: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.op-modal .form-control::placeholder {
  color: #737373;
}
.op-modal .form-control:focus {
  border-color: #ff8a00;
  box-shadow: 0 0 0 4px rgba(255, 138, 0, 0.14);
}
.op-modal select.form-control {
  appearance: none;
  padding-right: 48px;
  background-image: linear-gradient(45deg, transparent 50%, #060606 50%), linear-gradient(135deg, #060606 50%, transparent 50%);
  background-position: calc(100% - 24px) 50%, calc(100% - 18px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.op-modal .btns,
.op-modal button[type=submit] {
  width: 100%;
  height: 56px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #fb5a00 0%, #f5bf17 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 18px 34px rgba(255, 138, 0, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.op-modal .btns:hover,
.op-modal button[type=submit]:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 40px rgba(255, 138, 0, 0.3);
}
.op-modal .TextCall {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  text-align: center;
  color: #737373;
}
.op-modal .TextCall a {
  color: #060606;
  font-weight: 700;
  text-decoration: none;
}
.op-modal .TextCall a:hover {
  color: #ff8a00;
}
.op-modal .op-modal__error {
  display: none;
  margin: 0 0 12px;
  padding: 12px 14px;
  border: 1px solid rgba(211, 51, 51, 0.18);
  border-radius: 14px;
  background: #fff2f2;
  color: #9b1c1c;
  font-size: 14px;
  line-height: 1.35;
}
.op-modal .form-group.op-has-error .form-control {
  border-color: #d33;
  box-shadow: 0 0 0 4px rgba(211, 51, 51, 0.12);
}

body.op-modal-open {
  overflow: hidden;
}/*# sourceMappingURL=style.css.map */