@import url('./variables.css');
@import url('./typography.css');

/* ── Base ─────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  background: var(--background);
  color: var(--foreground);
  margin: 0;
  padding-top: var(--site-offset);
  line-height: 1.6;
  overflow-x: clip;
}

i {
  display: inline-flex;
}

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

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

.container-nst {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

@media (min-width: 992px) {
  .container-nst {
    padding-inline: 2rem;
  }
}

@media (max-width: 991.98px) {
  .container-nst {
    padding-inline: 1rem;
  }
}

.section-py {
  padding-block: 4rem;
}

.section-py-lg {
  padding-block: 6rem;
}

.text-muted-nst {
  color: var(--muted-foreground);
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn-nst {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 10rem;
  max-width: 100%;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 0.875rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-family: var(--ff-regular);
}

.btn-nst:active {
  transform: scale(0.97);
}

.btn-nst-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.btn-nst-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

.btn-nst-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--foreground);
}

.btn-nst-outline:hover {
  background: var(--muted);
  transform: translateY(-2px);
}

.btn-nst-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  min-width: auto;
  padding: 0.75rem 1.25rem;
}

.btn-nst-ghost:hover {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}

.btn-nst-icon {
  min-width: auto;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: #fff;
  color: var(--foreground);
}

.btn-nst-icon:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: scale(1.08);
}

.btn-nst-icon:disabled {
  opacity: 0.25;
  cursor: not-allowed;
  transform: none;
}

.btn-nst-sm {
  min-width: auto;
  padding: 0.625rem 1.25rem;
  font-size: 0.75rem;
}

.btn-nst-navy {
  background: #004071;
  border-color: #004071;
  color: #fff;
}

.btn-nst-navy:hover {
  background: #003560;
  color: #fff;
}

/* ── TopBar ───────────────────────────────────────────────── */
.topbar {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 1060;
  height: var(--topbar-height);
  background: var(--primary);
  display: flex;
  align-items: center;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 14px;
  color: rgba(191, 219, 254, 0.7);
}

.topbar__inner i {
  font-size: 16px !important;
}

.topbar__tagline {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.topbar__tagline i {
  color: var(--accent);
}

.topbar__contact {
  display: flex;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 991.98px) {
  .topbar__contact {
    width: 100%;
    justify-content: space-between;
    gap: 0.75rem;
  }
}

.topbar__contact a {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: rgba(191, 219, 254, 0.7);
  transition: color 0.2s;
  font-size: 16px;
}

.topbar__contact a:hover {
  color: #fff;
}

.topbar__contact a i {
  color: var(--accent);
}

/* ── Header ───────────────────────────────────────────────── */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: var(--topbar-height);
  z-index: 1050;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}

.site-header.is-scrolled {
  background: #fff;
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 1rem;
}

@media (max-width: 991.98px) {
  :root {
    --header-height: 56px;
    --site-offset: 92px;
  }

  .site-header__logo {
    order: 2;
  }

  .site-header__actions {
    order: 1;
  }

  .header-search-btn {
    order: 2;
  }

  .menu-toggle {
    order: 1;
  }
}

.site-header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.site-header__logo-text {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.site-header__logo-text span {
  color: var(--accent);
}

.site-header__logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 991.98px) {
  .site-header__logo-img {
    height: 28px;
    width: auto;
  }
}

.site-nav {
  display: none;
  align-self: stretch;
  align-items: stretch;
  gap: 0.125rem;
  flex: 1;
  justify-content: center;
}

@media (min-width: 992px) {
  .site-nav {
    display: flex;
  }
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(10, 31, 61, 0.75);
  border-radius: var(--radius-lg);
  transition: all 0.2s;
  white-space: nowrap;
}

/* Bridge the dead zone between the trigger and mega panel on hover */
.site-nav__link[data-mega] {
  position: relative;
}

.site-nav__link[data-mega]::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 100%;
  height: 1.25rem;
}

.site-nav__link:hover,
.site-nav__link.is-active,
.site-nav__link.is-open {
  color: var(--accent);
  background: transparent;
}

.site-nav__link--accent,
.site-nav__link--accent.is-active {
  color: #ff6900;
  font-weight: 600;
}

.site-nav__link--accent:hover {
  background: rgba(255, 105, 0, 0.08);
  color: #ff6900;
}

.site-nav__dropdown {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
}

.site-nav__dropdown>.site-nav__link {
  position: relative;
}

.site-nav__dropdown>.site-nav__link::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 100%;
  height: 1.25rem;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  inset-inline-start: 0;
  min-width: 15rem;
  margin-top: -0.75rem;
  padding-top: 0.75rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 210;
}

