:root {
  --blue-900: #00327d;
  --blue-850: #003d93;
  --blue-800: #004ba9;
  --blue-700: #0059bf;
  --blue-100: #e5f2f8;
  --blue-050: #f0f8ff;
  --orange-600: #f27a00;
  --orange-500: #ff8b1f;
  --text-900: #052a5f;
  --text-700: #2a4f82;
  --text-500: #5a7091;
  --white: #ffffff;
  --border-soft: #dbe8f5;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow-soft: 0 10px 28px rgba(8, 43, 97, 0.08);
  --container-max: 1240px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Barlow", sans-serif;
  color: var(--text-900);
  background: var(--blue-050);
  line-height: 1.4;
}

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

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

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

.container {
  width: min(var(--container-max), calc(100% - 2.5rem));
  margin-inline: auto;
}

.section-padded {
  padding-block: 1.6rem;
}

.top-bar {
  background: #003b86;
  color: #e8f3ff;
  font-size: 0.96rem;
}

.top-bar__inner {
  min-height: 40px;
  display: grid;
  align-items: center;
}

.top-bar__inner--triple {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.top-bar__inner--triple span {
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.01em;
  font-weight: 500;
}

/* ===== HEADER ===== */
.site-header {
  background: var(--white);
  border-bottom: 1px solid #edf4fb;
  position: sticky;
  top: 0;
  z-index: 25;
}

.header-row {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.site-header .brand {
  width: clamp(148px, 13vw, 230px);
  flex-shrink: 0;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-tools__btn {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid #b6cae8;
  background: rgba(255, 255, 255, 0.65);
  color: #2f578d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
}

.header-tools__btn svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.header-tools__btn:hover {
  color: #1b467e;
  background: rgba(255, 255, 255, 0.95);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 0;
  background: none;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--blue-900);
  border-radius: 4px;
}

/* ===== DESKTOP NAV (>=768px) ===== */
.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
}

.nav__item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav__link {
  font-weight: 700;
  color: #173f7f;
  font-size: clamp(0.96rem, 1.08vw, 1.26rem);
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  border: 0;
  background: none;
  padding: 0;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
}

.nav__link:hover,
.nav__link.is-active {
  color: #0f3777;
}

.nav__link--mobile-only {
  display: none;
}

.nav__link--dropdown::after {
  content: "";
  width: 0;
  height: 0;
  margin-left: 0.38rem;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid currentColor;
  transition: transform 0.2s ease;
}

.nav__item--has-submenu.is-open > .nav__link--dropdown::after {
  transform: rotate(180deg);
}

/* ===== DESKTOP SUBMENUS ===== */
.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 300px;
  border: 1px solid #dce8f8;
  border-radius: 12px;
  box-shadow: 0 14px 30px rgba(9, 43, 96, 0.14);
  background: #ffffff;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 80;
}

.submenu--level-1 { min-width: 335px; }
.submenu--level-2 { top: 0; left: 100%; min-width: 255px; }
.submenu--level-3 { top: 0; left: 100%; min-width: 235px; }

.submenu__group {
  position: relative;
}

.submenu__toggle,
.submenu__link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: none;
  border-radius: 8px;
  color: #244f87;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: left;
  padding: 0.5rem 0.6rem;
  font-family: inherit;
}

.submenu__toggle { cursor: pointer; }

.submenu__toggle::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  margin-left: 0.5rem;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.submenu__group.is-open > .submenu__toggle::after {
  transform: rotate(45deg);
}

.submenu__link--all {
  color: #0e3e81;
  font-weight: 700;
  border-bottom: 1px solid #e8f0fb;
  margin-bottom: 0.35rem;
}

.submenu__toggle:hover,
.submenu__link:hover {
  background: #eef5ff;
}

[data-has-submenu].is-open > .submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav > .nav__item--has-submenu:hover > .submenu,
.nav > .nav__item--has-submenu:focus-within > .submenu,
.submenu__group:hover > .submenu,
.submenu__group:focus-within > .submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* ===== FOCUS ===== */
.nav__link:focus-visible,
.submenu__toggle:focus-visible,
.submenu__link:focus-visible,
.header-tools__btn:focus-visible,
.nav-toggle:focus-visible,
.search-modal__close:focus-visible,
.search-modal__input:focus-visible {
  outline: 2px solid #0f63d6;
  outline-offset: 2px;
}

