:root {
  --accent: #ee3937;
  --dark: #171717;
  --white: #ffffff;

  --glass: rgba(255, 255, 255, .92);
  --dark-glass: rgba(0, 0, 0, 0.35);
  --stroke: rgba(23, 23, 23, .10);
  --shadow: -30px 0 90px rgba(0, 0, 0, .22);

  --h-glass: rgba(255, 255, 255, .25);
  --h-glass2: rgba(255, 255, 255, .55);
  --h-glass3: rgba(0, 0, 0, 0.70);
  --h-stroke: rgba(255, 255, 255, 0.08);
  --h-shadow: 0 16px 60px rgba(0, 0, 0, .12);
  --h-radius: 105px;

  --font-display: "Orbitron", monospace;
  --font-body: "Manrope", sans-serif;

--padding-section: clamp(72px, 8vw, 80px) 0;

  --bm-big: 290px;
  --bm-small: 175px;
  --bm-hub: 135px;


  --bg: #0b0c0f;
  --fg: #f3f4f6;
  --muted: #3f434a;
}

*::-webkit-input-placeholder {
  color: #F5F7FD;
  opacity: 1;
}

*:-moz-placeholder {
  color: #F5F7FD;
  opacity: 1;
}

*::-moz-placeholder {
  color: #F5F7FD;
  opacity: 1;
}

*:-ms-input-placeholder {
  color: #F5F7FD;
  opacity: 1;
}


body input:focus:required:invalid,
body textarea:focus:required:invalid {}

body input:required:valid,
body textarea:required:valid {}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 160%;
  color: #3E4550;
  overflow-x: hidden;
  margin: 0;
  background-color: #fff;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
}

input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

button,
textarea,
input.text,
input[type="text"],
input[type="button"],
input[type="submit"] {
  -webkit-appearance: none;
}

a,
button,
input,
img {
  transition: all 0.3s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
  font-weight: normal;
}

.wrapper {
  overflow: hidden;
}

a {
  text-decoration: none;
  outline: none;
  color: unset;
}

* {
  outline: none !important;
}

ul {
  padding: 0;
  margin: 0;
}

ul li {
  list-style-type: none;
  outline: none;
}

img {
  outline: none;
  display: block;
}

p {
  padding: 0;
  margin: 0;
}

form {
  margin: 0;
}

main {
  min-height: 100vh;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}


@media (min-width: 1600px) {
  .container {
    max-width: 1600px;
  }
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: rgba(23, 23, 23, 0.05);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(110, 110, 110, 0.92) 0%, rgba(80, 80, 80, 0.96) 100%);
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(130, 130, 130, 0.95) 0%, rgba(95, 95, 95, 0.98) 100%);
  border: 2px solid transparent;
  background-clip: padding-box;
}

html {
  scrollbar-width: thin;
  scrollbar-color: rgba(95, 95, 95, 0.95) rgba(23, 23, 23, 0.05);
}

.hamburger {
  cursor: pointer;
}

.hamburger svg {
  height: 3em;
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line {
  fill: none;
  stroke: white;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1;
  /* Define the transition for transforming the Stroke */
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line-top-bottom {
  stroke-dasharray: 12 63;
}

.hamburger.is-open svg {
  transform: rotate(-45deg);
}

.hamburger.is-open svg .line-top-bottom {
  stroke-dasharray: 20 300;
  stroke-dashoffset: -32.42;
}


.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 5px 15px;
  border-radius: 999px;

  color: var(--white);
  font-size: 14px;
  letter-spacing: .2px;

  background: rgba(238, 57, 55, .08);
  border: 1px solid rgba(238, 58, 55, 50%);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  user-select: none;
}

.badge>span {
  position: relative;
  flex: 0 0 auto;

  width: 5px;
  height: 5px;
  border-radius: 50%;

  background: var(--accent);
  box-shadow:
    0 0 0 4px rgba(238, 57, 55, .14),
    0 8px 20px rgba(238, 57, 55, .30);

  transform: translateZ(0);
  animation: pulse 2s infinite;
}

/* “кольцо” вокруг точки */
.badge>span::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 999px;

  border: 1px solid rgba(238, 57, 55, .35);
  opacity: 0;

  animation: badgeDotRing 1.9s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.85);
  }
}

/* уважение к настройкам системы */
@media (prefers-reduced-motion: reduce) {

  .badge>span,
  .badge>span::after {
    animation: none;
  }
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  animation: fadeInUp 1s 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 9999px;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.05em;
  font-weight: 600;
  min-height: 44px;
  min-width: 44px;
  cursor: pointer;
  transition: transform 150ms cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 150ms ease, background 150ms ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  /* Overflow Hidden */
}

.btn svg {
  width: 16px;
}

/* Hover States */
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity 150ms ease;
}

.btn:hover::before {
  opacity: 1;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn--primary {
  background: var(--accent);
  color: var(--white);
}

.btn--primary:hover {
  box-shadow: var(--accent);
}

.btn--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

.btn--green {
  background: #16a34a;
  color: var(--white);
  border: 1px solid #15803d;
}

.btn--green:hover {
  background: #15803d;
  border-color: #166534;
}


.btn--sm {
  padding: 8px 16px;
  font-size: 14px;
  max-height: 36px;
}

.btn--lg {
  padding: 16px 32px;
  font-size: 16px;
  max-height: 52px;
}


.button-cta {
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: #000;
  color: #fff;
  border-radius: 10rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  padding-left: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background-color 0.3s;
}

.button-cta__icon-wrapper {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  position: relative;
  color: #000;
  background-color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.button-cta:hover {
  background-color: #fff;
  color: black;
}

.button-cta:hover .button-cta__icon-wrapper {
  color: #fff;
  background-color: #000;
}

.button-cta__icon-svg--copy {
  position: absolute;
  transform: translate(-150%, 150%);
}

.button-cta:hover .button-cta__icon-svg:first-child {
  transition: transform 0.3s ease-in-out;
  transform: translate(150%, -150%);
}

.button-cta:hover .button-cta__icon-svg--copy {
  transition: transform 0.3s ease-in-out 0.1s;
  transform: translate(0);
}

.btn--scroll {
  gap: 10px;
}

.btn--scroll .btn__icon {
  width: 25px;
  height: 25px;
  padding: 4px;
  opacity: .9;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 99px;
  transition: transform .18s ease, opacity .18s ease;
}

.btn--scroll:hover .btn__icon {
  transform: translateY(2px);
  opacity: 1;
}

@media (prefers-reduced-motion: no-preference) {
  .btn--scroll .btn__icon {
    animation: btnArrowHint 1.35s ease-in-out infinite;
  }

  .btn--scroll:hover .btn__icon {
    animation: none;
  }

  @keyframes btnArrowHint {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(3px);
    }
  }
}

.btn__view-all {
  margin-top: 30px;
  border: none;
  background: none;
  cursor: pointer;
}

.btn__view-all span {
  padding-bottom: 7px;
  letter-spacing: 4px;
  font-size: 14px;
  padding-right: 15px;
  text-transform: uppercase;
}

.btn__view-all svg {
  transform: translateX(-8px);
  transition: all 0.3s ease;
}

.btn__view-all:hover svg {
  transform: translateX(0);
}

.btn__view-all:active svg {
  transform: scale(0.9);
}

.btn__view-all .hover-underline-animation {
  position: relative;
  color: var(--dark);
  padding-bottom: 5px;
}

.btn__view-all .hover-underline-animation:after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--dark);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.btn__view-all:hover .hover-underline-animation:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}


body.no-scroll {
  overflow: hidden;
}

/* =========================
   header
========================= */

.header {
  position: fixed;
  left: 0;
  right: 0;
  top: 18px;
  z-index: 1000;
  transition: top .28s ease;
}

.header .container {
  background: rgb(255 255 255 / 0%);
  border: 1px solid var(--h-stroke);
  border-radius: var(--h-radius);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background-color .28s ease, border-color .28s ease, border-radius .28s ease;
}

.header.is-sticky {
  top: 12px;
}

.header.is-sticky .line {
  stroke: #000000;
}

.header.is-on-light .container,
.header.is-on-light .sub-menu {
  background: var(--dark-glass);
  border-color: rgba(255, 255, 255, .14);
  box-shadow: var(--h-shadow);
}

.header.is-sticky .container,
.header.is-sticky .sub-menu {
  background: var(--h-glass2);
  border-color: rgba(23, 23, 23, .12);
  box-shadow: var(--h-shadow);
  transition:
    background .35s ease,
    border-color .35s ease,
    box-shadow .35s ease,
    backdrop-filter .35s ease;
}

.header.is-sticky.is-on-light .container,
.header.is-sticky.is-on-light .sub-menu {
  background: var(--dark-glass);
  border-color: rgba(255, 255, 255, .14);
  box-shadow: var(--h-shadow);
}

.header .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 25px;
  transition: max-height .35s ease, padding .35s ease, min-height .35s ease;
}

.header,
.header .container,
.header .row {
  overflow: visible;
}

.logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 120px;
  height: 58px;
}

.logo span,
.logo img {
  transition:
    opacity .45s ease,
    transform .45s ease,
    visibility .45s ease;
}

.logo span {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  opacity: 0;
  visibility: hidden;
  font-size: 41px;
  letter-spacing: 5px;
  font-weight: 900;
  color: var(--accent);
  font-family: var(--font-display);
  white-space: nowrap;
}

.logo img {
  position: absolute;
  left: 0;
  top: 50%;
  width: 58px;
  height: auto;
  transform: translateY(-50%) translateX(0);
  opacity: 0;
  visibility: hidden;
}

.logo img.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

.logo span.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

.logo img.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50%) translateX(-8px);
}

.logo span.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50%) translateX(8px);
}

@media (min-width: 1199px) {
  .logo img.is-visible {
    opacity: 0;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
  }
}

.actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contacts {
  display: flex;
  flex-direction: column;
  gap: 0px;
  padding-right: 6px;
}

.contacts a {
  text-decoration: none;
  color: var(--white);
  font-size: 12px;
  letter-spacing: .15px;
  transition: color .18s ease, opacity .18s ease;
}

.contacts a:first-child {
  opacity: .58;
}

.contacts a:last-child {
  font-size: 16px;
}

.contacts a:hover {
  color: var(--accent);
  opacity: 1;
}

.header .hamburger {
  display: none;
}

/* =========================
   MENU desktop
========================= */
.menu {
  position: relative;
}

.menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 26px;
}

.menu-item-has-children .sub-menu {
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 5px;
}


.menu-item-has-children .sub-menu li {
  width: 100%;
}

.menu a {
  border: none;
  background: none;
  cursor: pointer;
  color: var(--white);
  white-space: nowrap;
}

.menu a span {
  padding-bottom: 7px;
  letter-spacing: 2px;
  font-size: 14px;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.menu a svg {
  transform: translateX(-8px);
  transition: all 0.3s ease;
}

.menu a:hover svg {
  transform: translateX(0);
}

.menu a:active svg {
  transform: scale(0.9);
}

.hover-underline-animation {
  position: relative;
  padding-bottom: 20px;
}

.hover-underline-animation:after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: var(--accent);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.menu a:hover .hover-underline-animation:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}


/* =========================
   dropdown desktop
========================= */
.menu-item-has-children {
  position: relative;
  z-index: 30;
}

.menu-item-has-children::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 36px;
  /* ровно твой gap */
  background: transparent;
}

.menu-item-has-children>a {
  position: relative;
  padding-right: 30px;
}


.menu-item-has-children>a::before {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 2px;
  height: 12px;
  margin-top: -6px;
  border-radius: 99px;
  background: var(--white);
  transition: transform .18s ease, background-color .18s ease, opacity .18s ease;
}

.menu-item-has-children>a::after {
  content: "";
  position: absolute;
  right: 11px;
  top: 50%;
  width: 12px;
  height: 2px;
  margin-top: -1px;
  border-radius: 99px;
  background: var(--white);
  transition: transform .18s ease, background-color .18s ease, opacity .18s ease;
}

.menu-item-has-children:hover>a::before,
.menu-item-has-children:hover>a::after {
  background: var(--accent);
}

.menu-item-has-children:hover>a::before,
.menu-item-has-children:hover>a::after {
  transform: rotate(90deg);
}

.sub-menu {
  position: absolute;
  top: calc(100% + 36px);
  left: 0;
  min-width: 360px;
  padding: 10px;
  margin: 0;
  list-style: none;
  background: var(--h-glass);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 18px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  transform: translateY(10px) scale(.98);
  pointer-events: none;
  transition:
    background .28s ease,
    border-color .28s ease,
    box-shadow .28s ease,
    opacity .28s ease,
    transform .28s ease;
  z-index: 50;
  isolation: isolate;
}

.sub-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(0, 0, 0, 0.06);
  pointer-events: none;

}

.menu-item-has-children:hover>.sub-menu,
.menu-item-has-children>.sub-menu:hover {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}


.sub-menu li a {
  position: relative;
  display: flex;
  width: 100%;
  justify-content: flex-start;
  padding: 12px 12px;
  border-radius: 14px;
  background: transparent;
}

.sub-menu li a:hover {
  background: rgba(164, 164, 164, 0.29);
  transform: none;
}


/* =========================
   more_lang
========================= */

.translate_wrapper {
  margin-right: 10px;
}

.more_lang {
  position: absolute;
  background: #fff;
  transform: translateY(-1vw);
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  pointer-events: none;
  border-radius: 100px;
  border: 2px solid #fff;
  transition: all 0.35s cubic-bezier(.25, 1.15, .35, 1.15);
}

.more_lang>.lang {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 100px;
  border: 2px solid #333333;
  transition: 0.3s ease;
}

.more_lang>.lang.selected {
  display: none;
}

.more_lang>.lang .lang-txt {
  font-weight: 500;
  text-transform: uppercase;
}

.translate_wrapper.active .more_lang {
  opacity: 1;
  transform: translateY(5px);
  visibility: visible;
  pointer-events: auto;
}

.more_lang>.lang:hover,
.more_lang>.lang:active {
  background: #fff;
  border: 2px solid var(--accent);
}

.more_lang>.lang:hover span {
  color: #000000;
}

.translate_wrapper:hover,
.translate_wrapper.active {
  color: #000000;
}

.translate_wrapper:hover .current_lang>.lang,
.translate_wrapper.active .current_lang>.lang {
  color: #000000;
  border-radius: 100px;
  border: 2px solid var(--accent);
  background-color: var(--accent);
}

.current_lang>.lang {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  background: rgba(238, 57, 55, .08);
  border: 1px solid rgba(238, 58, 55, 50%);
  height: 50px;
  width: 50px;
  transition: .3s ease;
  cursor: pointer;
  z-index: 9;
}

.current_lang>.lang .lang-txt {
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white);
}

/* =========================
   MOBILE rules
========================= */

@media (max-width: 1599px) {
  .header .row {
    flex-wrap: nowrap;
  }

  .header .contacts {
    display: none;
  }

  .menu ul {
    gap: 12px;
  }

  .menu a span {
    font-size: 12px;
  }

}

@media (max-width: 1199px) {
  .menu {
    display: none;
  }

  .header .hamburger {
    display: flex;
  }

  .actions .button-cta {
    height: 50px;
    width: 50px;
    justify-content: center;
    padding-left: 0;
    padding: 0;
  }
}

@media (max-width: 900px) {
  .header .row {
    max-height: 78px;
  }

  .header.is-sticky .row {
    max-height: 60px;
  }

  .menu {
    display: none;
  }

  .logo img {
    width: 58px;
  }
}

@media (max-width: 767px) {
  .header {
    top: 12px;
    padding-right: 15px;
    padding-left: 15px;
  }
}


@media (min-width: 1200px) {
  .mnav {
    display: none;
  }
}

@media (max-width: 900px) {

  .header .translate_wrapper,
  .header .contacts,
  .header .button-cta {
    display: none;
  }
}

.mnav {
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
}

.mnav__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .48);
  opacity: 0;
  transition: opacity .22s ease;
}

.mnav__panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(390px, 92vw);
  background: var(--h-glass3);
  border-left: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  transform: translateX(110%);
  transition: transform .32s cubic-bezier(.2, .85, .2, 1);

  padding: 18px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  overflow: auto;
}

.mnav.is-open {
  pointer-events: auto;
}

.mnav__panel .button-cta {
  width: 100%;
  background-color: var(--accent);
}