.nav-dropdown__panel {
  padding: 0.45rem;
  background: #fff;
  border: 1px solid var(--border);
  border-top: 1px solid var(--border);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.nav-dropdown.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-dropdown__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(10, 31, 61, 0.85);
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-dropdown__link:hover {
  background: var(--muted);
  color: var(--accent);
}

.nav-dropdown__link--all {
  margin-top: 0.25rem;
  margin-bottom: 0;
  padding-top: 0.75rem;
  padding-bottom: 0.65rem;
  border-top: 1px solid var(--border);
  border-bottom: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  font-weight: 700;
  color: var(--foreground);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.header-search-btn {
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: var(--radius-lg);
  background: transparent;
  color: var(--foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.header-search-btn:hover,
.header-search-btn.is-open {
  background: var(--primary);
  color: #fff;
}

.header-cta {
  display: none;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s;
}

@media (min-width: 992px) {
  .header-cta {
    display: inline-flex;
  }
}

.header-cta:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.menu-toggle {
  display: flex;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: var(--radius-lg);
  background: transparent;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

@media (min-width: 992px) {
  .menu-toggle {
    display: none;
  }
}

/* Search overlay */
.search-overlay {
  position: absolute;
  inset-inline: 0;
  top: var(--header-height);
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: 2rem 1rem;
  display: none;
  z-index: 1049;
}

.search-overlay.is-open {
  display: block;
}

.search-overlay__input-wrap {
  position: relative;
  max-width: 48rem;
  margin: 0 auto;
}

.search-overlay__input {
  width: 100%;
  padding: 1rem 3.5rem 1rem 1.5rem;
  border: 2px solid transparent;
  border-radius: var(--radius-xl);
  background: var(--muted);
  font-family: var(--ff-regular);
  font-size: 1rem;
  outline: none;
  text-align: right;
}

.search-overlay__input:focus {
  border-color: var(--primary);
}

.search-overlay__input-wrap i,
.search-overlay__submit {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted-foreground);
}

.search-overlay__submit {
  border: none;
  background: transparent;
  padding: 0;
  line-height: 1;
  cursor: pointer;
}

.search-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
  margin-top: 1rem;
  max-width: 48rem;
  margin-inline: auto;
}

.search-tags span {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  align-self: center;
}

.search-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  border: none;
  border-radius: var(--radius-lg);
  background: var(--muted);
  font-size: 0.875rem;
  color: var(--muted-foreground);
  cursor: pointer;
  font-family: var(--ff-regular);
  text-decoration: none;
  transition: all 0.2s;
}

.search-tag:hover {
  background: var(--primary);
  color: #fff;
}

/* Mega menu */
.mega-menu {
  position: absolute;
  inset-inline: 0;
  /* Overlap header slightly; padding keeps the panel visually flush */
  top: calc(var(--header-height) - 0.75rem);
  padding-top: 0.75rem;
  display: none;
  z-index: 1048;
}

.mega-menu.is-open {
  display: block;
}

.mega-menu__inner {
  display: flex;
  min-height: 280px;
  max-height: calc(100vh - var(--header-height) - 20rem);
  background: #fff;
  border-radius: 0 0 1.5rem 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(10, 31, 61, 0.15);
  border-top: 1px solid var(--border);
}

.mega-menu__cats {
  width: 16rem;
  flex-shrink: 0;
  border-left: 1px solid var(--border);
  padding: 0.75rem 0 0;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.mega-menu__cats-list {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.mega-menu__cat-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 1.25rem;
  border: none;
  background: transparent;
  font-family: var(--ff-regular);
  font-size: 0.875rem;
  font-weight: 500;
  text-align: right;
  text-decoration: none;
  cursor: pointer;
  color: rgba(10, 31, 61, 0.7);
  transition: all 0.2s;
}

.mega-menu__cat-btn:hover {
  color: rgba(10, 31, 61, 0.7);
  text-decoration: none;
}

.mega-menu__cat-btn .bi-chevron-left {
  opacity: 0;
  transform: translateX(5px);
  transition: all 0.2s;
}

.mega-menu__cat-btn.is-active .bi-chevron-left {
  opacity: 1;
  transform: translateX(0);
}

.mega-menu__cat-indicator {
  width: 3px;
  height: 16px;
  border-radius: 10px;
  background: transparent;
  flex-shrink: 0;
  transition: all 0.2s;
}

.mega-menu__cat-btn--green.is-active .mega-menu__cat-indicator {
  background: var(--green);
}

.mega-menu__cat-btn--blue.is-active .mega-menu__cat-indicator {
  background: var(--blue);
}

.mega-menu__cat-btn--orange.is-active .mega-menu__cat-indicator {
  background: var(--orange);
}

.mega-menu__cat-btn--navy.is-active .mega-menu__cat-indicator {
  background: var(--navy);
}

.mega-menu__cat-btn i {
  color: var(--muted-foreground);
  font-size: 1rem;
  transition: all 0.2s;
}

.mega-menu__cat-btn.is-active i {
  color: inherit;
}

.mega-menu__cat-icon {
  width: 1.125rem;
  height: 1.125rem;
  object-fit: contain;
  flex-shrink: 0;
  transition: filter 0.2s;
  filter: var(--filter-muted);
}

.mega-menu__cat-btn--green.is-active .mega-menu__cat-icon,
.mega-menu__subs-title.text-green .mega-menu__cat-icon,
.mobile-menu__cat-title--green .mega-menu__cat-icon {
  filter: var(--filter-green);
}

.mega-menu__cat-btn--blue.is-active .mega-menu__cat-icon,
.mega-menu__subs-title.text-blue .mega-menu__cat-icon,
.mobile-menu__cat-title--blue .mega-menu__cat-icon {
  filter: var(--filter-blue);
}

.mega-menu__cat-btn--orange.is-active .mega-menu__cat-icon,
.mega-menu__subs-title.text-orange .mega-menu__cat-icon,
.mobile-menu__cat-title--orange .mega-menu__cat-icon {
  filter: var(--filter-orange);
}

.mega-menu__cat-btn--navy.is-active .mega-menu__cat-icon,
.mega-menu__subs-title.text-navy .mega-menu__cat-icon,
.mobile-menu__cat-title--navy .mega-menu__cat-icon {
  filter: var(--filter-navy);
}

.mobile-menu__cat-title .mega-menu__cat-icon {
  width: 0.875rem;
  height: 0.875rem;
  margin-left: 0.35rem;
  vertical-align: -0.1em;
}

.mega-menu__cat-btn.is-active {
  font-weight: 600;
}

.mega-menu__cat-btn--green.is-active {
  background: var(--green-soft);
  color: var(--green);
}

.mega-menu__cat-btn--blue.is-active {
  background: var(--blue-soft);
  color: var(--blue);
}

.mega-menu__cat-btn--orange.is-active {
  background: var(--orange-soft);
  color: var(--orange);
}

.mega-menu__cat-btn--navy.is-active {
  background: var(--navy-soft);
  color: var(--navy);
}

.mega-menu__cat-btn--themed.is-active {
  background: color-mix(in srgb, var(--cat-color) 5%, transparent);
  color: var(--cat-color);
}

.mega-menu__cat-btn--themed:hover {
  background: color-mix(in srgb, var(--cat-color) 5%, transparent);
  color: var(--cat-color);
}

.mega-menu__cat-btn--themed.is-active .mega-menu__cat-indicator,
.mega-menu__cat-btn--themed:hover .mega-menu__cat-indicator {
  background: var(--cat-color);
}

.mega-menu__cat-btn--themed .mega-menu__cat-icon {
  filter: var(--filter-muted);
}

.mega-menu__cat-btn--themed.is-active .mega-menu__cat-icon,
.mega-menu__cat-btn--themed:hover .mega-menu__cat-icon {
  filter: var(--cat-icon-filter);
}

.mega-menu__subs-title .mega-menu__cat-icon {
  filter: var(--cat-icon-filter);
}

.mega-menu__cat-btn .mega-menu__cat-label {
  flex: 1 1 auto;
  min-width: 0;
  text-align: start;
}

.mega-menu__cat-btn .bi-chevron-left {
  flex-shrink: 0;
  width: 1rem;
  text-align: center;
}

.mobile-menu__cat-title .mega-menu__cat-icon {
  filter: var(--cat-icon-filter);
}

.mega-menu__subs {
  flex: 1;
  display: flex;
  flex-direction: column;
  /* padding: 1.25rem 2rem; */
  min-height: 0;
  min-width: 0;
}

.mega-menu__subs-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.mega-menu__subs-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  /* margin-bottom: 1rem; */
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
  text-decoration: none;
}

.mega-menu__subs-title:hover {
  text-decoration: none;
  opacity: 0.85;
}

.mega-menu__subs-title__rule {
  height: 1px;
  background: var(--border);
  flex-grow: 1;
}

.mega-menu__subs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 11px;
  flex: 1;
  min-height: 0;
  align-content: start;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-bottom: 0.25rem;
}

.mega-menu__sub-link {
  display: flex;
  align-items: center;
  gap: 6px;
  /* padding: 0.45rem 0; */
  font-size: 0.875rem;
  color: rgba(10, 31, 61, 0.65);
  transition: color 0.2s;
}

.mega-menu__sub-link:hover {
  color: var(--foreground);
}

.mega-menu__sub-link::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(10, 31, 61, 0.5);
  flex-shrink: 0;
}

