:root {
  --navy: #0b1f3a;
  --navy-2: #082746;
  --blue: #0a6cff;
  --cyan: #16c7f9;
  --green: #16a34a;
  --orange: #f97316;
  --arm-red: #d90012;
  --arm-blue: #0033a0;
  --arm-apricot: #f2a800;
  --apricot-soft: #fff3d6;
  --stone: #eef0ec;
  --bg: #f7f5ef;
  --text: #111827;
  --muted: #6b7280;
  --border: #e2dfd6;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(79, 45, 17, 0.13);
  --radius: 8px;
  --container: 1180px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(242, 168, 0, 0.12), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(217, 0, 18, 0.07), transparent 30%),
    var(--bg);
  color: var(--text);
  font-family: Inter, "Noto Sans Armenian", "Noto Sans", Arial, sans-serif;
  line-height: 1.55;
}

body.modal-open {
  overflow: hidden;
}

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

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

img {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 20;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--blue);
  color: var(--white);
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.topbar {
  position: relative;
  background:
    linear-gradient(90deg, rgba(217, 0, 18, 0.35), transparent 28%, transparent 72%, rgba(242, 168, 0, 0.28)),
    var(--navy);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
}

.topbar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--arm-red) 0 33.333%, var(--arm-blue) 33.333% 66.666%, var(--arm-apricot) 66.666% 100%);
}

.topbar__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar__contact {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar a {
  color: rgba(255, 255, 255, 0.88);
}

.language {
  display: flex;
  align-items: center;
  gap: 4px;
}

.language__button {
  min-width: 34px;
  height: 26px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.language__button.is-active {
  background: var(--white);
  color: var(--navy);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(226, 223, 214, 0.9);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
}

.brand__logo {
  display: block;
  width: 148px;
  height: auto;
  object-fit: contain;
}

.brand__logo--footer {
  width: 150px;
}

.brand__region {
  padding-left: 10px;
  border-left: 1px solid var(--border);
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.brand--footer .brand__region {
  border-left-color: rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.72);
}

.brand__mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(10, 108, 255, 0.28);
}

.brand strong {
  display: block;
  font-size: 21px;
  line-height: 1;
  letter-spacing: 0;
}

.brand em {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #26364f;
  font-size: 14px;
  font-weight: 700;
}

.nav__item {
  position: relative;
}

.nav > a,
.nav__link {
  display: inline-flex;
  align-items: center;
  padding: 24px 0;
  border-bottom: 2px solid transparent;
}

.nav > a:hover,
.nav > a:focus,
.nav__link:hover,
.nav__link:focus {
  color: var(--arm-blue);
  border-bottom-color: var(--arm-apricot);
}

.mega-menu {
  position: absolute;
  left: 50%;
  top: calc(100% + 1px);
  z-index: 50;
  width: min(780px, calc(100vw - 40px));
  display: grid;
  grid-template-columns: 240px 1fr 1fr;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(79, 45, 17, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 243, 214, 0.34), rgba(255, 255, 255, 0.98) 42%),
    rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.mega-menu--products {
  width: min(1040px, calc(100vw - 40px));
  grid-template-columns: 220px 240px minmax(0, 1.35fr);
  grid-template-areas:
    "feature families receivers"
    "feature systems systems";
  align-items: start;
}

.mega-menu--products .mega-menu__feature {
  grid-area: feature;
}

.mega-menu--products .mega-menu__group {
  grid-area: families;
}

.mega-menu--products .mega-menu__models--receivers {
  grid-area: receivers;
}

.mega-menu--products .mega-menu__models--systems {
  grid-area: systems;
}

.nav__item:hover .mega-menu,
.nav__item:focus-within .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.mega-menu--solutions,
.mega-menu--support {
  grid-template-columns: 1fr 260px;
}

.mega-menu__feature,
.mega-menu__group,
.mega-menu__models {
  min-width: 0;
}

.mega-menu__feature {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 51, 160, 0.06), rgba(242, 168, 0, 0.12)),
    #fffdf8;
}

.mega-menu__feature img {
  width: 100%;
  height: 104px;
  object-fit: contain;
  border-radius: 6px;
  background: var(--white);
}