.mnav__panel .button-cta:hover {
  background-color: #fff;
  color: black;
}

.mnav__panel .button-cta:hover .button-cta__icon-wrapper {
  color: #fff;
  background-color: #000;
}

.mnav.is-open .mnav__overlay {
  opacity: 1;
}

.mnav.is-open .mnav__panel {
  transform: translateX(0);
}

.mnav__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0px 14px;
}

.mnav__title {
  font-size: 14px;
  color: var(--white);
  letter-spacing: .35px;
  text-transform: uppercase;
  opacity: .85;
}

.mnav__close {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(23, 23, 23, .10);
  background: rgba(23, 23, 23, .04);
  cursor: pointer;
  position: relative;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease;
}

.mnav__close:hover {
  transform: translateY(-1px);
  background: rgba(238, 57, 55, .10);
  border-color: rgba(238, 57, 55, .28);
}

.mnav__close::before,
.mnav__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: rgba(23, 23, 23, .75);
  border-radius: 99px;
}

.mnav__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mnav__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mnav__contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(23, 23, 23, .03);
  border: 1px solid rgba(23, 23, 23, .08);
}

.mnav__pill {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 6px 12px;
  border-radius: 16px;
  text-decoration: none;
  color: var(--white);
  font-size: 18px;
  border: 1px solid rgba(238, 58, 55, 50%);
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease;
}

.mnav__pill:hover {
  transform: translateY(-1px);
  background: rgba(238, 57, 55, .08);
  border-color: rgba(238, 57, 55, .22);
}

.mnav__menu {
  padding-right: 2px;
}

.mnav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.mnav__link,
.mnav__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px;
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease;
}

.mnav__link--active {
  color: var(--accent);
}

.mnav__toggle {
  cursor: pointer;
}

.mnav__link:hover,
.mnav__toggle:hover {
  color: var(--accent);
  transform: translateY(-1px);
  background: rgba(238, 57, 55, .08);
  border-color: rgba(238, 57, 55, .22);
}



.mnav__item--has-children>button {
  position: relative;
  padding-right: 30px;
}

.mnav__item--has-children>button::before {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 2px;
  height: 12px;
  margin-top: -6px;
  border-radius: 99px;
  background: var(--white);
  transition: transform .18s ease, background-color .18s ease, opacity .18s ease;
}

.mnav__item--has-children>button::after {
  content: "";
  position: absolute;
  right: 11px;
  top: 50%;
  width: 12px;
  height: 2px;
  margin-top: -1px;
  border-radius: 99px;
  background: var(--white);
  transition: transform .18s ease, background-color .18s ease, opacity .18s ease;
}

.mnav__item--has-children.is-open>button::before,
.mnav__item--has-children.is-open>button::after {
  background: var(--accent);
}

.mnav__item--has-children.is-open>button::before,
.mnav__item--has-children.is-open>button::after {
  transform: rotate(90deg);
}

.mnav__sub {
  list-style: none;
  border-radius: 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .32s cubic-bezier(.2, .85, .2, 1);
}

.mnav__sublink {
  display: block;
  padding: 14px 14px 14px 28px;
  border-radius: 14px;
  text-decoration: none;
  color: var(--white);
  font-size: 18px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background-color .18s ease, transform .18s ease;
}

.mnav__sublink:hover {
  color: var(--accent);
  transform: translateY(-1px);
  background: rgba(238, 57, 55, .08);
  border-color: rgba(238, 57, 55, .22);
}

.mnav__item--has-children.is-open .mnav__sub {
  max-height: var(--smh, 320px);
}


.hero {
  position: relative;
  background: var(--dark);
  min-height: 100svh;
  overflow: hidden;
  padding-top: 120px;
  z-index: 5;
  overflow: visible;
}

.hero .background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero .background video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(1100px 650px at 18% 20%, rgba(255, 255, 255, .26), rgba(255, 255, 255, 0) 58%),
    linear-gradient(180deg, rgba(23, 23, 23, .72), rgba(23, 23, 23, .46) 45%, rgba(23, 23, 23, .80));
}

.hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(80px, 12vh, 200px);
  z-index: 2;
  /* выше ::after, чтобы переход точно был виден */
  background: linear-gradient(to bottom,
      rgba(23, 23, 23, 0),
      rgba(23, 23, 23, .85) 60%,
      #171717 100%);
  pointer-events: none;
}

.decor-page {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.glow-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.35) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.35) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.5s ease;
  opacity: 0.5;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.glow-orb--hero-red {
  width: 500px;
  height: 500px;
  top: 10%;
  right: -100px;
}

.glow-orb--red {
  background: rgba(238, 58, 55, 50%)
}

.glow-orb--hero-red2 {
  width: 300px;
  height: 300px;
  bottom: 20%;
  left: -50px;
}

.glow-orb--red2 {
  background: rgba(238, 58, 55, 50%)
}

.glow-orb--hero-red3 {
  width: 385px;
  height: 385px;
  top: 10%;
  left: -90px;
}

.glow-orb--red3 {
  background: rgba(238, 58, 55, 10%)
}

.glow-orb--hero-red4 {
  width: 660px;
  height: 660px;
  top: 10%;
  right: -300px;
}

.glow-orb--red4 {
  background: rgba(238, 58, 55, 10%)
}

.glow-orb--hero-red5 {
  width: 700px;
  height: 700px;
  top: 10%;
  right: -150px;
  filter: blur(115px);
}

.glow-orb--red5 {
  background: rgba(238, 58, 55, 40%)
}

/* =========================
   MOBILE rules
========================= */

.hero .container {
  position: relative;
  z-index: 2;
}

.hero .hero-wrap {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 40px;
  min-height: calc(100svh - 120px);
}

.hero .hero-wrap .column:first-child {
  width: 640px;
}

.hero h1 {
  font-family: var(--font-display);
  margin: 15px 0 25px;
  color: var(--accent);
  font-size: clamp(2.4rem, 9.5vw + 1rem, 6rem);
  font-weight: 900;
  letter-spacing: 5px;
  line-height: 1.05;
}

.hero h1 span {
  color: transparent;
  -webkit-text-stroke: 1px rgb(255 255 255);
  letter-spacing: 2px;
}

.hero .text {
  color: rgba(255, 255, 255);
  font-size: 18px;
  max-width: 60ch;
  line-height: 1.7;
  border-radius: 18px;
  margin-bottom: 25px;
}

@media (max-width: 1199px) {
  .hero .hero-wrap {
    grid-template-columns: 1fr;
    gap: 22px;
    min-height: unset;
    padding-bottom: 34px;
  }
}

@media (max-width: 900px) {
  .hero {
    padding-top: 110px;
  }

  .hero .decor-page .glow-orb.glow-orb--red.glow-orb--hero-red {
    display: none;
  }


  .hero .hero-wrap {
    gap: 22px;
    padding-bottom: 34px;
  }

  .hero .hero-wrap .column:first-child {
    width: 100%;
  }

  .hero .hero-wrap .column:last-child {
    justify-content: flex-start;
  }

  .hero .hero-wrap .column:last-child img {
    width: min(360px, 100%);
  }
}

@media (max-width: 767px) {
  .hero .text {
    font-size: 15px;
  }
}


/* =========================
   brandmark
========================= */

.brandmark {
  width: min(100%, 560px);
  margin: 0 auto;
}

.brandmark__inner {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
}

.bm-tiles {
  position: absolute;
  inset: 0;
}

.bm-tile {
  position: absolute;
  display: block;
  width: var(--size);
  aspect-ratio: 1 / 1;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%) rotate(45deg);
  transform-origin: center;
}

.bm-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.bm-energy {
  --size: 37.8%;
  --x: 30.7%;
  --y: 50%;
  z-index: 2;
}

.bm-tech {
  --size: 21.8%;
  --x: 57.35%;
  --y: 31.65%;
  z-index: 3;
}

.bm-hub {
  --size: 17.8%;
  --x: 69.45%;
  --y: 50%;
  z-index: 2;
}

.bm-eng {
  --size: 21.8%;
  --x: 57.25%;
  --y: 68.85%;
  z-index: 1;
}

#brandmark .bm-floating-label {
  position: absolute;
  left: 30.7%;
  top: 17.6%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 154px;
  padding: 11px 16px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
  white-space: nowrap;
  background: rgba(23, 23, 23, .68);
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .22);
  z-index: 30;
  transition:
    opacity 280ms ease,
    filter 280ms ease,
    transform 280ms ease,
    box-shadow 280ms ease,
    border-color 280ms ease;
}

#brandmark .bm-floating-label::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 10px;
  height: 10px;
  transform: translate(-50%, -40%) rotate(45deg);
  background: rgba(23, 23, 23, .68);
  border-right: 1px solid rgba(255, 255, 255, .14);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

#brandmark .bm-floating-label.is-changing {
  opacity: 0;
  filter: blur(8px);
  transform: translate(-50%, calc(-50% - 8px));
}

#brandmark .bm-floating-label[data-kind="energy"] {
  border-color: rgba(238, 58, 55, .26);
  box-shadow: 0 10px 30px rgba(238, 58, 55, .12);
}

#brandmark .bm-floating-label[data-kind="tech"] {
  border-color: rgba(255, 255, 255, .14);
}

#brandmark .bm-floating-label[data-kind="eng"] {
  border-color: rgba(255, 255, 255, .14);
}

#brandmark .bm-floating-label[data-kind="hub"] {
  border-color: rgba(238, 58, 55, .18);
}

@media (max-width: 767px) {
  .brandmark {
    width: min(100%, 420px);
  }

  .bm-energy {
    --size: 39%;
    --x: 31.2%;
  }

  .bm-tech,
  .bm-eng {
    --size: 22.6%;
  }

  .bm-tech {
    --x: 58.7%;
    --y: 30.8%;
  }

  .bm-hub {
    --size: 18.6%;
    --x: 72.6%;
    --y: 49.5%;
  }

  .bm-eng {
    --x: 58.6%;
    --y: 69.2%;
  }
}

@media (max-width: 480px) {
  .brandmark {
    width: min(100%, 320px);
  }
}

#brandmark .bm-tile {
  transition: left 1100ms cubic-bezier(.22, .61, .36, 1), top 1100ms cubic-bezier(.22, .61, .36, 1), width 1100ms cubic-bezier(.22, .61, .36, 1), filter 1100ms ease;
  will-change: left, top, width;
  opacity: 0;
  filter: blur(12px);
}

#brandmark .bm-tile.is-intro-visible {
  opacity: 1;
  filter: blur(0);
}

#brandmark.is-intro .bm-label {
  opacity: 0 !important;
  pointer-events: none !important;
  filter: blur(8px) !important;
  transform: translate(-50%, calc(-50% - 8px)) !important;
}

#brandmark .bm-tile.is-moving {
  z-index: 20 !important;
  animation: bmTileMotionBlur 760ms cubic-bezier(.22, .61, .36, 1) 1;
}

@keyframes bmTileMotionBlur {
  0% {
    filter: blur(12px);
  }

  55% {
    filter: blur(5px);
  }

  100% {
    filter: blur(0);
  }
}

#brandmark .bm-tile[data-slot="energy"] {
  --size: 37.8%;
  --x: 30.7%;
  --y: 50%;
  z-index: 4;
}

#brandmark .bm-tile[data-slot="tech"] {
  --size: 21.8%;
  --x: 57.35%;
  --y: 31.65%;
  z-index: 3;
}

#brandmark .bm-tile[data-slot="hub"] {
  --size: 17.8%;
  --x: 69.45%;
  --y: 50%;
  z-index: 2;
}

#brandmark .bm-tile[data-slot="eng"] {
  --size: 21.8%;
  --x: 57.25%;
  --y: 68.85%;
  z-index: 1;
}

#brandmark .bm-label {
  position: absolute;
  left: 30.7%;
  top: 17.6%;
  transform: translate(-50%, calc(-50% - 8px));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 154px;
  padding: 11px 16px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: .24em;
  text-transform: uppercase;
  white-space: nowrap;
  background: var(--dark-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgb(255 255 255 / 32%);
  z-index: 30;
  opacity: 0;
  pointer-events: none;
  filter: blur(8px);
  transition:
    opacity 280ms ease,
    filter 280ms ease,
    transform 280ms ease,
    box-shadow 280ms ease,
    border-color 280ms ease;
}

#brandmark .bm-label::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 10px;
  height: 10px;
  transform: translate(-50%, -40%) rotate(45deg);
  background: var(--dark-glass);
  border-right: 1px solid rgba(255, 255, 255, .14);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

#brandmark .bm-label.is-active {
  opacity: 1;
  pointer-events: auto;
  filter: blur(0);
  transform: translate(-50%, -50%);
}

#brandmark .bm-label--energy {
  border-color: rgba(238, 58, 55, .26);
}

#brandmark .bm-label--tech,
#brandmark .bm-label--eng {
  border-color: rgba(238, 58, 55, .26);
}

#brandmark .bm-label--hub {
  border-color: rgba(238, 58, 55, .26);
}

#brandmark .bm-label.is-hidden {
  opacity: 0;
  pointer-events: none;
  filter: blur(8px);
  transform: translate(-50%, calc(-50% - 8px));
}


@media (max-width: 767px) {
  #brandmark .bm-label {
    left: 31.2%;
    top: 15.9%;
    min-width: 138px;
    padding: 10px 14px;
    font-size: 10px;
    letter-spacing: .18em;
  }
}

@media (max-width: 480px) {
  #brandmark .bm-label {
    top: 13.8%;
    min-width: 126px;
    padding: 9px 12px;
    font-size: 9px;
  }
}

@media (max-width: 767px) {
  #brandmark .bm-tile[data-slot="energy"] {
    --size: 39%;
    --x: 31.2%;
    --y: 50%;
  }

  #brandmark .bm-tile[data-slot="tech"] {
    --size: 22.6%;
    --x: 58.7%;
    --y: 30.8%;
  }

  #brandmark .bm-tile[data-slot="hub"] {
    --size: 18.6%;
    --x: 72.6%;
    --y: 49.5%;
  }

  #brandmark .bm-tile[data-slot="eng"] {
    --size: 22.6%;
    --x: 58.6%;
    --y: 69.2%;
  }
}



.section__intro {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}

.section__title {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 10px;
  white-space: nowrap;
  margin-bottom: 35px;
  /* color: var(--white); */
  font-family: var(--font-display);
  font-size: clamp(38px, 3.2vw, 54px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: .6px;
  color: transparent;
  -webkit-text-stroke: 1px rgb(255 255 255);
}

.section__title-text {
  min-width: 0;
}

.section__title-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.section__title-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 25px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: .6px;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.05;
  color: rgba(255, 255, 255, .92);
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .10);
  -webkit-text-stroke: 1px rgb(255 255 255 / 0%);
  transition: transform .16s ease, background .16s ease, border-color .16s ease;
}

.section__title-link:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .16);
}

.section__title-link img {
  width: 24px;
  height: 24px;
  opacity: .95;
}

@media (max-width: 767px) {
  .section__title {
    flex-wrap: wrap;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .section__title-links {
    width: 100%;
    margin-top: 20px;
    justify-content: center;
  }
}

.section__eyebrow {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 5px;
  font-family: var(--font-display);
}

.section__eyebrow>span {
  position: relative;
  display: flex;
}

.section__eyebrow>span::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  background-color: var(--accent);

  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M369.533 177.027h-67.716L367.744 0h-218.25l-37.056 288.551h73.68l-32.431 208.975c-.899 5.808 2.342 11.453 7.805 13.606 5.472 2.144 11.686.216 14.98-4.642l223.09-329.462h-30.029zM198.384 417.302l24.92-160.612h-74.649l28.879-224.828h144.344l-65.926 177.027h83.56L198.384 417.302z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M369.533 177.027h-67.716L367.744 0h-218.25l-37.056 288.551h73.68l-32.431 208.975c-.899 5.808 2.342 11.453 7.805 13.606 5.472 2.144 11.686.216 14.98-4.642l223.09-329.462h-30.029zM198.384 417.302l24.92-160.612h-74.649l28.879-224.828h144.344l-65.926 177.027h83.56L198.384 417.302z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.section__text {
  margin-top: -30px;
  max-width: 74ch;
  color: rgba(255, 255, 255, .62);
  font-size: clamp(15px, 0.55vw + 13px, 15px);
  line-height: 1.7;
  letter-spacing: 0.01em;
  text-align: center;
  padding: 14px 16px;
  border-radius: 16px;
}

@media (max-width: 767px) {
  .section__text {
    padding: 12px 14px;
    border-radius: 14px;
  }

  .section__eyebrow {
    justify-content: center;
    font-size: 14px
  }
}

/* =========================
   mission
========================= */

.mission {
  position: relative;
  padding: var(--padding-section);
  background: var(--dark);
  border-top: 1px solid var(--stroke);
  border-bottom-left-radius: 36px;
  border-bottom-right-radius: 36px;
  overflow: clip;
}

.mission .section__intro {
  flex-direction: row;
  gap: 10px;
  justify-content: flex-start;
}

.mission__about {
  display: grid;
  padding: clamp(44px, 6vw, 100px) 0;
}

.mission__grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(22px, 4vw, 72px);
}