/* ===== MOBILE NAV OVERLAY (body child) ===== */
.nav-backdrop { display: none; }
.mobile-nav-panel {
  display: none;
}

.btn {
  border: 1px solid transparent;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  line-height: 1;
  transition: 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--orange-600);
  color: var(--white);
  border-color: var(--orange-600);
}

.btn-primary:hover {
  background: #ea6d00;
}

.btn-dark {
  background: var(--blue-900);
  color: var(--white);
  border-color: var(--blue-900);
}

.btn-dark:hover {
  background: #002965;
}

.btn-outline {
  border-color: #9ec5ff;
  color: var(--white);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-small {
  font-size: 0.98rem;
  padding: 0.56rem 1rem;
  line-height: 1;
}

.btn-small.is-active {
  background: #dc6500;
  border-color: #dc6500;
}

.btn-tiny {
  font-size: 0.72rem;
  padding: 0.44rem 0.72rem;
}

.hero {
  background: #eaf6fd;
  position: relative;
  overflow: hidden;
}

.hero__layout {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  padding: 6rem 0 2.6rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(236, 245, 252, 0.97) 0%, rgba(236, 245, 252, 0.85) 24%, rgba(236, 245, 252, 0.36) 45%, rgba(236, 245, 252, 0.06) 63%, rgba(236, 245, 252, 0) 74%);
  z-index: 1;
}

.hero__media {
  position: absolute;
  inset: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  z-index: 0;
}

.hero__media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__copy {
  position: relative;
  z-index: 2;
  max-width: 520px;
  padding-inline: 1.1rem 0.2rem;
}

.hero__copy h1 {
  font-size: 3rem;
  line-height: 1.04;
  letter-spacing: -0.01em;
  max-width: 40ch;
}

.hero__copy h1 strong,
.hero__copy h1 span {
  display: block;
}

.hero__copy h1 strong {
  font-weight: 800;
}

.hero__copy h1 span {
  font-weight: 500;
}

.hero__copy p {
  margin-top: 1rem;
  color: var(--text-700);
  max-width: 40ch;
  font-size: 1rem;
  line-height: 1.17;
}

.hero__actions {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem;
}

.hero__actions .btn {
  font-size: 1rem;
  padding: 0.7rem 1.18rem;
}

.hero__media img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
  object-position: center right;
}

.highlights {
  background: #dff2f7;
  padding: 1.1rem 0 1.35rem;
}

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

.highlight-pill {
  min-height: 46px;
  border-radius: 999px;
  background: var(--blue-900);
  color: #eff7ff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.2rem 0.9rem;
}

.highlight-pill--orange {
  background: var(--orange-600);
}

.highlight-pill svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.content-block {
  background: #e9f6fb;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

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

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

.media-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid #f2d9cc;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.media-card img {
  width: 100%;
  aspect-ratio: 16 / 20;
  object-fit: cover;
}

.media-card--wide img {
  aspect-ratio: 16 / 9.3;
}