.mega-menu__feature strong,
.mega-menu__group h3,
.mega-menu__models h3 {
  color: var(--navy);
  font-size: 15px;
  line-height: 1.2;
}

.mega-menu__feature span,
.mega-menu__group a span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.mega-menu__feature a {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.mega-menu__group h3 {
  margin: 0 0 8px;
}

.mega-menu__models h3 {
  margin: 0 0 10px;
}

.mega-menu__group a {
  display: grid;
  gap: 2px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
}

.mega-menu__group a:hover strong,
.mega-menu__group a:focus strong {
  color: var(--blue);
}

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

.mega-model-grid--compact {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.mega-model {
  min-height: 104px;
  display: grid;
  grid-template-rows: 42px auto 1fr;
  gap: 5px;
  padding: 8px;
  border: 1px solid rgba(226, 223, 214, 0.9);
  border-radius: 7px;
  background:
    linear-gradient(180deg, #ffffff, rgba(255, 253, 248, 0.92));
}

.mega-model img {
  width: 100%;
  height: 42px;
  object-fit: contain;
}

.mega-model strong {
  color: var(--navy);
  font-size: 13px;
  line-height: 1.1;
}

.mega-model span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.25;
}

.mega-model:hover,
.mega-model:focus {
  border-color: rgba(242, 168, 0, 0.7);
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(79, 45, 17, 0.1);
}

.mega-model:hover strong,
.mega-model:focus strong {
  color: var(--arm-blue);
}

.map-pin {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--arm-red), var(--arm-blue) 52%, var(--arm-apricot));
  color: var(--white);
  font-weight: 900;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 18px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--small {
  min-height: 42px;
  padding-inline: 16px;
}

.btn--primary {
  background: linear-gradient(135deg, var(--arm-blue), #126bff 58%, var(--arm-red));
  color: var(--white);
  box-shadow: 0 12px 28px rgba(0, 51, 160, 0.24);
}

.btn--secondary {
  border-color: rgba(242, 168, 0, 0.56);
  background: var(--white);
  color: var(--arm-blue);
}

.btn--ghost {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
}

.btn--on-dark {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 28%, rgba(0, 51, 160, 0.15), transparent 32%),
    radial-gradient(circle at 20% 72%, rgba(242, 168, 0, 0.16), transparent 34%),
    linear-gradient(180deg, #fffdf8 0%, #f7f5ef 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background-image:
    linear-gradient(rgba(0, 51, 160, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 51, 160, 0.08) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(transparent, #000);
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  right: min(6vw, 80px);
  bottom: 0;
  width: min(42vw, 560px);
  height: 150px;
  background:
    linear-gradient(135deg, rgba(11, 31, 58, 0.08), rgba(0, 51, 160, 0.05));
  clip-path: polygon(0 100%, 18% 54%, 30% 72%, 48% 20%, 63% 70%, 76% 45%, 100% 100%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 42px;
  align-items: center;
  min-height: calc(100vh - 114px);
  padding: 32px 0 26px;
}

.hero__copy h1 {
  max-width: 700px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(38px, 4.05vw, 54px);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero__copy p {
  max-width: 640px;
  margin: 16px 0 0;
  color: #46556d;
  font-size: 17px;
}

.local-signal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.local-signal span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(0, 51, 160, 0.14);
  border-left: 3px solid var(--arm-apricot);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
  color: #35435b;
  font-size: 12px;
  font-weight: 850;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 650px;
  margin: 18px 0 0;
}

.trust-strip div {
  min-height: 76px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 30px rgba(11, 31, 58, 0.06);
}

.trust-strip div:nth-child(1) {
  border-top: 3px solid var(--arm-red);
}

.trust-strip div:nth-child(2) {
  border-top: 3px solid var(--arm-blue);
}

.trust-strip div:nth-child(3) {
  border-top: 3px solid var(--arm-apricot);
}

.trust-strip dt {
  margin-bottom: 4px;
  color: var(--arm-blue);
  font-size: 20px;
  font-weight: 900;
}

.trust-strip dd {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.hero__visual {
  position: relative;
  min-height: 486px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(245, 248, 252, 0.2), transparent 28%, rgba(11, 31, 58, 0.08));
  pointer-events: none;
}

.hero__visual img {
  width: 100%;
  height: 100%;
  min-height: 486px;
  object-fit: cover;
  object-position: center;
}

.hero__visual--product {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(11, 31, 58, 0.08);
  background: #ffffff;
}

.hero__visual--product::after {
  display: none;
}

.hero__visual--product img {
  object-fit: contain;
  padding: 18px;
  background: #ffffff;
}

.receiver-card {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  width: min(260px, calc(100% - 44px));
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 10px 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 36px rgba(11, 31, 58, 0.18);
  backdrop-filter: blur(10px);
}

.receiver-card__device {
  grid-row: span 2;
  width: 56px;
  height: 56px;
  position: relative;
  border-radius: 18px 18px 11px 11px;
  background: linear-gradient(#f8fbff, #d7e2ef);
  border: 1px solid #c3d0df;
}

.receiver-card__device span {
  position: absolute;
  left: 9px;
  right: 9px;
  bottom: 10px;
  height: 15px;
  border-radius: 8px;
  background: #121926;
}

.receiver-card__device i {
  position: absolute;
  inset: auto 23px -16px;
  height: 17px;
  background: #1f2937;
}

.receiver-card strong,
.receiver-card small {
  display: block;
}

.receiver-card strong {
  color: var(--navy);
  font-size: 15px;
}

.receiver-card small {
  color: var(--muted);
  font-size: 12px;
}

.receiver-card__photo {
  grid-row: span 2;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(11, 31, 58, 0.12);
  border-radius: var(--radius);
  background: var(--white);
}

.receiver-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.section {
  padding: 82px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 32px;
}

.section-heading--center {
  display: block;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.proof h2,
.downloads h2,
.faq h2,
.cta h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
  letter-spacing: 0;
}

.section-heading p,
.proof p,
.downloads p,
.faq p,
.cta p {
  color: var(--muted);
}

.text-link {
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
}

.category-card,
.product-card,
.solution-card,
.proof-list article,
.download-list,
.faq details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(11, 31, 58, 0.06);
}

.product-categories {
  background:
    linear-gradient(180deg, rgba(255, 243, 214, 0.42), rgba(247, 245, 239, 0.2)),
    var(--bg);
}

.category-card {
  min-height: 210px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.category-card::before,
.product-card::before {
  content: "";
  display: block;
  height: 3px;
  margin: -20px -20px 16px;
  background: linear-gradient(90deg, var(--arm-red), var(--arm-blue), var(--arm-apricot));
}

.category-card__image {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 14px;
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(242, 168, 0, 0.07), rgba(0, 51, 160, 0.04)),
    #fffdf8;
}

.category-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

.category-card .icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #edf5ff;
  color: var(--blue);
  font-size: 26px;
  font-weight: 800;
}

.category-card h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.25;
}

.category-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 13px;
}

.category-card a,
.product-card a,
.solution-card a {
  color: var(--arm-blue);
  font-size: 13px;
  font-weight: 900;
}

.featured {
  background:
    radial-gradient(circle at 8% 0%, rgba(217, 0, 18, 0.05), transparent 26%),
    var(--white);
}

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

.product-card {
  display: grid;
  min-height: 392px;
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  margin: -18px -18px 16px;
}

.product-card__image {
  height: 150px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.1) 30%, transparent 42%),
    linear-gradient(135deg, #eaf3ff, #d8e8ff);
}

.product-card__image::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 30px;
  width: 120px;
  height: 76px;
  transform: translateX(-50%);
  border-radius: 38px 38px 18px 18px;
  background: linear-gradient(#ffffff, #d7e3f2);
  border: 1px solid rgba(11, 31, 58, 0.16);
  box-shadow: 0 18px 32px rgba(11, 31, 58, 0.16);
}

.product-card__image::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 82px;
  width: 54px;
  height: 22px;
  transform: translateX(-50%);
  border-radius: 12px;
  background: #111827;
  box-shadow: 0 28px 0 -7px #29384d;
}

