@font-face {
  font-family: Ubuntu;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/ubuntu-400.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: Ubuntu;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/ubuntu-500.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: Ubuntu;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/ubuntu-700.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

:root {
  --ink: #171923;
  --muted: #687083;
  --soft: #f3f4f7;
  --panel: #ffffff;
  --line: #e1e5ed;
  --azma: #282472;
  --blue: #4368e8;
  --green: #25b67a;
  --yellow: #ffd56b;
  --shadow: 0 18px 48px rgba(20, 24, 43, .08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Ubuntu, Inter, Arial, Helvetica, sans-serif;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

main,
.azma-footer-inner {
  width: min(1120px, calc(100vw - 32px));
  margin: 0 auto;
}

.azma-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  height: 70px;
  background: transparent;
}

.azma-header-inner {
  width: min(1160px, calc(100vw - 112px));
  height: 70px;
  display: flex;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  margin: 0 auto;
  padding: 0 30px;
  color: #fff;
  background: #1d3e8e;
  border-radius: 0 0 20px 20px;
}

.brand {
  width: 130px;
  height: 32px;
  flex: 0 0 130px;
  display: block;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.nav-links {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: 50px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.nav-item {
  position: static;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 70px;
  color: #fff;
  white-space: nowrap;
}

.nav-link::after {
  content: "";
  width: 0;
  height: 0;
  margin-top: 3px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
}

.nav-item:hover .nav-link,
.nav-item:focus-within .nav-link,
.nav-item.is-open .nav-link {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.mega-menu {
  position: absolute;
  top: 70px;
  left: max(48px, calc((100vw - 1080px) / 2));
  width: min(1080px, calc(100vw - 96px));
  max-height: min(72vh, 520px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px 42px;
  padding: 24px 28px 28px;
  overflow: auto;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  color: #fff;
  background: #224493;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 16px 32px rgba(20, 36, 96, .18);
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}

.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu,
.nav-item.is-open .mega-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mega-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 58px 1fr;
  grid-template-rows: auto 1fr;
  column-gap: 18px;
  align-items: start;
}

.mega-card:hover strong,
.mega-card:focus-visible strong {
  color: #64bfe4;
}

.mega-icon {
  width: 58px;
  height: 58px;
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  color: #1d55b6;
  background: #fff;
  border-radius: 12px;
}

.mega-icon::before {
  content: "";
  width: 32px;
  height: 32px;
  display: block;
  background: currentColor;
  -webkit-mask: var(--icon) center / contain no-repeat;
  mask: var(--icon) center / contain no-repeat;
}

.icon-store,
.icon-building {
  --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 10h16l-1.2-5.2A2.3 2.3 0 0 0 16.6 3H7.4a2.3 2.3 0 0 0-2.2 1.8L4 10Z'/%3E%3Cpath d='M5 10v10h14V10M9 20v-6h6v6M8 3v7M16 3v7'/%3E%3C/g%3E%3C/svg%3E");
}

.icon-search-code {
  --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='10.5' cy='10.5' r='6.5'/%3E%3Cpath d='m16 16 5 5M8 9l-2 2 2 2M13 9l2 2-2 2M11.5 7.5l-2 7'/%3E%3C/g%3E%3C/svg%3E");
}

.icon-id,
.icon-badge {
  --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Ccircle cx='9' cy='11' r='2.2'/%3E%3Cpath d='M6.5 16c.7-1.7 4.3-1.7 5 0M14 10h4M14 14h3'/%3E%3C/g%3E%3C/svg%3E");
}

.icon-qr {
  --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='4' width='6' height='6' rx='1'/%3E%3Crect x='14' y='4' width='6' height='6' rx='1'/%3E%3Crect x='4' y='14' width='6' height='6' rx='1'/%3E%3Cpath d='M14 14h2v2h-2zM18 14h2M14 18h6M18 20v-4'/%3E%3C/g%3E%3C/svg%3E");
}

.icon-bank {
  --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 9h18L12 4 3 9ZM5 9v9M9 9v9M15 9v9M19 9v9M4 18h16M3 21h18'/%3E%3C/g%3E%3C/svg%3E");
}

.icon-location {
  --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21s7-5.2 7-12a7 7 0 0 0-14 0c0 6.8 7 12 7 12Z'/%3E%3Ccircle cx='12' cy='9' r='2.4'/%3E%3C/g%3E%3C/svg%3E");
}

.icon-calculator,
.icon-wallet {
  --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='5' y='3' width='14' height='18' rx='2'/%3E%3Cpath d='M8 7h8M8 11h2M12 11h2M16 11h.1M8 15h2M12 15h2M16 15h.1'/%3E%3C/g%3E%3C/svg%3E");
}

.icon-briefcase {
  --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='7' width='18' height='13' rx='2'/%3E%3Cpath d='M9 7V5.5A1.5 1.5 0 0 1 10.5 4h3A1.5 1.5 0 0 1 15 5.5V7M3 12h18M12 12v2'/%3E%3C/g%3E%3C/svg%3E");
}

.icon-users,
.icon-user-check {
  --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='8' r='3'/%3E%3Cpath d='M3.5 19c.9-4.2 10.1-4.2 11 0M16 7.5a2.5 2.5 0 0 1 0 5M17 17l2 2 3-4'/%3E%3C/g%3E%3C/svg%3E");
}

.icon-shield-search {
  --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3 5 6v5c0 4.6 3 8.1 7 10 4-1.9 7-5.4 7-10V6l-7-3Z'/%3E%3Ccircle cx='11' cy='11' r='3'/%3E%3Cpath d='m13.2 13.2 3 3'/%3E%3C/g%3E%3C/svg%3E");
}

.icon-files,
.icon-zero-file {
  --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 3h7l4 4v14H7z'/%3E%3Cpath d='M14 3v5h5M5 7H3v14h12v-2M10 12h5M10 16h5'/%3E%3C/g%3E%3C/svg%3E");
}

.icon-rocket {
  --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M13 4c3.2 0 5.4.8 7 2.4-1.1 5.1-4.1 8.1-9.2 9.2L8.4 13.2C9.1 9.2 10.7 6.1 13 4Z'/%3E%3Cpath d='M8.4 13.2 5 16.5V19h2.5l3.3-3.4M15 8.5h.1M6.5 13.5 4 11l4-2M10.5 17.5 13 20l2-4'/%3E%3C/g%3E%3C/svg%3E");
}

.icon-percent {
  --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 5 5 19'/%3E%3Ccircle cx='7.5' cy='7.5' r='2.5'/%3E%3Ccircle cx='16.5' cy='16.5' r='2.5'/%3E%3C/g%3E%3C/svg%3E");
}

.icon-code {
  --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m8 9-4 3 4 3M16 9l4 3-4 3M13 6l-2 12'/%3E%3C/g%3E%3C/svg%3E");
}

.icon-shopping,
.icon-package {
  --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 7h15l-2 8H8L6 4H3'/%3E%3Ccircle cx='9' cy='20' r='1.4'/%3E%3Ccircle cx='18' cy='20' r='1.4'/%3E%3Cpath d='M10 7a2 2 0 0 1 4 0'/%3E%3C/g%3E%3C/svg%3E");
}

.icon-graduation {
  --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m3 8.5 9-4 9 4-9 4-9-4Z'/%3E%3Cpath d='M7 11v4c2.6 2 7.4 2 10 0v-4M21 9v6'/%3E%3C/g%3E%3C/svg%3E");
}

.icon-handshake,
.icon-partners {
  --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 12 5.5 9.5a2.1 2.1 0 0 1 0-3L7 5h4l2 2h4l1.5 1.5a2.1 2.1 0 0 1 0 3L16 14'/%3E%3Cpath d='m9 13 2 2a2 2 0 0 0 3 0l3-3M7 15l2 2M5 17l2 2M17 15l-2 2'/%3E%3C/g%3E%3C/svg%3E");
}

.icon-grid {
  --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='4' width='6' height='6' rx='1.5'/%3E%3Crect x='14' y='4' width='6' height='6' rx='1.5'/%3E%3Crect x='4' y='14' width='6' height='6' rx='1.5'/%3E%3Crect x='14' y='14' width='6' height='6' rx='1.5'/%3E%3C/g%3E%3C/svg%3E");
}

.icon-book {
  --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 5.5A2.5 2.5 0 0 1 6.5 3H20v16H6.5A2.5 2.5 0 0 0 4 21V5.5Z'/%3E%3Cpath d='M8 7h8M8 11h8'/%3E%3C/g%3E%3C/svg%3E");
}

.icon-info {
  --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 10v6M12 7h.1'/%3E%3C/g%3E%3C/svg%3E");
}

.icon-image {
  --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='5' width='16' height='14' rx='2'/%3E%3Ccircle cx='9' cy='10' r='1.5'/%3E%3Cpath d='m7 17 4-4 3 3 2-2 3 3'/%3E%3C/g%3E%3C/svg%3E");
}

.icon-message {
  --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6h16v11H8l-4 4V6Z'/%3E%3Cpath d='M8 10h8M8 14h5'/%3E%3C/g%3E%3C/svg%3E");
}

.mega-card strong {
  color: #fff;
  font-size: 18px;
  line-height: 1.18;
  font-weight: 500;
  transition: color .16s ease;
}

.mega-card small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, .5);
  font-size: 15px;
  line-height: 1.26;
  font-weight: 400;
}

.header-tools {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-action {
  width: 165px;
  min-height: 41px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  color: #0a266b;
  background: #64bfe4;
  border-radius: 15px;
  font-family: Ubuntu, Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.15;
  white-space: nowrap;
  transition: color .2s ease-in-out, background-color .2s ease-in-out;
}

.header-action:hover {
  color: #fff;
  background: #57aacb;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.language-switch button {
  min-width: auto;
  min-height: 17px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-family: Ubuntu, Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 17px;
  opacity: .72;
}

.language-switch button.active {
  color: #fff;
  background: transparent;
  box-shadow: none;
  opacity: 1;
}

.language-switch button.active::before {
  content: "";
  width: 17px;
  height: 17px;
  display: inline-block;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 17 17' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.5 1.25a7.25 7.25 0 1 0 0 14.5 7.25 7.25 0 0 0 0-14.5Zm0 1.5c.76.84 1.32 1.83 1.65 3H6.85c.33-1.17.89-2.16 1.65-3ZM2.9 9.25h2.45c.08 1.26.35 2.43.8 3.42A5.76 5.76 0 0 1 2.9 9.25Zm2.45-1.5H2.9a5.76 5.76 0 0 1 3.25-3.42 10.9 10.9 0 0 0-.8 3.42Zm3.15 6.5c-.76-.84-1.32-1.83-1.65-3h3.3c-.33 1.17-.89 2.16-1.65 3Zm1.98-4.5H6.52a10.2 10.2 0 0 1 0-2.5h3.96a10.2 10.2 0 0 1 0 2.5Zm.37 2.92c.45-.99.72-2.16.8-3.42h2.45a5.76 5.76 0 0 1-3.25 3.42Zm.8-4.92c-.08-1.26-.35-2.43-.8-3.42a5.76 5.76 0 0 1 3.25 3.42h-2.45Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 17 17' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.5 1.25a7.25 7.25 0 1 0 0 14.5 7.25 7.25 0 0 0 0-14.5Zm0 1.5c.76.84 1.32 1.83 1.65 3H6.85c.33-1.17.89-2.16 1.65-3ZM2.9 9.25h2.45c.08 1.26.35 2.43.8 3.42A5.76 5.76 0 0 1 2.9 9.25Zm2.45-1.5H2.9a5.76 5.76 0 0 1 3.25-3.42 10.9 10.9 0 0 0-.8 3.42Zm3.15 6.5c-.76-.84-1.32-1.83-1.65-3h3.3c-.33 1.17-.89 2.16-1.65 3Zm1.98-4.5H6.52a10.2 10.2 0 0 1 0-2.5h3.96a10.2 10.2 0 0 1 0 2.5Zm.37 2.92c.45-.99.72-2.16.8-3.42h2.45a5.76 5.76 0 0 1-3.25 3.42Zm.8-4.92c-.08-1.26-.35-2.43-.8-3.42a5.76 5.76 0 0 1 3.25 3.42h-2.45Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.mobile-burger {
  width: 28px;
  height: 20px;
  display: none;
  flex: 0 0 28px;
  position: relative;
  padding: 0;
  background: transparent;
  border: 0;
}

.mobile-burger span {
  position: absolute;
  left: 0;
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

.mobile-burger span:nth-child(1) {
  top: 0;
}

.mobile-burger span:nth-child(2) {
  top: 8px;
}

.mobile-burger span:nth-child(3) {
  top: 16px;
}

main {
  padding-bottom: 72px;
}

.hero {
  width: 100%;
  min-height: 345px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 34px;
  align-items: stretch;
  margin-top: 48px;
  padding: 48px 40px;
  overflow: hidden;
  color: #fff;
  background: #3768f4;
  border-radius: 22px;
  box-shadow: none;
}

.hero-copy {
  align-self: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 650px;
  margin-bottom: 18px;
  font-size: clamp(44px, 5vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

.lead {
  max-width: 540px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, .88);
  font-size: 24px;
  line-height: 1.38;
}

.primary-button,
.secondary-button,
.consult-banner a {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 900;
}

.hero-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  padding: 0 24px;
  color: #fff;
  background: var(--azma);
  border-radius: 8px;
  font-size: 17px;
  font-weight: 900;
}

.primary-button {
  color: #fff;
  background: var(--azma);
}

.secondary-button {
  color: var(--azma);
  background: #fff;
}

.hero-art {
  position: relative;
  min-height: 250px;
}

.hero-art span {
  position: absolute;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(90px, 11vw, 158px);
  font-weight: 900;
  line-height: 1;
}

.hero-art span:nth-child(1) {
  top: -16px;
  left: 8px;
  color: rgba(255, 255, 255, .92);
  -webkit-text-stroke: 4px rgba(27, 34, 99, .65);
}

.hero-art span:nth-child(2) {
  top: -24px;
  right: 34px;
  color: transparent;
  -webkit-text-stroke: 8px rgba(35, 36, 90, .85);
}

.hero-art span:nth-child(3) {
  left: 26px;
  bottom: -18px;
  color: rgba(23, 25, 35, .55);
}

.hero-art span:nth-child(4) {
  right: 16px;
  bottom: 0;
  color: #fff;
  text-shadow:
    0 4px 0 rgba(255,255,255,.55),
    0 -4px 0 rgba(255,255,255,.55);
}

.source-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 14px 0 66px;
  padding: 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  font-size: 14px;
}

.source-strip span {
  color: var(--ink);
  font-weight: 900;
}

.source-strip a,
.footer-brand a {
  color: var(--blue);
  font-weight: 800;
}

.search-section,
.popular-section,
.catalog-section,
.faq-section {
  margin-top: 92px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 24px;
}

.section-heading h2 {
  margin-bottom: 10px;
  font-size: clamp(34px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.search-box {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0;
  background: #eeeeef;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.search-icon {
  position: absolute;
  left: 24px;
  top: 50%;
  width: 22px;
  height: 22px;
  border: 3px solid #9aa3b5;
  border-radius: 50%;
  transform: translateY(-50%);
}

.search-icon::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: -6px;
  width: 10px;
  height: 3px;
  background: #9aa3b5;
  border-radius: 999px;
  transform: rotate(45deg);
}

.search-box input {
  min-width: 0;
  min-height: 60px;
  padding: 0 18px 0 54px;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 20px;
}

.search-box button {
  display: none;
}

.quick-searches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.quick-searches button {
  min-height: 42px;
  padding: 0 15px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.quick-searches button:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.results-meta {
  min-height: 26px;
  margin-top: 22px;
  color: var(--muted);
  font-weight: 800;
}

.results {
  display: grid;
  gap: 12px;
}

.result-card,
.kit-card,
.section-card,
.help-card,
.faq-list details {
  background: var(--soft);
  border: 1px solid transparent;
  border-radius: 8px;
}

.result-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
}

.result-code {
  min-width: 104px;
  padding: 10px 12px;
  color: #fff;
  background: var(--blue);
  border-radius: 8px;
  text-align: center;
  font-size: 22px;
  font-weight: 900;
}

.result-title {
  display: block;
  margin-bottom: 7px;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.32;
}

.result-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.result-meta a {
  color: var(--blue);
}

.copy-button {
  min-height: 46px;
  padding: 0 16px;
  color: var(--azma);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 28px 0 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.breadcrumbs a {
  color: var(--blue);
}

.breadcrumbs span {
  color: #a4abb8;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 26px;
  align-items: start;
}

.detail-main {
  min-width: 0;
}

.detail-main.full {
  max-width: none;
}

.eyebrow.dark {
  color: var(--blue);
}

.detail-title {
  max-width: 840px;
  margin-bottom: 18px;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.05;
}

.detail-lead {
  max-width: 840px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.5;
}

.detail-main h2 {
  margin: 34px 0 16px;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.15;
}

.explanation,
.decode-card {
  padding: 24px;
  background: var(--soft);
  border-radius: 8px;
}

.explanation h2,
.decode-card h2 {
  margin-top: 0;
}

.explanation p {
  margin-bottom: 0;
  color: var(--ink);
  line-height: 1.65;
}

.parent-list {
  display: grid;
  gap: 10px;
}

.parent-list a {
  display: grid;
  gap: 4px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.parent-list span,
.code-list-item small {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.parent-list strong {
  line-height: 1.35;
}

.inline-copy {
  margin-top: 20px;
  border: 0;
}

.inline-copy.copied {
  background: var(--green);
}

.code-list {
  display: grid;
  gap: 10px;
}

.code-list-item {
  display: grid;
  grid-template-columns: 104px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  background: var(--soft);
  border: 1px solid transparent;
  border-radius: 8px;
}

.code-list-item:hover {
  background: #fff;
  border-color: var(--blue);
  box-shadow: var(--shadow);
}

.code-list-item > span {
  display: inline-grid;
  min-height: 44px;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border-radius: 8px;
  font-size: 20px;
  font-weight: 900;
}

.code-list-item strong {
  line-height: 1.35;
}

.copy-button.copied {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.kit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  grid-auto-flow: dense;
}

.kit-card {
  min-height: 88px;
  padding: 24px;
  text-align: left;
  background: #f1f1f1;
  border: 0;
  border-radius: 14px;
}

.kit-card:hover,
.section-card:hover {
  background: #e9ebf0;
  border-color: transparent;
  box-shadow: none;
}

.kit-card.featured {
  min-height: 190px;
  grid-row: span 2;
}

.kit-card span {
  display: none;
}

.kit-card strong {
  display: block;
  margin-bottom: 0;
  font-size: 20px;
  line-height: 1.2;
}

.kit-card p {
  margin: 14px 0 0;
  color: #333;
  font-size: 16px;
  line-height: 1.45;
}

.kit-card:not(.featured) {
  display: flex;
  align-items: center;
}

.kit-card:not(.featured) p {
  display: none;
}

.all-kits-link {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 14px;
  padding: 0 24px;
  border: 2px solid #2d2f36;
  border-radius: 14px;
  font-size: 18px;
  font-weight: 900;
}

.all-kits-link:hover {
  color: #3768f4;
  border-color: #3768f4;
}

.catalog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 72px;
  align-items: start;
}

.section-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.section-card {
  min-height: 58px;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 10px;
  align-items: center;
  padding: 16px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #dedede;
  border-radius: 0;
  text-align: left;
}

.section-letter {
  width: auto;
  height: auto;
  display: block;
  color: #8b8f9a;
  background: transparent;
  border-radius: 0;
  font-weight: 700;
}

.section-card strong {
  display: block;
  margin-bottom: 2px;
  font-size: 17px;
  line-height: 1.35;
}

.section-card span:last-child {
  color: var(--muted);
  font-size: 13px;
}

.help-card {
  position: sticky;
  top: 16px;
  padding: 4px 0 0;
  background: transparent;
  border: 0;
  color: var(--ink);
}

.help-card::before {
  content: "✦";
  display: block;
  margin-bottom: 18px;
  color: #3768f4;
  font-size: 52px;
  line-height: 1;
}

.help-card h3 {
  display: none;
}

.help-card p {
  max-width: 260px;
  margin-bottom: 18px;
  color: #30323a;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.48;
}

.help-card a {
  display: inline-flex;
  min-height: 0;
  align-items: center;
  padding: 0;
  color: #3768f4;
  background: transparent;
  border-radius: 0;
  font-weight: 900;
}

.consult-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: 82px;
  padding: 32px;
  color: #fff;
  background: var(--azma);
  border-radius: 8px;
}

.consult-banner h2 {
  margin-bottom: 8px;
  font-size: clamp(28px, 4vw, 44px);
}

.consult-banner p {
  max-width: 660px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
  line-height: 1.45;
}

.consult-banner a {
  color: var(--azma);
  background: #fff;
}

.demo-popup {
  position: fixed;
  right: 24px;
  bottom: 28px;
  z-index: 30;
  width: min(360px, calc(100vw - 32px));
  padding: 24px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #e2e6ef;
  border-radius: 12px;
  box-shadow: 0 24px 70px rgba(20, 24, 43, .22);
  opacity: 0;
  transform: translateX(24px);
  transition: opacity .24s ease, transform .24s ease;
}

.demo-popup.visible {
  opacity: 1;
  transform: translateX(0);
}

.demo-popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  padding: 0;
  color: #6e7482;
  background: transparent;
  border: 0;
  font-size: 30px;
  line-height: 1;
}

.demo-popup-kicker {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.demo-popup h3 {
  margin: 0 28px 12px 0;
  color: var(--azma);
  font-size: 24px;
  line-height: 1.12;
}

.demo-popup p:not(.demo-popup-kicker) {
  margin-bottom: 18px;
  color: #4d5566;
  font-size: 16px;
  line-height: 1.45;
}

.demo-popup a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 18px;
  color: #fff;
  background: var(--azma);
  border-radius: 8px;
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  font-size: 19px;
  font-weight: 900;
  cursor: pointer;
}

.faq-list p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.azma-footer {
  margin-top: 84px;
  background: #fff;
  border-top: 1px solid #e5e5e5;
}

.azma-footer-inner {
  width: min(1120px, calc(100vw - 32px));
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 44px;
  padding: 42px 0 24px;
  color: #8f8f8f;
}

.footer-brand img {
  width: 230px;
  display: block;
  margin-bottom: 20px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  filter: none;
}

.footer-brand p {
  max-width: 310px;
  margin-bottom: 0;
  color: #8c8c8c;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.35;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #8f8f8f;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 900;
}

.footer-ai {
  display: inline-block;
  margin-top: 28px;
  color: #4e67c8;
  font-size: 17px;
  font-weight: 900;
}

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

.footer-columns > div {
  min-width: 0;
}

.footer-columns h3 {
  margin-bottom: 18px;
  color: #555;
  font-size: 22px;
  line-height: 1.22;
  font-weight: 900;
}

.footer-columns a {
  display: block;
  margin-top: 14px;
  color: #8d8d8d;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.footer-columns span {
  font-weight: 700;
}

.footer-columns a:hover {
  color: #4e67c8;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 50px;
  color: #989898;
  font-size: 14px;
  font-weight: 900;
}

.footer-bottom > * {
  min-width: 0;
  flex: 1 1 180px;
}

.footer-bottom > span {
  flex-basis: 320px;
}

.footer-bottom a {
  color: #989898;
  overflow-wrap: anywhere;
}

.footer-bottom a:hover {
  color: #4e67c8;
}

@media (max-width: 900px) {
  .azma-header {
    width: 100%;
  }

  .azma-header-inner {
    width: min(1160px, calc(100vw - 20px));
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .header-tools {
    justify-self: end;
    gap: 14px;
  }

  .language-switch {
    justify-self: end;
  }

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

  .footer-columns {
    gap: 32px;
  }

  .footer-bottom {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }

  .hero-art {
    min-height: 170px;
  }

  .kit-grid,
  .detail-layout,
  .catalog-layout,
  .consult-banner {
    grid-template-columns: 1fr;
  }

  .section-list {
    grid-template-columns: 1fr;
  }

  .help-card {
    position: static;
  }
}

@media (max-width: 640px) {
  main,
  .azma-footer-inner {
    width: min(100vw - 20px, 1120px);
  }

  .azma-header {
    width: 100%;
    height: 64px;
    background: #1d3e8e;
    border-radius: 0;
  }

  .azma-header-inner {
    width: 100%;
    height: 64px;
    justify-content: space-between;
    padding: 0 20px;
    background: transparent;
    border-radius: 0;
  }

  .brand {
    width: 130px;
    height: 32px;
    flex-basis: 130px;
  }

  .nav-links,
  .header-tools {
    display: none;
  }

  .mobile-burger {
    display: block;
  }

  .azma-header.menu-open {
    height: auto;
  }

  .azma-header.menu-open .azma-header-inner {
    height: auto;
    min-height: 64px;
    flex-wrap: wrap;
    align-content: flex-start;
    padding-bottom: 18px;
  }

  .azma-header.menu-open .nav-links {
    flex: 1 0 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin: 18px 0 0;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    min-height: auto;
  }

  .mega-menu {
    position: static;
    width: 100%;
    max-height: none;
    display: none;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 14px;
    padding: 16px 0 4px;
    overflow: visible;
    visibility: visible;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    background: transparent;
    box-shadow: none;
  }

  .azma-header.menu-open .nav-item .mega-menu {
    display: grid;
  }

  .mega-card {
    grid-template-columns: 44px 1fr;
    column-gap: 12px;
  }

  .mega-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    font-size: 10px;
  }

  .mega-card strong {
    font-size: 16px;
    font-weight: 500;
  }

  .mega-card small {
    font-size: 13px;
    font-weight: 400;
  }

  .azma-header.menu-open .header-tools {
    flex: 1 0 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-top: 18px;
  }

  .azma-header.menu-open .header-action {
    width: 165px;
    min-height: 41px;
    padding: 10px 15px;
    border-radius: 15px;
    font-size: 15px;
  }

  .hero {
    margin-top: 16px;
    min-height: 0;
    padding: 24px 20px;
  }

  .hero-art {
    display: none;
  }

  .lead,
  .section-heading p {
    font-size: 16px;
  }

  .hero-actions,
  .search-box {
    display: grid;
    grid-template-columns: 1fr;
  }

  .search-box input {
    min-height: 56px;
    font-size: 17px;
  }

  .search-box button {
    min-height: 52px;
  }

  .search-icon {
    display: none;
  }

  .header-search .search-icon {
    display: block;
  }

  .search-box input {
    padding-left: 18px;
  }

  .result-card {
    grid-template-columns: 1fr;
  }

  .result-code {
    width: fit-content;
  }

  .kit-card.featured {
    min-height: 136px;
    grid-row: auto;
  }

  .azma-footer-inner {
    gap: 28px;
    padding: 30px 0 34px;
  }

  .demo-popup {
    right: 10px;
    bottom: 12px;
    width: calc(100vw - 20px);
    padding: 20px;
  }

  .demo-popup h3 {
    font-size: 21px;
  }

  .footer-brand img {
    width: 210px;
  }

  .footer-brand p,
  .footer-columns a,
  .footer-ai {
    font-size: 18px;
  }

  .footer-columns h3 {
    margin-bottom: 14px;
    font-size: 24px;
  }

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

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 36px;
    font-size: 15px;
  }

  .detail-title {
    font-size: 34px;
  }

  .detail-lead {
    font-size: 17px;
  }

  .code-list-item {
    grid-template-columns: 1fr;
  }

  .code-list-item > span {
    width: fit-content;
    min-width: 104px;
    padding: 0 12px;
  }
}
