@font-face {
  font-family: "Flaticon";
  src: url("../fonts/flaticon/Flaticon.eot");
  src: url("../fonts/flaticon/Flaticon.eot?#iefix") format("embedded-opentype"),
       url("../fonts/flaticon/Flaticon.woff2") format("woff2"),
       url("../fonts/flaticon/Flaticon.woff") format("woff"),
       url("../fonts/flaticon/Flaticon.ttf") format("truetype"),
       url("../fonts/flaticon/Flaticon.svg#Flaticon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --il-blue: #07315f;
  --il-blue-2: #0b3565;
  --il-orange: #ff6b00;
  --il-orange-hover: #ec5f00;
  --il-text: #082a52;
  --il-muted: #62758b;
  --il-border: #dfe7f1;
  --il-soft: #f4f8fd;
  --il-shadow: 0 16px 45px rgba(7, 49, 95, 0.08);
  --il-shadow-sm: 0 10px 28px rgba(7, 49, 95, 0.07);
  --il-radius: 18px;
}

html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--il-text);
  background: #fff;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--il-orange); }
img { max-width: 100%; height: auto; }

.btn {
  border-radius: 12px;
  font-weight: 800;
  letter-spacing: .01em;
  box-shadow: none;
}
.btn-orange {
  background: var(--il-orange);
  border-color: var(--il-orange);
  color: #fff !important;
  box-shadow: 0 10px 20px rgba(255,107,0,.18);
}
.btn-orange:hover,
.btn-orange:focus {
  background: var(--il-orange-hover);
  border-color: var(--il-orange-hover);
  color: #fff !important;
}
.btn-lg { padding: 14px 22px; font-size: 15px; }
.btn-header { padding: 13px 22px; text-transform: uppercase; font-size: 15px; }

.topbar {
  background: var(--il-blue);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}
.topbar__inner { min-height: 34px; gap: 12px; flex-wrap: nowrap; }
.topbar__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 400;
}
.topbar__link:hover { color: #fff; opacity: .86; }
.topbar .fi { font-size: 15px; line-height: 1; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 1px 0 rgba(7,49,95,.08);
}
.site-logo img { width: 232px !important; max-width: none !important; max-height: none !important; height: auto !important; display: block !important; }
.site-header .container { min-height: 78px; }
.site-nav .nav-link {
  color: var(--il-text) !important;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 31px 15px !important;
}
.site-nav .nav-link:hover,
.site-nav .nav-link:focus { color: var(--il-orange) !important; }
.site-nav .nav-item--mega { position: static; }
.site-nav .dropdown-toggle::after {
  width: 7px;
  height: 7px;
  margin-left: 7px;
  border: 0;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(135deg) translateY(2px);
  transform-origin: center;
  transition: transform .18s ease;
  vertical-align: .18em;
}
.site-nav .dropdown:hover > .dropdown-toggle,
.site-nav .dropdown-toggle.show { color: var(--il-orange) !important; }
.site-nav .dropdown:hover > .dropdown-toggle::after,
.site-nav .dropdown-toggle.show::after { transform: rotate(-45deg) translateY(1px); }
.nav-dropdown-menu {
  top: calc(100% + -12px);
  border: 0;
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 20px 48px rgba(7,49,95,.16);
}
.nav-dropdown-menu.mega-menu {
  left: 50%;
  width: min(1038px, calc(100vw - 64px));
  min-width: 0;
  margin-top: 0;
  padding: 27px 26px 28px;
  transform: translateX(-50%);
  border: 1px solid var(--il-border);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 24px 54px rgba(7,49,95,.18);
}
.nav-dropdown-menu.mega-menu[data-bs-popper] {
  top: calc(100% + -12px);
  left: 50%;
  margin-top: 0;
}

.nav-dropdown-menu.mega-menu > .row { align-items: flex-start; }
.mega-menu__col { min-width: 0; }
.mega-menu__list li { margin: 0; }
.mega-menu__title {
  min-height: 48px;
  margin: 0 0 17px;
  padding: 0 0 12px;
  border-bottom: 1px solid var(--il-border);
  color: var(--il-text);
  font-size: 16px;
  line-height: 1.18;
  font-weight: 950;
  letter-spacing: -.015em;
  text-transform: uppercase;
}
.mega-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mega-menu__list li + li { margin-top: 16px; }
.mega-menu__list a {
  position: relative;
  display: block;
  padding: 0 0 0 18px !important;
  color: var(--il-text);
  font-size: 15px;
  line-height: 1.18;
  font-weight: 400;
}
.mega-menu__list a::before {
  content: "";
  position: absolute;
  left: 0;
  top: .42em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--il-orange);
  box-shadow: 0 0 0 4px rgba(255,107,0,.11);
}
.mega-menu__list a:hover { color: var(--il-orange); }
.navbar-toggler { border: 0; padding-right: 0; }
.navbar-toggler:focus { box-shadow: none; }