.product-card__image--cyan {
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.96), transparent 42%),
    linear-gradient(135deg, #e9fbff, #c8f2ff);
}

.product-card__image--green {
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.96), transparent 42%),
    linear-gradient(135deg, #edfdf4, #c8f4db);
}

.product-card__image--orange {
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.96), transparent 42%),
    linear-gradient(135deg, #fff7ed, #fed7aa);
}

.product-card__image--violet {
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.96), transparent 42%),
    linear-gradient(135deg, #f1f5ff, #ddd6fe);
}

.product-card__image--steel {
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.96), transparent 42%),
    linear-gradient(135deg, #f8fafc, #cbd5e1);
}

.product-card__image.has-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(11, 31, 58, 0.08);
  background: #ffffff;
}

.product-card__image.has-photo::before,
.product-card__image.has-photo::after {
  display: none;
}

.product-card__image.has-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
}

.product-card__image--detail {
  height: 260px;
}

.product-card h3 {
  margin: 18px 0 4px;
  color: var(--navy);
  font-size: 20px;
}

.product-card p {
  margin: 0;
  color: var(--muted);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 16px 0;
}

.tags span {
  padding: 6px 8px;
  border-radius: 6px;
  background: #fff3d6;
  color: #8a4f00;
  font-size: 12px;
  font-weight: 800;
}

