@font-face {
  font-family: "Titillium Web";
  src: url("fonts/titillium-web-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Titillium Web";
  src: url("fonts/titillium-web-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Titillium Web";
  src: url("fonts/titillium-web-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --blue-900: #003b79;
  --blue-800: #004f9f;
  --blue-700: #1b66ad;
  --blue-600: #2f72b2;
  --blue-500: #3f7eb8;
  --sky-100: #edf4fb;
  --gray-100: #f3f5f7;
  --gray-200: #e4e8ee;
  --gray-500: #5d6c7c;
  --ink: #12304f;
  --white: #ffffff;
  --wrap: 1280px;
  --radius-box: 0.25rem;
  --hero-height: 420px;
}

html {
  font-size: 112.5%;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Titillium Web", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  color: var(--ink);
  background: var(--white);
  line-height: 1.4;
}

body.webpush-prompt-open {
  padding-bottom: 132px;
}

button,
input,
select,
textarea {
  font: inherit;
}

input:focus,
input:focus-visible,
select:focus,
select:focus-visible,
textarea:focus,
textarea:focus-visible,
button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(27, 102, 173, 0.16);
}

a { color: inherit; }

.wrap {
  width: min(100% - 2rem, var(--wrap));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #000;
  color: #fff;
  padding: 0.5rem 0.75rem;
  z-index: 999;
}

.menu-state {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
  pointer-events: none;
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

.webpush-prompt {
  position: fixed;
  inset: auto 1rem 1rem 1rem;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(8, 28, 49, 0.94);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(6, 28, 48, 0.26);
  backdrop-filter: blur(14px);
  padding: 1rem 1.1rem;
}

.webpush-prompt__eyebrow {
  margin: 0 0 0.25rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9fccff;
}

.webpush-prompt h2 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
}

.webpush-prompt p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  max-width: 48rem;
}

.webpush-prompt__actions {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.top-header {
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
}

.top-header__inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
  min-width: 0;
}

.logos {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  min-width: 0;
}

.logos img {
  height: 70px;
  width: auto;
  display: block;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  min-width: 0;
}

.top-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.top-nav a {
  text-decoration: none;
  font-size: 0.95rem;
  color: #2e5278;
  font-weight: 600;
}

.top-header .top-nav a,
.top-header .top-nav a:visited {
  color: #2e5278 !important;
}

.top-header .top-nav a:hover,
.top-header .top-nav a:focus-visible {
  color: #173a5d;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.lang-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
}


.lang-select {
  min-width: 74px;
  height: 38px;
  border: 1px solid #9db8d3;
  border-radius: var(--radius-box);
  appearance: none;
  -webkit-appearance: none;
  background-color: #eef4fb;
  background-image:
    linear-gradient(45deg, transparent 50%, #1f527f 50%),
    linear-gradient(135deg, #1f527f 50%, transparent 50%);
  background-position:
    calc(100% - 15px) 16px,
    calc(100% - 10px) 16px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  color: #173a5d;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0 1.65rem 0 0.6rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

.lang-select:focus-visible {
  outline: 2px solid #1b66ad;
  outline-offset: 1px;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid #c9d7e8;
  background: #fff;
  border-radius: var(--radius-box);
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #2d4f74;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 32, 63, 0.92);
  backdrop-filter: blur(10px);
  z-index: 40;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  cursor: pointer;
}

.mobile-menu-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 1.2rem 1.2rem 2rem;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(119, 184, 255, 0.22), transparent 32%),
    linear-gradient(180deg, rgba(7, 28, 52, 0.94), rgba(5, 18, 36, 0.98));
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.8rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.mobile-menu-title {
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.menu-close {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.6rem;
  margin: 0.2rem 0 0.9rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.mobile-menu-search input {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  padding: 0 0.85rem;
  font: inherit;
}

.mobile-menu-search input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.mobile-menu-search .btn-small {
  min-width: 0;
  padding-inline: 1rem;
}

.mobile-menu-panel li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-menu-panel a {
  display: block;
  text-decoration: none;
  color: #fff;
  padding: 0.8rem 0.4rem;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 4px;
  transition: background-color 0.18s ease, transform 0.18s ease;
}

.mobile-menu-panel a:hover,
.mobile-menu-panel a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(2px);
}

.mobile-private-item {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 0.75rem;
  padding-top: 0.85rem;
  padding-bottom: max(0.5rem, env(safe-area-inset-bottom));
}

.mobile-private-link {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(135deg, #ffffff, #d7e8f9);
  border-radius: 4px;
  padding: 0.9rem 1rem;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.mobile-menu-panel a.mobile-private-link {
  color: #173a5f;
  padding: 0.9rem 1rem;
  text-align: center;
}

#menu-state:checked ~ .mobile-menu-overlay {
  opacity: 1;
  visibility: visible;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius-box);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.btn-small {
  background: var(--blue-700);
  color: #ffffff;
  border-color: var(--blue-700);
  min-width: 156px;
  padding: 0.5rem 1.05rem;
  font-size: 0.95rem;
}

.hero {
  position: relative;
  height: var(--hero-height);
  color: #fff;
  border-top: 1px solid #dce6f3;
  overflow: hidden;
}

.hero-slider {
  height: var(--hero-height);
  overflow: hidden;
  position: relative;
  touch-action: pan-y;
}

.hero-track {
  display: flex;
  width: 100%;
  height: var(--hero-height);
  transition: transform 0.5s ease;
}

.hero-slide {
  position: relative;
  flex: 0 0 100%;
  height: var(--hero-height);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(94deg, rgba(7, 40, 78, 0.93) 0%, rgba(10, 65, 124, 0.75) 38%, rgba(9, 78, 140, 0.25) 67%, rgba(8, 98, 126, 0.35) 100%),
    var(--hero-bg-image, url("hero-placeholder.svg")) center/cover no-repeat;
  filter: hue-rotate(var(--hero-tone, 0deg));
  transition: filter 0.7s ease, opacity 0.7s ease;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  height: var(--hero-height);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(1.5rem, 2.1vw, 2.6rem);
  font-weight: 700;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.btn-light {
  background: #fff;
  color: #24486c;
  padding: 0.55rem 0.9rem;
  border-color: #d4dfeb;
  font-size: 0.74rem;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 3;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.5);
  border: 0;
  padding: 0;
  cursor: pointer;
}

.dot.active {
  background: #fff;
  transform: scale(1.2);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 4px;
  background: rgba(7, 32, 63, 0.45);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.hero-arrow--prev {
  left: 1rem;
}

.hero-arrow--next {
  right: 1rem;
}

.services {
  padding: 2.8rem 0 1.9rem;
}

.services h2,
.assistance h2 {
  color: var(--blue-700);
  text-align: center;
  margin: 0 0 1.1rem;
  font-size: clamp(1.45rem, 2.1vw, 2rem);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.service-col {
  background: #fff;
}

.service-col h3 {
  margin: 0;
  padding: 0.85rem 1rem;
  background: var(--blue-700);
  color: #fff;
  font-size: 1.2rem;
  border-radius: var(--radius-box);
}

.service-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-col li {
  margin-top: 0.65rem;
  min-height: 104px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-box);
  padding: 0;
  font-size: 1.125rem;
}

.service-col li a {
  min-height: 104px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.85rem 1rem;
  gap: 0.9rem;
  text-decoration: none;
}

.service-copy {
  display: block;
}

.service-item-title {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: #31465f;
  margin-bottom: 0.35rem;
}

.service-item-desc {
  display: block;
  font-size: 1rem;
  line-height: 1.35;
  color: #607489;
}

.service-col li .arrow {
  color: #6f8298;
  font-size: 1.15rem;
  line-height: 1;
  font-weight: 700;
  margin-top: 0.18rem;
}

.assistance {
  padding: 1.5rem 0 2.4rem;
  text-align: center;
}

.assistance img {
  width: 100%;
  display: block;
  margin: 0 auto 1.15rem;
  border-radius: var(--radius-box);
}

.assistance p {
  margin: -0.25rem 0 0.8rem;
  color: #62768f;
  font-size: 0.77rem;
}

.btn-primary {
  background: var(--blue-700);
  color: #fff;
  padding: 0.42rem 0.82rem;
  font-size: 0.68rem;
}

.more {
  background: var(--blue-500);
  color: #fff;
  padding: 1.95rem 0 2.2rem;
}

.more__inner {
  display: grid;
  grid-template-columns: 1.1fr 2.4fr;
  gap: 1.6rem;
  align-items: start;
}

.more__intro h2 {
  margin: 0 0 0.55rem;
  font-size: 2.25rem;
  line-height: 1.15;
}

.more__intro p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.45;
  max-width: 30ch;
  opacity: 0.95;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  background: #fff;
  color: #1f3f63;
  border-radius: var(--radius-box);
  min-height: 170px;
  padding: 0.95rem 1rem;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

.eyebrow {
  margin: 0 0 0.72rem;
  color: #4f6f92;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  line-height: 1.3;
  color: #183f69;
}

.card-text {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.35;
  color: rgb(26, 26, 26);
}

.site-footer {
  background: var(--gray-100);
  color: #2f4558;
  border-top: 1px solid var(--gray-200);
  font-size: 0.92rem;
}

.footer-width-fixer {
  padding-top: 1.6rem;
}

.footer-main {
  padding-bottom: 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.9fr)) minmax(0, 1fr);
  gap: 1.4rem;
  align-items: start;
}

.footer-brand,
.footer-nav-group,
.footer-contact-group {
  display: grid;
  gap: 0.75rem;
}

.footer-brand h2,
.footer-nav-group h2,
.footer-contact-group h2 {
  margin: 0;
  font-size: 1rem;
  color: #173a5d;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  max-width: 220px;
  padding: 0.15rem 0;
}

.footer-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-brand-text,
.footer-contact-static,
.footer-legal__inner p,
.footer-bottom__inner p {
  margin: 0;
  line-height: 1.55;
  color: #40586d;
}

.footer-links,
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}

.footer-links a,
.footer-contact-list a,
.footer-legal a,
.footer-bottom a {
  color: #2e5278;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact-list a:hover,
.footer-contact-list a:focus-visible,
.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: #173a5d;
  text-decoration: underline;
}

.footer-contact-list a,
.footer-contact-static {
  display: inline-flex;
  gap: 0.65rem;
  align-items: flex-start;
}

.footer-contact-icon {
  width: 1rem;
  flex: 0 0 1rem;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.footer-social-link {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-box);
  background: #ffffff;
  border: 1px solid #cfd7df;
  color: #2e5278;
  font-weight: 800;
  text-decoration: none;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  background: #e8eef4;
  border-color: #b7c4d0;
  color: #173a5d;
}

.footer-bottom {
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  background: #eef2f5;
}

.footer-bottom__inner,
.footer-legal__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.7rem 0;
}

.footer-link-button {
  border: 0;
  background: transparent;
  color: #2e5278;
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}

.footer-link-button:hover,
.footer-link-button:focus-visible {
  color: #173a5d;
}

.footer-legal {
  font-size: 0.74rem;
  color: #50677a;
  background: #f8fafc;
}

.cookie-consent {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 130;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(19, 56, 90, 0.18);
  border-radius: var(--radius-box);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 50px rgba(17, 48, 79, 0.18);
  backdrop-filter: blur(14px);
  pointer-events: auto;
}

.cookie-consent[hidden],
.cookie-consent-modal[hidden] {
  display: none !important;
}

.cookie-consent__body h2,
.cookie-consent-modal__panel h2 {
  margin: 0.2rem 0 0.45rem;
  color: #163f66;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.cookie-consent__body p,
.cookie-consent-modal__lead {
  margin: 0;
  color: #36506b;
}

.cookie-consent__eyebrow {
  margin: 0;
  color: #5c7996;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
}

.cookie-consent__actions,
.cookie-consent-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: flex-end;
}

.cookie-consent-modal {
  position: fixed;
  inset: 0;
  z-index: 140;
}

.cookie-consent-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 24, 39, 0.35);
  backdrop-filter: blur(8px);
}

