
:root {
  --blue: #2b3294;
  --blue2: #343fa5;
  --text: #20202a;
  --muted: #686b76;
  --line: #e8e8ef;
  --white: #fff;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #fff;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
.container {
  width: min(1560px, calc(100% - 48px));
  margin: 0 auto;
}
.top {
  height: 88px;
  overflow: visible;
  background: #fff;
  position: relative;
  z-index: 20;
  box-shadow: 0 1px 0 rgba(0,0,0,.04);
}
.top-inner {
  height: 88px;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.logo {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 265px;
}
.logo-text {
  display: block;
  font-size: 40px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--blue);
}
.logo-ornament {
  display: grid;
  grid-template-columns: repeat(3, 8px);
  gap: 3px;
  transform: rotate(45deg);
  margin-top: -7px;
}
.logo-ornament i {
  width: 8px;
  height: 8px;
  display: block;
  background: #16a24a;
}
.logo-ornament i:nth-child(2),
.logo-ornament i:nth-child(4),
.logo-ornament i:nth-child(6),
.logo-ornament i:nth-child(8) { background: #e13235; }
.menu {
  display: flex;
  overflow: visible;
  align-items: center;
  gap: 24px;
  font-size: 15px;
  color: #33333b;
  white-space: nowrap;
}
.menu a:hover { color: var(--blue); }
.icon-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cabinet { color: var(--blue); }
.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--blue);
}
.lang-select {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.lang-current {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--blue);
  font-weight: 500;
  padding: 6px 2px;
  min-width: 48px;
  justify-content: center;
}
.lang-current .chev {
  font-size: 11px;
  line-height: 1;
  transition: transform .2s ease;
}
.lang-select.open .chev { transform: rotate(180deg); }
.lang-menu {
  position: absolute;
  left: 50%;
  top: calc(100% + 8px);
  transform: translateX(-50%);
  width: 74px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0,0,0,.12);
  border-radius: 0 0 4px 4px;
  overflow: hidden;
  display: none;
  z-index: 999;
  padding: 0;
}
.lang-select.open .lang-menu { display: block; }
.lang-menu button {
  display: block;
  width: 100%;
  height: 38px;
  color: #33333b;
  font-size: 15px;
  line-height: 1;
  letter-spacing: .2px;
  background: #fff;
  text-align: center;
}
.lang-menu button:first-child {
  color: var(--blue);
  font-weight: 700;
  background: #f5f6fb;
}
.lang-menu button:hover,
.lang-menu button.active {
  color: var(--blue);
  background: #f5f6fb;
  font-weight: 700;
}
.hero {
  padding-top: 18px;
}

.slider {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.slide {
  display: none;
  animation: fade .35s ease;
}
.slide.active { display: block; }
.slide img {
  display: block;
  width: 100%;
  height: auto;
}
@keyframes fade {
  from { opacity: .4; }
  to { opacity: 1; }
}
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #fff;
  background: rgba(0,0,0,.22);
  font-size: 38px;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: background .2s ease;
}
.slider-nav:hover { background: rgba(0,0,0,.36); }
.slider-nav.prev { left: 16px; }
.slider-nav.next { right: 16px; }
.slider-dots {
  position: absolute;
  left: 86px;
  bottom: 94px;
  transform: none;
  display: flex;
  gap: 16px;
  z-index: 6;
}
.dot {
  width: 12px;
  height: 12px;
  transform: rotate(45deg);
  background: rgba(255,255,255,.32);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 1px;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, opacity .2s ease;
}
.dot:hover { background: rgba(255,255,255,.65); }
.dot.active {
  background: #fff;
  border-color: rgba(255,255,255,.88);
}

