@charset "UTF-8";
/* styles.scss — компилируйте в styles.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.6;
  color: #111827;
  background: #f8f9fc;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: white;
}
.header.scrolled {
  background: #ffffff;
  color: #111827;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.header.scrolled .lang-switch {
  background: rgba(0, 0, 0, 0.05);
}
.header.scrolled .burger-line {
  background: #000000;
}
.header.scrolled .header__inner .logo svg path {
  fill: #013067;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.header__inner .logo {
  font-family: "Roboto Mono", monospace;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -2px;
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 8px;
}

.desktop-nav {
  display: none;
}
@media (min-width: 1024px) {
  .desktop-nav {
    display: block;
  }
}

.nav-list {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-list a {
  font-weight: 600;
  text-decoration: none;
  color: inherit;
  font-size: 17px;
  transition: color 0.3s;
}
.nav-list a:hover {
  color: #013067;
}

.lang-switch {
  display: flex;
  gap: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 4px;
}
.lang-switch .lang-btn {
  padding: 8px 20px;
  border: none;
  background: transparent;
  color: inherit;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
}
.lang-switch .lang-btn.active {
  background: #013067;
  color: white;
  box-shadow: 0 2px 8px rgba(1, 48, 103, 0.3);
}

.burger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .burger {
    display: none;
  }
}
.burger-line {
  height: 3px;
  width: 100%;
  background: #FFFFFF;
  transition: all 0.3s;
  border-radius: 3px;
}

/* Мобильное меню */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background: #001122;
  color: white;
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
}
.mobile-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
  margin-bottom: 60px;
}
.mobile-menu__content {
  width: 100%;
  max-width: 420px;
  text-align: center;
  height: 100%;
}
.mobile-footer-info {
  margin-top: 48px;
  opacity: 0.4;
}

.close-btn {
  background: none;
  border: none;
  font-size: 36px;
  color: white;
  cursor: pointer;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.mobile-nav-list a {
  font-size: 28px;
  font-weight: 600;
  color: white;
  text-decoration: none;
}

.mobile-lang-switch {
  margin-top: 80px;
  display: flex;
  gap: 20px;
  justify-content: center;
}
.mobile-lang-switch .lang-btn {
  font-size: 18px;
  padding: 14px 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid white;
  color: white;
  border-radius: 50px;
}

/* HERO */
.hero {
  height: 100dvh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 21, 51, 0.45) 0%, rgba(0, 21, 51, 0.25) 100%), url("images/y45IpMXq.jpeg") center/cover no-repeat;
  filter: brightness(0.75);
  z-index: -1;
}
.hero__badge {
  display: inline-block;
  background: #013067;
  color: white;
  padding: 6px 24px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
}
.hero__title {
  font-size: clamp(42px, 7vw, 68px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}
.hero__subtitle {
  font-size: clamp(20px, 3vw, 26px);
  margin-bottom: 40px;
  opacity: 0.95;
}
.hero .btn {
  display: inline-block;
  padding: 18px 42px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 8px;
}
.hero .btn--primary {
  background: #013067;
  color: white;
  box-shadow: 0 8px 25px rgba(1, 48, 103, 0.4);
}
.hero .btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(1, 48, 103, 0.5);
}
.hero .scroll-hint {
  margin-top: 80px;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0.8;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* СЕКЦИИ */
.section {
  padding: 120px 0;
}
.section__title {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}
.section__title::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 4px;
  background: #013067;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
}

/* ПРОДУКТЫ */
.product {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 100px;
  align-items: center;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 100px;
}
.product:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .product {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}
.product__img {
  width: 100%;
  height: auto;
  display: block;
}
.product__info .product__title {
  font-size: 32px;
  margin-bottom: 16px;
  font-weight: 700;
}
.product__info .product__desc {
  font-size: 19px;
  margin-bottom: 32px;
  color: #374151;
}
.product__info .product__subtitle {
  font-size: 18px;
  font-weight: 600;
  margin: 32px 0 16px;
  color: #013067;
}
.product__info .product__advantages {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.product__info .product__advantages li {
  position: relative;
  padding-left: 32px;
  font-size: 18px;
}
.product__info .product__advantages li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #013067;
  font-size: 24px;
}
.product__info .product__ttx {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 24px;
  font-size: 17px;
}
.product__info .product__ttx dt {
  font-weight: 600;
  color: #013067;
}
.product__info table {
  border-collapse: collapse;
}
.product__info table thead tr td {
  background-color: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 12px;
  padding: 12px;
  font-weight: bold;
}
.product__info table thead tr td:first-child {
  border-top-left-radius: 4px;
}
.product__info table tbody tr td {
  font-size: 14px;
  padding: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* СТАТИСТИКА */
.stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.stats .stat-item {
  text-align: center;
}
.stats .stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #013067;
  line-height: 1;
}
.stats .stat-label {
  font-size: 18px;
  font-weight: 500;
  color: #555;
}