.mission__content {
  position: relative;
}

.mission__content .glow-orb--hero-red3 {
  left: 50%;
  top: 50%;
  bottom: auto;
  transform: translate(-50%, -50%);
}

.mission .glow-orb--hero-red4 {
  left: auto;
  top: 35%;
  bottom: auto;
}

.mission__text {
  display: grid;
  gap: 14px;
}

.mission__text p {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.65;
  color: var(--white);
}

.mission__about--text {
  color: rgba(255, 255, 255, 0.45);
  font-size: clamp(16px, 1.15vw + 12px, 24px);
  line-height: 1.7;
  text-wrap: pretty;
}

.mission__about-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  color: var(--fg);
  cursor: pointer;
  transition: opacity .25s ease, color .25s ease;
}

.mission__about-toggle:hover {
  opacity: .9;
}

.mission__about-toggle-text {
  display: inline-block;
  color: var(--accent);
  opacity: 0.7;
}

.mission__about-toggle-icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(238, 58, 55, 0.06);
  border: 1px solid rgba(238, 58, 55, 0.11);
  color: #ee3937;
  transition:
    transform .3s ease,
    background .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}

.mission__about-toggle-icon svg {
  width: 18px;
  height: 18px;
}

.mission__about-toggle:hover .mission__about-toggle-icon {
  background: rgba(238, 58, 55, 0.18);
  border-color: rgba(238, 58, 55, 0.35);
  box-shadow: 0 10px 28px rgba(238, 58, 55, 0.18);
}

.mission__about-toggle[aria-expanded="true"] .mission__about-toggle-icon {
  transform: rotate(180deg);
}

.fill-text>span {
  -webkit-background-clip: text;
  background-clip: text;
  background-color: var(--muted);
  background-image: linear-gradient(135deg, var(--fg) 50%, var(--muted) 60%);
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 0% 200%;
  color: transparent;
  display: inline;
  will-change: background-size;
}

@media (prefers-reduced-motion: reduce) {
  .fill-text>span {
    background-size: 200% 200%;
  }
}


.mission__media {
  margin-top: 6px;
}

.mission__media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
  opacity: 0.3;
  will-change: opacity;
  transform-origin: center center;
  will-change: opacity, transform;
}

.mission__gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.mission__gallery-item,
.mission__video-frame {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.22);
}

.mission__gallery-item {
  height: 210px;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.mission__gallery-item:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.28);
}

.mission__gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.18) 100%);
  pointer-events: none;
  opacity: .9;
  transition: opacity .24s ease;
}

.mission__gallery-item:hover::after {
  opacity: 1;
}

.mission__gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.001);
  transition: transform .45s ease, filter .35s ease;
}

.mission__gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1.04);
}

.mission__video {
  min-width: 0;
}

.mission__video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 0;
  height: auto;
  overflow: hidden;
  border-radius: 16px;
}

.mission__video-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

@media (max-width: 1600px) {

  .mission__gallery-item {
    height: 153px;
  }
}


@media (max-width: 1199px) {
  .mission__grid {
    flex-direction: column-reverse;
  }

  .mission__media-grid {
    grid-template-columns: 1fr;
  }

  .mission__video {
    order: -1;
  }

  .mission__gallery-item {
    height: 200px;
  }
}

@media (max-width: 767px) {
  .mission .section__intro {
    flex-wrap: wrap;
    justify-content: center;
  }

  .mission__content {
    width: 100%;
    max-width: none;
  }

  .mission__about--text {
    text-align: justify;
    text-wrap: auto;
  }

  .mission__about-toggle {
    justify-content: center;
    gap: 10px;
    font-size: 14px;
  }

  .mission__about-toggle-icon {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }

  .mission__about-toggle-icon svg {
    width: 16px;
    height: 16px;
  }

  .mission__media-grid {
    gap: 14px;
  }

  .mission__gallery {
    gap: 12px;
  }

  .mission__gallery-item {
    height: 135px;
  }

}

@media (max-width: 575px) {
  .mission__gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

}

.mission__items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.mission__item {
  width: 100%;
  display: grid;
  grid-template-columns: 44px 1fr;
  grid-template-rows: auto auto;
  gap: 6px 14px;

  padding: 16px 16px;
  border-radius: 18px;
  background: rgb(0 0 0 / 4%);
  border: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}

.mission__item:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .055);
}

.mission__icon {
  width: 44px;
  height: 44px;
  padding: 6px;
  border-radius: 14px;
  display: grid;
  place-items: center;

  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .10);

  color: rgba(255, 255, 255, .9);
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: lowercase;
}


.mission__item:nth-child(1) {
  border-top-color: rgb(59 130 246 / 1);
}

.mission__item:nth-child(1) .mission__icon {
  background: rgb(59 130 246 / .10);
  border: 1px solid rgb(59 130 246 / .35);
  color: rgb(59 130 246 / 1);
}

.mission__item:nth-child(2) {
  border-top-color: rgb(34 197 94 / 1);
}

.mission__item:nth-child(2) .mission__icon {
  background: rgb(34 197 94 / .10);
  border: 1px solid rgb(34 197 94 / .35);
  color: rgb(34 197 94 / 1);
}

.mission__item:nth-child(3) {
  border-top-color: rgb(239 68 68 / 1);
}

.mission__item:nth-child(3) .mission__icon {
  background: rgb(239 68 68 / .10);
  border: 1px solid rgb(239 68 68 / .35);
  color: rgb(239 68 68 / 1);
}

.mission__icon svg {
  stroke: currentColor;
  fill: none;
}

.mission__title {
  align-self: center;
  color: rgba(255, 255, 255, .95);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
}

.mission__text {
  grid-column: 2 / -1;
  color: rgba(255, 255, 255, .68);
  font-size: 15px;
  line-height: 1.55;
}

@media (max-width: 991px) {
  .mission__items {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .mission__items {
    gap: 30px;
    grid-template-columns: 1fr;
  }

  .mission__item:nth-child(3) {
    grid-column: auto;
  }

  .mission__item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 14px;
  }

  .mission__icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .mission__title {
    font-size: 18px;
  }

  .mission__text {
    font-size: 14px;
  }

  .mission .glow-orb--hero-red4 {
    display: none
  }
}

/* =========================
   solutions
========================= */

.solutions {
  position: relative;
  padding: var(--padding-section);
  background: var(--dark);
  border-top: 1px solid var(--stroke);
  overflow: clip;
}


.solutions__grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
}


.solutions-card {
  display: grid;
  gap: 12px;
  border-radius: 18px;
  overflow: visible;
  width: 100%;
  min-height: 545px;
}

.solution-card:hover {
  transform: translateY(-2px);
}


.solutions-content {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 300ms;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .08);
}


.solutions-back {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #151515;
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 18px;
  overflow: hidden;
}

.solutions-card .solutions-back::before {
  position: absolute;
  content: '';
  display: block;
  width: 320px;
  height: 320%;
  animation: rotation_481 7000ms infinite linear;
}

.solutions-card:nth-child(1) .solutions-back::before {
  background: linear-gradient(90deg, transparent, rgba(56, 189, 166, .15), rgba(56, 189, 166, .35), rgba(56, 189, 166, .35), rgba(56, 189, 166, .15), transparent);
}

.solutions-card:nth-child(2) .solutions-back::before {
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, .15), rgba(96, 165, 250, .35), rgba(96, 165, 250, .35), rgba(96, 165, 250, .15), transparent);
}

.solutions-card:nth-child(3) .solutions-back::before {
  background: linear-gradient(90deg, transparent, rgba(167, 139, 250, .15), rgba(167, 139, 250, .35), rgba(167, 139, 250, .35), rgba(167, 139, 250, .15), transparent);
}

.solutions-card:nth-child(4) .solutions-back::before {
  background: linear-gradient(90deg, transparent, rgba(251, 146, 60, .15), rgba(251, 146, 60, .35), rgba(251, 146, 60, .35), rgba(251, 146, 60, .15), transparent);
}

.solutions-back__content {
  position: absolute;
  width: 99.3%;
  height: 99.3%;
  background-color: #151515;
  border-radius: 18px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  padding: 15px;
}

@keyframes rotation_481 {
  0% {
    transform: rotateZ(0deg);
  }

  0% {
    transform: rotateZ(360deg);
  }
}

.solution-card__box {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: auto;
}


.solution-card__media {
  position: relative;
  max-height: 290px;
  height: 100%;
}

.solution-card__media::after {
  content: "";
  position: absolute;
  right: -3px;
  bottom: -3px;
  width: 120px;
  height: 120px;
  background: #151515;
  clip-path: polygon(129% 0, 100% 100%, 0 150%);
  pointer-events: none;
}

.solution-card__media .marker {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 5px 20px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .6px;
  background: rgba(238, 57, 55, .08);
  border: 1px solid rgba(238, 58, 55, 70%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.solution-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all .5s ease-in-out;
  -moz-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out
}

.solutions-card:hover .solution-card__media img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1)
}

.solution-card__box .icon {
  position: absolute;
  bottom: -6px;
  right: -6px;
  width: 75px;
  height: 75px;
  background: #151515;
  border-top-left-radius: 50%;
}

.solution-card__box .icon::before {
  position: absolute;
  content: "";
  bottom: 5px;
  left: -20px;
  background: transparent;
  width: 20px;
  height: 20px;
  border-bottom-right-radius: 20px;
  box-shadow: 5px 5px 0 5px #151515;
}

.solution-card__box .icon::after {
  position: absolute;
  content: "";
  top: -20px;
  right: 5px;
  background: transparent;
  width: 20px;
  height: 20px;
  border-bottom-right-radius: 20px;
  box-shadow: 5px 5px 0 5px #151515;
}

.solution-card__box .icon .iconBox {
  position: absolute;
  inset: 10px;
  background: #282828;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}

.solution-card__box .icon:hover .iconBox {
  transform: scale(1.1);
}

.solution-card__box .icon .iconBox svg {
  width: 24px;
  height: 24px;
}

.solution-card__title {
  margin: 0;
  color: rgba(255, 255, 255, .95);
  font-size: 30px;
  line-height: 1.2;
  font-weight: 600;
  transition: 0.3s ease;
}

.solutions-card:hover .solution-card__title {
  color: var(--accent);
}

.solution-card__text {
  margin: 0;
  color: rgba(255, 255, 255, .62);
  font-size: 15px;
  line-height: 1.55;
}

.solution-card__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

@media (max-width: 991px) {
  .solutions__grid {
    grid-template-columns: 1fr;
  }

  .solutions-card {
    min-height: 555px;
  }


}

@media (max-width: 767px) {
  .solution-card {
    padding: 14px;
  }

  .solution-card__title {
    font-size: 21px;
  }

  .solution-card__text {
    font-size: 14px;
  }

  .solution-card__actions .btn--lg {
    padding: var(--space-3, 12px) var(--space-5, 16px);
    font-size: var(--text-sm, 14px);
    min-height: 44px;
  }
}

/* =========================
   advantages
========================= */
.advantages {
  position: relative;
  color: var(--dark);
  padding: var(--padding-section);
}

.advantages>.container {
  position: relative;
}

.advantages .section__eyebrow {
  color: rgba(23, 23, 23, .7);
}

.advantages .section__title {
  -webkit-text-stroke: 1px rgb(0 0 0);
}

.advantages .section__title>span {
  -webkit-text-stroke: 1px rgb(238, 58, 55);
}

.advantages .section__text {
  color: rgba(23, 23, 23, .65);
  max-width: 78ch;
}

.advantages__grid {
  position: relative;
  margin-bottom: 50px;
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  z-index: 2;
}

.adv-card {
  border-radius: 18px;
  background: #ffffff6d;
  /* background: radial-gradient(28em 18em at 18% 18%, rgb(238 57 55 / 5%), transparent 62%), radial-gradient(24em 16em at 82% 78%, rgb(238 57 55 / 11%), transparent 62%), radial-gradient(1.2em 1.2em at 0.9em 0.9em, rgb(238 57 55 / 7%) 0 2px, transparent 2px), radial-gradient(1.2em 1.2em at 2em 2em, rgba(255, 207, 139, 0.04) 0 2px, transparent 2px), repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 7px), linear-gradient(135deg, var(--glass), var(--glass)); */
  background-size: auto, auto, 3.8em 3.8em, 3.8em 3.8em, auto, auto;
  border: 1px solid rgb(238 57 55 / 10%);
  box-shadow: 0 1.45em 3.6em rgba(255, 255, 255, 0.58), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: box-shadow 0.22s ease, border-color 0.22s ease;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 30px;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

/* .adv-card:nth-child(even) {
                background:
                    linear-gradient(#ffffff, #ffffff) padding-box,
                    linear-gradient(-145deg, transparent 35%, #ee3937, #ffffff) border-box;
            } */

.adv-card:hover {}

.adv-card__kicker {
  width: 55px;
  height: 55px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: .12em;
  font-size: 12px;
  color: #ee3a37;
  background: rgba(238, 58, 55, .10);
  border: 1px solid rgba(238, 58, 55, .22);
  margin-bottom: 12px;
  box-shadow: 0 0.85em 2.1em rgb(238 57 55 / 19%), inset 0 1px 0 rgba(255, 255, 255, 0.34);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all .5s ease-in-out;
  -moz-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out
}

.adv-card:hover .adv-card__kicker {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1)
}


.adv-card__kicker img {
  min-width: 28px;
  height: 28px;
}

.adv-card__title {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 8px;
  color: #171717;
  transition: 0.3s ease;
}

.adv-card:hover .adv-card__title {
  color: var(--accent);
}

.adv-card__text {
  margin: 0;
  color: rgba(23, 23, 23, .7);
  font-size: 18px;
  line-height: 1.55;
}

.adv-card--wide {
  grid-column: 1 / -1;
}

.partners-title {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
  color: rgb(0 0 0 / 45%);
  font-size: clamp(16px, 1.15vw + 12px, 24px);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .advantages__grid {
    grid-template-columns: 1fr;
  }

  .adv-card {
    position: sticky;
    top: 160px;
    z-index: 1;
    will-change: transform;
    transform-origin: 50% 0%;
    background: var(--white);
  }

  .adv-card:nth-child(1) {
    z-index: 1;
  }

  .adv-card:nth-child(2) {
    z-index: 2;
  }

  .adv-card:nth-child(3) {
    z-index: 3;
  }

  .adv-card:nth-child(4) {
    z-index: 4;
  }

  .adv-card:nth-child(5) {
    z-index: 5;
  }

  .adv-card+.adv-card {
    margin-top: 18px;
  }


  .adv-card__hider {
    opacity: 0;
    background-color: #ffffff;
    border-radius: 1em;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    inset: 0%;
  }

  .adv-card--wide {
    grid-column: auto;
  }

  .adv-card.bg--3 {
    perspective-origin: 50% 0;
    transform-origin: 50% 0;
  }
}

@media (max-width: 767px) {
  .adv-card {
    padding: 14px;
    border-radius: 16px;
  }

  .adv-card__title {
    font-size: 21px;
  }

  .adv-card__text {
    font-size: 16px;
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 7));
  }
}

.partners-slider {
  position: relative;
  width: 100%;
  height: 100px;
  margin: auto;
  overflow: hidden;
  background: #fff;
}

.partners-slider::before,
.partners-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 200px;
  height: 100px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.partners-slider::before {
  left: 0;
}

.partners-slider::after {
  right: 0;
  transform: rotate(180deg);
}