.cookie-consent-modal__panel {
  position: relative;
  width: min(100% - 2rem, 760px);
  margin: 6vh auto 0;
  border-radius: var(--radius-box);
  border: 1px solid rgba(20, 58, 94, 0.16);
  background: #ffffff;
  box-shadow: 0 28px 60px rgba(10, 30, 52, 0.22);
  padding: 1.2rem;
}

.cookie-consent-modal__close {
  position: absolute;
  top: 0.8rem;
  right: 0.85rem;
  border: 0;
  background: transparent;
  color: #52708d;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.cookie-consent-modal__options {
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0 1.1rem;
}

.cookie-consent-choice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
  padding: 0.85rem 0.9rem;
  border: 1px solid #d7e4ef;
  border-radius: var(--radius-box);
  background: #f8fbff;
}

.cookie-consent-choice span {
  display: grid;
  gap: 0.2rem;
}

.cookie-consent-choice strong {
  color: #163f66;
}

.cookie-consent-choice small {
  color: #56718d;
  line-height: 1.45;
}

body.cookie-consent-modal-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  html,
  body {
    overflow-x: hidden;
  }

  body.webpush-prompt-open {
    padding-bottom: 172px;
  }

  .wrap {
    width: min(100% - 1rem, var(--wrap));
  }

  :root {
    --hero-height: 360px;
  }

  .top-header__inner {
    flex-wrap: nowrap;
    justify-content: space-between;
    text-align: left;
    padding: 0.45rem 0;
    gap: 0.4rem;
  }

  .logos {
    justify-content: flex-start;
    flex: 1 1 auto;
  }

  .logos img {
    height: 66px;
    max-width: 100%;
  }

  .header-right {
    width: auto;
    flex: 0 0 auto;
    justify-content: flex-end;
    gap: 0.35rem;
  }

  .top-nav {
    display: none;
  }


  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .private-area-btn {
    display: none;
  }

  .lang-switcher {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
  }

  .lang-select {
    min-width: 52px;
    height: 34px;
    font-size: 0.86rem;
    padding: 0 1.2rem 0 0.45rem;
    background-position:
      calc(100% - 13px) 14px,
      calc(100% - 9px) 14px;
    background-size: 4px 4px, 4px 4px;
  }

  .webpush-prompt {
    flex-direction: column;
    align-items: stretch;
    inset: auto 0.75rem 0.75rem 0.75rem;
  }

  .cookie-consent {
    flex-direction: column;
    align-items: stretch;
    inset: auto 0.75rem 0.75rem 0.75rem;
  }

  .cookie-consent__actions,
  .cookie-consent-modal__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-consent-modal__panel {
    margin-top: 3vh;
    width: min(100% - 1rem, 760px);
    padding: 1rem;
  }

  .webpush-prompt__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .menu-toggle {
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
  }

  .menu-toggle span {
    width: 16px;
  }

  .hero-arrow {
    display: none;
  }

  .hero__content {
    align-items: center;
    text-align: center;
  }

  .services-grid,
  .more__inner,
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .more__intro p {
    max-width: 100%;
  }

  .card {
    min-height: 145px;
  }

  .footer-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 0.5rem 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom__inner,
  .footer-legal__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .top-header__inner {
    min-height: 74px;
    gap: 0.3rem;
  }

  .logos img {
    height: 60px;
  }

  .header-right {
    gap: 0.3rem;
  }

  .lang-select {
    min-width: 48px;
    height: 32px;
    font-size: 0.82rem;
    padding: 0 1.1rem 0 0.4rem;
    background-position:
      calc(100% - 12px) 13px,
      calc(100% - 8px) 13px;
  }

  .menu-toggle {
    width: 32px;
    height: 32px;
  }

  .menu-toggle span {
    width: 15px;
  }
}