.mega-menu__sub-link:hover::before {
  background: var(--accent);
}

.mega-menu__footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-shrink: 0;
  margin-top: auto;
  border-top: 1px solid var(--border);
  height: 3rem;
  position: relative;
  z-index: 2;
  background: #fff;
}

.mega-menu__cats-footer {
  flex-shrink: 0;
  margin-top: auto;
  border-top: 1px solid var(--border);
  height: 3rem;
  background: #fff;
  text-align: center;
  transition: 0.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mega-menu__cats-footer:hover {
  background: #eee;
}

.mega-menu__footer-link {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s, transform 0.2s;
}

.mega-menu__footer-link:hover {
  color: var(--accent-hover);
}

/* .mega-menu__footer-link--all:hover, */
.mega-menu__footer-link--view:hover {
  transform: translateX(-3px);
}

/* Mobile menu (Bootstrap Offcanvas) */
.mobile-menu.offcanvas {
  --bs-offcanvas-width: min(20rem, 85vw);
  --bs-offcanvas-zindex: 1070;
  border: none;
  z-index: 1070;
}

body:has(#mobileMenu.show) .offcanvas-backdrop {
  z-index: 1065;
}

.mobile-menu .offcanvas-header {
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.25rem;
}

.mobile-menu__logo {
  display: flex;
  align-items: center;
}

.mobile-menu__logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.mobile-menu .offcanvas-body {
  padding: 0.75rem 0 1.5rem;
}

.mobile-menu__panels {
  position: relative;
}

.mobile-menu__panel[hidden] {
  display: none;
}

.mobile-menu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0;
  border-radius: 0;
  border-bottom: 1px solid var(--border);
  color: inherit;
  text-decoration: none;
}

.mobile-menu__link:hover {
  background: var(--muted);
}

.mobile-menu__link--all {
  font-weight: 600;
  color: var(--accent);
}

.mobile-menu__all-cats {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  border-radius: 0;
  background: linear-gradient(135deg, var(--primary) 0%, #0f2f56 55%, #163a66 100%);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(10, 31, 61, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mobile-menu__all-cats:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(10, 31, 61, 0.28);
}

.mobile-menu__all-cats-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.12);
  color: var(--accent);
  font-size: 1.125rem;
}

.mobile-menu__all-cats-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  text-align: right;
}

.mobile-menu__all-cats-title {
  font-size: 0.9375rem;
  font-weight: 800;
  line-height: 1.3;
}

.mobile-menu__all-cats-desc {
  font-size: 0.6875rem;
  font-weight: 500;
  color: rgba(191, 219, 254, 0.75);
  line-height: 1.4;
}

.mobile-menu__all-cats-arrow {
  flex-shrink: 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
}

.mobile-menu__cats {
  border-top: 1px solid var(--border);
  margin-top: 0.25rem;
}

.mobile-menu__cat-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  border: none;
  border-bottom: 1px solid var(--border);
  background: transparent;
  font-family: var(--ff-regular);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cat-color, var(--foreground));
  text-align: right;
  cursor: pointer;
}

.mobile-menu__cat-btn:hover {
  background: var(--muted);
}

.mobile-menu__cat-btn-main {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}

.mobile-menu__cat-btn .mega-menu__cat-icon {
  filter: var(--cat-icon-filter, var(--filter-muted));
}

.mobile-menu__cat-btn .bi-chevron-left {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  flex-shrink: 0;
}

.mobile-menu__back {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  padding: 0.875rem 1.25rem;
  border: none;
  border-bottom: 1px solid var(--border);
  background: var(--muted);
  font-family: var(--ff-regular);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--foreground);
  text-align: right;
  cursor: pointer;
}

.mobile-menu__back:hover {
  background: var(--secondary);
}

.mobile-menu__back .bi-chevron-right {
  font-size: 1rem;
  color: var(--muted-foreground);
}

.mobile-menu__subhead {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem 0.5rem 1rem;
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--cat-color, var(--muted)) 8%, #fff);
}

.mobile-menu__back-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: none;
  border-radius: var(--radius-lg);
  background: transparent;
  color: var(--cat-color, var(--foreground));
  cursor: pointer;
}