.partners-slide__track {
  display: flex;
  width: calc(250px * 14);
  animation: scroll 30s linear infinite;
}

.partners-slider:hover .partners-slide__track {
  animation-play-state: paused;
}

.partners-slide {
  width: 250px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.partners-slide img {
  max-width: 180px;
  max-height: 60px;
  width: auto;
  height: auto;
  /* filter: grayscale(100%); */
  opacity: 1;
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.partners-slide:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.03);
}

@media (max-width: 900px) {
  .partners-slide {
    width: 170px;
  }

  .partners-slide img {
    max-width: 130px;
  }
}

/* =========================
   projects
========================= */

.projects {
  position: relative;
  padding: var(--padding-section);
  overflow: hidden;
}

.projects .section__intro {
  margin-bottom: 38px;
}

.projects .section__title {
  -webkit-text-stroke: 1px rgb(0 0 0);
}

.projects__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.projects__card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 460px;
  padding: 22px;
  border-radius: 28px;
  overflow: hidden;
  text-decoration: none;
  isolation: isolate;
  background: #0f1218;
  transition: transform .45s ease, box-shadow .45s ease;
}

.projects__card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.projects__media {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.02);
  transition: transform .7s ease, filter .7s ease;
  filter: saturate(1) contrast(1.02) brightness(.78);
}

.projects__card:hover .projects__media {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.03) brightness(.88);
}

.projects__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(10, 16, 26, 0.22) 0%, rgba(10, 16, 26, 0.50) 42%, rgba(7, 10, 18, 0.92) 100%),
    radial-gradient(circle at 15% 20%, rgba(55, 110, 255, 0.22), transparent 24%),
    radial-gradient(circle at 80% 18%, rgba(255, 135, 46, 0.18), transparent 20%),
    radial-gradient(circle at 50% 100%, rgba(30, 210, 125, 0.14), transparent 24%);
}

.projects__card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .22), rgba(255, 255, 255, .04), rgba(255, 255, 255, .10));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.projects__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.projects__meta>div {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 999px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  font-size: 12px;
  line-height: 1.3;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.projects__date {
  background: rgb(255 255 255 / 15%);
}

.projects__label {
  background: rgb(255 255 255 / 15%);
}

.projects__region {
  background: rgb(255 255 255 / 15%);
}

.projects__content {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 28px;
}

.projects__title {
  margin: 0 0 12px;
  color: var(--white);
  font-size: clamp(1.4rem, 2.4vw, 2.15rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.03em;
}

.projects__text {
  color: rgba(255, 255, 255, .78);
  font-size: 15px;
  line-height: 1.65;
}

.projects__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 10px;
  margin-top: 20px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background .3s ease, border-color .3s ease;
}

.projects__action svg {
  width: 17px;
  height: 17px;
  transition: transform .3s ease;
}

.projects__card:hover .projects__action {
  background: rgba(238, 57, 55, 0.16);
  border-color: rgba(238, 57, 55, 0.35);
}

.projects__card:hover .projects__action svg {
  transform: translateX(4px);
}

@media (max-width: 1199px) {
  .projects__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (max-width: 900px) {
  .projects__card {
    min-height: 420px;
    padding: 20px;
  }
}

@media (max-width: 767px) {
  .projects__grid {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }

  .projects__card {
    min-width: 280px;
    min-height: 400px;
    padding: 18px;
    border-radius: 24px;

    scroll-snap-align: start;
  }

  .projects__title {
    font-size: clamp(1.35rem, 7vw, 1.9rem);
  }

  .projects__text {
    font-size: 14px;
  }

  .projects__meta>div {
    font-size: 11px;
    padding: 8px 11px;
  }
}

/* =========================
   projects
========================= */

.news {
  position: relative;
  padding: var(--padding-section);
  overflow: clip;
}

.news .section__title {
  -webkit-text-stroke: 1px rgb(0 0 0);
}

.news .section__text {
  color: rgba(23, 23, 23, .65);
  max-width: 78ch;
}

.news__grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px;
}

.news-card {
  display: grid;
  gap: 12px;
  border-radius: 18px;
  overflow: visible;
  width: 100%;
  background: radial-gradient(28em 18em at 18% 18%, rgb(238 57 55 / 5%), transparent 62%), radial-gradient(24em 16em at 82% 78%, rgb(238 57 55 / 11%), transparent 62%), radial-gradient(1.2em 1.2em at 0.9em 0.9em, rgb(238 57 55 / 7%) 0 2px, transparent 2px), radial-gradient(1.2em 1.2em at 2em 2em, rgba(255, 207, 139, 0.04) 0 2px, transparent 2px), repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 7px), linear-gradient(135deg, var(--glass), var(--glass));
}

.new-card:hover {
  transform: translateY(-2px);
}

.news-back__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 18px;
  color: white;
  gap: 15px;
  padding: 15px;
}

.new-card__box {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: auto;
}


.new-card__media {
  position: relative;
  max-height: 175px;
  height: 100%;
}

.new-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: background .45s ease, backdrop-filter .45s ease, -webkit-backdrop-filter .45s ease;
  z-index: 1;
}

.new-card__media .marker {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 2px 20px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .6px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.new-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  filter: blur(0px);
  transition: transform .55s ease, filter .45s ease;
}

.new-card__read-more {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, calc(-50% + 18px));
  opacity: 0;
  pointer-events: none;
  color: #ffffffba;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .04em;
  transition: opacity .4s ease, transform .4s ease;
  white-space: nowrap;
}

.news-card:hover .new-card__media img {
  transform: scale(1.08);
  filter: blur(4px);
}

.news-card:hover .new-card__media::after {
  background: rgba(10, 10, 10, 0.22);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.news-card:hover .new-card__read-more {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.new-card__title {
  margin: 0;
  color: rgba(0, 0, 0, 0.95);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
  transition: 0.3s ease;
}

.news-card:hover .new-card__title {
  color: var(--accent);
}

.new-card__text {
  margin: 0;
  color: rgba(0, 0, 0, 0.62);
  font-size: 12px;
  line-height: 1.55;
}

@media (max-width: 1199px) {
  .news__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .news__grid {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }

  .news-card {
    min-width: 280px;
    scroll-snap-align: start;
  }

  .new-card__title {
    font-size: 21px;
  }

  .new-card__text {
    font-size: 14px;
  }
}

/* =========================
   consultation
========================= */

.consultation {
  position: relative;
  padding: var(--padding-section);
  overflow: hidden;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.consultation .consultation__wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(238, 57, 55, 0.16), transparent 22%),
    radial-gradient(circle at 88% 80%, rgba(238, 57, 55, 0.10), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.consultation .consultation__wrap::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(238, 57, 55, 0.22) 0%, rgba(238, 57, 55, 0.08) 38%, transparent 72%);
  filter: blur(24px);
  pointer-events: none;
}

.consultation__wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 540px);
  gap: 25px;
  align-items: stretch;
  background: var(--dark);
  padding: 35px;
  border-radius: 36px;
}

.consultation__info,
.consultation__form-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.consultation__info {
  padding: 25px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.consultation__info::before,
.consultation__form-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 38%, transparent 62%, rgba(238, 57, 55, 0.06));
}

.consultation__info .section__title {
  white-space: normal;
}

.consultation__text {
  margin-bottom: 30px;
  margin-top: -10px;
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.75;
}

.consultation__list {
  display: grid;
  gap: 14px;
}

.consultation__point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.consultation__point-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(180deg, rgba(238, 57, 55, 0.28), rgba(238, 57, 55, 0.12));
  border: 1px solid rgba(238, 57, 55, 0.24);
  box-shadow: 0 8px 24px rgba(238, 57, 55, 0.18);
}

.consultation__point-icon svg {
  width: 18px;
  height: 18px;
}

.consultation__point-title {
  margin: 0 0 4px;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.consultation__point-text {
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.6;
}

.consultation__form-wrap {
  padding: 34px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.consultation__form-title {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 28px;
  line-height: 1.05;
  font-weight: 800;
}

.consultation__form-text {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.65;
}

.consultation__form {
  display: grid;
  gap: 14px;
}

.consultation__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.consultation__field {
  position: relative;
}

.consultation__field--full {
  grid-column: 1 / -1;
}

.consultation__input,
.consultation__textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.10);
  outline: none;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-family: var(--font-body);
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}

.consultation__input {
  height: 58px;
  padding: 0 18px;
  font-size: 15px;
}

.consultation__textarea {
  min-height: 132px;
  resize: none;
  padding: 16px 18px;
  font-size: 15px;
  line-height: 1.6;
}

.consultation__input::placeholder,
.consultation__textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.consultation__input:focus,
.consultation__textarea:focus {
  border-color: rgba(238, 57, 55, 0.42);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 4px rgba(238, 57, 55, 0.10);
}

.consultation__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.consultation__bottom .btn {
  width: 100%;
}

.consultation__agree {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.55;
}

@media (max-width: 1599px) {
  .consultation__list {
    gap: 8px;
  }

  .consultation__point {
    padding: 10px;
    gap: 8px;
  }

  .consultation__point-title {
    font-size: 14px;
  }

  .consultation__point-text {
    font-size: 12px;
  }

  .consultation__text {
    margin-bottom: 15px;
  }
}


@media (max-width: 1199px) {
  .consultation__wrap {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 900px) {

  .consultation__info,
  .consultation__form-wrap {
    padding: 28px;
    border-radius: 28px;
  }

  .consultation__fields {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .consultation .section__eyebrow {
    justify-content: flex-start;
  }

  .consultation .section__title {
    text-align: left;
    margin-bottom: 20px;
  }

  .consultation__wrap {
    border-radius: 18px;
    padding: 5px;
  }

  .consultation__info,
  .consultation__form-wrap {
    padding: 12px 10px;
    border-radius: 22px;
    border: none;
  }

  .consultation__info::before,
  .consultation__form-wrap::before {
    display: none;
  }

  .consultation__text {
    font-size: 14px;
    line-height: 1.7;
  }

  .consultation__form-title {
    font-size: 24px;
  }

  .consultation__fields {
    grid-template-columns: 1fr;
  }

  .consultation__input {
    height: 54px;
    font-size: 14px;
  }

  .consultation__textarea {
    min-height: 118px;
    font-size: 14px;
  }

  .consultation__bottom {
    align-items: stretch;
  }

  .consultation__agree {
    max-width: none;
    font-size: 12px;
    text-align: center;
  }

}

/* =========================
   faq
========================= */

.faq {
  position: relative;
  padding: var(--padding-section);
}

.faq .decor-page {
  z-index: 2;
  bottom: -20px;
}


.faq .glow-faq {
  position: absolute;
  right: -140px;
  bottom: -140px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(238, 57, 55, 0.20) 0%, rgba(238, 57, 55, 0.06) 42%, transparent 72%);
  filter: blur(18px);
  pointer-events: none;
  z-index: 1;
}

.faq .glow-faq2 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -35px;
  height: clamp(220px, 34vw, 420px);
  pointer-events: none;
  z-index: 2;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff00 68%, rgba(238, 57, 55, 0.10) 100%);
}

.faq__content {
  position: relative;
  z-index: 2;
  max-width: min(860px, calc(100% - 420px));
  padding-bottom: 110px;
}

.faq .section__intro {
  align-items: flex-start;
  margin-bottom: 28px;
}

.faq .section__title {
  -webkit-text-stroke: 1px rgb(0 0 0);
}

.faq .section__text {
  color: rgba(23, 23, 23, .65);
  max-width: 78ch;
  text-align: left;
  padding-left: 0;
}

.faq__visual {
  position: absolute;
  right: 0px;
  bottom: 0;
  width: min(44vw, 910px);
  pointer-events: none;
  z-index: 1;
}

.faq__visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.faq__list {
  display: grid;
  gap: 16px;
}

.faq__item {
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.faq__item:hover {
  transform: translateY(-2px);
  border-color: rgba(238, 57, 55, 0.18);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.07);
}

.faq__item.is-open {
  border-color: rgba(238, 57, 55, 0.22);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.08);
}

.faq__question {
  width: 100%;
  border: 0;
  background: transparent;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 26px;
  cursor: pointer;
  color: var(--dark);
  text-align: left;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  font-family: var(--font-body);
}

.faq__icon {
  position: relative;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  background: rgba(23, 23, 23, 0.02);
  border: 1px solid rgba(23, 23, 23, 0.05);
  transition: background .3s ease, transform .3s ease, border-color .3s ease;
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--accent);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: opacity .3s ease, transform .3s ease;
}

.faq__icon::before {
  width: 14px;
  height: 2px;
}

.faq__icon::after {
  width: 2px;
  height: 14px;
}

.faq__item.is-open .faq__icon {
  background: rgba(238, 57, 55, 0.08);
  border-color: rgba(238, 57, 55, 0.18);
  transform: rotate(180deg);
}

.faq__item.is-open .faq__icon::after {
  opacity: 0;
}

.faq__answer {
  display: none;
  padding: 0 26px 24px;
}

.faq__answer-inner {
  color: rgba(23, 23, 23, 0.72);
  font-size: 16px;
  line-height: 1.75;
  max-width: 900px;
}

@media (max-width: 1400px) {
  .faq__visual {
    width: min(42vw, 540px);
    right: -50px;
  }
}

@media (max-width: 1200px) {
  .faq__content {
    max-width: min(760px, calc(100% - 360px));
  }

  .faq__visual {
    width: min(42vw, 540px);
    right: -20px;
  }
}

@media (max-width: 900px) {
  .faq__content {
    max-width: 100%;
    padding-bottom: 0;
  }

  .faq__visual {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 430px);
    margin: 20px auto 0;
  }

  .faq__visual::before {
    left: 4%;
    right: 4%;
    bottom: 2%;
    height: 40%;
    filter: blur(24px);
  }

  .faq__question {
    padding: 20px 22px;
    font-size: 18px;
  }

  .faq__answer {
    padding: 0 22px 20px;
  }

  .faq__answer-inner {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .faq .section__intro {
    align-items: center;
  }

  .faq .section__text {
    text-align: center;
  }

  .faq__list {
    gap: 12px;
  }

  .faq__item {
    border-radius: 18px;
  }

  .faq__question {
    padding: 16px;
    gap: 12px;
    font-size: 16px;
    line-height: 1.4;
  }

  .faq__icon {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
  }

  .faq__answer {
    padding: 0 16px 16px;
  }

  .faq__answer-inner {
    font-size: 14px;
    line-height: 1.65;
  }

  .faq__visual {
    width: min(100%, 445px);
    margin: 16px auto 0;
  }

  .faq__visual img {
    margin: 0 auto -2px;
  }
}

/* =========================
   faq
========================= */
.footer {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  color: rgba(255, 255, 255, 0.78);
  padding: 72px 0 26px;
  border-top-left-radius: 36px;
  border-top-right-radius: 36px;
  z-index: 2;
}

.footer .glow-grid {
  width: 830px;
  height: 500px;
  mask-image:
    linear-gradient(to right, black 40%, transparent 100%),
    linear-gradient(to bottom, black 40%, transparent 100%);
  mask-composite: intersect;

  -webkit-mask-image:
    linear-gradient(to right, black 40%, transparent 100%),
    linear-gradient(to bottom, black 40%, transparent 100%);
  -webkit-mask-composite: source-in;
  background-image: linear-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr 1.15fr;
  gap: 60px;
  padding-bottom: 56px;
}

.footer__col {
  min-width: 0;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 8px;
}

.footer__logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer__logo-icon img {
  width: auto;
  height: 70px;
}

.footer__logo-text {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.footer__logo-text span,
.footer__logo-text strong {
  color: var(--accent);
}

.footer__desc {
  max-width: 300px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
  line-height: 1.85;
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer__socials a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.65);
  border: 1px solid transparent;
  text-decoration: none;
  transition: .25s ease;
}

.footer__socials a:hover {
  color: var(--accent);
  border-color: rgba(238, 57, 55, 0.28);
  background: var(--accent);
}

.footer__socials img {
  width: auto;
  height: 21px;
}