.hero {
  position: relative;
  min-height: 610px;
  padding: 92px 0 74px;
  background: url("../img/hero-atm-bg.jpg") center bottom/cover no-repeat;
  overflow: hidden;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.56) 46%, rgba(255,255,255,.06) 100%);
}
.hero__main { min-height: 440px; }
.section-eyebrow {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: 15px;
}
.section-eyebrow--dark { color: var(--il-text); }
.hero h1 {
  max-width: 720px;
  font-size: clamp(42px, 5.1vw, 70px);
  line-height: .96;
  letter-spacing: -.045em;
  font-weight: 950;
  color: #062b56;
  margin: 0 0 24px;
}
.hero__text {
  max-width: 650px;
  color: #14385d;
  font-size: 18px;
  line-height: 1.62;
  margin-bottom: 28px;
}
.request-card {
  background: #fff;
  border-radius: var(--il-radius);
  box-shadow: var(--il-shadow);
  border: 1px solid rgba(223,231,241,.9);
  padding: 28px;
}
.hero-form-card { margin-left: auto; max-width: 520px; }
.request-card__title {
  color: var(--il-text);
  font-size: 22px;
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -.03em;
}
.request-card__subtitle,
.modal-subtitle { color: var(--il-muted); font-size: 15px; }
.form-control,
.form-select {
  height: 50px;
  border-radius: 10px;
  border-color: var(--il-border);
  color: var(--il-text);
  font-size: 15px;
  padding: 12px 15px;
}
textarea.form-control { height: auto; resize: vertical; min-height: 92px; }
.form-control:focus {
  border-color: rgba(255,107,0,.45);
  box-shadow: 0 0 0 .18rem rgba(255,107,0,.12);
}
.form-check-label { color: var(--il-muted); font-size: 12px; line-height: 1.35; }
.form-check-input:checked { background-color: var(--il-orange); border-color: var(--il-orange); }
.hero-info-row { margin-top: -14px; }
.info-card {
  min-height: 84px;
  background: #fff;
  border: 1px solid rgba(223,231,241,.9);
  border-radius: 15px;
  box-shadow: var(--il-shadow-sm);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.info-card__icon { width: 64px; height: 64px; object-fit: contain; flex: 0 0 auto; }
.info-card strong { display: block; font-size: 15px; line-height: 1.12; font-weight: 900; }
.info-card span { display: block; font-size: 12px; color: var(--il-text); font-weight: 700; }

.section { padding: 88px 0; }
@media only screen and (min-width: 768px) {
  body:not(.layout-admin) .section,
  body:not(.layout-admin) section {
    padding: 100px 0 0 0;
  }
}
.section h2 {
  color: var(--il-text);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.12;
  letter-spacing: -.035em;
  font-weight: 950;
}
.section-head { gap: 18px; }
.section-link {
  flex: 0 0 auto;
  color: var(--il-text);
  font-weight: 900;
  font-size: 15px;
}
.section-link:hover { color: var(--il-orange); }

.section-services { padding-top: 102px; }
.service-cards-row { align-items: flex-start; overflow: visible; }
.service-card-col { position: relative; }
.service-card {
  position: relative;
  z-index: 1;
  min-height: 356px;
  overflow: visible;
  background: #fff;
  border: 1px solid var(--il-border);
  border-radius: var(--il-radius);
  box-shadow: var(--il-shadow-sm);
  padding: 0;
  text-align: center;
  outline: none;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, border-radius .28s ease;
  will-change: transform;
}
.service-card__main {
  min-height: 354px;
  padding: 42px 26px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service-card-col:hover .service-card,
.service-card:hover,
.service-card:focus {
  z-index: 30;
  transform: translateY(-6px);
  border-color: rgba(7,49,95,.10);
  box-shadow: 0 24px 58px rgba(7,49,95,.14);
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.service-card__icon { width: 88px; height: 88px; object-fit: contain; margin-bottom: 24px; }
.service-card h3 {
  color: var(--il-text);
  font-size: 22px;
  line-height: 1.08;
  letter-spacing: -.025em;
  font-weight: 950;
  margin: 0 0 14px;
}
.service-card p { color: #40566f; margin: 0; font-size: 15px; line-height: 1.5; }
.service-card__details {
  position: absolute;
  top: calc(100% - 1px);
  left: -1px;
  right: -1px;
  z-index: 35;
  padding: 18px 17px 24px;
  background: #fff;
  border: 1px solid var(--il-border);
  border-top: 1px solid rgba(223,231,241,.72);
  border-radius: 0 0 var(--il-radius) var(--il-radius);
  box-shadow: 0 28px 42px rgba(7,49,95,.10);
  text-align: left;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .26s ease .08s, transform .26s ease .08s, visibility .26s ease .08s, box-shadow .26s ease .08s;
}
.service-card-col:hover .service-card__details,
.service-card:hover .service-card__details,
.service-card:focus .service-card__details {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  box-shadow: 0 32px 50px rgba(7,49,95,.13);
}
.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-list li {
  position: relative;
  padding-left: 19px;
  color: var(--il-text);
  font-size: 15px;
  line-height: 1.15;
  font-weight: 950;
}
.service-list li + li { margin-top: 16px; }
.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .42em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--il-orange);
  box-shadow: 0 0 0 4px rgba(255,107,0,.10);
}

.atm-section { background: #fff; }
.atm-card {
  background: #fff;
  border: 1px solid var(--il-border);
  border-radius: var(--il-radius);
  box-shadow: var(--il-shadow);
  padding: 28px;
}
.atm-card h2 { margin-bottom: 12px; font-size: clamp(21px, 1.85vw, 29px); }
.atm-card p { color: #40566f; margin: 0; max-width: 820px; font-size: 16px; }
.route-scheme {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 14px;
}
.route-point { text-align: center; color: var(--il-text); font-weight: 950; font-size: 15px; line-height: 1.1; max-width: 96px; }
.route-point img { width: 54px; height: 54px; object-fit: contain; display: block; margin: 0 auto 8px; }
.route-arrow { color: var(--il-orange); font-size: 26px; font-weight: 900; line-height: 54px; }
.mini-card {
  background: #fbfdff;
  border: 1px solid var(--il-border);
  border-radius: 14px;
  padding: 17px 18px;
  display: flex;
  align-items: center;
  gap: 13px;
}
.mini-card img { width: 32px; height: 32px; object-fit: contain; flex: 0 0 auto; }
.mini-card strong { display: block; font-size: 15px; font-weight: 950; line-height: 1.05; }
.mini-card span { display: block; margin-top: 4px; font-size: 12px; color: #40566f; line-height: 1.25; }

.projects-section { padding-top: 82px; }
.project-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--il-border);
  border-radius: var(--il-radius);
  box-shadow: var(--il-shadow-sm);
}
.project-card__image { position: relative; height: 255px; overflow: hidden; }
.project-card__image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .25s ease; }
.project-card:hover .project-card__image img { transform: scale(1.04); }
.project-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--il-blue);
  color: #fff;
  border-radius: 999px;
  padding: 7px 12px;
  font-weight: 950;
  font-size: 12px;
}
.project-card__body { padding: 22px; }
.project-card h3 {
  color: var(--il-text);
  font-size: 22px;
  line-height: 1.15;
  font-weight: 950;
  letter-spacing: -.025em;
  margin: 0 0 10px;
}
.project-card p { color: #62758b; font-size: 15px; margin-bottom: 18px; }
.project-card a { color: var(--il-orange); font-weight: 950; font-size: 15px; }

.process-section { padding-top: 58px; padding-bottom: 66px; }
.process { position: relative; }
.process::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 86px;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(7,49,95,.16) 0 6px, transparent 6px 12px);
}
.process-step { position: relative; text-align: center; padding-top: 0; }
.process-step__num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--il-orange);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 950;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}
.process-step__icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--il-border);
  box-shadow: 0 8px 20px rgba(7,49,95,.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  position: relative;
  z-index: 2;
}
.process-step__icon img { width: 52px; height: 52px; object-fit: contain; }
.process-step h3 {
  color: var(--il-text);
  font-size: 18px;
  line-height: 1.15;
  font-weight: 950;
  margin: 0 0 9px;
}
.process-step p { color: #62758b; max-width: 190px; margin: 0 auto; font-size: 15px; line-height: 1.35; }

.testimonials-section { padding-top: 50px; padding-bottom: 72px; }
.testimonial-card {
  background: #fff;
  border: 1px solid var(--il-border);
  border-radius: var(--il-radius);
  box-shadow: var(--il-shadow-sm);
  padding: 26px;
  display: flex;
  gap: 20px;
}
.testimonial-card__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #dce9f6;
  flex: 0 0 auto;
}
.testimonial-card p { color: #40566f; margin: 0 0 14px; font-size: 15px; line-height: 1.5; }
.testimonial-card strong { display: block; color: var(--il-text); font-weight: 950; }
.testimonial-card span { color: #62758b; font-size: 15px; }

.cta-section { padding: 30px 0 74px; }
.cta-card {
  background: linear-gradient(90deg, var(--il-blue) 0%, #0a3c76 100%);
  color: #fff;
  border-radius: var(--il-radius);
  padding: 30px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 20px 42px rgba(7,49,95,.18);
}
.cta-card h2,
.cta-card h3 { color: #fff; margin: 0 0 4px; font-size: clamp(20px, 2vw, 29px); line-height: 1.12; font-weight: 950; letter-spacing: -.03em; }
.cta-card p { margin: 0; opacity: .86; }
.cta-card .btn { flex: 0 0 auto; padding: 13px 24px; }

.about-section { padding-top: 0; }
.about-card {
  background: #fff;
  border: 1px solid var(--il-border);
  border-radius: var(--il-radius);
  box-shadow: var(--il-shadow);
  padding: 34px;
}
.about-card h2 { margin-bottom: 16px; max-width: 640px; }
.about-card p { color: #40566f; font-size: 16px; line-height: 1.65; }
.video-preview {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #f4f8fd;
  cursor: pointer;
}
.video-preview img { width: 100%; height: 330px; object-fit: cover; display: block; }
.video-preview__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 35px rgba(7,49,95,.16);
}
.video-preview__play span {
  display: block;
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid var(--il-orange);
  margin-left: 5px;
}
.about-video { width: 100%; max-height: 78vh; display: block; border-radius: 16px; background: #000; }

.site-footer {
  background: var(--il-blue);
  color: #fff;
  padding: 50px 0 0;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 12px;
  padding: 13px 17px;
  margin-bottom: 18px;
}
.footer-logo img { width: 202px; max-width: none; height: auto; display: block; }
.footer-text { color: rgba(255,255,255,.82); max-width: 280px; font-size: 15px; }
.site-footer h3 {
  color: #fff;
  font-size: 16px;
  font-weight: 950;
  margin-bottom: 18px;
}
.footer-list,
.footer-contacts { list-style: none; padding: 0; margin: 0; }
.footer-list li + li,
.footer-contacts li + li { margin-top: 10px; }
.footer-list a,
.footer-contacts a { color: rgba(255,255,255,.88); font-size: 15px; }
.footer-list a:hover,
.footer-contacts a:hover { color: #fff; }
.footer-contacts .fi { margin-right: 8px; color: #fff; }
.footer-bottom {
  margin-top: 44px;
  border-top: 1px solid rgba(255,255,255,.16);
  min-height: 58px;
  color: rgba(255,255,255,.78);
  font-size: 15px;
  gap: 20px;
}
.footer-bottom a { color: rgba(255,255,255,.78); }
.footer-bottom a:hover { color: #fff; }

.modal-content { border: 0; border-radius: 18px; box-shadow: 0 22px 70px rgba(7,49,95,.22); }
.modal-header { padding: 24px 24px 0; }
.modal-body { padding: 24px; }
.modal-title { color: var(--il-text); font-size: 24px; font-weight: 950; letter-spacing: -.02em; }
.modal-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(255,107,0,.1);
  color: var(--il-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.modal-icon .fi { font-size: 25px; line-height: 1; }

@media (min-width: 768px) {
  .navbar .dropdown:hover > .dropdown-menu { display: block; }
}

@media (max-width: 1199.98px) {
  .site-logo img { width: 214px !important; }
  .site-nav .nav-link { padding-left: 10px !important; padding-right: 10px !important; font-size: 12px; }
  .hero h1 { font-size: 58px; }
  .hero__text { font-size: 17px; }
  .request-card { padding: 24px; }
  .project-card__image { height: 220px; }
  .route-scheme { justify-content: flex-start; flex-wrap: wrap; }
}

@media (max-width: 991.98px) {
  .hero { padding-top: 68px; padding-bottom: 52px; }
  .hero__overlay { background: linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.56) 46%, rgba(255,255,255,.06) 100%); }
  .hero h1 { font-size: clamp(40px, 8vw, 58px); max-width: 760px; }
  .hero-form-card { max-width: none; margin-left: 0; }
  .section { padding: 68px 0; }
  .section-services { padding-top: 78px; }
  .process::before { display: none; }
  .process-step { padding: 18px; border: 1px solid var(--il-border); border-radius: 16px; box-shadow: var(--il-shadow-sm); background: #fff; }
  .process-step__num { margin-bottom: 14px; }
  .cta-card { align-items: flex-start; flex-direction: column; }
  .video-preview img { height: 300px; }
}

@media (max-width: 767.98px) {
  body { font-size: 15px; }
  .topbar { font-size: 11px; }
  .topbar__inner { min-height: 32px; gap: 8px; }
  .topbar__link { gap: 5px; }
  .site-header .container { min-height: 68px; }
  .site-logo img { width: 190px !important; }
  .navbar-collapse { border-top: 1px solid var(--il-border); padding: 12px 0 18px; }
  .site-nav { align-items: stretch !important; }
  .site-nav .nav-link { padding: 12px 0 !important; }
  .nav-dropdown-menu,
  .nav-dropdown-menu.mega-menu {
    position: static !important;
    width: 100%;
    transform: none;
    box-shadow: none;
    border: 1px solid var(--il-border);
    margin-bottom: 10px;
    padding: 18px;
  }
  .nav-dropdown-menu.mega-menu[data-bs-popper] { transform: none; left: auto; top: auto; }
  .mega-menu__title { min-height: 0; margin-bottom: 12px; font-size: 15px; }
  .mega-menu__list li + li { margin-top: 11px; }
  .mega-menu__list a { font-size: 15px; }
  .hero { min-height: auto; padding: 48px 0 42px; }
  .hero h1 { font-size: clamp(36px, 12vw, 48px); margin-bottom: 18px; }
  .hero__text { font-size: 16px; margin-bottom: 22px; }
  .hero-info-row { margin-top: 22px; }
  .info-card { padding: 15px; gap: 10px; min-height: 78px; }
  .info-card__icon { width: 64px; height: 64px; }
  .request-card { padding: 20px; }
  .request-card__title { font-size: 19px; }
  .section { padding: 54px 0; }
  .section-services { padding-top: 58px; }
  .section-head { align-items: flex-start !important; flex-direction: column; }
  .service-card { min-height: auto; }
  .service-card__main { min-height: auto; padding: 32px 22px 26px; }
  .service-card-col:hover .service-card,
  .service-card:hover,
  .service-card:focus { transform: none; border-radius: var(--il-radius); box-shadow: var(--il-shadow-sm); }
  .service-card__details {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0 0 var(--il-radius) var(--il-radius);
    box-shadow: none;
  }
  .atm-card { padding: 20px; }
  .route-scheme { gap: 10px; }
  .route-point { max-width: 72px; font-size: 11px; }
  .route-point img { width: 44px; height: 44px; }
  .route-arrow { line-height: 44px; font-size: 20px; }
  .project-card__image { height: 210px; }
  .process-section { padding-top: 40px; }
  .testimonials-section { padding-top: 30px; }
  .testimonial-card { flex-direction: column; gap: 14px; }
  .cta-section { padding: 24px 0 54px; }
  .cta-card { padding: 24px; }
  .cta-card .btn { width: 100%; }
  .about-card { padding: 22px; }
  .video-preview img { height: 240px; }
  .video-preview__play { width: 62px; height: 62px; }
  .footer-bottom { flex-direction: column; align-items: flex-start !important; padding: 18px 0; }
}

@media (max-width: 399.98px) {
  .topbar { font-size: 10px; }
  .site-logo img { width: 166px !important; }
  .hero h1 { font-size: 34px; }
  .btn-lg { width: 100%; }
  .info-card { align-items: flex-start; flex-direction: column; }
}

/* Process section alignment fix */
.process-section h2 {
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: -.02em;
  font-weight: 950;
}
.process-section .text-center.mb-5 {
  margin-bottom: 18px !important;
}
.process-section .process {
  position: relative;
}
.process-section .process::before {
  top: 86px;
  left: 8.5%;
  right: 8.5%;
}
.process-step__num {
  width: 34px;
  height: 34px;
  font-size: 15px;
  margin-bottom: 12px;
}
.process-step__icon {
  width: 74px;
  height: 74px;
  margin-bottom: 14px;
  box-shadow: 0 10px 24px rgba(7,49,95,.08);
}
.process-step__icon img {
  width: 52px;
  height: 52px;
}
.process-step h3 {
  font-size: 22px;
  line-height: 1.1;
  margin-bottom: 10px;
}
.process-step p {
  max-width: 220px;
  font-size: 15px;
  line-height: 1.35;
}

@media only screen and (min-width: 768px) {
  body:not(.layout-admin) .process-section {
    padding: 54px 0 48px 0;
  }
}


/* Process section exact vertical alignment */
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.process-step__num,
.process-step__icon {
  flex: 0 0 auto;
}
.process-step__num {
  display: inline-flex;
  margin-left: auto;
  margin-right: auto;
}
.process-step__icon {
  display: inline-flex;
  margin-left: auto;
  margin-right: auto;
}

/* Stronger service hover shadow */
.service-card-col {
  z-index: 1;
  transition: transform .28s ease, filter .28s ease, z-index 0s linear .18s;
}
.service-card-col:hover {
  z-index: 50;
  transition-delay: 0s;
}

.service-card-col .service-card {
  box-shadow: 0 18px 46px rgba(7,49,95,.12), 0 6px 18px rgba(7,49,95,.06);
}
.service-card-col:hover .service-card,
.service-card:hover,
.service-card:focus {
  box-shadow: 0 42px 110px rgba(7,49,95,.30), 0 16px 42px rgba(7,49,95,.18);
}
.service-card-col:hover .service-card__details,
.service-card:hover .service-card__details,
.service-card:focus .service-card__details {
  box-shadow: 0 50px 105px rgba(7,49,95,.28), 0 18px 42px rgba(7,49,95,.16);
}

@media (max-width: 767.98px) {
  .process-section h2 { font-size: 19px; }
  .process-section .text-center.mb-5 { margin-bottom: 22px !important; }
  .process-step__icon { width: 62px; height: 62px; }
  .process-step__icon img { width: 52px; height: 52px; }
  .process-step h3 { font-size: 19px; }
  .process-step p { font-size: 15px; }
}

/* Inner page: customs clearance */
.mega-menu__title a {
  color: inherit;
  text-decoration: none;
}
.mega-menu__title a:hover { color: var(--il-orange); }
.service-more-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--il-orange);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 950;
}
.btn-outline-blue {
  color: var(--il-blue) !important;
  background: #fff;
  border: 1px solid rgba(7,49,95,.22);
}
.btn-outline-blue:hover,
.btn-outline-blue:focus {
  color: #fff !important;
  background: var(--il-blue);
  border-color: var(--il-blue);
}
.inner-page .site-nav .nav-link.active { color: var(--il-orange) !important; }
.inner-page section { padding: 80px 0 0; }
.inner-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 58px !important;
  background: url("../img/hero-atm-bg.png") center bottom/cover no-repeat;
}
.customs-hero {
 background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 767.98px) {
  .customs-hero {
    background-attachment: scroll;
    background-position: center center;
  }
}
.breadcrumbs .fi-home {
  font-size: 16px;
  line-height: 1;
}
.inner-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.78) 55%, rgba(255,255,255,.28) 100%);
}
.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 38px;
  color: #62758b;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
}
.breadcrumbs a { color: var(--il-text); }
.breadcrumbs a:hover { color: var(--il-orange); }
.inner-hero h1 {
  max-width: 90%;
  margin: 0 0 22px;
  color: #062b56;
  font-size: clamp(22px, 3.2vw, 40px);
  line-height: .96;
  letter-spacing: -.045em;
  font-weight: 950;
}
.inner-hero__text {
  max-width: 720px;
  margin: 0;
  color: #14385d;
  font-size: 18px;
  line-height: 1.65;
}
.inner-hero-card {
  margin-left: auto;
  max-width: 465px;
  padding: 30px;
  background: #fff;
  border: 1px solid rgba(223,231,241,.96);
  border-radius: var(--il-radius);
  box-shadow: var(--il-shadow);
}
.inner-hero-card__icon {
  width: 70px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 18px;
  background: rgba(255,107,0,.08);
}
.inner-hero-card__icon img { width: 46px; height: 46px; object-fit: contain; }
.inner-hero-card h2 {
  margin: 0 0 18px;
  color: var(--il-text);
  font-size: 22px;
  line-height: 1.08;
  letter-spacing: -.03em;
  font-weight: 950;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.check-list li {
  position: relative;
  padding-left: 28px;
  color: #40566f;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 700;
}
.check-list li + li { margin-top: 12px; }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .22em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255,107,0,.13);
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: .52em;
  width: 7px;
  height: 4px;
  border-left: 2px solid var(--il-orange);
  border-bottom: 2px solid var(--il-orange);
  transform: rotate(-45deg);
}
.stat-mini {
  min-height: 82px;
  padding: 16px;
  border: 1px solid var(--il-border);
  border-radius: 15px;
  background: #fbfdff;
}
.stat-mini strong {
  display: block;
  color: var(--il-orange);
  font-size: 25px;
  line-height: 1;
  font-weight: 950;
}
.stat-mini span {
  display: block;
  margin-top: 7px;
  color: var(--il-text);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 800;
}
.inner-features-section { padding: 36px 0 0 !important; }
.inner-feature-card {
  min-height: 142px;
  padding: 24px 22px;
  background: #fff;
  border: 1px solid var(--il-border);
  border-radius: var(--il-radius);
  box-shadow: var(--il-shadow-sm);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.inner-feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,107,0,.26);
  box-shadow: 0 22px 54px rgba(7,49,95,.16);
}
.inner-feature-card img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-bottom: 16px;
}
.inner-feature-card strong {
  display: block;
  color: var(--il-text);
  font-size: 18px;
  line-height: 1.15;
  font-weight: 950;
}
.inner-feature-card span {
  display: block;
  margin-top: 8px;
  color: #62758b;
  font-size: 15px;
  line-height: 1.35;
}
.inner-content-section { padding-top: 86px !important; }
.content-card {
  padding: 34px;
  background: #fff;
  border: 1px solid var(--il-border);
  border-radius: var(--il-radius);
  box-shadow: var(--il-shadow-sm);
}
.content-card h2 {
  margin: 0 0 18px;
  color: var(--il-text);
  font-size: clamp(18px, 2.1vw, 26px);
  line-height: 1.12;
  letter-spacing: -.035em;
  font-weight: 950;
}
.content-card p {
  color: #40566f;
  font-size: 16px;
  line-height: 1.68;
}
.content-card p:last-child { margin-bottom: 0; }
.detail-service-card {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--il-border);
  border-radius: var(--il-radius);
  box-shadow: var(--il-shadow-sm);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.detail-service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,107,0,.55);
  box-shadow: 0 24px 58px rgba(7,49,95,.16);
}
.detail-service-card img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 18px;
}
.detail-service-card h3 {
  margin: 0 0 12px;
  color: var(--il-text);
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: -.02em;
  font-weight: 950;
}
.detail-service-card p {
  margin: 0;
  color: #62758b;
  font-size: 15px;
  line-height: 1.5;
}