.cards-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 58px 52px 76px;
}
.info-card {
  min-height: 250px;
  border: 1px solid var(--line);
  padding: 34px 32px 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
}
.orn,
.banner-orn {
  position: absolute;
  left: 22px;
  top: 14px;
  width: 92px;
  height: 92px;
  opacity: .08;
  background:
    linear-gradient(45deg, var(--blue) 25%, transparent 25% 75%, var(--blue) 75%),
    linear-gradient(-45deg, var(--blue) 25%, transparent 25% 75%, var(--blue) 75%);
  background-size: 40px 40px;
}
.info-card h2 {
  position: relative;
  margin: 16px 0 52px;
  color: var(--blue);
  font-size: 25px;
  line-height: 1.1;
}
.info-card p {
  margin: 0;
  font-size: 17px;
  line-height: 1.35;
}
.blue-banner {
  position: relative;
  min-height: 190px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: 64px;
  overflow: hidden;
  padding: 44px 72px;
  color: #fff;
  background:
    linear-gradient(rgba(43,50,148,.88), rgba(43,50,148,.88)),
    linear-gradient(90deg, #d9dfe9, #bfc7d4);
}
.banner-orn {
  opacity: .22;
  left: 30px;
  top: 10px;
  width: 220px;
  height: 180px;
  background-size: 70px 70px;
}
.blue-banner h2 {
  position: relative;
  margin: 0;
  font-size: 31px;
  line-height: 1.16;
  letter-spacing: .5px;
}
.blue-banner p {
  position: relative;
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
}
.news {
  padding: 62px 58px 60px;
}
.section-title {
  margin: 0 0 34px;
  font-size: 28px;
  font-weight: 700;
}
.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 76px;
  row-gap: 30px;
}
.news-item {
  display: grid;
  grid-template-columns: 126px 1fr;
  gap: 24px;
}
.news-img {
  width: 126px;
  height: 92px;
  background: #d4d6d7;
  position: relative;
  overflow: hidden;
}
.news-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(43,50,148,.12), rgba(0,0,0,.16));
}
.img-drone { background: linear-gradient(135deg, #cad6c8, #6b7d66); }
.img-bank { background: linear-gradient(135deg, #d6d0c5, #7e725d); }
.img-customs { background: linear-gradient(135deg, #334d43, #a8b2a0); }
.img-school { background: linear-gradient(135deg, #233b57, #c8a46b); }
.news-item h3 {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 19px;
  line-height: 1.18;
}
.news-item p {
  margin: 0 0 10px;
  font-size: 15.5px;
  line-height: 1.35;
}
.news-item time {
  color: #8e8e95;
  font-weight: 700;
}
.all-news {
  display: block;
  margin: 36px auto 0;
  width: fit-content;
  color: var(--blue);
  font-size: 22px;
  font-weight: 700;
}
.partners {
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 72px;
  color: #96969b;
  font-size: 26px;
  font-weight: 700;
  filter: grayscale(1);
  opacity: .75;
}
.partner:nth-child(1) {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  border: 10px solid #aaa;
  display: grid;
  place-items: center;
  font-size: 15px;
}
.partner:nth-child(3) {
  font-size: 17px;
  line-height: 1.25;
}
.partner:nth-child(4) {
  font-size: 30px;
  font-style: italic;
}
.faq {
  padding: 20px 58px 80px;
}
.faq-box {
  display: grid;
  gap: 14px;
  max-width: 880px;
}
details {
  border: 1px solid var(--line);
  padding: 20px 24px;
}
summary {
  cursor: pointer;
  color: var(--blue);
  font-size: 19px;
  font-weight: 700;
}
details p {
  margin: 14px 0 0;
  line-height: 1.5;
  color: var(--muted);
}
.footer {
  background: var(--blue);
  color: #fff;
}
.footer-inner {
  min-height: 300px;
  display: grid;
  grid-template-columns: 2fr .7fr .8fr 1fr 1.1fr;
  gap: 38px;
  align-items: center;
  padding: 58px 62px;
}
.footer-brand {
  position: relative;
  min-height: 190px;
  display: flex;
  align-items: center;
}
.footer-pattern {
  position: absolute;
  left: 0;
  top: 0;
  width: 300px;
  height: 190px;
  opacity: .16;
  background:
    linear-gradient(45deg, #fff 25%, transparent 25% 75%, #fff 75%),
    linear-gradient(-45deg, #fff 25%, transparent 25% 75%, #fff 75%);
  background-size: 90px 90px;
}
.footer-logo {
  position: relative;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1px;
}
.footer-mark {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 8px);
  gap: 3px;
  transform: rotate(45deg);
  margin-left: 14px;
  margin-top: -36px;
}
.footer-mark i {
  width: 8px;
  height: 8px;
  background: #18ad43;
}
.footer-mark i:nth-child(even) { background: #e13235; }
.footer-col h4 {
  margin: 0 0 26px;
  font-size: 19px;
}
.footer-col a {
  display: block;
  margin: 12px 0;
  font-size: 17px;
  line-height: 1.15;
  opacity: .95;
}
.cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 66px;
  padding: 12px 28px;
  z-index: 40;
  background: #5b63b9;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 20px;
}
.cookie span {
  flex: 1;
  text-align: center;
  font-size: 16px;
}
.cookie button { color: #fff; }
.cookie #cookieBtn {
  min-height: 44px;
  padding: 0 22px;
  background: #fff;
  color: var(--blue);
  font-weight: 700;
}
.cookie .close {
  font-size: 28px;
  line-height: 1;
}
.hidden { display: none !important; }
@media (max-width: 1120px) {
  .menu {
    display: none;
    position: absolute;
    top: 88px;
    left: 20px;
    right: 20px;
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
    padding: 22px;
    border: 1px solid var(--line);
    box-shadow: 0 20px 60px rgba(0,0,0,.12);
  }
  .menu.open { display: flex; }
  .lang-select { width: auto; }
  .lang-current { width: auto; justify-content: center; }
  .lang-menu {
    position: absolute;
    left: 50%;
    top: calc(100% + 8px);
    transform: translateX(-50%);
    width: 74px;
    margin-top: 0;
    box-shadow: 0 8px 22px rgba(0,0,0,.12);
    border: 0;
  }
  .burger { display: block; }
  .cards-row { grid-template-columns: repeat(2,1fr); }
  .blue-banner { grid-template-columns: 1fr; gap: 24px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .container { width: min(100% - 24px, 1280px); }
  .logo-text { font-size: 30px; }
  .slider-nav {
    width: 38px;
    height: 38px;
    font-size: 28px;
  }
  .cards-row,
  .news,
  .faq {
    padding-left: 0;
    padding-right: 0;
  }
  .cards-row,
  .news-grid {
    grid-template-columns: 1fr;
  }
  .news-item { grid-template-columns: 96px 1fr; }
  .news-img { width: 96px; height: 80px; }
  .partners {
    height: auto;
    padding: 48px 0;
    flex-direction: column;
    gap: 28px;
  }
  .footer-inner { grid-template-columns: 1fr; padding: 42px 28px; }
  .cookie { flex-direction: column; align-items: stretch; }
  .cookie span { text-align: left; }
}

.slider-nav { display: none !important; }

@media (max-width: 720px) {
  .slider-dots { left: 38px; bottom: 40px; gap: 12px; }
  .dot { width: 10px; height: 10px; }
}