/* ЗАКАЗЧИКИ */
.customers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.customers-grid .customer-card {
  background: white;
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.customers-grid .customer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 85, 255, 0.15);
}
.customers-grid .customer-card .customer-name {
  font-size: 20px;
  font-weight: 600;
}
.customers-grid .customer-card img {
  width: 100%;
}

/* FOOTER */
.footer {
  background: #111827;
  color: #e5e7eb;
  padding: 60px 0 30px;
  text-align: center;
  font-size: 15px;
}
.footer .footer__tech {
  margin-top: 20px;
  opacity: 0.6;
  font-size: 13px;
}

/* Адаптив */
@media (max-width: 1023px) {
  .product {
    margin-bottom: 80px;
    padding-bottom: 80px;
  }
}
.carousel {
  position: relative;
  overflow: hidden;
  aspect-ratio: 623/392;
}

.carousel-slides {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.32, 0.72, 0, 1);
}

.carousel-slide {
  min-width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.slide-caption {
  display: none;
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  color: #fff;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 2;
  max-width: 420px;
}

/* Стрелки */
.carousel-arrow {
  position: absolute;
  bottom: 16px;
  background: rgba(0, 0, 0, 0.3);
  color: #FFFFFF;
  border: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 300;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.carousel-arrow svg {
  width: 32px;
  height: 32px;
  display: block;
}

.carousel-arrow:hover {
  background: #013067;
  color: white;
  transform: scale(0.9);
}

.prev {
  left: 24px;
}

.next {
  right: 24px;
}

/* Точки */
.carousel-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 14px;
  height: 14px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #013067;
  width: 32px;
  border-radius: 20px;
}

/* Адаптив карусели */
@media (max-width: 768px) {
  .slide-caption {
    bottom: 16px;
    left: 16px;
    right: 16px;
    font-size: 14px;
    padding: 10px 16px;
  }
  .carousel-arrow {
    width: 48px;
    height: 48px;
    font-size: 26px;
  }
}
.video-btn {
  margin: 32px auto 0;
  border: 0;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  background: #013067;
  color: white;
  box-shadow: 0 8px 25px rgba(1, 48, 103, 0.4);
}
.video-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(1, 48, 103, 0.5);
}
.video-btn::before {
  content: "▶";
  font-size: 28px;
  opacity: 0.9;
}

/* МОДАЛЬНОЕ ОКНО */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.open {
  display: flex;
  opacity: 1;
}

.modal-content {
  background: #f8f9fc;
  max-width: 960px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  color: #111827;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 36px;
  color: #111827;
  cursor: pointer;
  z-index: 10;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.modal-close:hover {
  transform: rotate(90deg);
}

.modal-title {
  font-size: 28px;
  font-weight: 700;
  padding: 30px 40px 10px;
  margin: 0;
  text-align: center;
  color: #001122;
}

.video-container {
  position: relative;
  background: #000;
  padding-top: 56.25%; /* 16:9 */
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-desc {
  padding: 20px 40px 40px;
  font-size: 17px;
  line-height: 1.6;
  color: #374151;
  text-align: center;
}

/* Адаптив модального окна */
@media (max-width: 640px) {
  .table-wrapper {
    max-width: calc(100vw - 40px);
    overflow: auto;
  }
  .modal {
    padding: 8px;
  }
  .modal-content {
    width: calc(100vw - 16px);
  }
  .modal-content {
    border-radius: 16px;
  }
  .modal-title {
    font-size: 24px;
    padding: 24px 20px 10px;
  }
  .modal-desc {
    padding: 20px;
  }
  .product__media {
    width: calc(100vw - 40px);
  }
}

/*# sourceMappingURL=styles.css.map */