.mobile-menu__back-icon:hover {
  background: color-mix(in srgb, var(--cat-color, var(--muted)) 14%, #fff);
}

.mobile-menu__back-icon .bi-chevron-right {
  font-size: 1.125rem;
}

.mobile-menu__subhead-link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: auto;
  gap: 0.5rem;
  padding: 4px 12px 6px !important;
  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
  background: color-mix(in srgb, var(--cat-color, var(--muted)) 100%, #fff);
  color: #fff;
  border-radius: 10px;
  width: max-content;
  text-align: left;
}

.mobile-menu__subhead-link:hover {
  opacity: 0.85;
}

.mobile-menu__subhead-link .mega-menu__cat-icon {
  filter: var(--cat-icon-filter, var(--filter-muted));
}

.mobile-menu__cat-link {
  width: 100%;
  display: block;
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
  font-weight: 500;
  color: inherit;
  text-decoration: none;
  text-align: right;
}

.mobile-menu__cat-link:hover {
  background: var(--muted);
}

.mobile-menu__cat-title {
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
}

.mobile-menu__cat-title--green {
  color: var(--green);
}

.mobile-menu__cat-title--blue {
  color: var(--blue);
}

.mobile-menu__cat-title--orange {
  color: var(--orange);
}

.mobile-menu__cat-title--navy {
  color: var(--navy);
}

/* Mobile fixed CTA */
.mobile-cta {
  display: block;
  position: fixed;
  bottom: 1rem;
  inset-inline: 1rem;
  z-index: 1040;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.75rem);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.mobile-cta.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (min-width: 992px) {
  .mobile-cta {
    display: none;
  }
}

.mobile-cta .btn-nst {
  width: 100%;
  pointer-events: auto;
  padding: 1rem;
  font-size: 1rem;
  box-shadow: var(--shadow-accent-lg);
}

@media (max-width: 991.98px) {
  body:has(.mobile-cta) .site-footer {
    padding-bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
  }
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100vh - var(--site-offset));
  min-height: 700px;
  overflow: hidden;
  background: #fff;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.hero__fade {
  position: absolute;
  bottom: 0;
  inset-inline: 0;
  height: 9rem;
  background: linear-gradient(to top, #fff, transparent);
  z-index: 2;
  pointer-events: none;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 1;
  pointer-events: none;
}

.hero__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero__content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  padding-block: 2rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
  min-width: 0;
}

@media (min-width: 992px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 3rem;
    row-gap: 2.25rem;
  }

  .hero__image-wrap {
    grid-row: 1 / span 2;
    align-self: center;
  }
}

.hero__image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-width: 0;
}

.hero__image-wrap::before {
  content: '';
  position: absolute;
  inset: 10%;
  background: rgba(10, 31, 61, 0.05);
  border-radius: 50%;
  filter: blur(48px);
}

.hero__image {
  position: relative;
  max-height: 70vh;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.15));
}

.hero__text {
  text-align: right;
  min-width: 0;
}

.hero__accent-line {
  width: 60px;
  height: 4px;
  background: var(--primary);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero__desc {
  color: var(--muted-foreground);
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
  margin-bottom: 0;
  max-width: 32rem;
}

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

.hero__dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 4;
}

@media (min-width: 992px) {
  .hero__dots {
    left: auto;
    right: 3rem;
    bottom: 50%;
    transform: translateY(50%);
    flex-direction: column;
  }
}

.hero__dot {
  border: none;
  border-radius: 999px;
  background: rgba(10, 31, 61, 0.2);
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
  width: 8px;
  height: 8px;
}

.hero__dot.is-active {
  background: var(--primary);
  width: 32px;
  height: 8px;
}

@media (min-width: 992px) {
  .hero__dot.is-active {
    width: 8px;
    height: 32px;
  }
}

.hero__nav {
  display: none;
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  gap: 0.75rem;
  z-index: 4;
}

@media (min-width: 992px) {
  .hero__nav {
    display: flex;
  }
}

@media (max-width: 991.98px) {
  .hero {
    min-height: 0;
    height: auto;
  }

  .hero__slide {
    position: relative;
    inset: auto;
    display: none;
    opacity: 1;
    transition: none;
  }

  .hero__slide.is-active {
    display: block;
  }

  .hero__content {
    height: auto;
    align-items: flex-start;
    padding-block: 1.25rem 3.25rem;
  }

  .hero__grid {
    gap: 1.25rem;
  }

  .hero__text {
    order: 1;
  }

  .hero__image-wrap {
    order: 2;
  }

  .hero__actions {
    order: 3;
  }

  .hero__image {
    max-height: min(72vw, 300px);
  }

  .hero__accent-line {
    margin: 0 auto 16px;
    background: var(--accent);
  }

  .hero__title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 0.75rem;
    text-align: center;
  }

  .hero__desc {
    font-size: 0.9375rem;
    margin-bottom: 0;
    text-align: center;
  }

  .hero__actions {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0.75rem;
  }

  .hero__actions .btn-nst {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    padding-inline: 0.75rem;
    white-space: nowrap;
  }

  .hero__dots {
    bottom: 0.875rem;
  }

  .hero__fade {
    height: 5rem;
  }
}

/* ── Section headings ─────────────────────────────────────── */
.section-head {
  text-align: center;
  margin-bottom: 3rem;
}

.section-head--left {
  text-align: right;
}

.section-head__label {
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: block;
}

.section-head__title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
}

.section-head__desc {
  margin-top: 0.75rem;
  color: var(--muted-foreground);
  font-size: 0.9375rem;
  max-width: 32rem;
  margin-inline: auto;
}

.section-head--left .section-head__desc {
  margin-inline: 0;
}

/* ── Category cards ───────────────────────────────────────── */
.category-card {
  display: flex;
  flex-direction: row;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #fff;
  border: 2px solid;
  transition: all 0.3s;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.category-card__body {
  flex: 1;
  padding: 1.25rem;
  text-align: right;
  min-width: 0;
}

.category-card__head {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1rem;
}

.category-card__icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.category-card__title {
  font-weight: 800;
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  line-height: 1.3;
}

.category-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.category-card__features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  color: rgba(10, 31, 61, 0.75);
}

.category-card__check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 0.625rem;
}