.product-card button,
.download-list button,
.footer button {
  width: fit-content;
  border: 0;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  padding: 10px 13px;
}

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

.solution-card {
  overflow: hidden;
}

.solution-card__media {
  min-height: 154px;
  background:
    linear-gradient(180deg, transparent, rgba(11, 31, 58, 0.46)),
    var(--solution-gradient, linear-gradient(135deg, #dbeafe, #bfdbfe));
}

.solution-card__media--survey {
  --solution-gradient: linear-gradient(135deg, #bfdbfe, #94a3b8);
}

.solution-card__media--cadastre {
  --solution-gradient: linear-gradient(135deg, #dcfce7, #93c5fd);
}

.solution-card__media--construction {
  --solution-gradient: linear-gradient(135deg, #fed7aa, #93c5fd);
}

.solution-card__media--cors {
  --solution-gradient: linear-gradient(135deg, #e0f2fe, #334155);
}

.solution-card__media--monitor {
  --solution-gradient: linear-gradient(135deg, #d1fae5, #64748b);
}

.solution-card__media--agri {
  --solution-gradient: linear-gradient(135deg, #bbf7d0, #fde68a);
}

.solution-card > div:not(.solution-card__media) {
  padding: 18px 18px 10px;
}

.solution-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 20px;
}

.solution-card p {
  margin: 7px 0;
  color: var(--muted);
  font-size: 14px;
}

.solution-card small {
  display: block;
  color: #34445f;
  font-size: 12px;
  font-weight: 800;
}

.solution-card a {
  display: inline-block;
  padding: 0 18px 18px;
}

.proof {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(217, 0, 18, 0.2), transparent 30%),
    radial-gradient(circle at 88% 80%, rgba(242, 168, 0, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(11, 31, 58, 0.98), rgba(8, 39, 70, 0.95)),
    var(--navy);
  color: var(--white);
}

.proof::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(120deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}

.proof h2,
.proof h3,
.proof p {
  color: var(--white);
}

.proof > .container > div > p,
.proof-list p {
  color: rgba(255, 255, 255, 0.74);
}

.proof__grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: start;
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.proof-list article {
  min-height: 154px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.proof-list article:last-child {
  grid-column: 1 / -1;
}

.proof-list h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.proof-list p {
  margin: 0;
  font-size: 14px;
}

.workflow {
  background:
    linear-gradient(180deg, #ffffff, #fffaf0);
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 34px 0 0;
}

.steps li {
  min-height: 138px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--navy);
  font-weight: 850;
  background:
    linear-gradient(180deg, #ffffff, #fffdf8);
}

.steps span {
  display: grid;
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--arm-blue), var(--arm-red));
  color: var(--white);
}

.downloads__grid,
.faq__grid {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 36px;
  align-items: start;
}

.download-list {
  padding: 10px;
  background:
    linear-gradient(135deg, rgba(255, 243, 214, 0.4), rgba(255, 255, 255, 0.92));
}

.download-list article {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 12px 12px 18px;
  border-bottom: 1px solid var(--border);
}

.download-list article:last-child {
  border-bottom: 0;
}

.faq {
  background:
    radial-gradient(circle at 85% 12%, rgba(0, 51, 160, 0.07), transparent 28%),
    var(--white);
}

.faq details {
  margin-bottom: 10px;
  padding: 0 18px;
}

.faq summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: var(--navy);
  font-weight: 850;
}

.faq summary::after {
  content: "+";
  color: var(--arm-red);
  font-size: 22px;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  margin-top: 0;
  padding-bottom: 18px;
}

.cta {
  padding: 58px 0;
  background:
    linear-gradient(90deg, rgba(217, 0, 18, 0.78), rgba(0, 51, 160, 0.92) 46%, rgba(242, 168, 0, 0.8)),
    var(--arm-blue);
  color: var(--white);
}

.cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta h2,
.cta p {
  color: var(--white);
}

.cta p {
  max-width: 660px;
  margin-bottom: 0;
  opacity: 0.82;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.footer {
  padding: 54px 0 24px;
  background:
    linear-gradient(180deg, rgba(217, 0, 18, 0.1), transparent 18%),
    var(--navy);
  color: rgba(255, 255, 255, 0.72);
}

.footer::before {
  content: "";
  display: block;
  height: 4px;
  margin: -54px 0 50px;
  background: linear-gradient(90deg, var(--arm-red) 0 33.333%, var(--arm-blue) 33.333% 66.666%, var(--arm-apricot) 66.666% 100%);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, 1fr);
  gap: 34px;
}

.brand--footer {
  color: var(--white);
}

.brand--footer em {
  color: rgba(255, 255, 255, 0.68);
}

.footer h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 15px;
}

.footer a {
  display: block;
  margin: 9px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.footer p {
  max-width: 280px;
}

.socials {
  display: flex;
  gap: 8px;
}

.socials a {
  width: 34px;
  height: 34px;
  display: grid;
  margin: 0;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-weight: 900;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal.is-open {
  display: flex;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 10, 22, 0.58);
}

.modal__panel {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: min(780px, calc(100vh - 40px));
  overflow: auto;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
}

.modal__panel h2 {
  margin: 0;
  color: var(--navy);
  font-size: 30px;
}

.modal__panel p {
  color: var(--muted);
}

.modal__close {
  position: absolute;
  right: 16px;
  top: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 850;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fbfdff;
  color: var(--text);
  padding: 12px 12px;
  outline: none;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(10, 108, 255, 0.14);
}

.lead-form__wide,
.form-success {
  grid-column: 1 / -1;
}

.form-success {
  margin: 0;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: #ecfdf5;
  color: #047857;
  font-weight: 800;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 24px;
  z-index: 30;
  display: grid;
  gap: 7px;
  padding: 8px;
  border: 1px solid rgba(226, 223, 214, 0.92);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 243, 214, 0.42), rgba(255, 255, 255, 0.92)),
    rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(79, 45, 17, 0.13);
  backdrop-filter: blur(14px);
}

.floating-contact::before {
  content: "";
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--arm-red), var(--arm-blue), var(--arm-apricot));
}

.floating-contact a,
.mobile-sticky-cta a,
.mobile-sticky-cta button {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  padding: 11px 14px;
  box-shadow: 0 12px 26px rgba(11, 31, 58, 0.22);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.floating-contact__item {
  width: 132px;
  min-height: 42px;
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 9px;
  padding: 7px 9px;
  border: 1px solid rgba(0, 51, 160, 0.12);
  background: rgba(255, 255, 255, 0.82);
  color: var(--navy);
  box-shadow: none;
  text-align: left;
}

.floating-contact__item span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0;
}

.floating-contact__item strong {
  font-size: 12px;
  line-height: 1;
}

.floating-contact__item--whatsapp span {
  background: #16a34a;
}

.floating-contact__item--email span {
  background: var(--arm-blue);
}

.floating-contact__item--facebook span {
  background: linear-gradient(135deg, var(--arm-blue), #1877f2);
  font-family: Arial, sans-serif;
  font-size: 15px;
}

.floating-contact__item:hover,
.floating-contact__item:focus {
  border-color: rgba(242, 168, 0, 0.65);
  background: #ffffff;
  transform: translateX(-2px);
}

.mobile-sticky-cta a {
  background: var(--green);
}

.mobile-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.spec-table th,
.spec-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.spec-table th {
  width: 260px;
  background: #f5f8fc;
  color: var(--navy);
}

.admin-shell h1 {
  color: var(--navy);
  font-size: 44px;
}

.admin-card {
  margin: 20px 0;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(11, 31, 58, 0.06);
}

.admin-card pre {
  overflow: auto;
  padding: 16px;
  border-radius: var(--radius);
  background: #0b1f3a;
  color: #dbeafe;
}

.admin-table-wrap {
  overflow: auto;
  margin-top: 16px;
}

.admin-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 10px;
  border: 1px solid var(--border);
  text-align: left;
  font-size: 13px;
}

.admin-table th {
  background: #eef6ff;
  color: var(--navy);
}

.page--inner,
.page--products,
.page--category,
.page--product-detail,
.page--solutions,
.page--solution-detail,
.page--support,
.page--support-detail,
.page--about,
.page--blog,
.page--article,
.page--contact {
  background:
    radial-gradient(circle at 92% 8%, rgba(242, 168, 0, 0.11), transparent 30%),
    #f7f5ef;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  background:
    radial-gradient(circle at 78% 24%, rgba(0, 51, 160, 0.13), transparent 30%),
    radial-gradient(circle at 18% 72%, rgba(242, 168, 0, 0.13), transparent 32%),
    linear-gradient(135deg, #fffdf8 0%, #f2f6ff 100%);
  border-bottom: 1px solid var(--border);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 51, 160, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 51, 160, 0.055) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}

.page-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 48px;
  align-items: center;
}

.page-hero span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--arm-red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.page-hero h1 {
  max-width: 820px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.06;
  letter-spacing: 0;
}

.page-hero p {
  max-width: 760px;
  margin: 20px 0 28px;
  color: #48566c;
  font-size: 18px;
}

.page-hero__panel {
  padding: 24px;
  border: 1px solid rgba(242, 168, 0, 0.32);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 243, 214, 0.28), rgba(255, 255, 255, 0.9)),
    rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.page-hero__panel strong {
  display: block;
  color: var(--navy);
  font-size: 22px;
}