.top-nav a.is-active {
  color: #173a5d !important;
  background: #dbe8f4;
  text-decoration: none;
  padding: 0.15rem 0.35rem;
  border-radius: var(--radius-box);
}

.content-page {
  padding: 2.5rem 0 3rem;
}

.about-hero {
  margin-bottom: 2rem;
}

.about-hero h1 {
  margin: 0 0 0.5rem;
  color: var(--blue-700);
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.about-hero p {
  margin: 0 0 1rem;
  color: #36516b;
  font-size: 1.08rem;
  line-height: 1.55;
  max-width: 75ch;
}

.about-hero img {
  width: 100%;
  border-radius: var(--radius-box);
  display: block;
}

.about-block {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 1.3rem;
  align-items: start;
  margin-top: 1.4rem;
}

.about-block__image img {
  width: 100%;
  display: block;
  border-radius: var(--radius-box);
}

.about-block__content h2 {
  margin: 0 0 0.7rem;
  color: var(--blue-700);
  font-size: 1.6rem;
}

.about-block__content p {
  margin: 0 0 0.95rem;
  color: #1a1a1a;
  font-size: 1rem;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .content-page {
    padding: 1.7rem 0 2.2rem;
  }

  .about-block {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }
}

.article-page {
  padding: 2.4rem 0 3rem;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
  gap: 1.35rem;
  align-items: start;
}

.article-main h1 {
  margin: 0.25rem 0 0.4rem;
  color: var(--blue-700);
  font-size: clamp(2rem, 2.7vw, 2.8rem);
  line-height: 1.15;
}

.article-kicker {
  margin: 0;
  color: #4d6a84;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-meta {
  margin: 0 0 0.9rem;
  color: #4f6a81;
  font-size: 0.95rem;
}

.article-hero {
  width: 100%;
  border-radius: var(--radius-box);
  display: block;
  margin-bottom: 1rem;
}

.article-main p {
  margin: 0 0 1rem;
  color: #1a1a1a;
  font-size: 1rem;
  line-height: 1.68;
}

.article-main .article-lead {
  font-size: 1.14rem;
  color: #2d4a65;
}

.article-sidebar h2 {
  margin: 0 0 0.8rem;
  color: var(--blue-700);
  font-size: 1.35rem;
}

.article-sidebar__cards {
  display: grid;
  gap: 0.75rem;
}

.sidebar-card {
  background: #f8fafc;
  border: 1px solid #dbe4ef;
  border-radius: var(--radius-box);
  padding: 0.8rem 0.85rem;
}

.sidebar-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  line-height: 1.25;
}