.category-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem;
  border-radius: var(--radius-lg);
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
  gap: 0.375rem;
  transition: opacity 0.2s;
}

.category-card:hover .category-card__cta {
  opacity: 0.9;
}

.category-card__count {
  text-align: left;
  font-size: 0.6875rem;
  color: rgba(10, 31, 61, 0.6);
  margin-top: 0.5rem;
}

.category-card__img {
  width: 40%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  min-height: 200px;
}

.category-card__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.category-card:hover .category-card__img img {
  transform: scale(1.05);
}

/* ── Why strip ────────────────────────────────────────────── */
.why-strip {
  position: relative;
  background: var(--primary);
  overflow: hidden;
}

.why-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.why-strip::after {
  content: '';
  position: absolute;
  top: 0;
  inset-inline: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.why-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 1.25rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s;
}

.why-strip__item:last-child {
  border-left: none;
}

.why-strip__item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.why-strip__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #fb923c;
  transition: all 0.3s;
}

.why-strip__icon img {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
}

.why-strip__item:hover .why-strip__icon {
  background: var(--orange-soft-20);
  border-color: var(--orange-border-30);
}

.why-strip__value {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.why-strip__label {
  font-size: 0.75rem;
  color: rgba(191, 219, 254, 0.55);
  line-height: 1.4;
}

/* ── Showcase swiper ──────────────────────────────────────── */
.showcase-block {
  margin-bottom: 4rem;
}

.showcase-block:last-child {
  margin-bottom: 0;
}

.showcase-block__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 1rem;
}

.showcase-block__title-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.showcase-block__dot {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.showcase-block__title {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 800;
}

.showcase-block__link {
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
}

.showcase-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  direction: ltr;
  padding-bottom: 0.25rem;
}

.showcase-track::-webkit-scrollbar {
  display: none;
}

.showcase-swiper {
  overflow: hidden;
}

.showcase-swiper .swiper-slide {
  height: auto;
}

.showcase-block .swiper-pagination {
  position: static;
  width: auto;
  transform: none;
  display: flex;
  gap: 0.5rem;
}

.showcase-card {
  position: relative;
  display: block;
  height: 320px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #060F1E;
  cursor: pointer;
  direction: rtl;
}

.showcase-card__accent {
  position: absolute;
  top: 0;
  inset-inline: 0;
  height: 8px;
  z-index: 2;
}

.showcase-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.showcase-card:hover .showcase-card__img {
  transform: scale(1.07);
}

.showcase-card__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #040E1E, rgba(4, 14, 30, 0.2), transparent);
  opacity: 0.4;
  transition: opacity 0.5s;
}

.showcase-card:hover .showcase-card__gradient {
  opacity: 1;
  background: linear-gradient(to top, #040E1E, rgba(4, 14, 30, 0.8), transparent);
}

.showcase-card__body {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 1.25rem;
  text-align: right;
  z-index: 2;
}

.showcase-card__desc {
  font-size: 0.75rem;
  color: rgba(191, 219, 254, 0.75);
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s;
}

.showcase-card:hover .showcase-card__desc {
  max-height: 80px;
  opacity: 1;
  margin-bottom: 0.5rem;
}

.showcase-card__name {
  color: #fff;
  font-weight: 800;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  margin-bottom: 0.75rem;
}

.showcase-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.75rem;
}

.showcase-dots {
  display: flex;
  gap: 0.5rem;
}

.showcase-dot {
  display: block;
  border-radius: 999px;
  background: rgba(10, 31, 61, 0.15);
  width: 5px;
  height: 5px;
  transition: all 0.3s;
}

.showcase-dot.is-active {
  width: 28px;
}

.showcase-arrows {
  display: flex;
  gap: 0.5rem;
}

/* ── About ────────────────────────────────────────────────── */
.about-cap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1rem;
  transition: all 0.2s;
  cursor: default;
}

.about-cap:hover {
  border-color: var(--orange-border-40);
  box-shadow: var(--shadow-md);
}

.about-cap__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-lg);
  background: var(--orange-soft-10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  transition: all 0.2s;
}

.about-cap__icon img {
  width: 1.25rem;
  height: 1.25rem;
  object-fit: contain;
}

.about-cap:hover .about-cap__icon {
  background: var(--accent);
  color: #fff;
}

.about-stat {
  background: var(--primary);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  text-align: right;
  position: relative;
  overflow: hidden;
}

.about-stat::before {
  content: '';
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.about-stat__val {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.375rem;
}

.about-stat__label {
  font-size: 0.875rem;
  color: rgba(191, 219, 254, 0.6);
}

/* ── Client logos marquee ─────────────────────────────────── */
.logos-swiper {
  overflow: hidden;
  position: relative;
}

.logos-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.logo-slot {
  width: 100%;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(10, 31, 61, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  background: rgba(244, 246, 250, 0.6);
  filter: grayscale(1);
  opacity: 0.6;
  transition: all 0.3s;
}

.logo-slot:hover {
  filter: grayscale(0);
  opacity: 1;
}

.logo-slot img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

/* ── R&D section ──────────────────────────────────────────── */
.rd-section {
  position: relative;
  background: var(--primary);
  overflow: hidden;
}

.rd-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

.rd-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-align: right;
  transition: background 0.2s;
}

.rd-card:hover {
  background: rgba(255, 255, 255, 0.08);
}

.rd-card__icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-lg);
  background: var(--orange-soft-15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fb923c;
  margin-bottom: 1rem;
}

.rd-card__icon img {
  width: 1.25rem;
  height: 1.25rem;
  object-fit: contain;
}

.rd-card__title {
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.375rem;
}

.rd-card__desc {
  color: rgba(191, 219, 254, 0.6);
  font-size: 0.75rem;
  line-height: 1.5;
}

.rd-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.rd-image-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  opacity: 0.8;
}

.rd-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 1rem;
  text-align: right;
}

.rd-badge__val {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fb923c;
}

.rd-badge__label {
  font-size: 0.75rem;
  color: rgba(191, 219, 254, 0.7);
  margin-top: 0.125rem;
}

/* ── Article cards ────────────────────────────────────────── */
.article-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  height: 100%;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.article-card__img-wrap {
  position: relative;
  overflow: hidden;
}