.footer__title {
  margin: 6px 0 22px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer__menu,
.footer__contacts {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__menu li+li,
.footer__contacts li+li {
  margin-top: 14px;
}

.footer__col:nth-child(2) .footer__menu a {
  font-family: var(--font-display);
  letter-spacing: 1px;
}

.footer__menu a,
.footer__contacts a {
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  font-size: 15px;
  line-height: 1.6;
  transition: color .25s ease, transform .25s ease;
}

.footer__menu a:hover,
.footer__contacts a:hover {
  color: var(--white);
}

.footer__menu li {
  position: relative;
  padding-left: 16px;
}

.footer__menu li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(238, 57, 55, 0.45);
}

.footer__contacts li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer__icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: var(--accent);
  margin-top: 3px;
}

.footer__icon svg {
  height: 100%;
}

.footer__bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding-top: 26px;
  border-top: 1px solid rgba(72, 100, 164, 0.18);
}

.footer__copy,
.footer__madeby,
.footer__bottom-links a {
  color: rgba(255, 255, 255, 0.42);
  font-size: 13px;
  line-height: 1.6;
  text-decoration: none;
}

.footer__madeby {
  text-align: center;
}

.footer__madeby a,
.footer__bottom-links a:hover {
  color: rgba(255, 255, 255, 0.72);
}

.footer__bottom-links {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  flex-wrap: wrap;
}

/* <= 900px */
@media (max-width: 900px) {
  .footer {
    padding: 58px 0 24px;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 40px 28px;
    padding-bottom: 42px;
  }

  .footer__bottom {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__copy,
  .footer__madeby {
    text-align: center;
  }

  .footer__bottom-links {
    justify-content: center;
  }
}

/* <= 767px */
@media (max-width: 767px) {
  .footer {
    padding: 46px 0 22px;
  }

  .footer__container {
    width: min(100% - 28px, 1280px);
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__logo-text {
    font-size: 18px;
  }

  .footer__desc {
    max-width: none;
    font-size: 13px;
    line-height: 1.75;
  }

  .footer__title {
    margin-bottom: 16px;
  }

  .footer__menu li+li,
  .footer__contacts li+li {
    margin-top: 12px;
  }

  .footer__menu a,
  .footer__contacts a {
    font-size: 14px;
  }

  .footer__form {
    min-height: 52px;
  }

  .footer__form button {
    width: 60px;
    flex-basis: 60px;
  }

  .footer__bottom {
    gap: 12px;
    padding-top: 20px;
  }

  .footer__copy,
  .footer__madeby,
  .footer__bottom-links a {
    font-size: 12px;
  }

  .footer__bottom-links {
    gap: 12px 16px;
  }
}

/* =========================
   Scroll Blur
========================= */

.scroll-blur-container {
  pointer-events: none;
  z-index: 8;
  flex: none;
  height: 128px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 1;
  transition: opacity .35s ease, bottom .35s ease;
}

.scroll-blur.scroll-blur-main {
  width: 1200px;
  height: 128px;
  position: relative;
  overflow: hidden;
  pointer-events: none;
}

.scroll-blur .scroll-blur-layer-4,
.scroll-blur .scroll-blur-layer-3,
.scroll-blur .scroll-blur-layer-2,
.scroll-blur .scroll-blur-layer-1 {
  flex: none;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.scroll-blur-container.is-hidden {
  opacity: 0;
  bottom: -28px;
}

/* =========================
   popup
========================= */

.popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: rgba(12, 12, 12, 0.34);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition:
    opacity .42s cubic-bezier(.22, .61, .36, 1),
    visibility 0s linear .42s;
}

.popup.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity .42s cubic-bezier(.22, .61, .36, 1),
    visibility 0s linear 0s;
}

.popup__viewport {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.popup__dialog {
  position: relative;
  width: min(100%, 560px);
  margin: auto;
  border-radius: 28px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 100%);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.18),
    0 10px 32px rgba(238, 57, 55, 0.10);
  overflow: hidden;
  transform: translateY(24px) scale(.965);
  opacity: 0;
  transition:
    transform .42s cubic-bezier(.22, .61, .36, 1),
    opacity .42s cubic-bezier(.22, .61, .36, 1);
}

.popup.is-open .popup__dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.popup__dialog::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(238, 57, 55, 0.10), transparent 26%),
    radial-gradient(circle at bottom left, rgba(238, 57, 55, 0.05), transparent 24%);
}

.popup__inner {
  position: relative;
  z-index: 1;
  padding: 34px;
}

.popup__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  min-width: 44px;
  min-height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(23, 23, 23, 0.05);
  color: var(--dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background .25s ease,
    color .25s ease,
    transform .25s ease;
}

.popup__close:hover {
  background: rgba(238, 57, 55, 0.10);
  color: var(--accent);
  transform: rotate(90deg);
}

.popup__close svg {
  width: 18px;
  height: 18px;
}

.popup__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: rgba(23, 23, 23, 0.54);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.popup__eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(238, 57, 55, 0.28);
}

.popup__title {
  margin: 0 0 12px;
  color: var(--dark);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -.03em;
}

.popup__text {
  margin: 0 0 22px;
  color: rgba(23, 23, 23, 0.66);
  font-size: 15px;
  line-height: 1.7;
}

.popup__form {
  display: grid;
  gap: 14px;
}

.popup__field {
  position: relative;
}

.popup__input,
.popup__textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(23, 23, 23, 0.10);
  outline: none;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--dark);
  font-family: var(--font-body);
  transition:
    border-color .25s ease,
    background .25s ease,
    box-shadow .25s ease;
}

.popup__input {
  height: 58px;
  padding: 0 18px;
  font-size: 15px;
}

.popup__textarea {
  min-height: 132px;
  padding: 16px 18px;
  resize: none;
  font-size: 15px;
  line-height: 1.6;
}

.popup__input::placeholder,
.popup__textarea::placeholder {
  color: rgba(23, 23, 23, 0.38);
}

.popup__input:focus,
.popup__textarea:focus {
  border-color: rgba(238, 57, 55, 0.32);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 0 0 4px rgba(238, 57, 55, 0.08);
}

.popup__submit {
  width: 100%;
  min-height: 58px;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(180deg, #ff4d4b 0%, var(--accent) 100%);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 18px 36px rgba(238, 57, 55, 0.22);
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    filter .25s ease;
}

.popup__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(238, 57, 55, 0.30);
  filter: brightness(1.03);
}

.popup__submit svg {
  width: 18px;
  height: 18px;
  transition: transform .25s ease;
}

.popup__submit:hover svg {
  transform: translateX(3px);
}

.popup__note {
  margin: 12px 0 0;
  color: rgba(23, 23, 23, 0.50);
  font-size: 13px;
  line-height: 1.55;
  text-align: center;
}

body.popup-open {
  overflow: hidden;
  touch-action: none;
}

@supports not ((backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))) {
  .popup {
    background: rgba(12, 12, 12, 0.56);
  }
}

@media (max-width: 767px) {
  .popup__viewport {
    padding: 16px;
  }

  .popup__dialog {
    width: 100%;
    border-radius: 22px;
  }

  .popup__inner {
    padding: 22px 16px 18px;
  }

  .popup__close {
    top: 12px;
    right: 12px;
    min-width: 40px;
    min-height: 40px;
  }

  .popup__title {
    font-size: 26px;
  }

  .popup__text {
    margin-bottom: 18px;
    font-size: 14px;
  }

  .popup__input {
    height: 54px;
    font-size: 14px;
  }

  .popup__textarea {
    min-height: 118px;
    font-size: 14px;
  }

  .popup__submit {
    min-height: 54px;
  }

  .popup__note {
    font-size: 12px;
  }
}

@media (max-height: 720px) {
  .popup__viewport {
    align-items: flex-start;
    padding-top: 18px;
    padding-bottom: 18px;
  }
}

/* =========================
   service hero
========================= */
.service-hero {
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 120px;
  padding-bottom: 90px;
  min-height: 100svh;
  border-bottom-left-radius: 36px;
  border-bottom-right-radius: 36px;
  /* background:
                    radial-gradient(circle at 18% 22%, rgba(238, 57, 55, 0.16), transparent 24%),
                    radial-gradient(circle at 82% 28%, rgba(238, 57, 55, 0.14), transparent 26%),
                    radial-gradient(circle at 50% 85%, rgba(238, 57, 55, 0.10), transparent 28%),
                    linear-gradient(180deg, #fff7f7 0%, #ffffff 52%, #fff9f9 100%); */
}

.service-hero__inner {
  position: relative;
  z-index: 2;
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 620px);
  align-items: center;
  gap: 60px;
}

.service-hero__content {
  width: 100%;
}

.service-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(23, 23, 23, 0.65);
}

.service-hero__eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(238, 57, 55, 0.5);
}

.service-hero__title {
  margin: 0 0 20px;
  font-family: var(--font-body);
  font-size: clamp(38px, 5vw, 68px);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--dark);
  max-width: 620px;
}

.service-hero__text {
  max-width: 480px;
  margin-bottom: 32px;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 500;
  color: rgba(23, 23, 23, 0.72);
}

.service-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.service-hero__btn {
  background: var(--dark);
  color: var(--white);
  transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
}

.service-hero__btn:hover {
  color: var(--white);
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(238, 57, 55, 0.24);
}

.service-hero__media {
  position: relative;
}

.service-hero__image-wrap {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  background: var(--white);
  box-shadow:
    0 25px 80px rgba(23, 23, 23, 0.14),
    0 0 0 1px rgba(23, 23, 23, 0.05);
}

.service-hero__image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(0, 0, 0, 0.12) 100%);
  pointer-events: none;
  z-index: 1;
}

.service-hero__image {
  display: block;
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
}

.service-hero__blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.service-hero__blur--1 {
  top: 70px;
  left: -80px;
  width: 320px;
  height: 320px;
  background: rgba(238, 57, 55, 0.22);
}

.service-hero__blur--2 {
  top: 140px;
  right: 7%;
  width: 300px;
  height: 300px;
  background: rgba(255, 89, 87, 0.18);
}

.service-hero__blur--3 {
  bottom: -100px;
  left: 42%;
  width: 380px;
  height: 380px;
  background: rgba(238, 57, 55, 0.14);
  transform: translateX(-50%);
}

.service-hero .btn--ghost {
  border: 1px solid rgb(0 0 0 / 8%);
  color: #595959;
  transition: 0.3s ease;
}

.service-hero .btn--ghost:hover {
  opacity: 0.7;
}

.service-hero .btn--scroll .btn__icon {
  border: 1px solid rgba(0, 0, 0, 0.30);
  color: #595959;
}

@media (max-width: 1199.98px) {
  .service-hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    min-height: auto;
  }

  .service-hero__title {
    font-size: clamp(34px, 5vw, 56px);
  }
}

@media (max-width: 991px) {
  .service-hero {
    padding-top: 120px;
    padding-bottom: 70px;
  }

  .service-hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .service-hero__content {
    max-width: 100%;
  }

  .service-hero__text {
    max-width: 100%;
  }

  .service-hero__media {
    max-width: 760px;
  }
}

@media (max-width: 767px) {
  .service-hero {
    padding-top: 120px;
  }

  .service-hero .service-hero__actions {
    justify-content: center;
  }

  .service-hero__title {
    font-size: 36px;
    line-height: 1.02;
  }

  .service-hero__text {
    font-size: 16px;
  }

  .service-hero__btn {
    width: 100%;
    min-height: 54px;
    padding: 0 22px;
  }

  .service-hero__image-wrap {
    border-radius: 24px;
  }

  .service-hero__blur--1 {
    width: 220px;
    height: 220px;
    left: -60px;
  }

  .service-hero__blur--2 {
    display: none;
  }

  .service-hero__blur--3 {
    display: none;
  }
}

/* =========================
   service benefits
========================= */

.service-benefits {
  position: relative;
  padding: var(--padding-section);
  overflow: hidden;
  background: var(--dark);
  border-top-left-radius: 36px;
  border-top-right-radius: 36px;
}

.service-benefits__blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(85px);
  pointer-events: none;
  z-index: 1;
}

.service-benefits__blur--1 {
  top: 120px;
  left: -120px;
  width: 280px;
  height: 280px;
  background: rgba(238, 57, 55, 0.14);
}

.service-benefits__blur--2 {
  right: -100px;
  bottom: 80px;
  width: 320px;
  height: 320px;
  background: rgba(238, 57, 55, 0.12);
}

.service-benefits .container {
  position: relative;
  z-index: 2;
}

.service-benefits__head {
  max-width: 860px;
  margin: 0 auto 48px;
  text-align: center;
}

.service-benefits__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.service-benefits__eyebrow::before,
.service-benefits__eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
  opacity: 0.75;
}

.service-benefits__title {
  margin: 0 0 14px;
  font-size: clamp(34px, 4.6vw, 41px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #fff;
}

.service-benefits__subtitle {
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.68);
}

.service-benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.service-benefits__card {
  position: relative;
  min-height: 250px;
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease, background .35s ease;
}

.service-benefits__card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.30),
    0 0 0 1px rgba(238, 57, 55, 0.10);
  border-color: rgba(238, 57, 55, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
}

.service-benefits__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: rgba(238, 57, 55, 0.14);
  color: var(--accent);
  box-shadow:
    inset 0 0 0 1px rgba(238, 57, 55, 0.10),
    0 10px 24px rgba(0, 0, 0, 0.16);
}

.service-benefits__icon svg {
  width: 22px;
  height: 22px;
}

.service-benefits__icon--accent {
  background: rgba(238, 57, 55, 0.16);
  box-shadow:
    0 0 0 1px rgba(238, 57, 55, 0.10),
    0 10px 30px rgba(238, 57, 55, 0.14);
}

.service-benefits__card-title {
  margin: 0 0 14px;
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
}

.service-benefits__card-text {
  max-width: 95%;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.74);
}

.service-benefits__card--wide {
  grid-column: 1 / -1;
  min-height: 310px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: 30px;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.04) 45%, rgba(238, 57, 55, 0.08) 100%);
}

.service-benefits__card-bg {
  position: absolute;
  right: -70px;
  top: 50%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(238, 57, 55, 0.22) 0%, rgba(238, 57, 55, 0.10) 35%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

.service-benefits__card--wide::before {
  content: "";
  position: absolute;
  top: -60px;
  right: 120px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(238, 57, 55, 0.08);
}

.service-benefits__card--wide::after {
  content: "";
  position: absolute;
  bottom: -50px;
  right: 40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 1px solid rgba(238, 57, 55, 0.16);
}

.service-benefits__wide-left,
.service-benefits__wide-right {
  position: relative;
  z-index: 2;
}

.service-benefits__wide-left {
  max-width: 760px;
}

.service-benefits__wide-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

.service-benefits__stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.service-benefits__stat-label {
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.46);
}

.service-benefits__stat-value {
  font-size: 22px;
  line-height: 1.15;
  font-weight: 700;
  color: #fff;
}

.service-benefits__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 18px 40px rgba(238, 57, 55, 0.18);
  transition: transform .35s ease, background .35s ease, box-shadow .35s ease;
}

.service-benefits__btn:hover {
  color: var(--white);
  background: #c92d2b;
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(238, 57, 55, 0.24);
}

@media (max-width: 1199.98px) {
  .service-benefits__card-title {
    font-size: 26px;
  }

  .service-benefits__card-text {
    font-size: 17px;
  }
}

@media (max-width: 991px) {
  .service-benefits {
    padding: 80px 0;
  }

  .service-benefits__grid {
    grid-template-columns: 1fr;
  }

  .service-benefits__card--wide {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .service-benefits__wide-left {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .service-benefits {
    padding: 64px 0;
  }

  .service-benefits__head {
    margin-bottom: 34px;
  }

  .service-benefits__title {
    font-size: 34px;
  }

  .service-benefits__subtitle {
    font-size: 16px;
  }

  .service-benefits__grid {
    gap: 18px;
  }

  .service-benefits__card {
    min-height: auto;
    padding: 24px;
    border-radius: 24px;
  }

  .service-benefits__card-title {
    font-size: 24px;
  }

  .service-benefits__card-text {
    max-width: 100%;
    font-size: 14px;
  }

  .service-benefits__btn {
    width: 100%;
  }

  .service-benefits__stat {
    width: 100%;
  }
}

/* =========================
   service cases
========================= */
.service-cases {
  position: relative;
  padding: var(--padding-section);
  background: var(--dark);
}

.service-cases__blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 1;
}

.service-cases__blur--1 {
  top: 90px;
  left: -100px;
  width: 280px;
  height: 280px;
  background: rgba(238, 57, 55, 0.14);
}

.service-cases__blur--2 {
  right: -120px;
  bottom: 40px;
  width: 320px;
  height: 320px;
  background: rgba(238, 57, 55, 0.10);
}

.service-cases .container {
  position: relative;
  z-index: 2;
}

.service-cases__head {
  max-width: 900px;
  margin: 0 auto 44px;
  text-align: center;
}

.service-cases__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.service-cases__eyebrow::before,
.service-cases__eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
  opacity: .75;
}