.sidebar-card h3 a {
  text-decoration: none;
  color: #ffffff;
}

.sidebar-card p {
  margin: 0;
  color: #1a1a1a;
  font-size: 0.92rem;
  line-height: 1.4;
}

.not-found-page {
  min-height: 58vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 0 2.4rem;
}

.not-found-wrap {
  max-width: 760px;
}

.not-found-code {
  margin: 0;
  color: var(--blue-700);
  font-size: clamp(3.2rem, 9vw, 6rem);
  font-weight: 700;
  line-height: 1;
}

.not-found-wrap h1 {
  margin: 0.45rem 0 0.7rem;
  color: #18456f;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
}

.not-found-wrap p {
  margin: 0 auto;
  max-width: 60ch;
  color: #1a1a1a;
  font-size: 1rem;
  line-height: 1.55;
}

.not-found-actions {
  margin-top: 1.2rem;
  display: inline-flex;
  gap: 0.65rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.not-found-link {
  color: #173a5f;
}

@media (max-width: 900px) {
  .article-layout {
    grid-template-columns: 1fr;
  }
}

.contacts-page {
  padding: 2.4rem 0 3rem;
}

.contacts-head h1 {
  margin: 0 0 0.5rem;
  color: var(--blue-700);
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.contacts-head p {
  margin: 0 0 1rem;
  color: #2a4b66;
  font-size: 1.02rem;
  line-height: 1.55;
  max-width: 80ch;
}

.contacts-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 1.25rem;
}

.contacts-company img {
  width: 100%;
  display: block;
  border-radius: var(--radius-box);
  margin-bottom: 0.8rem;
}

.contacts-company h2,
.contacts-form-box h2 {
  margin: 0 0 0.65rem;
  color: var(--blue-700);
  font-size: 1.5rem;
}

.contacts-company p {
  margin: 0 0 0.5rem;
  color: #1a1a1a;
  font-size: 1rem;
  line-height: 1.5;
}

.contacts-form-box {
  background: linear-gradient(180deg, #f9fbff, #f3f8fd);
  border: 1px solid #d6e1ef;
  border-radius: 4px;
  padding: 1.1rem;
  box-shadow: 0 14px 34px rgba(15, 46, 78, 0.08);
}

.contacts-form {
  display: grid;
  gap: 0.95rem;
}

.contacts-form label,
.contacts-form fieldset {
  display: grid;
  gap: 0.35rem;
}

.contacts-form span,
.contacts-form legend {
  font-size: 0.92rem;
  font-weight: 600;
  color: #274a6a;
}

.contacts-form input,
.contacts-form select,
.contacts-form textarea {
  width: 100%;
  border: 1px solid #c6d6e7;
  border-radius: 4px;
  min-height: 3rem;
  padding: 0.78rem 0.86rem;
  color: #1a1a1a;
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.88), 0 1px 2px rgba(18, 48, 79, 0.04);
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease;
}

.contacts-form textarea {
  min-height: 10rem;
  resize: vertical;
}

.contacts-form input:focus,
.contacts-form input:focus-visible,
.contacts-form select:focus,
.contacts-form select:focus-visible,
.contacts-form textarea:focus,
.contacts-form textarea:focus-visible {
  border-color: #1b66ad;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(27, 102, 173, 0.14);
}

.contacts-form fieldset {
  border: 1px solid #d7e3ef;
  border-radius: var(--radius-box);
  padding: 0.55rem 0.62rem;
}

.contacts-form .choice {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 0.6rem;
  padding: 0.8rem 0.85rem;
  border: 1px solid #d8e4ef;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  color: #1a1a1a;
}

.contacts-form .choice input {
  width: 18px !important;
  height: 18px;
  min-height: 18px;
  margin-top: 2px;
  flex: 0 0 auto;
  accent-color: #1b66ad;
}

.contacts-form .choice span {
  display: block;
  min-width: 0;
}

.contacts-form button.btn {
  width: 100%;
  justify-content: center;
  min-height: 3.1rem;
}

.faq-page {
  padding: 2.4rem 0 3rem;
}

.faq-head h1 {
  margin: 0 0 0.5rem;
  color: var(--blue-700);
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.faq-head p {
  margin: 0 0 1rem;
  color: #2a4b66;
  font-size: 1.02rem;
  line-height: 1.55;
  max-width: 80ch;
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem 1rem;
}

.faq-item {
  border: 1px solid #d7e2ef;
  border-radius: var(--radius-box);
  background: #f8fbff;
  overflow: hidden;
  margin: 0.1rem 0;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 0.78rem 0.9rem 0.72rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-question {
  font-size: 1.05rem;
  font-weight: 600;
  color: #204668;
}

.faq-icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border: 1px solid #b9ccdf;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: #40607c;
}

.faq-icon::before {
  width: 11px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 11px;
}

.faq-item[open] .faq-icon::after {
  display: none;
}

.faq-answer {
  padding: 0 0.9rem 0.85rem;
}

.faq-answer p {
  margin: 0;
  color: #1a1a1a;
  font-size: 0.97rem;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .contacts-layout {
    grid-template-columns: 1fr;
  }
}

.a11y-fab {
  position: fixed;
  right: 0.85rem;
  bottom: 1rem;
  z-index: 90;
  width: 52px;
  height: 52px;
  border: 2px solid #003b79;
  border-radius: 4px;
  background: #005cab;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0, 37, 75, 0.35);
  cursor: pointer;
}

.a11y-fab svg {
  width: 30px;
  height: 30px;
  display: block;
  fill: currentColor;
}

.a11y-panel {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translate(110%, -50%);
  width: min(92vw, 330px);
  max-height: 88vh;
  overflow: auto;
  z-index: 91;
  border: 1px solid #d5e2f0;
  border-right: 0;
  border-radius: 4px;
  background: #ffffff;
  box-shadow: -14px 20px 36px rgba(18, 48, 79, 0.2);
  padding: 0.9rem 0.85rem;
  transition: transform 0.28s ease;
}

.a11y-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.a11y-panel h2 {
  margin: 0;
  color: var(--blue-700);
  font-size: 1.25rem;
}

.a11y-close {
  border: 0;
  background: transparent;
  color: #355572;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.a11y-panel p {
  margin: 0.35rem 0 0.8rem;
  color: #294964;
  font-size: 0.92rem;
}

.a11y-options {
  display: grid;
  gap: 0.45rem;
}

.a11y-options button,
.a11y-reset {
  width: 100%;
  text-align: left;
  border: 1px solid #d6e2ef;
  border-radius: var(--radius-box);
  background: #f8fbff;
  color: #18476f;
  padding: 0.56rem 0.62rem;
  font: inherit;
  cursor: pointer;
}

.a11y-options button.is-on {
  border-color: #1b66ad;
  background: #eaf3fd;
  color: #ffffff;
}

.a11y-reset {
  margin-top: 0.7rem;
  background: #fff;
}

body.a11y-panel-open .a11y-panel {
  transform: translate(0, -50%);
}

html.a11y-large-text {
  font-size: 125%;
}

body.a11y-readable-text {
  line-height: 1.7;
  letter-spacing: 0.01em;
  word-spacing: 0.03em;
}

body.a11y-underline-links a {
  text-decoration: underline !important;
  text-underline-offset: 0.14em;
}

body.a11y-reduce-motion *,
body.a11y-reduce-motion *::before,
body.a11y-reduce-motion *::after {
  animation: none !important;
  transition: none !important;
  scroll-behavior: auto !important;
}

body.a11y-high-contrast {
  background: #000;
  color: #fff;
}

body.a11y-high-contrast .top-header,
body.a11y-high-contrast .service-col li,
body.a11y-high-contrast .card,
body.a11y-high-contrast .contacts-form-box,
body.a11y-high-contrast .faq-item,
body.a11y-high-contrast .sidebar-card,
body.a11y-high-contrast .a11y-panel,
body.a11y-high-contrast .widget,
body.a11y-high-contrast .content-card {
  background: #111 !important;
  color: #fff !important;
  border-color: #fff !important;
}

body.a11y-high-contrast a,
body.a11y-high-contrast .service-item-desc,
body.a11y-high-contrast .card-text,
body.a11y-high-contrast .article-main p,
body.a11y-high-contrast .contacts-company p,
body.a11y-high-contrast .faq-answer p,
body.a11y-high-contrast .entry-meta {
  color: #fff !important;
}

@media (max-width: 900px) {
  .a11y-panel {
    top: auto;
    bottom: 0.7rem;
    transform: translateX(110%);
    border-right: 1px solid #d5e2f0;
    border-radius: 4px;
  }

  body.a11y-panel-open .a11y-panel {
    transform: translateX(0);
  }
}

body.newsletter-open {
  overflow: hidden;
}

.newsletter-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
}

.newsletter-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 17, 30, 0.6);
  backdrop-filter: blur(6px);
}