.customs-directions-head h2 {
  margin: 0;
  color: var(--il-text);
  font-size: clamp(24px, 2.2vw, 31px);
  line-height: 1.12;
  letter-spacing: -.035em;
  font-weight: 950;
}
.customs-page .service-detail-row { align-items: stretch; }
.customs-page .detail-service-card {
  min-height: 252px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 34px 38px;
}
.customs-page .detail-service-card img {
  width: 84px;
  height: 84px;
  margin-bottom: 24px;
}

.customs-page .detail-service-card {
  border-color: var(--il-border);
}
.customs-page .detail-service-card:hover {
  border-color: rgba(255,107,0,.55);
}
.inner-sidebar-card {
  position: sticky;
  top: 108px;
  height: 100%;
}
.inner-sidebar-card .request-card__title { font-size: 19px; }
.sidebar-contact {
  padding-top: 18px;
  border-top: 1px solid var(--il-border);
}
.sidebar-contact span {
  display: block;
  margin-bottom: 8px;
  color: #62758b;
  font-size: 15px;
}
.sidebar-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--il-text);
  font-size: 18px;
  font-weight: 950;
}
.sidebar-contact a:hover { color: var(--il-orange); }
.documents-section { padding-top: 86px !important; }
.image-card {
  overflow: hidden;
  min-height: 100%;
  border-radius: var(--il-radius);
  box-shadow: var(--il-shadow);
  border: 1px solid var(--il-border);
}
.image-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  display: block;
}
.doc-item {
  position: relative;
  min-height: 62px;
  display: flex;
  align-items: center;
  padding: 16px 18px 16px 42px;
  color: var(--il-text);
  background: #fbfdff;
  border: 1px solid var(--il-border);
  border-radius: 14px;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 900;
}
.doc-item::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--il-orange);
  box-shadow: 0 0 0 5px rgba(255,107,0,.1);
  transform: translateY(-50%);
}
.inner-process-section { padding-top: 86px !important; }
.inner-process-section h2 {
  color: var(--il-text);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.12;
  letter-spacing: -.035em;
  font-weight: 950;
}
.inner-process-row { counter-reset: step; }
.inner-process-step {
  position: relative;
  padding: 28px 22px 26px;
  background: #fff;
  border: 1px solid var(--il-border);
  border-radius: var(--il-radius);
  box-shadow: var(--il-shadow-sm);
}
.inner-process-step span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #fff;
  background: var(--il-orange);
  border-radius: 50%;
  font-size: 15px;
  font-weight: 950;
}
.inner-process-step h3 {
  margin: 0 0 10px;
  color: var(--il-text);
  font-size: 20px;
  line-height: 1.15;
  font-weight: 950;
}
.inner-process-step p {
  margin: 0;
  color: #62758b;
  font-size: 15px;
  line-height: 1.45;
}
.inner-cta-section { padding: 86px 0 0 !important; }
.inner-cta-section .cta-card h3 {
  margin: 0 0 4px;
  color: #fff;
  font-size: clamp(20px, 2vw, 29px);
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: -.03em;
}