.service-cases__title {
  margin: 0;
  font-size: clamp(34px, 4.4vw, 41px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #fff;
}

.service-cases__track {
  display: grid;
  gap: 28px;
}

.service-cases__item {
  position: sticky;
  top: 160px;
  display: grid;
  grid-template-columns: minmax(320px, 725px) minmax(0, 1fr);
  align-items: center;
  gap: 34px;
  padding: 30px;
  border-radius: 34px;
  overflow: hidden;
  background: #17171770;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease, background .35s ease;
}

.service-cases__item::before {
  content: "";
  position: absolute;
  inset: auto auto -100px -100px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(238, 57, 55, 0.08);
  filter: blur(20px);
  pointer-events: none;
}

.service-cases__item.service-cases__item--reverse::before {
  inset: auto -100px -100px auto;
}

.service-cases__item:hover {
  transform: translateY(-4px);
  border-color: rgba(238, 57, 55, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.30),
    0 0 0 1px rgba(238, 57, 55, 0.08);
}

.service-cases__item--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 725px);
}

.service-cases__item--reverse .service-cases__content {
  order: 2;
}

.service-cases__item--reverse .service-cases__media {
  order: 1;
}

.service-cases__content,
.service-cases__media {
  position: relative;
  z-index: 2;
}

.service-cases__content {
  max-width: 100%;
}

.service-cases__item-title {
  margin: 0 0 16px;
  font-size: clamp(28px, 2.2vw, 34px);
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: -0.035em;
  color: #fff;
}

.service-cases__item-text {
  margin-bottom: 26px;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
}

.service-cases__btn {
  color: var(--white);
  transition: transform .35s ease, box-shadow .35s ease, background .35s ease, border-color .35s ease;
}

.service-cases__btn:hover {
  color: var(--white);
  background: #232323;
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.30);
}

.service-cases__media {
  min-width: 0;
}

.service-cases__image {
  display: block;
  width: 100%;
  aspect-ratio: 1.62 / 0.75;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
}

@media (max-width: 1199.98px) {

  .service-cases__item,
  .service-cases__item--reverse {
    grid-template-columns: 360px minmax(0, 1fr);
  }

  .service-cases__item--reverse .service-cases__content {
    order: 2;
  }

  .service-cases__item--reverse .service-cases__media {
    order: 1;
  }

  .service-cases__item-title {
    font-size: 34px;
  }

  .service-cases__item-text {
    font-size: 17px;
  }
}

@media (max-width: 991px) {
  .service-cases {
    padding: 80px 0;
  }

  .service-cases__item,
  .service-cases__item--reverse {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-cases__item--reverse .service-cases__content,
  .service-cases__item--reverse .service-cases__media {
    order: initial;
  }

  .service-cases__content {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .service-cases {
    padding: 64px 0;
  }

  .service-cases__head {
    margin-bottom: 28px;
  }

  .service-cases__title {
    font-size: 34px;
  }

  .service-cases__track {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .service-cases__track::-webkit-scrollbar {
    height: 6px;
  }

  .service-cases__track::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.18);
    border-radius: 999px;
  }

  .service-cases__item,
  .service-cases__item--reverse {
    flex: 0 0 80vw;
    min-width: 80vw;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 18px;
    border-radius: 24px;
    scroll-snap-align: start;
  }

  .service-cases__content {
    max-width: 100%;
  }

  .service-cases__item-title {
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 1.1;
  }

  .service-cases__item-text {
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.45;
  }

  .service-cases__btn {
    width: 100%;
    min-height: 50px;
    padding: 0 20px;
    font-size: 14px;
  }

  .service-cases__image {
    aspect-ratio: 1.35 / 1;
    border-radius: 18px;
  }
}

/* =========================
   service why
========================= */
.service-why {
  position: relative;
  padding: var(--padding-section);
  overflow: hidden;
  background: var(--dark);
  border-bottom-left-radius: 36px;
  border-bottom-right-radius: 36px;
}

.service-why .container {
  position: relative;
  z-index: 2;
}

.service-why__blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 1;
}

.service-why__blur--1 {
  top: 60px;
  left: -120px;
  width: 280px;
  height: 280px;
  background: rgba(238, 57, 55, 0.14);
}

.service-why__blur--2 {
  right: -100px;
  bottom: 30px;
  width: 320px;
  height: 320px;
  background: rgba(238, 57, 55, 0.1);
}

.service-why__head {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.service-why__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.service-why__eyebrow::before,
.service-why__eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
  opacity: 0.75;
}

.service-why__title {
  margin: 0;
  font-size: clamp(28px, 2.2vw, 42px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #fff;
}

.service-why__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.service-why__card {
  position: relative;
  grid-column: span 4;
  min-height: 170px;
  padding: 24px 20px 22px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease, background .35s ease;
  overflow: hidden;
}

/* .service-why__card::before {
        content: "";
        position: absolute;
        right: -40px;
        top: -40px;
        width: 120px;
        height: 120px;
        border-radius: 50%;
        background: rgba(238, 57, 55, 0.08);
        pointer-events: none;
    } */

.service-why__card:hover {
  transform: translateY(-6px);
  border-color: rgba(238, 57, 55, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(238, 57, 55, 0.08);
}

.service-why__card--wide {
  grid-column: span 6;
  min-height: 145px;
}

.service-why__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(238, 57, 55, 0.14);
  color: var(--accent);
  box-shadow:
    inset 0 0 0 1px rgba(238, 57, 55, 0.14),
    0 10px 24px rgba(0, 0, 0, 0.18);
}

.service-why__icon svg {
  width: 22px;
  height: 22px;
}

.service-why__card-title {
  margin: 0 0 10px;
  font-size: clamp(23px, 1.7vw, 24px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
}

.service-why__card-text {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 991.98px) {
  .service-why {
    padding: 80px 0;
  }

  .service-why__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-why__card,
  .service-why__card--wide {
    grid-column: auto;
  }
}

@media (max-width: 767.98px) {
  .service-why {
    padding: 64px 0;
  }

  .service-why__head {
    margin-bottom: 26px;
  }

  .service-why__title {
    font-size: 34px;
  }

  .service-why__grid {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .service-why__grid::-webkit-scrollbar {
    height: 6px;
  }

  .service-why__grid::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.18);
    border-radius: 999px;
  }

  .service-why__card,
  .service-why__card--wide {
    flex: 0 0 80vw;
    min-width: 80vw;
    min-height: auto;
    padding: 20px 18px;
    border-radius: 22px;
    scroll-snap-align: start;
  }

  .service-why__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
  }

  .service-why__icon svg {
    width: 20px;
    height: 20px;
  }

  .service-why__card-title {
    margin-bottom: 8px;
    font-size: 22px;
  }

  .service-why__card-text {
    font-size: 15px;
    line-height: 1.45;
  }
}

/* =========================
   service cta
========================= */
.service-cta {
  position: relative;
  padding: var(--padding-section);
  overflow: hidden;
}

.service-cta__inner {
  position: relative;
  overflow: hidden;
  padding: 72px 24px;
  border-radius: 42px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(246, 248, 250, 0.96) 100%);
  border: 1px solid rgba(23, 23, 23, 0.06);
  box-shadow:
    0 30px 80px rgba(23, 23, 23, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.service-cta__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(238, 57, 55, 0.09) 0%, transparent 24%),
    radial-gradient(circle at 82% 78%, rgba(238, 57, 55, 0.08) 0%, transparent 24%);
  pointer-events: none;
}

.service-cta__inner::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 30px;
  border: 1px solid rgba(23, 23, 23, 0.04);
  pointer-events: none;
}

.service-cta__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.service-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(23, 23, 23, 0.58);
}

.service-cta__eyebrow::before,
.service-cta__eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
  opacity: 0.7;
}

.service-cta__title {
  margin: 0 0 18px;
  font-size: clamp(28px, 2.2vw, 42px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--dark);
}

.service-cta__text {
  max-width: 700px;
  margin: 0 auto 32px;
  font-size: 20px;
  line-height: 1.55;
  color: rgba(23, 23, 23, 0.74);
}

.service-cta__actions {
  display: flex;
  justify-content: center;
}

.service-cta__btn {
  color: var(--white);
  transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
}

.service-cta__btn:hover {
  color: var(--white);
  background: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 22px 46px rgba(23, 23, 23, 0.18);
}

.service-cta__decor {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.service-cta__decor--1 {
  top: -80px;
  left: -60px;
  width: 220px;
  height: 220px;
  background: rgba(238, 57, 55, 0.10);
  filter: blur(35px);
}

.service-cta__decor--2 {
  right: -70px;
  bottom: -90px;
  width: 260px;
  height: 260px;
  background: rgba(238, 57, 55, 0.10);
  filter: blur(40px);
}

@media (max-width: 991.98px) {
  .service-cta {
    padding: 80px 0 90px;
  }

  .service-cta__inner {
    padding: 56px 22px;
    border-radius: 32px;
  }

  .service-cta__text {
    font-size: 18px;
  }
}

@media (max-width: 767.98px) {
  .service-cta {
    padding: 64px 0 72px;
  }

  .service-cta__inner {
    padding: 40px 18px;
    border-radius: 24px;
  }

  .service-cta__inner::after {
    inset: 10px;
    border-radius: 18px;
  }

  .service-cta__eyebrow {
    margin-bottom: 14px;
    font-size: 11px;
  }

  .service-cta__title {
    margin-bottom: 14px;
    font-size: 30px;
    line-height: 1.06;
  }

  .service-cta__text {
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.5;
  }

  .service-cta__btn {
    width: 100%;
    min-height: 52px;
    padding: 0 20px;
    font-size: 14px;
  }

  .service-cta__decor--1 {
    width: 140px;
    height: 140px;
    top: -50px;
    left: -40px;
  }

  .service-cta__decor--2 {
    width: 160px;
    height: 160px;
    right: -50px;
    bottom: -60px;
  }

  .service-cta__decor--3 {
    display: none;
  }
}



/* =========================
   service products
========================= */
.service-products {
  position: relative;
  padding: var(--padding-section);
  overflow: hidden;
}

.service-products .container {
  position: relative;
  z-index: 2;
}


.service-products__head {
  max-width: 920px;
  margin: 0 auto 42px;
  text-align: center;
}

.service-products__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(23, 23, 23, 0.58);
}

.service-products__eyebrow::before,
.service-products__eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
  opacity: 0.7;
}

.service-products__title {
  margin: 0 0 14px;
  font-size: clamp(28px, 2.2vw, 42px);
  line-height: 1.03;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--dark);
}

.service-products__subtitle {
  max-width: 820px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(23, 23, 23, 0.72);
}

.service-products__slider-wrap {
  position: relative;
}

.service-products__slider {
  margin: 0 -12px;
}

.service-products__slider .service-products__slide {
  padding: 0 12px;
  height: auto;
}

.service-products__card {
  display: flex;
  flex-direction: column;
  height: 695px;
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(247, 248, 250, 0.98) 100%);
  border: 1px solid rgba(23, 23, 23, 0.08);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.service-products__card:hover {
  border-color: rgba(238, 57, 55, 0.14);

}

.service-products__media {
  position: relative;
  padding: 28px 28px 16px;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(238, 57, 55, 0.05) 0%, transparent 45%);
}

.service-products__media::after {
  content: "";
  position: absolute;
  inset: auto 26px 0;
  height: 1px;
  background: rgba(23, 23, 23, 0.06);
}

.service-products__media img {
  display: block;
  max-width: 100%;
  max-height: 290px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.service-products__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 24px 26px 26px;
}

.service-products__top {
  margin-bottom: 14px;
}

.service-products__name {
  margin: 0 0 6px;
  font-size: 32px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--dark);
}

.service-products__capacity {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 800;
  color: var(--accent);
}

.service-products__text {
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(23, 23, 23, 0.76);
}

.service-products__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

.service-products__consult {
  transition: transform .3s ease, border-color .3s ease, background .3s ease, color .3s ease;
}

.service-products__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  transition: transform .3s ease, border-color .3s ease, background .3s ease, color .3s ease;
}

.service-products__more {
  border: 1px solid rgba(23, 23, 23, 0.10);
  background: rgba(255, 255, 255, 0.72);
  color: var(--dark);
  backdrop-filter: blur(10px);
}

.service-products__more:hover {
  transform: translateY(-2px);
  border-color: rgba(238, 57, 55, 0.20);
}

.service-products__consult {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(238, 57, 55, 0.18);
}

.service-products__consult:hover {
  color: var(--white);
  background: var(--dark);
  transform: translateY(-2px);
}

/* popup */
body.popup-open {
  overflow: hidden;
}


.popup__dialog {
  position: relative;
  width: min(1120px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 248, 250, 0.98) 100%);
  border: 1px solid rgba(23, 23, 23, 0.08);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}


.popup__hero {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 28px;
}

.popup__hero-media {
  border-radius: 28px;
  padding: 22px;
  background:
    radial-gradient(circle at 50% 40%, rgba(238, 57, 55, 0.08) 0%, transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
  border: 1px solid rgba(23, 23, 23, 0.06);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup__hero-media img {
  display: block;
  max-width: 100%;
  max-height: 230px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.popup__label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(238, 57, 55, 0.10);
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.popup__title {
  margin: 0 0 6px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--dark);
}

.popup__subtitle {
  margin-bottom: 18px;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--accent);
}

.popup__intro p {
  margin: 0 0 12px;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(23, 23, 23, 0.80);
}

.popup__section+.popup__section {
  margin-top: 28px;
}

.popup__section-title {
  margin: 0 0 16px;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 700;
  color: var(--dark);
}

.popup__specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.popup__spec {
  padding: 10px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 23, 23, 0.06);
}

.popup__spec span {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 700;
  color: rgba(23, 23, 23, 0.50);
}

.popup__spec strong {
  display: block;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 800;
  color: var(--dark);
}

.popup__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.popup__list li {
  position: relative;
  padding-left: 22px;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(23, 23, 23, 0.80);
}

.popup__list li+li {
  margin-top: 12px;
}

.popup__list li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(238, 57, 55, 0.10);
}

@media (max-width: 1199.98px) {
  .service-products__name {
    font-size: 28px;
  }

  .service-products__media {
    min-height: 300px;
  }
}

@media (max-width: 991.98px) {
  .service-products {
    padding: 80px 0;
  }

  .service-products__subtitle {
    font-size: 17px;
  }

  .popup__hero {
    grid-template-columns: 1fr;
  }

  .popup__hero-media {
    min-height: 240px;
  }

  .popup__specs {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .service-products {
    padding: 64px 0;
  }

  .service-products__head {
    margin-bottom: 28px;
  }

  .service-products__title {
    font-size: 34px;
  }

  .service-products__subtitle {
    font-size: 15px;
    line-height: 1.45;
  }

  .service-products__slider {
    margin: 0 -8px;
  }

  .service-products__slider .service-products__slide {
    padding: 0 8px;
  }

  .service-products__card {
    height: 525px;
    border-radius: 22px;
  }

  .service-products__media {
    min-height: 240px;
    padding: 20px 20px 12px;
  }

  .service-products__media img {
    max-height: 200px;
  }

  .service-products__body {
    padding: 20px;
  }

  .service-products__name {
    font-size: 24px;
  }

  .service-products__capacity {
    font-size: 16px;
  }

  .service-products__text {
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.5;
  }

  .service-products__actions {
    gap: 10px;
  }

  .service-products__more,
  .service-products__consult {
    min-height: 48px;
    padding: 0 18px;
    font-size: 14px;
  }

  .service-products__controls {
    margin-top: 18px;
  }

  .popup {
    padding: 12px;
  }

  .popup__dialog {
    max-height: calc(100vh - 24px);
    border-radius: 22px;
  }

  .popup__inner {
    padding: 18px;
  }

  .popup__hero {
    gap: 18px;
    margin-bottom: 22px;
  }

  .popup__hero-media {
    min-height: 200px;
    padding: 16px;
    border-radius: 18px;
  }

  .popup__hero-media img {
    max-height: 170px;
  }

  .popup__label {
    min-height: 28px;
    padding: 0 12px;
    margin-bottom: 10px;
    font-size: 11px;
  }

  .popup__title {
    font-size: 28px;
  }

  .popup__subtitle {
    margin-bottom: 14px;
    font-size: 18px;
  }

  .popup__intro p,
  .popup__list li {
    font-size: 15px;
    line-height: 1.55;
  }

  .popup__section-title {
    margin-bottom: 12px;
    font-size: 20px;
  }

  .popup__spec {
    border-radius: 16px;
  }

  .popup__spec strong {
    font-size: 15px;
  }
}


/* =========================
   service products controls
========================= */

.service-products__controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
}