.article-card__img {
  width: 100%;
  height: 13rem;
  object-fit: cover;
  transition: transform 0.5s;
}

.article-card:hover .article-card__img {
  transform: scale(1.05);
}

.article-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
}

.article-card__body {
  padding: 1.5rem;
  text-align: right;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-card__date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: flex-start;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}

.article-card__title {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.article-card__excerpt {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.25rem;
}

/* ── Featured products ────────────────────────────────────── */
.featured-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #080C16;
  display: flex;
  flex-direction: column;
  min-height: 480px;
}

.featured-card__text {
  position: relative;
  z-index: 2;
  text-align: right;
  padding: 2.5rem 2.5rem 0;
  max-width: 32rem;
  margin-right: 0;
  margin-left: auto;
}

.featured-card__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(147, 197, 253, 0.7);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.featured-card__title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.featured-card__sub {
  color: rgba(191, 219, 254, 0.55);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.featured-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.featured-card__link:hover {
  color: #fff;
}

.featured-card__img-wrap {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 2.5rem;
  min-height: 280px;
  position: relative;
}

.featured-card__glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 40%;
  border-radius: 50%;
  background: radial-gradient(ellipse, #3B82F6 0%, transparent 70%);
  filter: blur(48px);
  opacity: 0.2;
  pointer-events: none;
}

.featured-card__img {
  position: relative;
  max-height: 320px;
  width: auto;
  max-width: 70%;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.8));
}

.product-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #F4F5F7;
  display: flex;
  flex-direction: column;
  min-height: 340px;
  cursor: pointer;
  transition: background 0.3s;
}

.product-card:hover {
  background: #ECEEF2;
}

.product-card__body {
  text-align: right;
  padding: 2rem 1.75rem 1rem;
  z-index: 2;
}

.product-card__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(10, 31, 61, 0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.product-card__title {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.product-card__sub {
  font-size: 0.75rem;
  color: rgba(10, 31, 61, 0.5);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.product-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(10, 31, 61, 0.6);
  transition: all 0.2s;
}

.product-card:hover .product-card__link {
  color: var(--foreground);
  gap: 0.625rem;
}

.product-card__img-wrap {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 1.5rem;
  min-height: 180px;
}

.product-card__img {
  max-height: 200px;
  width: auto;
  max-width: 85%;
  object-fit: contain;
  transition: transform 0.5s;
}

.product-card:hover .product-card__img {
  transform: scale(1.04);
}

/* ── Product detail ───────────────────────────────────────── */
.breadcrumb-bar {
  background: rgba(228, 234, 242, 0.4);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
}

.breadcrumb-nst {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  flex-wrap: wrap;
}

@media (max-width: 991.98px) {
  .breadcrumb-bar .container-nst {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .breadcrumb-bar .container-nst::-webkit-scrollbar {
    display: none;
  }

  .breadcrumb-nst {
    flex-wrap: nowrap;
    width: max-content;
    min-width: 100%;
    white-space: nowrap;
  }

  .breadcrumb-nst>* {
    flex-shrink: 0;
  }
}

.breadcrumb-nst a:hover {
  color: var(--foreground);
}

.breadcrumb-nst .active {
  color: var(--foreground);
  font-weight: 500;
}

.product-hero {
  padding: 0.75rem 0 3rem;
  background: #fff;
}

.product-hero__layout {
  display: flex;
  flex-direction: column;
}

/* Mobile: title → en → gallery → details */
@media (max-width: 991.98px) {
  .product-hero__info {
    display: contents;
  }

  .product-info__title {
    order: 1;
  }

  .product-info__en {
    order: 2;
  }

  .product-hero__gallery {
    order: 3;
    margin-top: 0.75rem;
    margin-bottom: 1rem;
  }

  .product-hero__details {
    order: 4;
  }

  body[data-page="product-detail"]:has(.product-cta-bar) .site-footer {
    padding-bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
  }

  body[data-page="product-detail"] .product-hero {
    padding-bottom: calc(5rem + env(safe-area-inset-bottom, 0px));
  }
}

/* Desktop: info | gallery side-by-side */
@media (min-width: 992px) {
  .product-hero__layout {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    column-gap: 3rem;
    align-items: start;
  }

  .product-hero__info {
    grid-column: 1;
  }

  .product-hero__gallery {
    grid-column: 2;
  }

  .product-hero__actions {
    margin-top: 0.5rem;
  }
}

/* Mobile fixed product CTAs */
.product-cta-bar {
  position: fixed;
  bottom: 1rem;
  inset-inline: 1rem;
  z-index: 1040;
}

.product-cta-bar .btn-nst {
  padding: 0.875rem 0.5rem;
  font-size: 0.875rem;
  box-shadow: var(--shadow-accent-lg);
}

.product-cta-bar .btn-nst-outline {
  background: #fff;
  box-shadow: var(--shadow-md);
}

.product-gallery__main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  margin-bottom: 1rem;
  background: #F4F6FA;
}

.product-gallery__main img {
  border-radius: var(--radius-lg);
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(10, 31, 61, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  z-index: 1;
}

.product-thumbs {
  display: flex;
  gap: 0.625rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.product-thumbs::-webkit-scrollbar {
  display: none;
}

.product-thumb {
  position: relative;
  flex: 0 0 88px;
  height: 88px;
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  opacity: 0.4;
  transition: opacity 0.3s;
  background: #F4F6FA;
}

.product-thumb.is-active {
  opacity: 1;
}

.product-thumb:hover {
  opacity: 0.7;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.35rem;
}

.product-thumb.is-active::after {
  content: '';
  position: absolute;
  bottom: 0;
  inset-inline: 0;
  height: 3px;
  background: var(--accent);
  z-index: 1;
}

.product-thumb.is-active::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-xl);
  pointer-events: none;
  z-index: 1;
}

.product-info {
  text-align: right;
}

.product-info__title {
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.product-info__en {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  font-family: var(--ff-regular);
  margin-bottom: 1rem;
}

.product-info__overview {
  color: rgba(10, 31, 61, 0.75);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.product-info__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.product-model {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(10, 31, 61, 0.05);
  border: 1px solid rgba(10, 31, 61, 0.15);
  border-radius: var(--radius-lg);
  padding: 0.375rem 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
}

.product-model span:last-child {
  font-weight: 700;
  color: var(--primary);
  font-family: var(--ff-regular);
}

.product-features {
  margin-bottom: 2rem;
}

.product-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-bottom: 0.625rem;
  font-size: 0.875rem;
  color: rgba(10, 31, 61, 0.8);
}

.product-size-block {
  margin-bottom: 2rem;
}

.product-features__check {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: var(--cat-color, var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.6875rem;
}

.product-info__buy-btn.btn-nst-primary {
  background: var(--cat-color, var(--accent));
  border-color: var(--cat-color, var(--accent));
}

.product-info__buy-btn.btn-nst-primary:hover {
  background: color-mix(in srgb, var(--cat-color, var(--accent)) 88%, #000);
  border-color: color-mix(in srgb, var(--cat-color, var(--accent)) 88%, #000);
  box-shadow: 0 12px 28px color-mix(in srgb, var(--cat-color, var(--accent)) 35%, transparent);
}

.size-variants {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.size-btn {
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  background: #fff;
  font-family: var(--ff-regular);
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(10, 31, 61, 0.7);
  cursor: pointer;
  transition: all 0.2s;
}

.size-btn.is-active,
.size-btn:hover {
  border-color: #004071;
}

.size-btn.is-active {
  background: #004071;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 64, 113, 0.25);
}

/* Product tabs */
.product-tabs-section {
  padding: 4rem 0;
  background: #F4F6FA;
}

.tabs-pill {
  display: flex;
  overflow-x: auto;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 0.375rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  gap: 0.25rem;
  margin-bottom: 1rem;
  scrollbar-width: none;
}

.tabs-pill::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  flex: 0 0 auto;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--radius-lg);
  background: transparent;
  font-family: var(--ff-regular);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted-foreground);
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
}

.tab-btn.is-active {
  background: #004071;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 64, 113, 0.2);
}

.tab-btn:hover:not(.is-active) {
  background: rgba(228, 234, 242, 0.6);
  color: var(--foreground);
}

.spec-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  text-align: right;
  transition: all 0.2s;
  height: 100%;
}

.spec-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 64, 113, 0.25);
}

.spec-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  gap: 0.75rem;
}