.page-hero__panel dl {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
}

.page-hero__panel dl div,
.mini-link {
  display: block;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fbfdff;
}

.page-hero__panel dt {
  color: var(--arm-blue);
  font-weight: 900;
}

.page-hero__panel dd {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.mini-link {
  margin-top: 10px;
  color: var(--blue);
  font-weight: 850;
}

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

.listing-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(11, 31, 58, 0.06);
}

.listing-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 1;
  height: 3px;
  background: linear-gradient(90deg, var(--arm-red), var(--arm-blue), var(--arm-apricot));
}

.listing-card__media {
  min-height: 156px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0), rgba(11,31,58,0.42)),
    linear-gradient(135deg, #dbeafe, #93c5fd);
}

.listing-card__media.has-photo {
  height: 178px;
  min-height: 178px;
  overflow: hidden;
  background: #eef4fb;
}

.listing-card__media.has-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.listing-card__media--product.has-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(11, 31, 58, 0.08);
  background: #ffffff;
}

.listing-card__media--product.has-photo img {
  object-fit: contain;
  padding: 18px;
}

.listing-card__media.tone-1 {
  background:
    linear-gradient(180deg, rgba(255,255,255,0), rgba(11,31,58,0.38)),
    linear-gradient(135deg, #e0f2fe, #16c7f9);
}

.listing-card__media.tone-2 {
  background:
    linear-gradient(180deg, rgba(255,255,255,0), rgba(11,31,58,0.38)),
    linear-gradient(135deg, #dcfce7, #60a5fa);
}

.listing-card__media.tone-3 {
  background:
    linear-gradient(180deg, rgba(255,255,255,0), rgba(11,31,58,0.38)),
    linear-gradient(135deg, #f1f5f9, #64748b);
}

.listing-card__media.tone-4 {
  background:
    linear-gradient(180deg, rgba(255,255,255,0), rgba(11,31,58,0.38)),
    linear-gradient(135deg, #fff7ed, #f97316);
}

.listing-card__media.tone-5 {
  background:
    linear-gradient(180deg, rgba(255,255,255,0), rgba(11,31,58,0.38)),
    linear-gradient(135deg, #eef2ff, #0a6cff);
}

.listing-card__body {
  padding: 20px;
}

.listing-card h3,
.detail-content h2,
.product-showcase h2,
.contact-card h2,
.article__content h2,
.article__aside h2 {
  margin: 0 0 10px;
  color: var(--navy);
  line-height: 1.18;
}

.listing-card p,
.detail-content p,
.product-showcase p,
.contact-card p,
.article__content p {
  color: var(--muted);
}

.detail-section {
  background: var(--white);
}

.detail-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 28px;
  align-items: start;
}

.product-showcase,
.detail-content,
.contact-card,
.article__aside {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(11, 31, 58, 0.06);
}

.detail-content ul,
.article__content ul {
  margin: 18px 0;
  padding-left: 20px;
  color: #394862;
}

.detail-content li,
.article__content li {
  margin: 9px 0;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
}

.contact-card a {
  display: block;
  margin: 10px 0;
  color: var(--blue);
  font-weight: 850;
}

.map-placeholder {
  min-height: 240px;
  display: grid;
  place-items: center;
  margin-top: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(10,108,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,108,255,0.08) 1px, transparent 1px),
    #eef6ff;
  background-size: 28px 28px;
  color: var(--navy);
  font-weight: 900;
  text-align: center;
}

.map-embed {
  overflow: hidden;
  margin-top: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #eef6ff;
}

.map-embed iframe {
  width: 100%;
  height: 280px;
  display: block;
  border: 0;
}

.map-embed a {
  display: block;
  margin: 0;
  padding: 12px 14px;
  border-top: 1px solid var(--border);
  background: var(--white);
  color: var(--blue);
  font-weight: 900;
}

.lead-form--single {
  grid-template-columns: 1fr;
}

.article__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 30px;
  align-items: start;
}

.article__content {
  padding: 4px 0;
  font-size: 18px;
}

.article__content h2 {
  margin-top: 32px;
  font-size: 28px;
}

.article__aside {
  position: sticky;
  top: 96px;
}

.article__aside a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--blue);
  font-weight: 850;
}