.service-products__dots .slick-dots {
  position: static;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-products__dots .slick-dots li {
  margin: 0;
  padding: 0;
  line-height: 0;
}

.service-products__dots .slick-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(23, 23, 23, 0.18);
  font-size: 0;
  cursor: pointer;
  transition: width .25s ease, background .25s ease, transform .25s ease;
}

.service-products__dots .slick-dots li.slick-active button {
  width: 32px;
  background: var(--accent);
}

.service-products__dots .slick-dots button:hover {
  transform: scale(1.08);
  background: rgba(238, 57, 55, 0.55);
}

.service-products__arrows {
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-products__arrows .slick-arrow {
  position: relative;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid var(--stroke);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
  font-size: 0;
  cursor: pointer;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, opacity .25s ease;
}

.service-products__arrows .slick-arrow:hover {
  transform: translateY(-2px);
  border-color: rgba(238, 57, 55, 0.28);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.service-products__arrows .slick-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 11px;
  border-top: 2px solid var(--dark);
  border-right: 2px solid var(--dark);
}

.service-products__arrows .slick-prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.service-products__arrows .slick-next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.service-products__arrows .slick-arrow.slick-disabled {
  opacity: .4;
  pointer-events: none;
}

/* single image */
.service-products.is-single .service-products__track {
  margin: 0;
}

.service-products.is-single .service-products__slide {
  padding: 0;
}

.service-products.is-single .service-products__item {
  width: 100%;
}

.service-products.is-single .service-products__controls {
  display: none;
}

@media (max-width: 767px) {
  .service-products__controls {
    gap: 14px;
    margin-top: 18px;
  }

  .service-products__dots .slick-dots {
    gap: 8px;
  }

  .service-products__dots .slick-dots button {
    width: 8px;
    height: 8px;
  }

  .service-products__dots .slick-dots li.slick-active button {
    width: 24px;
  }

  .service-products__arrows .slick-arrow {
    width: 46px;
    height: 46px;
  }
}

/* =========================
   post page
========================= */

.post-page {
  position: relative;
  overflow: hidden;
  background: var(--white);
  color: var(--dark);
  padding: 215px 0 120px;
  font-family: var(--font-body);
}

.post-page::before {
  content: "";
  position: absolute;
  top: -260px;
  left: 50%;
  width: 100vw;
  height: 720px;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(ellipse at center,
      rgba(238, 57, 55, 0.24) 0%,
      rgba(238, 57, 55, 0.18) 18%,
      rgba(238, 57, 55, 0.10) 38%,
      rgba(238, 57, 55, 0.04) 58%,
      rgba(238, 57, 55, 0) 78%);
  filter: blur(90px);
}

.post-page::after {
  content: "";
  position: absolute;
  top: -140px;
  left: 50%;
  width: 100vw;
  height: 420px;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(180deg,
      rgba(238, 57, 55, 0.10) 0%,
      rgba(238, 57, 55, 0.05) 35%,
      rgba(255, 255, 255, 0) 100%);
  filter: blur(70px);
}

.post-page>.container {
  position: relative;
  z-index: 1;
}

.post-page .container {
  width: min(100% - 40px, 1280px);
  margin: 0 auto;
}


.post-article {
  width: min(100%, 960px);
  margin: 0 auto;
}

.post-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--accent);
  transition: color .25s ease, transform .25s ease;
}

.post-back svg {
  width: 20px;
  transform: rotate(180deg);
}

.post-back:hover {
  color: var(--dark);
  transform: translateX(-2px);
}

.post-head {
  margin-bottom: 40px;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-bottom: 18px;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(23, 23, 23, .58);
}

.post-meta>* {
  position: relative;
  display: flex;
  align-items: center;
}

.post-meta>*>img {
  height: 20px;
  margin-right: 5px;
}

.post-meta>*:last-child {
  padding: 5px 15px;
  border-radius: 100px;
  background: rgba(238, 58, 55, .10);
  border: 1px solid rgba(238, 58, 55, .22);
  color: #ee3a37;
}

.post-meta>*:last-child:hover {
  background: #ee3a37;
  color: #ffffff;

}


.post-head h1 {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(38px, 3.2vw, 54px);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--dark);
  text-wrap: balance;
}

.post-content {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(23, 23, 23, .88);
}

.post-content>*:first-child {
  margin-top: 0;
}

.post-content>*:last-child {
  margin-bottom: 0;
}

.post-content p {
  margin: 0 0 1.35em;
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5 {
  margin: 1.7em 0 .6em;
  color: var(--dark);
  font-family: var(--font-body);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  text-wrap: balance;
}

.post-content h1 {
  font-size: clamp(32px, 4vw, 52px);
}

.post-content h2 {
  font-size: clamp(28px, 3vw, 40px);
}

.post-content h3 {
  font-size: clamp(24px, 2.4vw, 32px);
}

.post-content h4 {
  font-size: clamp(20px, 2vw, 26px);
}

.post-content h5 {
  font-size: clamp(18px, 1.8vw, 22px);
}

.post-content ul,
.post-content ol {
  margin: 0 0 1.4em;
  padding-left: 0;
}

.post-content ul li,
.post-content ol li {
  margin-bottom: .6em;
}

.post-content ul li::marker,
.post-content ol li::marker {
  color: var(--accent);
  font-weight: 800;
}

.post-content ol {
  padding-left: 22px;
}

.post-content ul {
  list-style: none;
}

.post-content ul li {
  position: relative;
  padding-left: 17px;
}

.post-content>ul>li::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
}


.post-content blockquote {
  margin: 2em 0;
  padding: 22px 24px 22px 28px;
  border-left: 4px solid var(--accent);
  background: linear-gradient(180deg, rgba(238, 57, 55, .06) 0%, rgba(23, 23, 23, .02) 100%);
  border-radius: 18px;
  color: var(--dark);
  line-height: 1.4;
  font-style: italic;
}

.post-content blockquote p:last-child {
  margin-bottom: 0;
}

.post-content a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color .25s ease;
}

.post-content a:hover {
  color: var(--dark);
}

.post-content strong {
  font-weight: 800;
  color: var(--dark);
}

.post-content img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
}

.post-content hr {
  margin: 2.5em 0;
  border: 0;
  border-top: 1px solid var(--stroke);
}

@media (max-width: 991px) {
  .post-page {
    padding: 180px 0 120px;
  }

  .post-article {
    width: 100%;
  }

  .post-content {
    font-size: 17px;
    line-height: 1.75;
  }

  .post-content blockquote {
    padding: 18px 18px 18px 22px;
    border-radius: 16px;
  }
}

@media (max-width: 640px) {
  .post-page {
    padding: 130px 0 120px;
  }

  .post-page .container {
    width: min(100% - 24px, 1280px);
  }

  .post-back {
    margin-bottom: 22px;
    font-size: 12px;
  }

  .post-meta {
    gap: 8px 12px;
    margin-bottom: 14px;
    font-size: 13px;
  }

  .post-meta>*:not(:last-child)::after {
    margin-left: 12px;
  }

  .post-content {
    font-size: 16px;
  }

  .post-content ul,
  .post-content ol {
    padding-left: 1.2em;
  }
}

/* =========================
   media slider section
========================= */
.media-slider-section {
  position: relative;
  padding: clamp(25px, 6vw, 65px) 0;
}

.media-slider {
  position: relative;
  width: 100%;
}

.media-slider__track {
  margin: 0 -12px;
}

.media-slider__slide {
  padding: 0 12px;
  box-sizing: border-box;
}

.media-slider__item {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 28px;
  background: #f3f3f3;
  text-decoration: none;
}

.media-slider__item::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(180deg, rgba(23, 23, 23, 0) 35%, rgba(23, 23, 23, 0.12) 100%);
  transition: opacity .35s ease;
}

.media-slider__item img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  transform: scale(1);
  transition: transform .6s ease;
}

.media-slider__item:hover img {
  transform: scale(1.04);
}

.media-slider__item:hover::after {
  opacity: 1;
}

/* controls */
.media-slider__controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
}

.media-slider__dots .slick-dots {
  position: static;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.media-slider__dots .slick-dots li {
  margin: 0;
  padding: 0;
  line-height: 0;
}

.media-slider__dots .slick-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(23, 23, 23, 0.18);
  font-size: 0;
  cursor: pointer;
  transition: width .25s ease, background .25s ease, transform .25s ease;
}

.media-slider__dots .slick-dots li.slick-active button {
  width: 32px;
  background: var(--accent);
}

.media-slider__dots .slick-dots button:hover {
  transform: scale(1.08);
  background: rgba(238, 57, 55, 0.55);
}

.media-slider__arrows {
  display: flex;
  align-items: center;
  gap: 12px;
}

.media-slider__arrows .slick-arrow {
  position: relative;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid var(--stroke);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
  font-size: 0;
  cursor: pointer;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, opacity .25s ease;
}

.media-slider__arrows .slick-arrow:hover {
  transform: translateY(-2px);
  border-color: rgba(238, 57, 55, 0.28);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.media-slider__arrows .slick-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 11px;
  border-top: 2px solid var(--dark);
  border-right: 2px solid var(--dark);
}

.media-slider__arrows .slick-prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.media-slider__arrows .slick-next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.media-slider__arrows .slick-arrow.slick-disabled {
  opacity: .4;
  pointer-events: none;
}

/* single image */
.media-slider.is-single .media-slider__track {
  margin: 0;
}

.media-slider.is-single .media-slider__slide {
  padding: 0;
}

.media-slider.is-single .media-slider__item {
  width: 100%;
}

.media-slider.is-single .media-slider__controls {
  display: none;
}

/* mobile */
@media (max-width: 991px) {
  .media-slider__item {
    border-radius: 22px;
  }

  .media-slider__item img {
    height: 340px;
  }
}

@media (max-width: 767px) {
  .media-slider__track {
    margin: 0 -8px;
  }

  .media-slider__slide {
    padding: 0 8px;
  }

  .media-slider__item {
    border-radius: 18px;
  }

  .media-slider__item img {
    height: 260px;
  }

  .media-slider__controls {
    gap: 14px;
    margin-top: 18px;
  }

  .media-slider__dots .slick-dots {
    gap: 8px;
  }

  .media-slider__dots .slick-dots button {
    width: 8px;
    height: 8px;
  }

  .media-slider__dots .slick-dots li.slick-active button {
    width: 24px;
  }

  .media-slider__arrows .slick-arrow {
    width: 46px;
    height: 46px;
  }
}


/* =========================
   project nav section
========================= */
.project-nav-section {
  position: relative;
  padding-bottom: 120px;
  background: var(--white);
}

.project-nav-section .container {
  width: min(100% - 40px, 1280px);
}


.project-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-top: 28px;
  border-top: 1px solid var(--stroke);
}

.project-nav__item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: auto;
  padding: 15px 30px;
  border: 1px solid var(--stroke);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(250, 250, 250, 1) 100%);
  text-decoration: none;
  color: var(--dark);
  overflow: hidden;
  transition:
    transform .35s ease,
    border-color .35s ease,
    box-shadow .35s ease,
    background .35s ease;
}


.project-nav__item:hover {
  transform: translateY(-4px);
  border-color: rgba(238, 57, 55, .22);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .10);
}

.project-nav__item:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.project-nav__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(23, 23, 23, .56);
}

.project-nav__item--prev .project-nav__eyebrow::before,
.project-nav__item--next .project-nav__eyebrow::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: .5;
}

.project-nav__item--next {
  text-align: right;
}

.project-nav__item--next .project-nav__eyebrow {
  justify-content: flex-end;
}

.project-nav__title {
  display: none;
  margin: 0;
  max-width: 560px;
  font-family: var(--font-body);
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.2;
  font-weight: 600;
  color: var(--dark);
  text-wrap: balance;
}

.project-nav__item--next .project-nav__title {
  margin-left: auto;
}

/* floating preview */
.project-nav-preview {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(23, 23, 23, .10);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .18);
  backdrop-filter: blur(14px);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 0, 0) scale(.94);
  transform-origin: center;
  transition:
    opacity .22s ease,
    visibility .22s ease,
    transform .22s ease;
  z-index: 60;
}

.project-nav-preview.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0) scale(1);
}

.project-nav-preview__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #ececec;
}

.project-nav-preview__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-nav-preview__body {
  padding: 16px 18px 18px;
}

.project-nav-preview__label {
  margin-bottom: 8px;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
}

.project-nav-preview__title {
  font-size: 18px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--dark);
}

/* mobile */
@media (max-width: 991px) {
  .project-nav {
    grid-template-columns: 1fr;
  }

  .project-nav__item,
  .project-nav__item--next {
    text-align: left;
  }

  .project-nav__item--next .project-nav__eyebrow {
    justify-content: flex-start;
  }

  .project-nav__item--next .project-nav__title {
    margin-left: 0;
  }

  .project-nav__item {
    padding: 22px 22px 24px;
    border-radius: 22px;
  }

  .project-nav__title {
    max-width: 100%;
    font-size: clamp(22px, 4vw, 30px);
  }
}

@media (max-width: 767px) {
  .project-nav__title {
    display: block;
  }

  .project-nav-section {
    padding-top: 42px;
  }

  .project-nav {
    gap: 14px;
    padding-top: 22px;
  }

  .project-nav__item {
    min-height: auto;
    padding: 18px 18px 20px;
    border-radius: 18px;
  }

  .project-nav__eyebrow {
    margin-bottom: 14px;
    font-size: 11px;
  }

  .project-nav__title {
    font-size: 22px;
  }

  .project-nav-preview {
    display: none !important;
  }
}



/* =========================
   service fleet
========================= */
.service-fleet {
  position: relative;
  overflow: hidden;
  padding: 215px 0 120px;
  background: linear-gradient(180deg, #ffffff 0%, #fafafb 100%);
  isolation: isolate;
}

.service-fleet::before {
  content: "";
  position: absolute;
  top: -260px;
  left: 50%;
  width: 100vw;
  height: 720px;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(ellipse at center,
      rgba(238, 57, 55, 0.24) 0%,
      rgba(238, 57, 55, 0.18) 18%,
      rgba(238, 57, 55, 0.10) 38%,
      rgba(238, 57, 55, 0.04) 58%,
      rgba(238, 57, 55, 0) 78%);
  filter: blur(90px);
}

.service-fleet::after {
  content: "";
  position: absolute;
  top: -140px;
  left: 50%;
  width: 100vw;
  height: 420px;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(180deg,
      rgba(238, 57, 55, 0.10) 0%,
      rgba(238, 57, 55, 0.05) 35%,
      rgba(255, 255, 255, 0) 100%);
  filter: blur(70px);
}

.service-fleet .container {
  position: relative;
  z-index: 2;
}

.service-fleet__head {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.service-fleet__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(23, 23, 23, 0.58);
}

.service-fleet__eyebrow::before,
.service-fleet__eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
  opacity: .7;
}

.service-fleet__title {
  margin: 0;
  font-size: clamp(38px, 3.2vw, 54px);
  line-height: 1.03;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--dark);
}

.service-fleet__title span {
  color: var(--accent);
}

.service-fleet__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 24px;
}

.service-fleet__card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, .94) 0%, rgba(247, 248, 250, .98) 100%);
  border: 1px solid rgba(23, 23, 23, .08);
  box-shadow:
    0 20px 60px rgba(23, 23, 23, .05),
    inset 0 1px 0 rgba(255, 255, 255, .8);
  transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;
}

.service-fleet__card:hover {
  transform: translateY(-6px);
  border-color: rgba(238, 57, 55, .16);
  box-shadow:
    0 26px 70px rgba(23, 23, 23, .08),
    0 0 0 1px rgba(238, 57, 55, .06);
}