.spec-card__dot {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: var(--radius-lg);
  background: rgba(0, 64, 113, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}

.spec-card__dot::after {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: rgba(0, 64, 113, 0.5);
}

.spec-card:hover .spec-card__dot {
  background: rgba(0, 64, 113, 0.15);
}

.spec-card__name {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin: 0;
}

.spec-card__value {
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.4;
  margin: 0;
}

.desc-highlight {
  background: #fff;
  border: 1px solid var(--border);
  border-right: 4px solid #004071;
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  text-align: right;
}

.desc-highlight p {
  font-size: 0.9375rem;
  line-height: 1.7;
}

.desc-body {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  color: rgba(10, 31, 61, 0.7);
  font-size: 0.9375rem;
  line-height: 1.7;
  text-align: right;
}

.desc-body .table-responsive,
.article-detail__body .table-responsive,
.svc-overview__content .table-responsive,
.description .table-responsive {
  margin: 1rem 0;
}

.desc-body .table,
.article-detail__body .table,
.svc-overview__content .table,
.description .table {
  margin-bottom: 0;
  width: 100%;
}

.desc-body .table thead,
.article-detail__body .table thead,
.svc-overview__content .table thead,
.description .table thead {
  text-align: center;
}

.desc-body .h_iframe-aparat_embed_frame {
  position: relative;
  margin: 1rem 0;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.desc-body .h_iframe-aparat_embed_frame .ratio {
  display: block;
  width: 100%;
  height: auto;
}

.desc-body .h_iframe-aparat_embed_frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: var(--radius-xl);
}

.desc-body iframe {
  max-width: 100%;
  width: 100%;
  border: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

@media (min-width: 992px) {

  .desc-body .h_iframe-aparat_embed_frame,
  .desc-body>iframe,
  .desc-body p>iframe {
    width: 75%;
    margin: 2rem auto;
  }
}

.product-faq-list {
  max-width: 48rem;
}

.related-section__title {
  margin-bottom: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
}

.benefit-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-summary {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: right;
}

@media (min-width: 576px) {
  .review-summary {
    flex-direction: row;
  }
}

.review-summary__score {
  font-size: 3rem;
  font-weight: 800;
  color: #004071;
  line-height: 1;
}

.review-summary__divider {
  width: 1px;
  height: 4rem;
  background: var(--border);
  flex-shrink: 0;
}

.review-summary__bars {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.review-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: flex-end;
}

.review-summary__stars,
.review-card .bi-star-fill,
.review-bar__stars {
  color: var(--accent) !important;
}

.review-summary__stars,
.review-card__stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.review-bar__track {
  height: 0.5rem;
  border-radius: 999px;
  background: var(--accent);
  flex: 1;
  max-width: 200px;
  opacity: 0.2;
}

.review-bar__track.is-full {
  opacity: 1;
}

.review-bar__stars {
  font-size: 0.6875rem;
  display: flex;
  gap: 1px;
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-lg);
  background: #004071;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.faq-cta {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  text-align: center;
}

.related-section {
  padding: 3.5rem 0;
  background: #fff;
  border-top: 1px solid var(--border);
}

.spec-banner {
  background: #004071;
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  text-align: right;
}

@media (min-width: 576px) {
  .spec-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.spec-banner h4 {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.spec-banner p {
  color: rgba(191, 219, 254, 0.7);
  font-size: 0.875rem;
  margin: 0;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #fff;
  margin-bottom: 0.75rem;
  transition: all 0.3s;
}

.faq-item.is-open {
  border-color: rgba(0, 64, 113, 0.4);
  box-shadow: 0 4px 16px rgba(0, 64, 113, 0.08);
}

.faq-item__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border: none;
  background: #fff;
  font-family: var(--ff-regular);
  text-align: right;
  cursor: pointer;
  transition: background 0.2s;
}

.faq-item.is-open .faq-item__btn {
  background: rgba(0, 64, 113, 0.05);
}

.faq-item.is-open .faq-item__btn .bi-chevron-down {
  transform: rotate(180deg);
  color: #004071;
}

.faq-item__btn .bi-chevron-down {
  transition: transform 0.25s;
  flex-shrink: 0;
}

.faq-item__q {
  font-weight: 700;
  font-size: 0.875rem;
  flex: 1;
}

.faq-item.is-open .faq-item__q {
  color: #004071;
}

.faq-item__num {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--ff-regular);
  background: #F4F6FA;
  color: #6B7280;
  flex-shrink: 0;
}

.faq-item.is-open .faq-item__num {
  background: #004071;
  color: #fff;
}

.faq-item__body {
  display: none;
  padding: 0.75rem 1.5rem 1.25rem;
  border-top: 1px solid rgba(0, 64, 113, 0.15);
  background: rgba(0, 64, 113, 0.03);
}

.faq-item.is-open .faq-item__body {
  display: block;
}

.faq-item__body p {
  font-size: 0.875rem;
  color: rgba(10, 31, 61, 0.7);
  line-height: 1.6;
  margin: 0;
  text-align: right;
}

.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  text-align: right;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.review-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 64, 113, 0.2);
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.25rem;
  font-size: 4rem;
  font-family: serif;
  color: rgba(0, 64, 113, 0.06);
  line-height: 1;
}