@media (max-width: 991.98px) {
  .inner-hero { padding: 60px 0 48px !important; }
  .inner-hero-card { max-width: none; margin-left: 0; }
  .inner-sidebar-card { position: static; }
  .image-card img { min-height: 320px; }
}

@media (max-width: 767.98px) {
  .inner-page section { padding-top: 58px; }
  .inner-hero { padding: 42px 0 42px !important; }
  .breadcrumbs { margin-bottom: 26px; font-size: 15px; }
  .inner-hero h1 { font-size: clamp(34px, 11vw, 48px); }
  .inner-hero__text { font-size: 16px; }
  .inner-hero-card,
  .content-card,
  .inner-sidebar-card { padding: 22px; }
  .inner-hero-card h2 { font-size: 19px; }
  .inner-features-section { padding-top: 28px !important; }
  .inner-content-section,
  .documents-section,
  .inner-process-section,
  .inner-cta-section { padding-top: 58px !important; }
  .image-card img { min-height: 250px; }
  .inner-feature-card,
  .detail-service-card,
  .inner-process-step { padding: 22px; }
}

/* Requested size adjustments */
.info-card__icon { width: 64px; height: 64px; }
.service-card__icon { width: 88px; height: 88px; }
.process-step__icon img { width: 52px; height: 52px; }