.media-card__body {
  padding: 0.95rem 1rem 1.05rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.media-card h3 {
  font-size: clamp(1.22rem, 1.7vw, 2rem);
  line-height: 1.05;
}

.media-card p {
  margin-top: 0.35rem;
  color: var(--text-700);
  font-size: 0.9rem;
  max-width: 26ch;
}

.media-card .btn {
  margin-top: 0.85rem;
  width: fit-content;
}

.cta-strip {
  background: radial-gradient(circle at top right, #0056bc, #003984 65%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06));
  pointer-events: none;
}

.cta-strip__inner {
  min-height: 126px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.cta-strip h2 {
  font-size: clamp(1.25rem, 2.2vw, 2.1rem);
  line-height: 1.05;
}

.cta-strip p {
  color: #cae4ff;
  margin-top: 0.45rem;
}

.cta-strip .btn {
  padding: 0.72rem 1.1rem;
  font-size: 0.93rem;
  white-space: nowrap;
}

.feature-banner {
  background: #ecf8fd;
}

.feature-banner__inner {
  display: grid;
  grid-template-columns: 0.4fr 0.6fr;
  gap: 0.8rem;
  align-items: center;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(90deg, #eff9ff 0%, #f7fcff 38%, #ffffff 100%);
}

.feature-banner--alt .feature-banner__inner,
.feature-banner--production .feature-banner__inner {
  background: linear-gradient(90deg, #f0f9ff 0%, #ffffff 100%);
}

.feature-banner__copy {
  padding: 1.5rem 1.45rem;
}

.feature-banner__copy h2 {
  font-size: clamp(2rem, 2.6vw, 3rem);
  line-height: 1.03;
}

.feature-banner__copy p {
  margin-top: 0.62rem;
  color: var(--text-700);
  max-width: 34ch;
}

.feature-banner__media {
  min-height: 100%;
}

.feature-banner__media img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.products {
  background: #eaf7fc;
}

.section-title {
  text-align: center;
  font-size: clamp(1.9rem, 2.8vw, 3rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.slider-wrap {
  position: relative;
  padding-inline: 2rem;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 0;
  background: transparent;
  color: var(--orange-600);
  font-size: 2rem;
  line-height: 0;
  cursor: pointer;
  z-index: 5;
}

.slider-arrow--prev {
  left: 0;
}

.slider-arrow--next {
  right: 0;
}

.product-card {
  background: var(--white);
  border: 1px solid #f2d9cc;
  border-radius: var(--radius-md);
  padding: 0.8rem;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #fff;
}

.product-card h3 {
  font-size: clamp(1rem, 1.35vw, 1.3rem);
  margin-top: 0.55rem;
  line-height: 1.1;
}

.product-card p {
  margin-top: 0.3rem;
  color: var(--text-700);
  font-size: 0.86rem;
  flex: 1;
}

.product-card .btn {
  margin-top: 0.72rem;
  width: fit-content;
}

.site-footer {
  background: linear-gradient(180deg, #013379, #00306f);
  color: #dcecff;
  margin-top: 0.8rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.55fr repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  padding: 2rem 0;
}

.footer-brand {
  width: clamp(112px, 14vw, 170px);
}

.footer-about p {
  margin-top: 0.9rem;
  color: #c5dcf9;
  max-width: 42ch;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-col h3 {
  color: #f1f8ff;
  font-size: 1.02rem;
  margin-bottom: 0.42rem;
}

.footer-col a,
.footer-col p {
  color: #c5dcf9;
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(212, 233, 255, 0.24);
  background: #f27a00;
}

.footer-bottom__inner {
  min-height: 38px;
  color: #fff9f1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.83rem;
}

.footer-links {
  display: flex;
  gap: 0.9rem;
}

.placeholder {
  background: #edf7fd;
  padding: 3.2rem 0;
}

.placeholder__box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid #d8e8f5;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.placeholder__box h1 {
  font-size: clamp(1.95rem, 3.1vw, 3.2rem);
  line-height: 1.04;
}

.placeholder__box p {
  margin-top: 0.7rem;
  color: var(--text-700);
  max-width: 56ch;
}

.placeholder__actions {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.menu-open {
  overflow: hidden;
}

.search-open {
  overflow: hidden;
}

.search-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.search-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.search-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 30, 71, 0.48);
  cursor: pointer;
}

.search-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(620px, calc(100% - 1rem));
  border-radius: 16px;
  border: 1px solid #d6e4f7;
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(4, 32, 78, 0.22);
  padding: 1.2rem 1.15rem;
}

.search-modal__close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  border: 0;
  border-radius: 999px;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: #edf4ff;
  color: #11407d;
  font-size: 1.05rem;
}

.search-modal__dialog h2 {
  font-size: clamp(1.2rem, 1.5vw, 1.45rem);
}

.search-modal__form {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.55rem;
}

.search-modal__label {
  font-size: 0.88rem;
  color: var(--text-700);
}

.search-modal__input {
  width: 100%;
  border: 1px solid #bed2ee;
  border-radius: 10px;
  height: 42px;
  padding: 0 0.82rem;
  color: #153f7a;
  font-size: 0.98rem;
}

.search-modal__form .btn {
  width: fit-content;
  padding: 0.62rem 1rem;
}

@media (max-width: 1199px) {
  .nav {
    gap: 1rem;
  }

  .nav__link {
    font-size: 0.93rem;
  }

  .submenu--level-1 {
    min-width: 300px;
  }

  .btn-small {
    font-size: 0.82rem;
    padding-inline: 0.78rem;
  }

  .hero__copy h1 {
    font-size: clamp(2.2rem, 3.35vw, 3.4rem);
  }

  .hero__copy p {
    font-size: clamp(0.94rem, 1.08vw, 1.16rem);
  }

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

  .media-card--wide {
    grid-column: 1 / -1;
  }

  .feature-banner__inner {
    grid-template-columns: 0.48fr 0.52fr;
  }

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

@media (max-width: 767px) {
  .container {
    width: min(100%, calc(100% - 1.1rem));
  }

  .top-bar {
    font-size: 0.72rem;
  }

  .top-bar__inner {
    min-height: 34px;
  }

  .top-bar__inner--triple {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .top-bar__inner--triple span:nth-child(n + 2) {
    display: none;
  }

  .header-row {
    min-height: 72px;
    gap: 0.8rem;
  }

  .brand {
    width: 122px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-tools {
    display: none;
  }

  .nav {
    display: none;
  }

  body[data-page="home"] .site-header {
    position: sticky;
    top: 0;
    background: #ffffff;
    border-bottom: 1px solid #e6eff8;
  }

  body[data-page="home"] .header-row {
    min-height: 72px;
  }

  /* === MOBILE NAV PANEL (cloned into body by JS) === */
  .mobile-nav-panel {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: 0;
    left: 0;
    width: 86%;
    max-width: 332px;
    height: 100dvh;
    background: #ffffff;
    border-right: 1px solid #dfeeff;
    box-shadow: 10px 0 30px rgba(0, 31, 76, 0.16);
    padding: 5rem 1rem 1.5rem;
    gap: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 9999;
  }

  .mobile-nav-panel::before {
    content: "";
    position: absolute;
    top: 1.5rem;
    left: 1rem;
    width: 122px;
    height: 40px;
    background: url("../../img/logo.png") center / contain no-repeat;
  }

  .mobile-nav-panel.is-open {
    transform: translateX(0);
  }

  .mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 20, 54, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 9998;
    border: 0;
    cursor: pointer;
  }

  .mobile-nav-backdrop.is-visible {
    opacity: 1;
    pointer-events: auto;
  }

  /* mobile nav items */
  .mobile-nav-panel .mnav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.6rem 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: #173f7f;
    border: 0;
    background: none;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    text-decoration: none;
  }

  .mobile-nav-panel .mnav-link:active {
    color: #0f3777;
  }

  .mobile-nav-panel .mnav-link--has-arrow::after {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    flex-shrink: 0;
    margin-left: 0.5rem;
    transition: transform 0.25s ease;
  }

  .mobile-nav-panel .mnav-link--has-arrow.is-open::after {
    transform: rotate(-135deg);
  }

  /* mobile submenus - accordion */
  .mobile-nav-panel .mnav-sub {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
    padding-left: 0.75rem;
  }

  .mobile-nav-panel .mnav-sub.is-open {
    max-height: 800px;
  }

  .mobile-nav-panel .mnav-sub .mnav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: #244f87;
    padding: 0.45rem 0;
  }

  .mobile-nav-panel .mnav-sub .mnav-sub .mnav-link {
    font-size: 0.9rem;
    padding: 0.4rem 0;
  }

  .mobile-nav-panel .mnav-sub .mnav-sub .mnav-sub .mnav-link {
    font-size: 0.86rem;
    padding: 0.35rem 0;
  }

  .mobile-nav-panel .mnav-link--all {
    background: #edf4ff;
    border-radius: 8px;
    padding: 0.5rem 0.6rem;
    margin-bottom: 0.15rem;
    font-weight: 700;
    color: #0e3e81;
  }

  .mobile-nav-panel .mnav-divider {
    height: 1px;
    background: #e8f0fb;
    margin: 0.5rem 0;
    border: 0;
  }

  .mobile-nav-panel .mnav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.6rem 1rem;
    margin-top: 0.25rem;
    font-size: 0.88rem;
    font-weight: 700;
    border-radius: 10px;
    border: 1px solid transparent;
    font-family: inherit;
    cursor: pointer;
    text-decoration: none;
  }

  .mobile-nav-panel .mnav-btn--primary {
    background: var(--orange-600);
    color: var(--white);
    border-color: var(--orange-600);
  }

  .mobile-nav-panel .mnav-btn--secondary {
    background: none;
    color: #173f7f;
    border-color: #bed2ee;
  }

  .search-modal {
    padding: 0.72rem;
  }

  .search-modal__dialog {
    width: min(620px, calc(100% - 0.3rem));
    border-radius: 12px;
    padding: 0.95rem 0.9rem;
  }

  .search-modal__form .btn {
    width: 100%;
  }

  .btn-small {
    margin-top: 0.25rem;
    width: 100%;
    justify-content: center;
    font-size: 0.84rem;
    padding-block: 0.6rem;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(236, 245, 252, 0.94) 0%, rgba(236, 245, 252, 0.78) 33%, rgba(236, 245, 252, 0.24) 62%, rgba(236, 245, 252, 0.04) 100%);
  }

  .hero__layout {
    min-height: 496px;
    padding: 0.75rem 0 0.7rem;
    align-items: flex-start;
  }

  .hero__copy {
    max-width: none;
    text-align: center;
    padding: 0.75rem 0.2rem 0;
  }

  .hero__copy h1 {
    font-size: clamp(1.92rem, 9vw, 2.4rem);
    max-width: 13ch;
    margin-inline: auto;
  }

  .hero__copy p {
    max-width: 26ch;
    margin-inline: auto;
    font-size: 1rem;
  }

  .hero__actions {
    justify-content: center;
    margin-top: 0.72rem;
  }

  .hero__actions .btn {
    font-size: 0.86rem;
    padding: 0.58rem 0.9rem;
  }

  .hero__media {
    margin-top: 0;
    border-radius: 0;
  }

  .hero__media img {
    min-height: 496px;
    object-position: center;
  }

  .highlights {
    padding: 0.72rem 0 0.95rem;
  }

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

  .highlight-pill {
    min-height: 40px;
    font-size: 0.7rem;
    border-radius: 999px;
    padding-inline: 0.5rem;
  }

  .section-padded {
    padding-block: 0.9rem;
  }

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

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

  .card-grid--info .media-card--wide {
    grid-column: 1 / -1;
  }

  .media-card {
    border-radius: 12px;
  }

  .media-card img,
  .media-card--wide img {
    aspect-ratio: 16 / 10;
  }

  .media-card__body {
    padding: 0.82rem 0.82rem 0.9rem;
  }

  .media-card h3 {
    font-size: 1.75rem;
  }

  .card-grid--info .media-card:not(.media-card--wide) h3 {
    font-size: 1.28rem;
  }

  .card-grid--info .media-card:not(.media-card--wide) p {
    font-size: 0.82rem;
  }

  .media-card p {
    font-size: 0.9rem;
  }

  .cta-strip__inner {
    min-height: 122px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 1rem 0;
  }

  .cta-strip .btn {
    width: auto;
  }

  .feature-banner__inner {
    display: flex;
    flex-direction: column-reverse;
    border-radius: 14px;
  }

  .feature-banner__copy {
    padding: 1rem;
  }

  .feature-banner__copy h2 {
    font-size: 2rem;
  }

  .feature-banner__copy p {
    font-size: 0.92rem;
  }

  .feature-banner__media img {
    min-height: 0;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 0.7rem;
  }

  .slider-wrap {
    padding-inline: 0.8rem;
  }

  .slider-arrow {
    width: 24px;
    height: 24px;
    font-size: 1.4rem;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 3px 12px rgba(0, 30, 71, 0.2);
  }

  .slider-arrow--prev {
    left: -0.2rem;
  }

  .slider-arrow--next {
    right: -0.2rem;
  }

  .product-card {
    padding: 0.62rem;
  }

  .product-card h3 {
    font-size: 1rem;
  }

  .product-card p {
    font-size: 0.78rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    padding: 1.4rem 0;
    gap: 1.1rem;
  }

  .footer-about p,
  .footer-col a,
  .footer-col p {
    font-size: 0.86rem;
  }

  .footer-bottom__inner {
    min-height: 46px;
    font-size: 0.73rem;
    flex-direction: column;
    justify-content: center;
    gap: 0.26rem;
    padding: 0.36rem 0;
  }

  .footer-links {
    gap: 0.55rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .placeholder {
    padding: 1.4rem 0;
  }

  .placeholder__box {
    padding: 1.25rem 1rem;
    border-radius: 14px;
  }

  .placeholder__box h1 {
    font-size: 2rem;
  }

  .placeholder__box p {
    font-size: 0.9rem;
  }
}

.b-radius-999{
  border-radius: 999px !important;
}