.related-card {
  height: 100%;
  background: #F4F5F7;
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
  transition: background 0.3s;
  direction: rtl;
}

.related-swiper .swiper-slide {
  height: auto;
}

@media (min-width: 576px) {
  .showcase-track .related-card {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (min-width: 992px) {
  .showcase-track .related-card {
    flex: 0 0 calc(33.333% - 14px);
  }
}

.related-card:hover {
  background: #ECEEF2;
}

.related-card__img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  min-height: 180px;
  flex: 1;
}

.related-card__img {
  max-height: 150px;
  width: auto;
  max-width: 80%;
  object-fit: contain;
  transition: transform 0.5s;
}

.related-card:hover .related-card__img {
  transform: scale(1.05);
}

.related-card__body {
  background: #fff;
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--border);
  text-align: right;
}

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: #050E1C;
  color: #fff;
  position: relative;
}

.site-footer__brand {
  text-align: right;
}

.site-footer__brand p {
  color: rgba(191, 219, 254, 0.45);
  font-size: 0.875rem;
  line-height: 1.8;
  margin: 0;
}

.site-footer__logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  display: block;
}

.site-footer__title {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 1.25rem;
  text-align: right;
}

.site-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer__links a {
  color: rgba(191, 219, 254, 0.55);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.site-footer__links a:hover {
  color: #fff;
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 1.5rem;
}

.site-footer__social a {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.site-footer__social a img {
  width: 1.125rem;
  height: 1.125rem;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.site-footer__social a:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.site-footer__social a:hover img {
  opacity: 1;
}

.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: right;
}

.site-footer__contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(191, 219, 254, 0.55);
  font-size: 0.875rem;
  line-height: 1.7;
}

.site-footer__contact-row i {
  color: var(--accent);
  font-size: 1.125rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.site-footer__phones {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.site-footer__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-block: 0.25rem;
}

.site-footer__sales-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.site-footer__sales-label {
  display: block;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 0.25rem;
}

.site-footer__sales {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.5rem;
  padding: 0.65rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.site-footer__sales-name {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer__sales-phone {
  font-size: 0.875rem;
  color: #fff;
  letter-spacing: 0.02em;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 1.5rem;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
  font-size: .75rem;

}

.site-footer__bottom a,
.site-footer__bottom span {
  color: rgba(191, 219, 254, 1);
}
.site-footer__bottom a b{
  color: var(--accent);
}
@media (min-width: 576px) {
  .site-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: start;
  }
}

.floating-help {
  position: fixed;
  bottom: 1.5rem;
  inset-inline-end: 1.5rem;
  width: 3.25rem;
  height: 3.25rem;
  background: #fff;
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: #050E1C;
  z-index: 1000;
  cursor: pointer;
  transition: transform 0.2s;
}

.floating-help:hover {
  transform: scale(1.08);
}

/* Bootstrap tooltips — فونت سایت */
.tooltip {
  font-family: var(--ff-regular);
}

.tooltip-inner {
  font-family: var(--ff-regular);
  font-size: 0.8125rem;
  font-weight: 500;
}

/* ── Banner image ─────────────────────────────────────────── */
.banner-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

/* Utilities — color */
.text-green {
  color: var(--green);
}

.text-blue {
  color: var(--blue);
}

.text-orange {
  color: var(--orange);
}

.text-navy {
  color: var(--navy);
}

/* Utilities — background */
.bg-green {
  background: var(--green);
}

.bg-blue {
  background: var(--blue);
}

.bg-orange {
  background: var(--orange);
}

.bg-navy {
  background: var(--navy);
}

.bg-green-soft {
  background: var(--green-soft);
}

.bg-green-soft-10 {
  background: var(--green-soft-10);
}

.bg-blue-soft {
  background: var(--blue-soft);
}

.bg-blue-soft-10 {
  background: var(--blue-soft-10);
}

.bg-orange-soft {
  background: var(--orange-soft);
}

.bg-orange-soft-10 {
  background: var(--orange-soft-10);
}

.bg-orange-soft-15 {
  background: var(--orange-soft-15);
}

.bg-orange-soft-20 {
  background: var(--orange-soft-20);
}

.bg-navy-soft {
  background: var(--navy-soft);
}

.bg-navy-soft-10 {
  background: var(--navy-soft-10);
}

/* Utilities — icon filter */
.filter-muted {
  filter: var(--filter-muted);
}

.filter-green {
  filter: var(--filter-green);
}

.filter-blue {
  filter: var(--filter-blue);
}

.filter-orange {
  filter: var(--filter-orange);
}

.filter-navy {
  filter: var(--filter-navy);
}

.hide-scrollbar {
  scrollbar-width: none;
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}