.btn-il-outline {
  --bs-btn-color: var(--il-blue);
  --bs-btn-border-color: rgba(7,49,95,.28);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--il-blue);
  --bs-btn-hover-border-color: var(--il-blue);
  border-radius: 12px;
  font-weight: 800;
  padding: 12px 24px;
}

.navbar-nav .nav-link.dropdown-toggle:not(.nav-link-caret-hide)::before {
 
  right: 0px;
  }

.nav-item--mega {
  position: static;
}

.nav-dropdown-menu.mega-menu {
  top: calc(100% + -12px);
  left: 50%;
  width: min(980px, calc(100vw - 32px));
  max-height: calc(100vh - 140px);
  padding: 28px 32px 4px;
  overflow-x: hidden;
  overflow-y: auto;
  transform: translateX(-50%);
}

.mega-menu__grid {
  column-count: 2;
  column-gap: 56px;
}

.mega-menu__group {
  display: inline-block;
  width: 100%;
  margin-bottom: 28px;
  break-inside: avoid;
  page-break-inside: avoid;
}

.mega-menu__group .mega-menu__title {
  margin-bottom: 14px;
}

.mega-menu__group .mega-menu__list {
  margin-bottom: 0;
}

@media only screen and (max-width: 767.98px) {
  .nav-item--mega {
    position: relative;
  }

  .nav-dropdown-menu.mega-menu {
    position: static;
    width: 100%;
    max-height: none;
    padding: 20px 0 0;
    overflow: visible;
    transform: none;
  }

  .mega-menu__grid {
    column-count: 1;
  }

  .mega-menu__group {
    margin-bottom: 24px;
  }
}

 .mega-menu__list li:not(:last-child) {

 margin-bottom: 12px; /* расстояние между подпунктами уменьшено на 25% */
 }