.newsletter-modal__panel {
  position: relative;
  width: min(92vw, 560px);
  margin: 8vh auto 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(245,247,250,0.98));
  border-radius: 4px;
  padding: 32px 28px;
  box-shadow: 0 40px 90px rgba(10, 25, 47, 0.28);
}

.newsletter-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.newsletter-modal__eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8c4f17;
}

.newsletter-modal__lead {
  margin-bottom: 18px;
}

.newsletter-modal__benefits {
  margin: 0 0 20px;
  padding-left: 18px;
  color: #22313f;
}

.newsletter-modal__benefits li + li {
  margin-top: 8px;
}

.newsletter-modal__form {
  display: grid;
  gap: 14px;
}

.newsletter-modal__form label {
  display: grid;
  gap: 8px;
}

.newsletter-modal__form span {
  font-weight: 600;
}

.newsletter-modal__form input[type="email"] {
  width: 100%;
  border: 1px solid rgba(20, 36, 54, 0.16);
  border-radius: 4px;
  min-height: 54px;
  padding: 14px 16px;
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease;
}

.newsletter-modal__form input[type="email"]:focus,
.newsletter-modal__form input[type="email"]:focus-visible {
  border-color: #1b66ad;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(27, 102, 173, 0.14);
}

.newsletter-modal__form input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #1b66ad;
}

