@charset "UTF-8";
/* CSS Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  line-height: 1.5;
  font-family: Arial, sans-serif;
}

ul,
ol {
  list-style: none;
}

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

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

button,
input,
textarea {
  font: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

.cta-button {
  background-color: #FF5F1F;
  color: #FFFFFF;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(255, 95, 31, 0.4);
}
.cta-button:hover {
  box-shadow: 0 0 25px rgba(255, 95, 31, 0.6);
  transform: translateY(-2px);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.2, 0, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.btn, .btn-outline, .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  font-family: "Montserrat", sans-serif;
}

.btn-primary {
  background-color: #FF5F1F;
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(255, 95, 31, 0.3);
}
.btn-primary:hover {
  background-color: #FF753F;
  box-shadow: 0 6px 25px rgba(255, 95, 31, 0.5);
  transform: translateY(-2px);
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  background-color: transparent;
  border-color: rgba(160, 160, 160, 0.3);
  color: #FFFFFF;
}
.btn-outline:hover {
  border-color: #FF5F1F;
  color: #FF5F1F;
  background-color: rgba(255, 95, 31, 0.05);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  background: rgba(3, 3, 7, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(160, 160, 160, 0.1);
}
.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 0px;
  text-decoration: none;
  z-index: 1001;
}
.header__logo-img {
  display: block;
  width: 35px;
  height: auto;
  flex-shrink: 0;
}
.header__logo span {
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 1px;
}
.header__logo img {
  height: 35px;
  width: auto;
}
.header__menu {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header .has-dropdown {
  position: relative;
}
.header .has-dropdown .dropdown-trigger {
  cursor: pointer;
  padding-right: 15px;
  position: relative;
}
.header .has-dropdown .icon-arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transition: 0.3s;
}
@media (min-width: 993px) {
  .header .has-dropdown:hover .header__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .header .has-dropdown:hover .header__link {
    color: #FF5F1F;
  }
  .header .has-dropdown:hover .icon-arrow {
    transform: translateY(-20%) rotate(-135deg);
    border-color: #FF5F1F;
  }
}
.header__dropdown {
  position: absolute;
  top: calc(100% + 15px);
  left: -20px;
  width: 240px;
  background: #08080c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}
.header__dropdown::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  background: transparent;
}
.header__dropdown li a {
  display: block;
  padding: 15px 25px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}
.header__dropdown li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: #FF5F1F;
  transform: scaleY(0);
  transition: transform 0.3s ease;
}
.header__dropdown li a:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.02);
}
.header__dropdown li a:hover::before {
  transform: scaleY(1);
}
@media (max-width: 992px) {
  .header .has-dropdown {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .header .has-dropdown.is-open .header__link {
    color: #FF5F1F;
  }
  .header .has-dropdown.is-open .icon-arrow {
    transform: rotate(-135deg);
    margin-top: 2px;
    border-color: #FF5F1F;
  }
  .header .has-dropdown.is-open .header__dropdown {
    display: block;
  }
  .header__dropdown {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    display: none;
    transform: none;
    background: transparent;
    border: none;
    padding: 0;
  }
  .header__dropdown li a {
    padding: 12px 0;
    text-align: center;
    font-size: 16px;
  }
  .header__dropdown li a::before {
    display: none;
  }
}
.header__link {
  color: #A0A0A0;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
}
@media (min-width: 992px) {
  .header__link:hover {
    color: #FF5F1F;
  }
}
.header__nav-footer {
  display: none;
}
@media (max-width: 992px) {
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(3, 3, 7, 0.98) 0%, #030307 100%);
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 100px 30px 40px 30px;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 100;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .header__nav::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -50px;
    width: 100px;
    height: 200px;
    background: #FF5F1F;
    filter: blur(80px);
    opacity: 0.15;
    pointer-events: none;
  }
  .header__nav .header__menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
  }
  .header__nav .header__menu .header__link {
    font-size: 20px;
  }
  .header__nav.is-active {
    right: 0;
  }
  .header__nav .header__nav-footer {
    width: 100%;
    max-width: 260px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .header__nav .header__nav-footer .nav-phone-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    background: rgba(255, 95, 31, 0.1);
    border: 1px solid rgba(255, 95, 31, 0.3);
    padding: 12px;
    border-radius: 12px;
    transition: all 0.3s ease;
  }
  .header__nav .header__nav-footer .nav-phone-btn span {
    color: #FF5F1F;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
  }
  .header__nav .header__nav-footer .nav-phone-btn small {
    color: #FFFFFF;
    opacity: 0.8;
    margin-top: 5px;
    font-size: 13px;
  }
  .header__nav .header__nav-footer .nav-phone-btn:active {
    background: #FF5F1F;
  }
  .header__nav .header__nav-footer .nav-phone-btn:active span, .header__nav .header__nav-footer .nav-phone-btn:active small {
    color: #FFFFFF;
  }
  .header__nav .header__nav-footer .nav-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .header__nav .header__nav-footer .nav-form__title {
    color: #A0A0A0;
    font-size: 14px;
    text-align: center;
    margin-bottom: 5px;
  }
  .header__nav .header__nav-footer .nav-form__input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 10px;
    color: #FFFFFF;
    outline: none;
    font-size: 14px;
    transition: all 0.3s ease;
  }
  .header__nav .header__nav-footer .nav-form__input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #FF5F1F;
    box-shadow: 0 0 10px rgba(255, 95, 31, 0.2);
  }
  .header__nav .header__nav-footer .nav-form__input:invalid:not(:-moz-placeholder) {
    border-color: #eb4d4b;
  }
  .header__nav .header__nav-footer .nav-form__input:invalid:not(:placeholder-shown) {
    border-color: #eb4d4b;
  }
  .header__nav .header__nav-footer .nav-form__btn {
    background: #FF5F1F;
    color: #FFFFFF;
    border: none;
    padding: 12px;
    font-size: 14px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.3s;
  }
  .header__nav .header__nav-footer .nav-form__btn:active {
    opacity: 0.8;
  }
}
.header__burger {
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  z-index: 101;
  transition: all 0.3s ease;
}
@media (max-width: 992px) {
  .header__burger {
    display: flex;
  }
}
.header__burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #FF5F1F;
  position: relative;
  transition: all 0.3s ease;
}
.header__burger span::before, .header__burger span::after {
  content: "";
  position: absolute;
  height: 2px;
  background: #FF5F1F;
  right: 0;
  transition: all 0.3s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}
.header__burger span::before {
  width: 16px;
  top: -8px;
}
.header__burger span::after {
  width: 22px;
  bottom: -8px;
}
@media (min-width: 993px) {
  .header__burger:not(.is-active):hover {
    background: rgba(255, 95, 31, 0.1);
  }
  .header__burger:not(.is-active):hover span::before, .header__burger:not(.is-active):hover span::after {
    width: 26px !important;
  }
}
.header__burger.is-active {
  background: #FF5F1F;
}
.header__burger.is-active span {
  background: transparent !important;
}
.header__burger.is-active span::before, .header__burger.is-active span::after {
  width: 26px !important;
  background: #FFFFFF !important;
  top: 0 !important;
  bottom: 0 !important;
  right: 0;
}
.header__burger.is-active span::before {
  transform: rotate(45deg);
}
.header__burger.is-active span::after {
  transform: rotate(-45deg);
}

@media (max-width: 992px) {
  .header__actions {
    display: none;
  }
}
.hero {
  padding: 160px 0 200px;
  background-color: #030307;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .hero {
    padding: 140px 0 200px;
  }
}
@media (max-width: 992px) {
  .hero {
    padding: 120px 0 120px;
  }
}
@media (max-width: 576px) {
  .hero {
    padding: 100px 0 60px;
  }
}
@media (max-width: 480px) {
  .hero {
    padding: 90px 0 40px;
  }
}
.hero__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
@media (min-width: 993px) {
  .hero__wrapper {
    position: relative;
  }
}
@media (max-width: 992px) {
  .hero__wrapper {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
}
@media (max-width: 480px) {
  .hero__wrapper {
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}
.hero__content {
  flex: 0 1 55%;
  max-width: 590px;
  z-index: 5;
}
@media (min-width: 993px) {
  .hero__content {
    position: relative;
    z-index: 10;
    flex: 0 1 60%;
  }
}
@media (max-width: 1200px) {
  .hero__content {
    max-width: 480px;
  }
}
@media (max-width: 992px) {
  .hero__content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 480px) {
  .hero__content {
    position: relative;
    z-index: 5;
    margin-top: 20px;
    align-items: flex-start;
  }
}
.hero__title {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 25px;
}
@media (max-width: 1200px) {
  .hero__title {
    font-size: 32px;
  }
}
.hero__title span {
  color: #FF5F1F;
}
@media (max-width: 992px) {
  .hero__title {
    font-size: 42px;
    max-width: 500px;
  }
}
@media (max-width: 576px) {
  .hero__title {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 600;
    text-align: left;
  }
}
@media (max-width: 480px) {
  .hero__title {
    line-height: 1.3;
    max-width: 80%;
    font-size: 24px;
    letter-spacing: 1.2px;
  }
}
.hero__subtitle {
  font-size: 18px;
  color: #A0A0A0;
  margin-bottom: 40px;
  line-height: 1.6;
}
@media (max-width: 992px) {
  .hero__subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
@media (max-width: 576px) {
  .hero__subtitle {
    text-align: left;
  }
}
@media (max-width: 480px) {
  .hero__subtitle {
    position: static;
    margin-top: 90px;
  }
}
.hero__btns {
  display: flex;
  gap: 20px;
}
@media (max-width: 992px) {
  .hero__btns {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
}
@media (max-width: 576px) {
  .hero__btns {
    flex-direction: column;
    gap: 15px;
  }
  .hero__btns .btn {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .hero__btns {
    margin-top: 20px;
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .hero__btns a {
    font-size: 14px;
    padding: 10px 20px;
  }
}
.hero__visual {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
}
.hero__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #030307 5%, rgba(3, 3, 7, 0) 20%), linear-gradient(180deg, #030307 0%, rgba(3, 3, 7, 0) 15%), linear-gradient(90deg, #030307 0%, rgba(3, 3, 7, 0) 25%), linear-gradient(270deg, #030307 0%, rgba(3, 3, 7, 0) 5%);
  z-index: 3;
  pointer-events: none;
}
@media (max-width: 992px) {
  .hero__visual::before {
    background: linear-gradient(0deg, #030307 0%, rgba(3, 3, 7, 0) 15%);
  }
}
@media (min-width: 1380px) {
  .hero__visual {
    right: -100px;
  }
}
@media (min-width: 993px) {
  .hero__visual {
    position: absolute;
    top: 75%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 1;
    pointer-events: none;
  }
}
@media (max-width: 1200px) {
  .hero__visual {
    top: 65%;
  }
}
@media (max-width: 992px) {
  .hero__visual {
    width: 100%;
    margin-top: 20px;
    position: absolute;
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%);
    top: auto;
    opacity: 1;
    pointer-events: none;
  }
  .hero__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
  }
}
@media (max-width: 768px) {
  .hero__visual {
    bottom: -15px;
  }
}
@media (max-width: 480px) {
  .hero__visual {
    position: absolute;
    display: block;
    margin-top: 0;
    width: 110%;
    top: -20px;
    left: 45%;
  }
  .hero__visual::before {
    background: linear-gradient(0deg, #030307 5%, rgba(3, 3, 7, 0) 20%), linear-gradient(180deg, #030307 0%, rgba(3, 3, 7, 0) 15%), linear-gradient(90deg, #030307 0%, rgba(3, 3, 7, 0) 25%), linear-gradient(270deg, #030307 0%, rgba(3, 3, 7, 0) 5%);
  }
}
.hero__monitor {
  position: relative;
  z-index: 2;
}
.hero__monitor img {
  max-width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
  backface-visibility: hidden;
  filter: brightness(1.2) contrast(1.1) saturate(1.2);
  animation: float 5s ease-in-out infinite;
  will-change: transform;
}
@media (max-width: 992px) {
  .hero__monitor img {
    transform: scale(1.15);
    filter: brightness(0.9) contrast(1.1) saturate(1.1);
  }
}
@media (max-width: 768px) {
  .hero__monitor img {
    max-width: 95%;
    margin-left: auto;
    transform: scale(1);
  }
}
@media (max-width: 480px) {
  .hero__monitor img {
    width: 100%;
    border-radius: 10px;
    transform: none;
  }
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.mission {
  padding: 60px 0;
  background-color: #030307;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .mission {
    padding: 50px 0;
  }
}
@media (max-width: 992px) {
  .mission {
    padding: 40px 0;
  }
}
@media (max-width: 768px) {
  .mission {
    padding: 30px 0;
  }
}
@media (max-width: 480px) {
  .mission {
    padding: 20px 0;
  }
}
.mission__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  filter: grayscale(100%) contrast(1.1);
  opacity: 0.2;
  mask-image: linear-gradient(to left, black 30%, transparent 100%), linear-gradient(to bottom, black 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, black 30%, transparent 100%), linear-gradient(to bottom, black 70%, transparent 100%);
  -webkit-mask-composite: source-in, xor;
          mask-composite: intersect;
}
@media (max-width: 768px) {
  .mission__bg {
    width: 100%;
    height: 50%;
    bottom: 0;
    top: auto;
    opacity: 0.25;
    mask-image: linear-gradient(to top, black 20%, transparent 100%);
    -webkit-mask-image: linear-gradient(to top, black 20%, transparent 100%);
  }
}
.mission__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .mission__bg img {
    -o-object-position: top center;
       object-position: top center;
  }
}
.mission__content {
  position: relative;
  z-index: 2;
}
.mission__header {
  max-width: 800px;
  margin-bottom: 80px;
}
.mission__title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  margin-bottom: 30px;
  color: #FFFFFF;
}
@media (max-width: 480px) {
  .mission__title {
    font-size: 28px;
    margin-bottom: 24px;
  }
}
.mission__title .accent {
  color: #FF5F1F;
}
.mission__lead {
  font-size: 20px;
  line-height: 1.6;
  color: #A0A0A0;
  max-width: 700px;
}
.mission__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 60px;
}
@media (max-width: 768px) {
  .mission__grid {
    grid-template-columns: 1fr;
  }
}

.mission-item {
  padding: 60px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease;
}
.mission-item:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .mission-item:nth-child(odd) {
    border-right: none;
  }
}
.mission-item:hover {
  background: rgba(255, 95, 31, 0.02);
}
.mission-item__num {
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  display: block;
  color: #FF5F1F;
}
.mission-item__title {
  font-size: 26px;
  margin-bottom: 20px;
}
.mission-item__text {
  font-size: 16px;
  max-width: 450px;
  line-height: 1.7;
}

.services {
  padding: 120px 0 60px;
  background-color: #030307;
}
@media (max-width: 1200px) {
  .services {
    padding: 100px 0 50px;
  }
}
@media (max-width: 992px) {
  .services {
    padding: 80px 0 40px;
  }
}
@media (max-width: 768px) {
  .services {
    padding: 60px 0 30px;
  }
}
@media (max-width: 480px) {
  .services {
    padding: 40px 0 20px;
  }
}
.services__title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #FFFFFF;
}
@media (max-width: 480px) {
  .services__title {
    font-size: 28px;
    margin-bottom: 24px;
  }
}
.services__title .accent {
  color: #FF5F1F;
}
.services__subtitle {
  font-size: 18px;
  color: #A0A0A0;
  text-align: center;
  max-width: 650px;
  margin: 0 auto 80px;
}
@media (max-width: 480px) {
  .services__subtitle {
    margin-bottom: 40px;
    max-width: 95%;
  }
}
.services__nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background-color: rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
@media (max-width: 1100px) {
  .services__nav {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .services__nav {
    grid-template-columns: 1fr;
    background-color: transparent;
  }
}

.nav-col {
  text-decoration: none;
  background-color: #030307;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
}
.nav-col:hover {
  background-color: rgba(255, 255, 255, 0.02);
}
.nav-col:hover .nav-col__arrow {
  transform: translateX(10px);
  color: #FF5F1F;
}
.nav-col:hover .nav-col__title {
  color: #FF5F1F;
}
.nav-col__title {
  font-size: 24px;
  color: #FFFFFF;
  margin-bottom: 30px;
  font-weight: 700;
  line-height: 1.2;
  transition: all 0.3s ease;
}
.nav-col__list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}
.nav-col__list li {
  font-size: 16px;
  color: #A0A0A0;
  margin-bottom: 12px;
  position: relative;
  padding-left: 15px;
}
.nav-col__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 4px;
  height: 1px;
  background-color: #FF5F1F;
}
.nav-col__arrow {
  margin-top: auto;
  font-size: 28px;
  color: #A0A0A0;
  transition: all 0.3s ease;
}
@media (max-width: 480px) {
  .nav-col__arrow {
    color: #FF5F1F;
  }
}
@media (max-width: 600px) {
  .nav-col {
    padding: 40px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
}

.contact {
  padding: 120px 0;
  background: #030307;
  border-top: 1px solid #fff;
}
@media (max-width: 992px) {
  .contact {
    padding: 80px 0;
  }
}
.contact__container {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}
@media (max-width: 992px) {
  .contact__container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }
}
@media (max-width: 480px) {
  .contact__container {
    gap: 20px;
  }
}
.contact__info {
  flex: 1;
  position: sticky;
  top: 100px;
}
@media (max-width: 992px) {
  .contact__info {
    position: static;
    top: auto;
    margin-bottom: 30px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .contact__info {
    margin-bottom: 0;
  }
}
.contact__title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.2;
}
.contact__title span {
  color: #FF5F1F;
}
.contact__subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  max-width: 600px;
}
.contact__form {
  flex: 1;
  width: 100%;
  max-width: 550px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 580px) {
  .contact__form {
    grid-template-columns: 1fr;
    padding: 25px;
  }
}
.contact__group {
  display: flex;
  flex-direction: column;
}
.contact__group--full {
  grid-column: 1/-1;
}
.contact__label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.contact__input, .contact__textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 18px;
  border-radius: 6px;
  color: #FFFFFF;
  font-size: 16px;
  transition: all 0.3s ease;
}
.contact__input::-moz-placeholder, .contact__textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.2);
}
.contact__input::placeholder, .contact__textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}
.contact__input:focus, .contact__textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.07);
  border-color: #FF5F1F;
  box-shadow: 0 0 15px rgba(255, 95, 31, 0.1);
}
.contact__input:focus + .contact__label, .contact__textarea:focus + .contact__label {
  color: #FF5F1F;
}
.contact__textarea {
  min-height: 120px;
  resize: none;
  overflow-y: auto;
}
.contact__textarea::-webkit-scrollbar {
  width: 6px;
}
.contact__textarea::-webkit-scrollbar-thumb {
  background: rgba(255, 95, 31, 0.3);
  border-radius: 6px;
}
.contact__btn {
  grid-column: 1/-1;
  justify-self: stretch;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact__border {
  border-top: none;
}

.faq {
  padding: 120px 0;
  background-color: #030307;
  border-top: 1px solid #fff;
}
@media (max-width: 992px) {
  .faq {
    padding: 80px 0;
  }
}
.faq__title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.2;
  text-align: center;
}
.faq__title span {
  color: #FF5F1F;
}
.faq__list {
  max-width: 900px;
  margin: 0 auto;
}
.faq__item {
  margin-bottom: 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
}
.faq__item--active .faq__question {
  color: #FF5F1F;
}
.faq__question {
  padding: 30px 0;
  font-size: 20px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  color: #FFFFFF;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (max-width: 480px) {
  .faq__question {
    padding: 25px 20px;
    font-size: 16px;
    font-weight: 400;
  }
}
.faq__question:hover {
  color: #FF5F1F;
}
.faq__icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-left: 20px;
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  background-color: #FF5F1F;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}
.faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  padding: 0;
  color: #A0A0A0;
  line-height: 1.6;
}
.faq__answer p {
  padding-bottom: 25px;
}

.footer {
  background-color: #030307;
  padding: 80px 0 0;
  border-top: 1px solid #fff;
}
.footer__container.container {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .footer__container.container {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  .footer__container.container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
@media (max-width: 576px) {
  .footer__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.footer .footer__brand {
  margin-right: 50px;
}
@media (max-width: 992px) {
  .footer .footer__brand {
    margin-right: 0;
  }
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer__logo-img {
  display: block;
  width: 35px;
  height: auto;
  flex-shrink: 0;
}
.footer__logo span {
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 1px;
}
.footer__description {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 576px) {
  .footer__description {
    max-width: 300px;
    margin: 0 auto;
  }
}
.footer__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #FFFFFF;
}
.footer__list {
  list-style: none;
  padding: 0;
}
.footer__link {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 15px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}
.footer__link:hover {
  color: #FF5F1F;
}
@media (min-width: 992px) {
  .footer__link:hover {
    transform: translateX(5px);
  }
}
.footer__link--phone {
  font-weight: 700;
  font-size: 16px;
  color: #FFFFFF;
  margin-bottom: 8px;
  display: inline-block;
}
.footer__link--phone:hover {
  color: #FF5F1F;
  transform: scale(1.05) !important;
}
@media (max-width: 576px) {
  .footer__link--phone {
    font-size: 18px;
    padding: 5px 0;
  }
}
.footer__social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
@media (max-width: 576px) {
  .footer__social-icons {
    justify-content: center;
  }
}
.footer__bottom {
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.2);
}
.footer__bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}
@media (max-width: 576px) {
  .footer__bottom-container {
    flex-direction: column;
    gap: 10px;
  }
}
.footer__policy {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
}
.footer__policy:hover {
  text-decoration: underline;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  transition: all 0.3s ease;
}
.social-icon svg {
  width: 18px;
  height: 18px;
}
.social-icon:hover {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.4);
  background-color: rgba(255, 255, 255, 0.05);
  transform: translateY(-3px);
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  left: auto;
  width: 380px;
  background-color: rgba(3, 3, 7, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 9999;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.cookie-banner.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.cookie-banner__text {
  color: rgba(255, 255, 255, 0.9);
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
  text-align: left;
}
.cookie-banner__text span {
  color: #FF5F1F;
  font-weight: 600;
}
.cookie-banner__btns {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}
.cookie-banner__btns button {
  padding: 8px 16px;
  font-size: 13px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}
.cookie-banner__btns #accept-cookies {
  background-color: #FF5F1F;
  color: #FFFFFF;
  border: none;
}
.cookie-banner__btns #accept-cookies:hover {
  background-color: #FF753F;
  box-shadow: 0 0 20px rgba(255, 95, 31, 0.3);
}
.cookie-banner__btns #decline-cookies {
  background-color: transparent;
  border: 1px solid rgba(160, 160, 160, 0.3);
  color: #A0A0A0;
}
.cookie-banner__btns #decline-cookies:hover {
  color: #FFFFFF;
  border-color: #FFFFFF;
}
@media (max-width: 480px) {
  .cookie-banner {
    right: 0;
    width: 100%;
    border-radius: 10px 10px 0 0;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    padding: 20px;
    border-radius: 10px;
  }
}
.cookie-banner__btns {
  width: 100%;
}
.cookie-banner__btns button {
  flex: 1;
}

.hero-universal {
  position: relative;
  padding: 140px 0 120px;
  background-color: #030307;
  overflow: hidden;
}
@media (max-width: 992px) {
  .hero-universal {
    padding: 120px 0 100px;
  }
}
@media (max-width: 576px) {
  .hero-universal {
    padding: 120px 0 80px;
  }
}
.hero-universal__bg-text {
  position: absolute;
  top: 20%;
  right: -5%;
  font-size: 250px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.02);
  line-height: 1;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 1;
  animation: heroFloat 20s linear infinite;
}
@keyframes heroFloat {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-40px);
  }
  100% {
    transform: translateX(0);
  }
}
@media (max-width: 1200px) {
  .hero-universal__bg-text {
    font-size: 200px;
  }
}
@media (max-width: 992px) {
  .hero-universal__bg-text {
    font-size: 140px;
  }
}
@media (max-width: 576px) {
  .hero-universal__bg-text {
    font-size: 90px;
  }
}
.hero-universal__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
@media (max-width: 992px) {
  .hero-universal__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
  }
}
@media (max-width: 480px) {
  .hero-universal__inner {
    align-items: start;
    text-align: start;
  }
}
.hero-universal .breadcrumb {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  grid-column: 1;
  grid-row: 1;
}
@media (max-width: 992px) {
  .hero-universal .breadcrumb {
    margin-bottom: 30px;
    order: 1;
    margin-bottom: 20px;
  }
}
@media (max-width: 576px) {
  .hero-universal .breadcrumb {
    flex-wrap: wrap;
  }
}
@media (max-width: 480px) {
  .hero-universal .breadcrumb {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
  }
}
@media (max-width: 370px) {
  .hero-universal .breadcrumb {
    font-size: 8px;
  }
}
.hero-universal .breadcrumb a {
  color: inherit;
  text-decoration: none;
}
.hero-universal .breadcrumb a:hover {
  color: #FF5F1F;
}
.hero-universal__title {
  font-size: clamp(34px, 4vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  color: #FFFFFF;
  margin-bottom: 30px;
  grid-column: 1;
  grid-row: 2;
}
@media (max-width: 992px) {
  .hero-universal__title {
    order: 2;
    margin-bottom: 20px;
    max-width: 700px;
  }
  .hero-universal__title br {
    display: none;
  }
}
@media (max-width: 480px) {
  .hero-universal__title br {
    display: block;
  }
}
.hero-universal__title .tablet {
  display: none;
}
@media (max-width: 992px) {
  .hero-universal__title .tablet {
    display: block;
  }
}
@media (max-width: 480px) {
  .hero-universal__title .tablet {
    display: none;
  }
}
.hero-universal__title span {
  background: #FF5F1F;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-universal__description {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  max-width: 520px;
  margin-bottom: 50px;
  grid-column: 1;
  grid-row: 3;
}
@media (max-width: 992px) {
  .hero-universal__description {
    order: 3;
    margin-bottom: 30px;
    margin: 0 auto 35px;
  }
}
.hero-universal__btns {
  display: flex;
  align-items: center;
  gap: 40px;
  grid-column: 1;
  grid-row: 4;
}
@media (max-width: 1200px) {
  .hero-universal__btns {
    gap: 20px;
  }
  .hero-universal__btns a {
    font-size: 14px;
  }
}
@media (max-width: 992px) {
  .hero-universal__btns {
    order: 5;
    width: 100%;
    justify-content: center;
    width: auto;
  }
}
@media (max-width: 768px) {
  .hero-universal__btns {
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .hero-universal__btns {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .hero-universal__btns a {
    padding: 10px 16px;
  }
}
.hero-universal .hero-mockup {
  position: relative;
  width: 100%;
  max-width: 600px;
  grid-column: 2;
  grid-row: 1/5;
  opacity: 0;
  animation: slideInRight 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: 0.4s;
}
.hero-universal .hero-mockup::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 80px;
  background: radial-gradient(ellipse, rgba(255, 95, 31, 0.25), transparent 70%);
  filter: blur(20px);
}
@media (max-width: 992px) {
  .hero-universal .hero-mockup {
    order: 4;
    max-width: 500px;
    margin: 0 auto 40px;
    padding: 0;
  }
  .hero-universal .hero-mockup img {
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
  }
}
.hero-universal .hero-mockup img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6));
}
.hero-universal .hero__about__img::after {
  content: "";
  position: absolute;
  background: none;
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(300px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.benefits {
  padding: 120px 0;
  background-color: #030307;
  border-top: 1px solid #fff;
}
@media (max-width: 992px) {
  .benefits {
    padding: 80px 0;
  }
}
.benefits__head {
  max-width: 800px;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .benefits__head {
    margin-bottom: 50px;
  }
}
.benefits__title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.2;
}
.benefits__subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  max-width: 600px;
}
.benefits__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 40px;
}
@media (max-width: 992px) {
  .benefits__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 30px;
  }
}
@media (max-width: 576px) {
  .benefits__list {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.benefits__item {
  position: relative;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: border-color 0.4s ease, opacity 0.8s ease, transform 0.8s ease;
}
.benefits__item.reveal {
  opacity: 0;
  transform: translateY(30px);
}
.benefits__item.active {
  opacity: 1;
  transform: translateY(0);
}
.benefits__item:hover .benefits__content h3 {
  transform: translateX(5px);
  color: #fff;
}
.benefits__item:hover .benefits__icon svg {
  filter: drop-shadow(0 0 8px rgba(255, 95, 31, 0.6));
  transform: scale(1.1);
}
.benefits__icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}
.benefits__icon svg {
  width: 100%;
  height: 100%;
}
.benefits__icon svg * {
  stroke: #FF5F1F;
  fill: none;
  stroke-width: 1.5;
  transition: all 0.3s ease;
}
.benefits__content h3 {
  font-size: 22px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 12px;
  line-height: 1.3;
  transition: all 0.4s ease;
}
@media (max-width: 768px) {
  .benefits__content h3 {
    font-size: 20px;
  }
}
.benefits__content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin: 0;
}

.dev-includes {
  padding: 120px 0;
  background-color: #030307;
  border-top: 1px solid #fff;
  position: relative;
  overflow: hidden;
}
@media (max-width: 992px) {
  .dev-includes {
    padding: 80px 0;
  }
}
.dev-includes__visual {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 50%;
  pointer-events: none;
}
.dev-includes__visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center right;
     object-position: center right;
  filter: grayscale(100%) brightness(0.8) contrast(1.2);
  mask-image: linear-gradient(to left, black 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, black 60%, transparent 100%);
}
@media (max-width: 992px) {
  .dev-includes__visual {
    width: 100%;
    opacity: 0.1;
  }
  .dev-includes__visual img {
    mask-image: linear-gradient(to top, black 50%, transparent 100%);
    -webkit-mask-image: linear-gradient(to top, black 50%, transparent 100%);
    -o-object-position: center;
       object-position: center;
  }
}
.dev-includes__head {
  max-width: 650px;
  margin-bottom: 70px;
}
.dev-includes__title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 20px;
}
.dev-includes__subtitle {
  color: #A0A0A0;
  line-height: 1.6;
}
.dev-includes__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
}
@media (max-width: 992px) {
  .dev-includes__grid {
    grid-template-columns: 1fr;
  }
}
.dev-includes__list {
  display: grid;
  gap: 18px;
}
.dev-includes__list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.75);
}
.dev-includes__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FF5F1F;
}

.pricing {
  padding: 120px 0;
  background-color: #030307;
  border-top: 1px solid #fff;
}
@media (max-width: 992px) {
  .pricing {
    padding: 80px 0;
  }
}
.pricing__head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
@media (max-width: 768px) {
  .pricing__head {
    text-align: left;
    margin-bottom: 40px;
  }
}
.pricing__title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 20px;
}
.pricing__subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .pricing__subtitle {
    font-size: 16px;
  }
}
.pricing__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .pricing__list {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.pricing__item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
@media (max-width: 576px) {
  .pricing__item {
    padding: 40px 24px;
  }
}
.pricing__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #FF5F1F;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.pricing__item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 95, 31, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}
.pricing__item:hover::before {
  transform: scaleX(1);
}
.pricing__top {
  margin-bottom: 30px;
}
.pricing__number {
  font-family: "Monaco", "Consolas", monospace;
  font-size: 14px;
  color: #FF5F1F;
  margin-bottom: 15px;
  letter-spacing: 2px;
}
.pricing__name {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.2;
}
.pricing__desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin: 0;
}
.pricing__features {
  flex-grow: 1;
  margin: 0 0 40px 0;
  padding: 0;
  list-style: none;
}
.pricing__features li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 16px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}
.pricing__features li:last-child {
  margin-bottom: 0;
}
.pricing__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #FF5F1F;
  font-weight: bold;
  font-size: 16px;
}
.pricing__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
}
.pricing__price {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 25px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.pricing__price .prefix, .pricing__price .currency {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
}
.pricing__btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px 20px;
  border: 1px solid #FF5F1F;
  border-radius: 8px;
  color: #FF5F1F;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.pricing__btn:hover {
  background: #FF5F1F;
  color: #fff;
  box-shadow: 0 0 15px rgba(255, 95, 31, 0.4);
}
.pricing__btn--solid {
  background: #FF5F1F;
  color: #fff;
}
.pricing__btn--solid:hover {
  background: rgb(229.5, 126, 0);
  border-color: rgb(229.5, 126, 0);
}

.workflow {
  padding: 120px 0;
  background-color: #030307;
  border-top: 1px solid #fff;
}
@media (max-width: 992px) {
  .workflow {
    padding: 80px 0;
  }
}
.workflow__head {
  text-align: left;
  max-width: 700px;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .workflow__head {
    margin-bottom: 50px;
  }
}
.workflow__title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.2;
}
.workflow__subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .workflow__subtitle {
    font-size: 16px;
  }
}
.workflow__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 992px) {
  .workflow__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 30px;
  }
}
@media (max-width: 576px) {
  .workflow__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.workflow__step {
  transition: transform 0.4s ease;
}
.workflow__step:hover {
  transform: translateY(-5px);
}
.workflow__step:hover .workflow__num {
  color: #fff;
  background-color: #FF5F1F;
  border-color: #FF5F1F;
  box-shadow: 0 0 15px rgba(255, 95, 31, 0.4);
}
.workflow__step:hover .workflow__line {
  background-color: #FF5F1F;
  opacity: 0.5;
}
.workflow__step:hover .workflow__name {
  color: #FF5F1F;
}
.workflow__header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
.workflow__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-family: "Monaco", "Consolas", monospace;
  font-size: 16px;
  font-weight: 600;
  color: #FF5F1F;
  background-color: transparent;
  transition: all 0.4s ease;
  flex-shrink: 0;
}
.workflow__line {
  flex-grow: 1;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin-left: 20px;
  transition: all 0.4s ease;
}
@media (max-width: 992px) {
  .workflow__step:nth-child(2n) .workflow__line {
    display: none;
  }
}
@media (max-width: 576px) {
  .workflow__line {
    display: none;
  }
}
.workflow__step:last-child .workflow__line {
  display: none;
}
.workflow__name {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}
.workflow__desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin: 0;
}

.about-text {
  padding: 120px 0;
  background-color: #030307;
  color: #FFFFFF;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.about-text__wrapper {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) 2fr;
  gap: 60px 80px;
  align-items: start;
}
@media (max-width: 1100px) {
  .about-text__wrapper {
    gap: 40px 50px;
  }
}
@media (max-width: 992px) {
  .about-text__wrapper {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 40px;
  }
}
.about-text__subtitle {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #FF5F1F;
  margin-bottom: 20px;
  position: relative;
  padding-left: 45px;
}
.about-text__subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 1px;
  background-color: #FF5F1F;
}
@media (max-width: 992px) {
  .about-text__subtitle {
    margin-bottom: 10px;
  }
}
.about-text__title {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
}
.about-text__content {
  max-width: 800px;
}
.about-text__heading {
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 35px;
}
.about-text__heading span {
  color: #FF5F1F;
}
@media (max-width: 768px) {
  .about-text__heading {
    margin-bottom: 20px;
  }
}
.about-text__descr p {
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.7;
  color: #A0A0A0;
  margin-bottom: 25px;
}
.about-text__descr p:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .about-text {
    padding: 80px 0;
  }
}
@media (max-width: 480px) {
  .about-text {
    padding: 60px 0;
  }
  .about-text__title {
    font-size: 28px;
  }
  .about-text__heading {
    font-size: 20px;
  }
}

.contacts {
  position: relative;
  padding: 140px 0 120px;
  background-color: #030307;
}
@media (max-width: 992px) {
  .contacts {
    padding: 120px 0 100px;
  }
}
@media (max-width: 576px) {
  .contacts {
    padding: 120px 0 80px;
  }
}
.contacts .breadcrumbs {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  grid-column: 1;
  grid-row: 1;
}
@media (max-width: 992px) {
  .contacts .breadcrumbs {
    margin-bottom: 30px;
    order: 1;
    margin-bottom: 20px;
  }
}
@media (max-width: 576px) {
  .contacts .breadcrumbs {
    flex-wrap: wrap;
  }
}
@media (max-width: 480px) {
  .contacts .breadcrumbs {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
  }
}
@media (max-width: 370px) {
  .contacts .breadcrumbs {
    font-size: 8px;
  }
}
.contacts .breadcrumbs a {
  color: inherit;
  text-decoration: none;
}
.contacts .breadcrumbs a:hover {
  color: #FF5F1F;
}
.contacts__wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 40px;
}
@media (max-width: 992px) {
  .contacts__wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
.contacts__subtitle {
  color: #FF5F1F;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  display: block;
}
.contacts__title {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 700;
  line-height: 1.1;
}
.contacts__title span {
  color: #FF5F1F;
}
.contacts__descr {
  color: #A0A0A0;
  font-size: 18px;
  line-height: 1.6;
  margin: 30px 0 40px;
  max-width: 500px;
}
.contacts__methods {
  display: grid;
  gap: 25px;
  margin-bottom: 40px;
}
.contacts__method {
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s;
}
.contacts__method:hover {
  transform: translateX(10px);
}
.contacts__method-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 95, 31, 0.1);
  border: 1px solid #FF5F1F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.contacts__method-info span {
  display: block;
  color: #A0A0A0;
  font-size: 14px;
}
.contacts__method-info strong {
  font-size: 20px;
  display: block;
  margin-top: 5px;
}
.contacts .btn--tg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 30px;
  background: rgb(36, 161, 222);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  margin-top: 30px;
}
.contacts .btn--tg-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.contacts .btn--tg:hover {
  background: rgba(36, 161, 222, 0.9);
  box-shadow: 0 5px 15px rgba(36, 161, 222, 0.3);
  transform: translateY(-2px);
}
.contacts .btn--tg:hover .btn--tg-icon {
  transform: translateX(4px) translateY(-2px);
}
@media (max-width: 480px) {
  .contacts .btn--tg {
    width: 100%;
  }
}
.contacts__card {
  background: #111;
  padding: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 2;
}

.form__title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}
.form__descr {
  color: #A0A0A0;
  font-size: 16px;
  margin-bottom: 35px;
}
.form__input {
  width: 100%;
  background: #000;
  border: 1px solid #333;
  border-radius: 6px;
  padding: 15px 20px;
  color: #fff;
  margin-bottom: 20px;
}
.form__input:focus {
  border-color: #FF5F1F;
  outline: none;
}
.form textarea {
  min-height: 120px;
  resize: none;
  overflow-y: auto;
}
.form textarea::-webkit-scrollbar {
  width: 6px;
}
.form textarea::-webkit-scrollbar-thumb {
  background: rgba(255, 95, 31, 0.3);
  border-radius: 6px;
}

.blog-hero {
  padding: 120px 0;
  background-color: #030307;
}
.blog-hero .hero-wrapper {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.blog-hero .hero-img img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.blog-hero .hero-content-wrapper {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.1) 100%);
}
.blog-hero .hero-content-wrapper h1 {
  font-size: 48px;
  margin-bottom: 20px;
  max-width: 600px;
}
.blog-hero .hero-content-wrapper p {
  color: #A0A0A0;
  max-width: 500px;
  line-height: 1.6;
}

.blog-featured {
  margin-bottom: 80px;
}
.blog-featured .featured-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 50px;
  backdrop-filter: blur(10px);
}
.blog-featured .featured-card .featured-content {
  flex: 1;
}
.blog-featured .featured-card .featured-content .label {
  color: #FF5F1F;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}
.blog-featured .featured-card .featured-content .date {
  color: #7D7D7D;
  font-size: 14px;
  display: block;
  margin-bottom: 20px;
}
.blog-featured .featured-card .featured-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
  line-height: 1.2;
}
.blog-featured .featured-card .featured-content p {
  color: #A0A0A0;
  margin-bottom: 30px;
  line-height: 1.5;
}
.blog-featured .featured-card .featured-image {
  flex: 1;
}
.blog-featured .featured-card .featured-image img {
  width: 100%;
  border-radius: 10px;
  display: block;
}
.blog-featured .featured-card .btn-outline {
  border: 1px solid #FF5F1F;
  color: #FF5F1F;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: inline-block;
}
.blog-featured .featured-card .btn-outline:hover {
  background: #FF5F1F;
  color: #FFFFFF;
  box-shadow: 0 0 20px rgba(255, 95, 31, 0.3);
}

.blog-list h2 {
  font-size: 28px;
  margin-bottom: 30px;
}
.blog-list .articles-stack {
  display: flex;
  flex-direction: column;
}
.blog-list .article-card {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}
.blog-list .article-card .article-link {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 25px 0;
  text-decoration: none;
  color: inherit;
}
.blog-list .article-card:hover {
  background: rgba(255, 255, 255, 0.02);
}
.blog-list .article-card:hover .article-arrow {
  color: #FF5F1F;
  transform: translateX(5px);
}
.blog-list .article-card .article-img {
  width: 180px;
  height: 100px;
  overflow: hidden;
  border-radius: 6px;
}
.blog-list .article-card .article-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.blog-list .article-card .article-info {
  flex: 1;
}
.blog-list .article-card .article-info h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.blog-list .article-card .article-info p {
  color: #A0A0A0;
  font-size: 14px;
}
.blog-list .article-card .article-meta {
  text-align: right;
  min-width: 120px;
  padding-right: 20px;
}
.blog-list .article-card .article-meta span,
.blog-list .article-card .article-meta time {
  display: block;
  font-size: 13px;
  color: #7D7D7D;
  margin-bottom: 5px;
}

.load-more {
  text-align: center;
  padding: 60px 0;
}
.load-more .btn-load {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  padding: 15px 40px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.load-more .btn-load:hover {
  border-color: #FF5F1F;
  color: #FF5F1F;
}

.service-crosslinks {
  padding: 120px 0;
  background: #030307;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #fff;
}
@media (max-width: 992px) {
  .service-crosslinks {
    padding: 80px 0;
  }
}
.service-crosslinks::before {
  content: "";
  position: absolute;
  top: -250px;
  right: -250px;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(255, 95, 31, 0.18), transparent 65%);
  filter: blur(60px);
  z-index: 0;
}
.service-crosslinks::after {
  content: "";
  position: absolute;
  bottom: -250px;
  left: -250px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 117, 63, 0.1), transparent 70%);
  filter: blur(60px);
  z-index: 0;
}
.service-crosslinks .container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}
.service-crosslinks .service-crosslinks__card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 50px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  position: relative;
}
.service-crosslinks .service-crosslinks__card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  padding: 1px;
  background: linear-gradient(120deg, rgba(255, 95, 31, 0.4), transparent, rgba(255, 117, 63, 0.2));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.service-crosslinks h2 {
  font-size: 34px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 25px;
  line-height: 1.25;
}
.service-crosslinks h2 span {
  color: #FF5F1F;
}
.service-crosslinks p {
  font-size: 16.5px;
  line-height: 1.8;
  color: #A0A0A0;
  margin-bottom: 20px;
}
.service-crosslinks p:last-of-type {
  margin-bottom: 0;
}
.service-crosslinks p a {
  color: #FF753F;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
  display: inline-block;
  white-space: nowrap;
}
.service-crosslinks p a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: #FF5F1F;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.3s ease;
}
.service-crosslinks p a:hover {
  color: #FF5F1F;
}
.service-crosslinks p a:hover::after {
  transform: scaleX(1);
}
.service-crosslinks__links {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.service-crosslinks__links a {
  padding: 12px 16px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: #FFFFFF;
  font-size: 14px;
  transition: all 0.3s ease;
}
.service-crosslinks__links a:hover {
  transform: translateY(-3px);
  background: rgba(255, 95, 31, 0.12);
  border-color: rgba(255, 95, 31, 0.35);
  box-shadow: 0 0 20px rgba(255, 95, 31, 0.3);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 85px;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #FFFFFF;
  background-color: #030307;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
@media (max-width: 1200px) {
  .container {
    max-width: 992px;
  }
}
@media (max-width: 992px) {
  .container {
    max-width: 768px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 576px;
  }
}

p {
  hyphens: auto;
}

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

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

ul {
  list-style: none;
}

.no-scroll {
  overflow: hidden;
}/*# sourceMappingURL=style.css.map */