.site-header .navbar {
  min-height: 78px;
}

.site-header .navbar-collapse {
  flex-grow: 1;
}

.site-header .navbar-toggler svg {
  display: block;
  fill: var(--il-text);
}

.header-options {
  margin-left: 20px;
}

.mobile-header-action {
  padding-top: 22px;
}

@media (min-width: 992px) {
  .site-header .navbar-collapse {
    display: flex !important;
  }
}

@media (max-width: 991.98px) {
  .site-header .container,
  .site-header .navbar {
    min-height: 68px;
  }

  .site-header .navbar {
    flex-wrap: nowrap;
  }

  .site-header > .container > .navbar > .d-flex {
    min-width: 0;
  }

  .site-header .navbar-brand {
    margin-right: 0;
  }

  .site-header .navbar-collapse {
    position: fixed;
    z-index: 1100;
    top: 0;
    right: auto;
    bottom: 0;
    left: 0;
    display: block;
    width: min(420px, 100%);
    height: 100vh !important;
    padding: 0 24px 32px;
    overflow-x: hidden;
    overflow-y: auto;
    visibility: hidden;
    background: #fff;
    border: 0;
    box-shadow: 18px 0 45px rgba(7, 49, 95, .18);
    transform: translateX(-100%);
    transition: transform .25s ease, visibility .25s ease;
  }

  .site-header .navbar-collapse.show,
  .site-header .navbar-collapse.collapsing {
    visibility: visible;
    transform: translateX(0);
  }

  .site-header .navbar-collapse.collapsing {
    height: 100vh !important;
  }

  .site-header .navbar-xs {
    position: sticky;
    z-index: 5;
    top: 0;
    min-height: 76px;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    margin: 0 -24px 14px;
    padding: 0 24px;
    background: #fff;
    border-bottom: 1px solid var(--il-border);
  }

  .site-header .navbar-xs .navbar-brand {
    margin: 0;
  }

  .site-header .navbar-xs .site-logo img {
    width: 170px !important;
  }

  .site-header .navbar-toggler {
    flex: 0 0 auto;
  }

  .site-header .site-nav {
    width: 100%;
    align-items: stretch !important;
  }

  .site-header .site-nav .nav-item {
    width: 100%;
  }

  .site-header .site-nav .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 15px 0 !important;
    border-bottom: 1px solid var(--il-border);
    font-size: 14px;
    line-height: 1.3;
  }

  .site-header .site-nav .dropdown-toggle::after {
    flex: 0 0 auto;
    margin-right: 5px;
  }

  .site-header .nav-item--mega {
    position: relative;
  }

  .site-header .nav-dropdown-menu,
  .site-header .nav-dropdown-menu.mega-menu {
    position: static !important;
    top: auto !important;
    left: auto !important;
    width: 100%;
    max-height: none;
    margin: 0;
    padding: 18px 0 2px;
    overflow: visible;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--il-border);
    border-radius: 0;
    box-shadow: none;
    transform: none;
  }

  .site-header .nav-dropdown-menu.mega-menu[data-bs-popper] {
    top: auto;
    left: auto;
    margin: 0;
    transform: none;
  }

  .site-header .mega-menu__grid {
    column-count: 1;
    column-gap: 0;
  }

  .site-header .mega-menu__group {
    display: block;
    width: 100%;
    margin-bottom: 24px;
    break-inside: auto;
  }

  .site-header .mega-menu__title {
    min-height: 0;
    margin: 0 0 12px;
    padding: 0 0 10px;
    font-size: 15px;
  }

  .site-header .mega-menu__list li + li {
    margin-top: 11px;
  }

  .site-header .mega-menu__list a {
    padding-left: 18px !important;
    font-size: 15px;
  }

  .site-header .mobile-header-action {
    padding-bottom: 20px;
  }
}

@media (max-width: 767.98px) {
  .site-header .site-logo img {
    width: 180px !important;
  }

  .site-header .navbar-collapse {
    width: 100%;
  }
}

@media (max-width: 399.98px) {
  .site-header .site-logo img {
    width: 156px !important;
  }

  .site-header .navbar-toggler {
    margin-right: 8px !important;
  }
}


.nav-link h2:hover {
color: var(--il-orange-hover);
}

.nav-link h2 { display: inline;border-bottom: 1px dotted;}
@media (max-width: 991.98px) {
.site-header .navbar-collapse.show {
    visibility: visible!important;
    transform: translateX(0)!important;
}

.site-header .navbar-collapse.collapsing {
    display: none !important;
    transition: none !important;
}
}
@media (max-width: 991.98px) {
    .site-header .navbar-collapse.show > .site-nav {
        width: auto;
    }
}