@media (max-width: 1060px) {
  .topbar__contact {
    display: none;
  }

  .nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .nav > a,
  .nav__link {
    padding: 12px;
    border: 0;
  }

  .nav__item {
    display: grid;
  }

  .mega-menu,
  .mega-menu--products,
  .mega-menu--solutions,
  .mega-menu--support {
    position: static;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 0 0 10px;
    padding: 12px;
    border-radius: 6px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .mega-menu--products {
    grid-template-areas:
      "feature"
      "families"
      "receivers"
      "systems";
  }

  .mega-menu__feature img {
    height: 92px;
  }

  .mega-model-grid,
  .mega-model-grid--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-toggle {
    display: block;
  }

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

  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-grid,
  .solution-grid,
  .proof__grid,
  .downloads__grid,
  .faq__grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .topbar__inner {
    min-height: 48px;
  }

  .site-header__inner {
    min-height: 68px;
  }

  .brand__logo {
    width: 118px;
  }

  .brand__region {
    padding-left: 8px;
    font-size: 11px;
  }

  .site-header .btn {
    display: none;
  }

  .hero__grid {
    min-height: 0;
    padding: 42px 0 30px;
    gap: 28px;
  }

  .hero__copy h1 {
    font-size: 40px;
  }

  .hero__copy p {
    font-size: 16px;
  }

  .hero__actions,
  .cta__actions {
    flex-direction: column;
  }

  .hero__actions .btn,
  .cta__actions .btn {
    width: 100%;
  }

  .trust-strip,
  .category-grid,
  .product-grid,
  .solution-grid,
  .proof-list,
  .steps,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .hero__visual,
  .hero__visual img {
    min-height: 400px;
  }

  .section {
    padding: 58px 0;
  }

  .section-heading {
    display: block;
  }

  .cta__inner,
  .footer__bottom {
    display: block;
  }

  .lead-form {
    grid-template-columns: 1fr;
  }

  body {
    padding-bottom: 74px;
  }

  .floating-contact {
    display: none;
  }

  .mobile-sticky-cta {
    display: grid;
  }

  .spec-table th,
  .spec-table td {
    display: block;
    width: 100%;
  }
}