.newsletter-modal__form .choice {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 0.65rem;
  align-items: start;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(20, 36, 54, 0.1);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.86);
}

.newsletter-modal__form .choice span {
  display: block;
  min-width: 0;
}

.newsletter-modal__form .btn {
  width: 100%;
  justify-content: center;
  min-height: 54px;
}

.submit-feedback {
  position: fixed;
  inset: 0;
  z-index: 120;
}

.submit-feedback__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 17, 30, 0.52);
  backdrop-filter: blur(7px);
}

.submit-feedback__panel {
  position: relative;
  z-index: 1;
  width: min(92vw, 430px);
  margin: 16vh auto 0;
  border: 1px solid rgba(19, 58, 95, 0.12);
  border-radius: 4px;
  padding: 1.5rem 1.35rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(244,248,252,0.98));
  box-shadow: 0 34px 80px rgba(10, 25, 47, 0.24);
  text-align: center;
}

.submit-feedback__panel h2 {
  margin: 0 0 0.45rem;
  color: #173a5f;
  font-size: clamp(1.3rem, 3vw, 1.55rem);
}

.submit-feedback__panel p {
  margin: 0;
  color: #4a657d;
}

.submit-feedback__spinner {
  width: 48px;
  height: 48px;
  display: inline-block;
  margin-bottom: 0.8rem;
  border-radius: 4px;
  border: 4px solid rgba(27, 102, 173, 0.14);
  border-top-color: #1b66ad;
  animation: submit-feedback-spin 0.8s linear infinite;
}

body.submit-feedback-open {
  overflow: hidden;
}

@keyframes submit-feedback-spin {
  to {
    transform: rotate(360deg);
  }
}

.newsletter-modal__later {
  margin-top: 14px;
  border: 0;
  background: transparent;
  color: #35536b;
  font-weight: 600;
  cursor: pointer;
}

@media (max-width: 720px) {
  .newsletter-modal__panel {
    width: min(94vw, 560px);
    margin-top: 5vh;
    padding: 26px 20px;
    border-radius: 4px;
  }
}

@media (max-width: 420px) {
  .logos img {
    height: 54px;
  }

  .lang-select {
    min-width: 44px;
    font-size: 0.78rem;
    padding-left: 0.35rem;
  }

  .mobile-menu-panel {
    padding: 1rem 1rem 1.5rem;
  }
}