.service-fleet__image {
  position: relative;
  display: block;
  aspect-ratio: 1.28 / 1;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 20%, rgba(238, 57, 55, .06) 0%, transparent 45%),
    #f4f5f7;
}

.service-fleet__image::after {
  content: "";
  position: absolute;
  inset: auto 20px 0;
  height: 1px;
  background: rgba(23, 23, 23, .06);
  z-index: 3;
}

.service-fleet__image--swap {
  position: relative;
}

.service-fleet__img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .55s ease, transform .65s ease;
  will-change: opacity, transform;
}

.service-fleet__img--main {
  opacity: 1;
  z-index: 1;
  transform: scale(1);
}

.service-fleet__img--hover {
  opacity: 0;
  z-index: 2;
  transform: scale(1.03);
}

.service-fleet__card:hover .service-fleet__img--main {
  opacity: 0;
  transform: scale(1.04);
}

.service-fleet__card:hover .service-fleet__img--hover {
  opacity: 1;
  transform: scale(1.04);
}

.service-fleet__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 22px 24px;
}

.service-fleet__name {
  margin: 0;
  font-size: 25px;
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--dark);
}

.service-fleet__model {
  font-size: 15px;
  line-height: 1.45;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
}

.service-fleet__meta {
  margin-top: 2px;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 700;
  color: rgba(23, 23, 23, .80);
}

@media (max-width: 1199.98px) {
  .service-fleet__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-fleet__name {
    font-size: 23px;
  }
}

@media (max-width: 767.98px) {
  .service-fleet {
    padding: 64px 0;
  }

  .service-fleet__head {
    margin-bottom: 28px;
  }

  .service-fleet__title {
    font-size: 34px;
  }

  .service-fleet__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-fleet__card {
    border-radius: 22px;
  }

  .service-fleet__body {
    padding: 18px 18px 20px;
    gap: 8px;
  }

  .service-fleet__name {
    font-size: 21px;
  }

  .service-fleet__model,
  .service-fleet__meta {
    font-size: 14px;
    line-height: 1.4;
  }
}



/* =========================
   news archive 
========================= */
.news--archive {
  position: relative;
  padding: 150px 0 110px 0;
  border-top: 1px solid var(--stroke);
}

.news--archive .section__intro {
  margin-bottom: 34px;
}

.news--archive .news__filters {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.news--archive .news__filter {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  background: rgba(255, 255, 255, 0.82);
  color: rgba(23, 23, 23, 0.72);
  text-decoration: none;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
  transition:
    transform .3s ease,
    border-color .3s ease,
    background .3s ease,
    color .3s ease,
    box-shadow .3s ease;
}

.news--archive .news__filter:hover {
  transform: translateY(-2px);
  border-color: rgba(238, 57, 55, 0.18);
  background: rgba(238, 57, 55, 0.08);
  color: var(--accent);
  box-shadow: 0 14px 34px rgba(238, 57, 55, 0.08);
}

.news--archive .news__filter.is-active,
.news--archive .news__filter[aria-current="page"] {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
  box-shadow: 0 14px 30px rgba(23, 23, 23, 0.14);
}

.news--archive .news__filter.is-active:hover,
.news--archive .news__filter[aria-current="page"]:hover {
  transform: translateY(-2px);
  background: #202020;
  color: var(--white);
  border-color: #202020;
}

.news--archive .news__filters {
  gap: 10px;
  margin-bottom: 24px;
}

.news--archive .news__filter {
  min-height: 42px;
  padding: 0 16px;
  font-size: 13px;
}

@media (max-width: 767px) {
  .news--archive .news__filters {
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
  }

  .news--archive .news__filter {
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }

  .news--archive .news__grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    overflow-x: visible;
  }
}

/* =========================
   pagination
========================= */

.pagination {
  margin-top: 42px;
  display: flex;
  justify-content: center;
}

.pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pagination .page-numbers li {
  margin: 0;
  padding: 0;
}

.pagination .page-numbers .page-numbers {
  width: 48px;
  height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  background: rgba(255, 255, 255, 0.82);
  color: var(--dark);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  transition: all .3s ease;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
}

.pagination .page-numbers a:hover {
  border-color: rgba(238, 57, 55, 0.22);
  background: rgba(238, 57, 55, 0.08);
  color: var(--accent);
  transform: translateY(-2px);
}

.pagination .page-numbers .current {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
  box-shadow: 0 14px 28px rgba(23, 23, 23, 0.16);
}

.pagination .page-numbers .next img {
  width: 18px;
  height: 18px;
  display: block;
}

@media (max-width: 767px) {
  .pagination {
    margin-top: 30px;
  }

  .pagination .page-numbers {
    gap: 8px;
    flex-wrap: wrap;
  }

  .pagination .page-numbers .page-numbers {
    width: 42px;
    height: 42px;
    padding: 0 14px;
    font-size: 14px;
  }
}

/* =========================
   Tabs Steps
========================= */

.service-steps {
  position: relative;
  overflow: hidden;
  padding: var(--padding-section);
  background: #fff;
  isolation: isolate;
}

.service-steps .container {
  position: relative;
  z-index: 2;
}

.service-steps__head {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.service-steps__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(23, 23, 23, 0.56);
}

.service-steps__eyebrow::before,
.service-steps__eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
  opacity: .7;
}

.service-steps__title {
  margin: 0;
  font-size: clamp(28px, 2.2vw, 42px);
  line-height: 1.03;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--accent);
}

.service-steps__nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-bottom: 26px;
}

.service-steps__tab {
  position: relative;
  min-height: 55px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  background: transparent;
  text-align: left;
  border-radius: 99px;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 600;
  color: var(--dark);
  margin-right: 10px;
  cursor: pointer;
  transition: color .3s ease, background .3s ease;
}



.service-steps__tab:last-child {
  margin-right: 0px;
}

/* .service-steps__tab::before {
    content: "";
    position: absolute;
    top: 0;
    left: -1px;
    right: -1px;
    height: 3px;
    background: transparent;
    transition: background .3s ease;
} */

.service-steps__tab:hover {
  color: var(--accent);
}

.service-steps__tab.is-active {
  color: var(--accent);
  background: rgba(238, 57, 55, 0.02);
  border-top: 3px solid var(--accent);
}

/* .service-steps__tab.is-active::before {
    background: var(--accent);
} */

.service-steps__panel {
  display: none;
}

.service-steps__panel.is-active {
  display: block;
}

.service-steps__label {
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 900;
  color: var(--dark);
}

.service-steps__card {
  display: grid;
  grid-template-columns: 520px minmax(0, 1fr);
  gap: 38px;
  align-items: center;
  padding: 26px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, rgba(248, 249, 251, .98) 100%);
  border: 1px solid rgba(23, 23, 23, .08);
  box-shadow:
    0 20px 60px rgba(23, 23, 23, .05),
    inset 0 1px 0 rgba(255, 255, 255, .9);
}

.service-steps__media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 18%, rgba(238, 57, 55, .06) 0%, transparent 42%),
    #f4f5f7;
}

.service-steps__media img {
  display: block;
  width: 100%;
  aspect-ratio: 1.28 / 1;
  object-fit: cover;
}

.service-steps__content {
  max-width: 640px;
}

.service-steps__card-title {
  margin: 0 0 18px;
  font-size: clamp(28px, 2vw, 42px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--dark);
}

.service-steps__text p {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(23, 23, 23, .82);
}

.service-steps__text p+p {
  margin-top: 16px;
}

@media (max-width: 1199.98px) {
  .service-steps__nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-steps__card {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-steps__content {
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  .service-steps {
    padding: 64px 0;
  }

  .service-steps__head {
    margin-bottom: 24px;
  }

  .service-steps__title {
    font-size: 34px;
  }

  .service-steps__nav {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 6px;
    border-bottom: 0;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }

  .service-steps__nav::-webkit-scrollbar {
    height: 6px;
  }

  .service-steps__nav::-webkit-scrollbar-thumb {
    background: rgba(23, 23, 23, 0.14);
    border-radius: 999px;
  }

  .service-steps__tab {
    flex: 0 0 280px;
    min-height: 64px;
    padding: 16px 16px 14px;
    border: 1px solid rgba(23, 23, 23, 0.08);
    border-radius: 18px;
    font-size: 16px;
    scroll-snap-align: start;
  }

  .service-steps__tab:first-child {
    border-left: 1px solid rgba(23, 23, 23, 0.08);
  }

  .service-steps__label {
    margin-bottom: 14px;
    font-size: 15px;
  }

  .service-steps__card {
    padding: 16px;
    border-radius: 22px;
    gap: 18px;
  }

  .service-steps__media {
    border-radius: 16px;
  }

  .service-steps__card-title {
    margin-bottom: 12px;
    font-size: 24px;
  }

  .service-steps__text p {
    font-size: 15px;
    line-height: 1.55;
  }
}

/* =========================
   service price
========================= */

.service-price {
  position: relative;
  padding: var(--padding-section);
  overflow: hidden;
}

.service-price .container {
  position: relative;
  z-index: 1;
}

.service-price__wrap {
  position: relative;
}

.service-price__head {
  max-width: 980px;
  margin: 0 auto 46px;
  text-align: center;
}

.service-price__title {
  margin: 0 0 14px;
  font-size: clamp(34px, 4.6vw, 41px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--dark);
}

.service-price__lead {
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(15px, 0.55vw + 13px, 15px);
  color: rgba(23, 23, 23, 0.72);
}

.service-price__lead strong {
  color: var(--dark);
  font-weight: 800;
}

.service-price__top {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .8fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 45px;
}

.service-price__hero,
.service-price__cta,
.service-price__card,
.service-price__info {
  position: relative;
  border: 1px solid var(--stroke);
  background: var(--glass);
  backdrop-filter: blur(18px);
  box-shadow: var(--h-shadow);
}

.service-price__hero {
  min-height: 100%;
  padding: 15px;
  border-radius: 34px;
  overflow: hidden;
}

.service-price__hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(238, 57, 55, 0.16) 0%, rgba(238, 57, 55, 0.05) 28%, rgba(238, 57, 55, 0) 55%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.94) 100%);
  pointer-events: none;
}

.service-price__hero>* {
  position: relative;
  z-index: 1;
}

.service-price__hero-badge {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  min-width: 180px;
  padding: 16px 18px;
  margin-bottom: 26px;
  background: rgba(238, 57, 55, .08);
  border: 1px solid rgba(238, 58, 55, 50%);
  border-radius: 24px;
}

.service-price__hero-badge span {
  font: 700 11px/1.2 var(--font-body);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(23, 23, 23, 0.52);
}

.service-price__hero-badge strong {
  font: 600 clamp(28px, 3vw, 42px)/1 var(--font-body);
  color: var(--accent);
  letter-spacing: -0.03em;
}

.service-price__hero-list {
  display: grid;
  gap: 14px;
}

.service-price__hero-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
}

.service-price__hero-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 16px;
  background: var(--dark);
  color: var(--white);
  box-shadow: 0 10px 25px rgba(23, 23, 23, 0.14);
}

.service-price__hero-icon svg {
  width: 23px;
  height: 23px;
}

.service-price__hero-item strong {
  display: block;
  margin-bottom: 3px;
  font: 600 18px/1.2 var(--font-body);
  color: var(--dark);
}

.service-price__hero-item span:last-child {
  display: block;
  font: 500 14px/1.5 var(--font-body);
  color: rgba(23, 23, 23, 0.66);
}

.service-price__cta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(23, 23, 23, 0.94) 0%, rgba(23, 23, 23, 1) 100%);
  border-color: rgba(255, 255, 255, 0.06);
  color: var(--white);
  overflow: hidden;
}

.service-price__cta::before {
  content: "";
  position: absolute;
  inset: auto -60px -60px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(238, 57, 55, 0.28) 0%, rgba(238, 57, 55, 0) 70%);
  pointer-events: none;
}

.service-price__cta>* {
  position: relative;
  z-index: 1;
}

.service-price__cta-label {
  margin-bottom: 16px;
  font: 600 12px/1 var(--font-body);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.56);
}

.service-price__cta-title {
  margin-bottom: 12px;
  font: 600 clamp(26px, 2.1vw, 36px)/1.05 var(--font-body);
  letter-spacing: -0.03em;
}

.service-price__cta-text {
  margin-bottom: 28px;
  font: 500 15px/1.7 var(--font-body);
  color: rgba(255, 255, 255, 0.76);
}

.service-price__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 14px 26px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  font: 600 14px/1 var(--font-body);
  letter-spacing: .02em;
  box-shadow: 0 16px 34px rgba(238, 57, 55, 0.24);
  transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
}

.service-price__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(238, 57, 55, 0.30);
}

.service-price__cta-note {
  margin-top: 20px;
  font: 500 13px/1.6 var(--font-body);
  color: rgba(255, 255, 255, 0.55);
}

.service-price__grid-title {
  margin-bottom: 20px;
}

.service-price__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.service-price__card {
  display: flex;
  align-items: center;
  padding: 15px 15px;
  border-radius: 26px;
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}

.service-price__card:hover {
  transform: translateY(-6px);
  border-color: rgba(238, 57, 55, 0.18);
  box-shadow: 0 22px 50px rgba(23, 23, 23, 0.10);
}

.service-price__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 45px;
  min-height: 45px;
  margin-right: 10px;
  border-radius: 18px;
  background: rgba(238, 57, 55, 0.08);
  color: var(--accent);
}

.service-price__icon svg {
  width: 24px;
  height: 24px;
}

.service-price__card-title {
  margin: 0 0 5px;
  font: 600 18px/1.2 var(--font-body);
  color: var(--dark);
}

.service-price__card-text {
  font: 500 14px/1.6 var(--font-body);
  color: rgba(23, 23, 23, 0.66);
}

.service-price__bottom {
  display: block;
}

.service-price__info {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 15px;
  border-radius: 28px;
}

.service-price__info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: rgb(255 139 0);
  color: var(--white);
}

.service-price__info-icon svg {
  width: 24px;
  height: 24px;
}

.service-price__info-title {
  margin-bottom: 10px;
  font: 600 20px/1.2 var(--font-body);
  color: var(--dark);
}

.service-price__info-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-price__info-list li {
  position: relative;
  padding-left: 18px;
  font: 600 14px/1.55 var(--font-body);
  color: rgba(23, 23, 23, 0.72);
}

.service-price__info-list li::before {
  content: "";
  position: absolute;
  top: .62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgb(255 139 0);
}

@media (max-width: 1199px) {
  .service-price {
    padding: 110px 0;
  }

  .service-price__top {
    grid-template-columns: 1fr;
  }

  .service-price__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .service-price {
    padding: 84px 0;
  }

  .service-price__head {
    margin-bottom: 32px;
  }

  .service-price__lead {
    font-size: 15px;
    line-height: 1.65;
  }

  .service-price__hero,
  .service-price__cta,
  .service-price__info {
    padding: 22px;
    border-radius: 24px;
  }

  .service-price__hero-badge {
    min-width: 0;
    width: 100%;
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 18px;
  }

  .service-price__hero-item {
    grid-template-columns: 44px 1fr;
    gap: 12px;
    padding: 14px;
    border-radius: 18px;
  }

  .service-price__hero-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .service-price__hero-item strong {
    font-size: 16px;
  }

  .service-price__hero-item span:last-child {
    font-size: 13px;
  }

  .service-price__cta-title {
    font-size: 24px;
  }

  .service-price__cta-text {
    margin-bottom: 20px;
    font-size: 14px;
  }

  .service-price__btn {
    width: 100%;
    min-height: 56px;
  }

  .service-price__grid {
    grid-template-columns: 1fr;
    gap: 14px;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;

  }

  .service-price__card {
    flex: 0 0 80vw;
    min-width: 80vw;
    padding: 18px 16px;
    border-radius: 20px;
    scroll-snap-align: start;
  }

  .service-price__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .service-price__card-title {
    font-size: 17px;
  }

  .service-price__card-text {
    font-size: 13px;
  }

  .service-price__info {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-price__info-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .service-price__info-title {
    font-size: 18px;
  }

  .service-price__info-list li {
    font-size: 13px;
  }
}

@media (max-width: 375px) {
  .service-price__card {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* =========================
   projects
========================= */



/* =========================
   projects
========================= */