:root {
  --brand-navy: #0b1f3a;
  --brand-navy-rgb: 11, 31, 58;
  --brand-gold: #d4a64a;
  --brand-gold-rgb: 212, 166, 74;
  --brand-gray: #f3f4f6;
  --brand-gray-rgb: 243, 244, 246;
  --deep-navy: #0b1f3a;
  --rich-blue: #d4a64a;
  --cyan-accent: #f3f4f6;
  --white: #ffffff;
  --light-gray: #f3f4f6;
  --hover-glow: rgba(212, 166, 74, 0.25);
  --radius-lg: 22px;
  --radius-md: 16px;
  --glass-border: rgba(243, 244, 246, 0.2);
  --shadow-premium: 0 14px 30px rgba(2, 6, 23, 0.42), 0 3px 10px rgba(2, 6, 23, 0.28);
  --shadow-panel: 0 22px 42px rgba(2, 6, 23, 0.52);
  --speed: 0.3s;
  --page-bg: linear-gradient(180deg, #e8effd 0%, #f5f8ff 45%, #ffffff 100%);
  --page-text: #0f172a;
  --nav-surface: linear-gradient(135deg, rgba(11, 18, 32, 0.92), rgba(15, 23, 42, 0.84));
  --nav-highlight: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.95), rgba(6, 182, 212, 0.95), transparent);
  --panel-surface: linear-gradient(160deg, rgba(11, 18, 32, 0.97), rgba(15, 23, 42, 0.96));
  --footer-surface: linear-gradient(180deg, #0a1222 0%, #08101d 100%);
  --footer-text: #dbe6f5;
  --toggle-bg: rgba(255, 255, 255, 0.08);
  --toggle-color: #ffffff;
  --toggle-border: rgba(255, 255, 255, 0.16);
}

:root[data-background-mode="dark"] {
  --page-bg: linear-gradient(180deg, #020202 0%, #0a0a0a 48%, #161616 100%);
  --nav-surface: linear-gradient(135deg, rgba(8, 8, 8, 0.95), rgba(35, 35, 35, 0.92));
  --nav-highlight: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), rgba(166, 166, 166, 0.85), transparent);
  --panel-surface: linear-gradient(160deg, rgba(16, 16, 16, 0.97), rgba(38, 38, 38, 0.95));
  --footer-surface: linear-gradient(180deg, #050505 0%, #171717 100%);
  --footer-text: #f3f3f3;
  --toggle-bg: rgba(255, 255, 255, 0.12);
  --toggle-color: #ffffff;
  --toggle-border: rgba(255, 255, 255, 0.3);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.06), transparent 28%), linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--speed) ease, background var(--speed) ease;
  z-index: 0;
}

:root[data-background-mode="dark"] body::before {
  opacity: 1;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.04), transparent 22%), linear-gradient(180deg, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0.52) 100%);
}

.site-header,
.site-main,
.site-footer,
.theme-toggle-floating {
  position: relative;
  z-index: 1;
}

:root[data-background-mode="dark"] .site-header,
:root[data-background-mode="dark"] .site-main,
:root[data-background-mode="dark"] .site-footer {
  filter: brightness(0.68) saturate(0.82) contrast(1.02);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: clip;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--page-text);
  background: var(--page-bg);
}

body.menu-open {
  overflow: hidden;
}

.container {
  width: min(1220px, 94vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0.9rem 0 0.55rem;
  background: transparent;
  transition: padding var(--speed) ease;
}

.site-header.is-scrolled {
  padding: 0.45rem 0;
}

body.is-home .site-header {
  padding-bottom: 0;
}

body.is-home .site-header .container.nav-shell {
  border-radius: 20px 20px 0 0;
  border-bottom-color: transparent;
  box-shadow: 0 14px 26px rgba(2, 6, 23, 0.34);
}

.nav-shell {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.3rem;
  min-height: 78px;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  background: var(--nav-surface);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-premium);
  backdrop-filter: blur(14px);
  overflow: visible;
}

.nav-shell::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--nav-highlight);
  opacity: 0.85;
  pointer-events: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--white);
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.01em;
  min-width: 0;
  flex-shrink: 0;
}

.brand-mark {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: linear-gradient(140deg, var(--rich-blue), var(--cyan-accent));
  box-shadow: 0 10px 18px rgba(37, 99, 235, 0.44);
}

.brand-logo {
  width: auto;
  height: 2.5rem;
  max-width: min(170px, 28vw);
  object-fit: contain;
  display: block;
  padding: 0.2rem 0.36rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(var(--brand-gold-rgb), 0.24);
  box-shadow: 0 8px 16px rgba(2, 6, 23, 0.24);
}

.brand-text {
  font-size: 1.2rem;
  font-weight: 700;
}

.primary-nav {
  justify-self: center;
  overflow: visible;
}

.nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  overflow: visible;
}

.nav-item {
  position: relative;
}

.nav-link,
.nav-trigger {
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  border: 0;
  background: transparent;
  border-radius: 999px;
  padding: 0.62rem 0.92rem;
  cursor: pointer;
  transition: color var(--speed) ease, background var(--speed) ease, box-shadow var(--speed) ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  position: relative;
}

.nav-link::after,
.nav-trigger::after {
  content: "";
  position: absolute;
  left: 20%;
  right: 20%;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--rich-blue), var(--cyan-accent));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--speed) ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-trigger:hover,
.nav-trigger:focus-visible,
.nav-item.is-active > .nav-link,
.nav-item.is-active > .nav-trigger,
.nav-item.is-open > .nav-trigger,
.nav-item:hover > .nav-trigger,
.nav-item:focus-within > .nav-trigger {
  color: #e2edff;
  background: rgba(37, 99, 235, 0.2);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.24), 0 0 22px var(--hover-glow);
  outline: none;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-trigger:hover::after,
.nav-trigger:focus-visible::after,
.nav-item.is-active > .nav-link::after,
.nav-item.is-active > .nav-trigger::after,
.nav-item.is-open > .nav-trigger::after,
.nav-item:hover > .nav-trigger::after,
.nav-item:focus-within > .nav-trigger::after {
  transform: scaleX(1);
}

.chevron {
  width: 0.58rem;
  height: 0.58rem;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform var(--speed) ease;
}

.nav-item.is-open > .nav-trigger .chevron,
.nav-item:hover > .nav-trigger .chevron,
.nav-item:focus-within > .nav-trigger .chevron {
  transform: rotate(-135deg) translateX(-1px) translateY(-1px);
}

.panel {
  position: absolute;
  top: calc(100% + 0.8rem);
  left: 0;
  background: linear-gradient(160deg, rgba(11, 18, 32, 0.97), rgba(15, 23, 42, 0.96));
  border: 1px solid rgba(71, 85, 105, 0.4);
  border-radius: 20px;
  box-shadow: var(--shadow-panel);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity var(--speed) ease, transform var(--speed) ease, visibility var(--speed) ease;
}

.has-panel:hover > .panel,
.has-panel:focus-within > .panel,
.has-panel.is-open > .panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.mega-panel {
  width: min(1160px, calc(100vw - 42px));
  left: 50%;
  transform: translate(-50%, 12px);
  padding: 1rem;
}

.nav-item.has-panel[data-menu="services"] {
  position: static;
}

.has-panel:hover > .mega-panel,
.has-panel:focus-within > .mega-panel,
.has-panel.is-open > .mega-panel {
  transform: translate(-50%, 0);
}

.mega-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.95fr) minmax(0, 2.6fr);
  gap: 1.1rem;
}

.mega-categories {
  background: rgba(148, 163, 184, 0.08);
  border: 1px solid rgba(100, 116, 139, 0.32);
  border-radius: 16px;
  padding: 0.9rem;
}

.mega-services-kicker {
  margin: 0;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(var(--brand-gold-rgb), 0.34);
  background: rgba(var(--brand-gold-rgb), 0.1);
  color: #f3dfb0;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.24rem 0.5rem;
}

.mega-categories h3 {
  margin: 0.62rem 0 0;
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  font-size: 1.06rem;
  line-height: 1.35;
}

.mega-categories > p {
  margin: 0.5rem 0 0;
  color: #cddcf0;
  font-size: 0.87rem;
  line-height: 1.58;
}

.mega-services-points {
  margin: 0.62rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.38rem;
}

.mega-services-points li {
  border-radius: 10px;
  border: 1px solid rgba(var(--brand-gold-rgb), 0.18);
  background: rgba(var(--brand-gold-rgb), 0.08);
  color: #d7e5f7;
  font-size: 0.81rem;
  line-height: 1.45;
  padding: 0.36rem 0.5rem;
}

.mega-services-link {
  margin-top: 0.66rem;
  display: inline-flex;
  text-decoration: none;
  color: var(--brand-navy);
  font-size: 0.81rem;
  font-weight: 800;
  border-radius: 999px;
  border: 1px solid rgba(var(--brand-gold-rgb), 0.42);
  background: linear-gradient(130deg, #e0b866 0%, var(--brand-gold) 60%, #f0d79c 100%);
  padding: 0.34rem 0.64rem;
}

.mega-services-link:hover,
.mega-services-link:focus-visible {
  box-shadow: 0 0 0 1px rgba(var(--brand-gold-rgb), 0.3), 0 8px 16px rgba(var(--brand-gold-rgb), 0.2);
  outline: none;
}

.mega-category {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 0.65rem;
  align-items: center;
  text-decoration: none;
  color: var(--light-gray);
  border-radius: 12px;
  padding: 0.56rem;
  margin-bottom: 0.35rem;
  transition: background var(--speed) ease, color var(--speed) ease, box-shadow var(--speed) ease;
}

.mega-category:last-child {
  margin-bottom: 0;
}

.mega-category:hover,
.mega-category:focus-visible,
.mega-category.is-active {
  color: var(--white);
  background: rgba(37, 99, 235, 0.24);
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.34);
  outline: none;
}

.mega-category-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.2);
  border: 1px solid rgba(59, 130, 246, 0.44);
  color: #bfdbfe;
  font-size: 0.79rem;
  font-weight: 700;
}

.mega-category strong {
  display: block;
  font-size: 0.97rem;
  line-height: 1.3;
}

.mega-category small {
  display: block;
  color: #9fb2ce;
  font-size: 0.8rem;
  margin-top: 0.12rem;
}

.mega-content-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  padding: 0.2rem;
}

.mega-content-col {
  padding: 0.4rem 0.6rem;
}

.mega-content-col + .mega-content-col {
  border-left: 1px solid rgba(71, 85, 105, 0.35);
}

.mega-content-col h3 {
  margin: 0 0 0.8rem;
  font-family: "Outfit", sans-serif;
  font-size: 0.96rem;
  color: var(--cyan-accent);
  letter-spacing: 0.01em;
}

.mega-content-col a,
.dropdown-panel a {
  display: block;
  text-decoration: none;
  color: var(--light-gray);
  font-size: 0.9rem;
  line-height: 1.45;
  padding: 0.46rem 0.58rem;
  border-radius: 12px;
  transition: color var(--speed) ease, background var(--speed) ease, box-shadow var(--speed) ease;
}

.mega-content-col a:hover,
.mega-content-col a:focus-visible,
.dropdown-panel a:hover,
.dropdown-panel a:focus-visible {
  color: var(--white);
  background: rgba(37, 99, 235, 0.2);
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.25);
  outline: none;
}

.dropdown-panel {
  width: min(660px, calc(100vw - 42px));
  padding: 0.7rem;
}

.dropdown-layout {
  display: grid;
  grid-template-columns: minmax(196px, 0.95fr) minmax(0, 1.55fr);
  gap: 0.7rem;
  align-items: start;
}

.dropdown-intro {
  border-radius: 14px;
  background: rgba(148, 163, 184, 0.08);
  border: 1px solid rgba(100, 116, 139, 0.32);
  padding: 0.72rem;
}

.dropdown-kicker {
  margin: 0;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(var(--brand-gold-rgb), 0.34);
  background: rgba(var(--brand-gold-rgb), 0.1);
  color: #f3dfb0;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.22rem 0.48rem;
}

.dropdown-intro h3 {
  margin: 0.46rem 0 0;
  font-size: 1rem;
  font-family: "Outfit", sans-serif;
  color: #ffffff;
  line-height: 1.3;
}

.dropdown-intro p {
  margin: 0.34rem 0 0;
  font-size: 0.86rem;
  color: #cddcf0;
  line-height: 1.46;
}

.dropdown-points {
  margin: 0.45rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.26rem;
}

.dropdown-points li {
  border-radius: 10px;
  border: 1px solid rgba(var(--brand-gold-rgb), 0.16);
  background: rgba(var(--brand-gold-rgb), 0.08);
  color: #d7e5f7;
  font-size: 0.77rem;
  line-height: 1.35;
  padding: 0.26rem 0.42rem;
}

.dropdown-intro-link {
  margin-top: 0.5rem;
  display: inline-flex;
  text-decoration: none;
  color: var(--brand-navy);
  font-size: 0.79rem;
  font-weight: 800;
  border-radius: 999px;
  border: 1px solid rgba(var(--brand-gold-rgb), 0.42);
  background: linear-gradient(130deg, #e0b866 0%, var(--brand-gold) 60%, #f0d79c 100%);
  padding: 0.32rem 0.62rem;
}

.dropdown-intro-link:hover,
.dropdown-intro-link:focus-visible {
  box-shadow: 0 0 0 1px rgba(var(--brand-gold-rgb), 0.3), 0 8px 16px rgba(var(--brand-gold-rgb), 0.2);
  outline: none;
}

.dropdown-links-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.2rem;
  border-left: 1px solid rgba(71, 85, 105, 0.35);
  padding-left: 0.62rem;
  align-content: start;
}

.dropdown-links-grid::before {
  content: "";
  position: absolute;
  top: 0.25rem;
  bottom: 0.25rem;
  left: 50%;
  width: 1px;
  transform: translateX(-0.5px);
  background: rgba(71, 85, 105, 0.35);
  pointer-events: none;
}

.dropdown-links-grid a {
  font-size: 0.88rem;
  line-height: 1.35;
  padding: 0.34rem 0.46rem;
  border-radius: 10px;
}

.header-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.locale-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.locale-pill {
  text-decoration: none;
  color: var(--light-gray);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  padding: 0.42rem 0.68rem;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1;
  transition: background var(--speed) ease, color var(--speed) ease, border-color var(--speed) ease, transform var(--speed) ease;
}

.locale-pill:hover,
.locale-pill:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
  outline: none;
  transform: translateY(-1px);
}

.locale-pill.is-active {
  color: #0b1020;
  background: #ffffff;
  border-color: #ffffff;
}

.theme-toggle {
  appearance: none;
  border: 1px solid var(--toggle-border);
  background: var(--toggle-bg);
  color: var(--toggle-color);
  border-radius: 999px;
  padding: 0.68rem 0.95rem;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform var(--speed) ease, background var(--speed) ease, border-color var(--speed) ease, box-shadow var(--speed) ease;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  outline: none;
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}

.theme-toggle[aria-pressed="true"] {
  background: #ffffff;
  color: #0b0b0b;
  border-color: #ffffff;
}

.theme-toggle-floating {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 1400;
  width: 64px;
  min-height: 64px;
  padding: 0.72rem 0.68rem;
  border-radius: 18px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  background: rgba(10, 18, 34, 0.9);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 28px rgba(2, 6, 23, 0.34);
  backdrop-filter: blur(14px);
}

.theme-toggle-floating:hover,
.theme-toggle-floating:focus-visible {
  background: rgba(18, 28, 49, 0.96);
}

.theme-toggle-icon {
  width: 1.3rem;
  height: 1.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.theme-toggle-icon svg {
  width: 100%;
  height: 100%;
}

.theme-toggle-text {
  font-size: 0.62rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.08em;
}

:root[data-background-mode="dark"] .theme-toggle-floating {
  background: rgba(255, 255, 255, 0.96);
  color: #0b0b0b;
  border-color: rgba(15, 15, 15, 0.22);
}

.phone-link {
  text-decoration: none;
  color: var(--light-gray);
  font-size: 0.92rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.46rem 0.72rem;
  transition: background var(--speed) ease, color var(--speed) ease;
}

.phone-link:hover,
.phone-link:focus-visible {
  color: var(--white);
  background: rgba(37, 99, 235, 0.18);
  outline: none;
}

.icon-phone {
  width: 1.65rem;
  height: 1.65rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(6, 182, 212, 0.2);
  border: 1px solid rgba(6, 182, 212, 0.36);
}

.icon-phone svg {
  width: 0.9rem;
  height: 0.9rem;
}

.cta-btn {
  text-decoration: none;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.93rem;
  border-radius: 999px;
  padding: 0.68rem 1.12rem;
  background: linear-gradient(130deg, #2563eb, #3b82f6 45%, #06b6d4);
  box-shadow: 0 14px 24px rgba(37, 99, 235, 0.36);
  transition: transform var(--speed) ease, box-shadow var(--speed) ease, filter var(--speed) ease;
}

.cta-btn:hover,
.cta-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(37, 99, 235, 0.45);
  filter: saturate(1.12);
  outline: none;
}

.menu-toggle {
  display: none;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(37, 99, 235, 0.16);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transition: transform var(--speed) ease, opacity var(--speed) ease;
}

.site-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 8, 23, 0.66);
  z-index: 950;
  opacity: 0;
  transition: opacity var(--speed) ease;
}

.site-backdrop.is-visible {
  opacity: 1;
}

.mobile-meta {
  display: none;
}

.site-main {
  min-height: calc(100vh - 88px);
}

.home-page {
  position: relative;
  padding: 1.35rem 0 2.8rem;
  --home-navy: #052349;
  --home-cobalt: #1d4ed8;
  --home-cyan: #0891b2;
  --home-amber: #d7a65e;
  --home-paper: #fffdf8;
  --home-ink: #0f223d;
  overflow: hidden;
}

.home-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.ambient-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(16px);
  opacity: 0.24;
  animation: ambient-drift 16s ease-in-out infinite alternate;
}

.ambient-orb-a {
  width: clamp(230px, 30vw, 420px);
  height: clamp(230px, 30vw, 420px);
  left: -100px;
  top: 72px;
  background: radial-gradient(circle, rgba(8, 145, 178, 0.56), rgba(8, 145, 178, 0));
}

.ambient-orb-b {
  width: clamp(240px, 34vw, 470px);
  height: clamp(240px, 34vw, 470px);
  right: -130px;
  bottom: 42px;
  animation-delay: 1.4s;
  background: radial-gradient(circle, rgba(215, 166, 94, 0.52), rgba(215, 166, 94, 0));
}

.ambient-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(37, 99, 235, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(37, 99, 235, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.46), transparent 74%);
  opacity: 0.2;
}

.home-shell {
  width: min(1220px, 94vw);
  margin: 0 auto;
  display: grid;
  gap: 1.15rem;
  position: relative;
  z-index: 1;
}

body.is-home .home-page {
  padding-top: 0;
}

body.is-home .home-shell {
  gap: clamp(1.4rem, 2.4vw, 2rem);
}

body.is-home .home-hero {
  border-top: 0;
  border-radius: 0 0 24px 24px;
}

.home-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.84rem;
  border-radius: 0;
  padding: clamp(1rem, 1.8vw, 1.55rem);
  background: linear-gradient(170deg, #3e4354 0%, #3a3f4f 100%);
  color: #f0f8ff;
  border: 1px solid rgba(161, 255, 53, 0.3);
  box-shadow: 0 26px 52px rgba(1, 6, 12, 0.5);
  overflow: hidden;
  isolation: isolate;
}

.techno-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.14;
  background-image: linear-gradient(rgba(180, 255, 76, 0.4) 1px, transparent 1px), linear-gradient(90deg, rgba(180, 255, 76, 0.4) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.42) 44%, rgba(0, 0, 0, 0.9) 100%);
}

.techno-topbar {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.techno-brand-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  color: #edf7ff;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 0.84rem;
}

.techno-brand-mark {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 35%, #ebffd5 0%, #b8ff4f 48%, #84d415 100%);
  box-shadow: 0 0 0 4px rgba(169, 255, 80, 0.18), 0 0 20px rgba(166, 255, 76, 0.64);
}

.techno-brand-text {
  white-space: nowrap;
}

.techno-pill-nav {
  justify-self: center;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.36rem;
}

.techno-pill-nav span {
  border-radius: 999px;
  padding: 0.32rem 0.68rem;
  background: rgba(2, 7, 14, 0.34);
  border: 1px solid rgba(174, 255, 88, 0.26);
  color: #d7ff9e;
  font-size: 0.7rem;
  font-weight: 800;
}

.techno-pill-nav .is-active {
  color: #112503;
  background: linear-gradient(150deg, #ceff6a 0%, #98df1f 100%);
  border-color: rgba(0, 0, 0, 0.2);
  box-shadow: 0 8px 16px rgba(151, 223, 31, 0.38);
}

.techno-hotline {
  text-decoration: none;
  display: grid;
  justify-items: end;
  gap: 0.12rem;
}

.techno-hotline small {
  color: #bdff6b;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.techno-hotline strong {
  color: #f6fcff;
  font-size: clamp(1.04rem, 2.1vw, 1.62rem);
  line-height: 1;
}

.hero-copy {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 0.72rem;
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.techno-visual-stage {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
}

.techno-avatar-frame {
  width: min(520px, 72vw);
  aspect-ratio: 2.25 / 1;
  border-radius: 999px;
  border: 4px solid #9de336;
  background: linear-gradient(180deg, #fdfefe 0%, #eef0f1 100%);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.34);
  position: relative;
  overflow: hidden;
}

.techno-avatar-glow {
  position: absolute;
  inset: 18% 28% 8%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(132, 148, 170, 0.24), rgba(132, 148, 170, 0));
}

.techno-avatar-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  padding: 0.2rem 0.8rem 0;
  z-index: 2;
}

.techno-avatar {
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: min(244px, 48vw);
  height: min(278px, 58vw);
  transform: translateX(-50%);
  border-radius: 48% 48% 42% 42% / 56% 56% 44% 44%;
  background:
    radial-gradient(circle at 52% 18%, #4d3328 0 16%, transparent 17%),
    radial-gradient(circle at 49% 32%, #d8a981 0 24%, transparent 25%),
    radial-gradient(ellipse at 50% 94%, #121820 0 35%, transparent 36%),
    linear-gradient(180deg, #f3c6a2 0%, #e4af88 37%, #151d24 38%, #121820 100%);
  filter: saturate(0.86) contrast(1.02);
}

.home-hero h1 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.9rem, 4.8vw, 3.7rem);
  line-height: 0.98;
  letter-spacing: 0.08em;
  color: #f8fdff;
  text-transform: uppercase;
}

.home-hero h1 span {
  display: block;
  color: #f8fdff;
}

.home-hero h1 em {
  display: block;
  margin-top: 0.16rem;
  color: #b8ff4f;
  font-style: normal;
}

.hero-lead {
  margin: 0;
  max-width: 62ch;
  color: #d2d9e6;
  font-size: 0.95rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}

.hero-vr {
  border-radius: 0;
  border: 1px solid rgba(72, 121, 255, 0.4);
  background: linear-gradient(125deg, #111846 0%, #0d1848 45%, #3a0d26 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 0;
  padding: 0;
  min-height: clamp(420px, 52vw, 540px);
}

.hero-vr-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  z-index: 1;
  background-image: radial-gradient(circle at 20% 20%, #ffffff 1px, transparent 1.6px);
  background-size: 20px 20px;
}

.hero-vr-left,
.hero-vr-right {
  position: relative;
  z-index: 2;
}

.hero-vr-left {
  padding: clamp(1rem, 2.6vw, 1.6rem);
  display: grid;
  align-content: center;
  gap: 0.58rem;
}

.hero-vr-topline {
  display: grid;
  gap: 0.26rem;
  margin-bottom: 0.25rem;
}

.hero-vr-topline span {
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(123, 104, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 72%, rgba(255, 255, 255, 0) 100%);
}

.hero-vr-topline span:last-child {
  width: 88%;
}

.hero-vr-kicker {
  margin: 0;
  color: #d6ddff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-vr h1 {
  margin: 0;
  text-transform: uppercase;
  font-size: clamp(1.7rem, 4.2vw, 3.2rem);
  line-height: 0.98;
  color: #f5f8ff;
  letter-spacing: 0.03em;
  max-width: 11ch;
}

.hero-vr-subtitle {
  margin: 0.16rem 0 0;
  color: #d9deff;
  font-size: clamp(0.98rem, 1.7vw, 1.55rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.hero-vr .hero-lead {
  color: #b8c4f6;
  max-width: 45ch;
}

.hero-vr .hero-actions {
  justify-content: flex-start;
  margin-top: 0.2rem;
}

.hero-vr-right {
  border-left: 2px solid rgba(50, 123, 255, 0.45);
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%, 8% 52%);
  background: linear-gradient(160deg, rgba(5, 14, 42, 0.52), rgba(72, 11, 41, 0.38));
  overflow: hidden;
  display: grid;
  align-items: end;
}

.hero-vr-image,
.hero-vr-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-vr-fallback {
  background:
    radial-gradient(circle at 35% 32%, rgba(106, 74, 255, 0.62), rgba(106, 74, 255, 0) 38%),
    radial-gradient(circle at 60% 58%, rgba(255, 33, 146, 0.38), rgba(255, 33, 146, 0) 44%),
    linear-gradient(150deg, #0d173f 0%, #1f0f38 58%, #411224 100%);
}

.hero-future {
  border-radius: 0;
  border: 1px solid rgba(104, 186, 255, 0.36);
  background: linear-gradient(150deg, #061739 0%, #071d49 44%, #072053 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.95fr);
  align-items: stretch;
  gap: 0;
  padding: 0;
  min-height: clamp(410px, 49vw, 530px);
}

.hero-future-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.22;
  background-image:
    linear-gradient(120deg, rgba(111, 199, 255, 0.26) 0%, transparent 42%),
    repeating-linear-gradient(30deg, rgba(107, 187, 255, 0.2) 0 1px, transparent 1px 50px);
}

.hero-future-topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  padding: 0.9rem 1rem 0;
}

.hero-future-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #d4edff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.hero-future-mark {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 2px solid rgba(111, 208, 255, 0.9);
  transform: rotate(45deg);
  box-shadow: 0 0 20px rgba(98, 184, 255, 0.46);
}

.hero-future-links {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.36rem;
}

.hero-future-links span {
  border-radius: 999px;
  padding: 0.3rem 0.62rem;
  border: 1px solid rgba(154, 204, 255, 0.26);
  background: rgba(2, 15, 44, 0.34);
  color: #d8e9ff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.hero-future-links .is-active {
  border-color: rgba(193, 230, 255, 0.65);
  background: rgba(143, 198, 255, 0.2);
}

.hero-future-left,
.hero-future-right {
  position: relative;
  z-index: 2;
}

.hero-future-left {
  padding: clamp(1rem, 2.4vw, 1.6rem);
  padding-top: clamp(3.5rem, 5vw, 4.2rem);
  display: grid;
  align-content: center;
  gap: 0.5rem;
}

.hero-future-left h1 {
  margin: 0;
  font-size: clamp(1.9rem, 4.5vw, 3.8rem);
  line-height: 0.95;
  color: #e8f8ff;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-future-left h1 span {
  display: block;
  color: #66d8ff;
  font-weight: 600;
}

.hero-future-left h1 em {
  color: #f9fdff;
  font-style: normal;
  font-weight: 800;
}

.hero-future-subtitle {
  margin: 0;
  color: #bcdfff;
  font-size: clamp(1rem, 1.8vw, 1.5rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-future .hero-lead {
  max-width: 46ch;
  color: #9ec4e8;
}

.hero-future .hero-actions {
  justify-content: flex-start;
  margin-top: 0.24rem;
}

.hero-future-right {
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%, 0 62%);
  border-left: 2px solid rgba(102, 178, 255, 0.4);
  background: linear-gradient(160deg, rgba(6, 16, 41, 0.55), rgba(10, 22, 62, 0.36));
  overflow: hidden;
}

.hero-future-image,
.hero-future-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-future-fallback {
  background:
    radial-gradient(circle at 30% 30%, rgba(41, 166, 255, 0.55), rgba(41, 166, 255, 0) 38%),
    radial-gradient(circle at 68% 52%, rgba(73, 113, 255, 0.42), rgba(73, 113, 255, 0) 42%),
    linear-gradient(145deg, #061739 0%, #092557 54%, #102f67 100%);
}

.techno-orb {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  z-index: 1;
  filter: blur(0.4px);
}

.techno-orb-a {
  width: clamp(76px, 9vw, 110px);
  height: clamp(76px, 9vw, 110px);
  top: 13%;
  left: -22px;
  background: radial-gradient(circle at 34% 34%, #edffd6 0%, #bfff66 56%, #74c612 100%);
  animation: techno-float 6.5s ease-in-out infinite;
}

.techno-orb-b {
  width: clamp(68px, 8vw, 94px);
  height: clamp(68px, 8vw, 94px);
  right: -16px;
  bottom: 10%;
  background: radial-gradient(circle at 36% 36%, #ecffd9 0%, #beff69 55%, #76ca16 100%);
  animation: techno-float 7.3s ease-in-out infinite reverse;
}

.techno-orb-c {
  width: clamp(70px, 8vw, 96px);
  height: clamp(70px, 8vw, 96px);
  right: 8%;
  top: 58%;
  background: radial-gradient(circle at 36% 34%, #5b5f6a 0%, #1f232d 62%, #101219 100%);
  animation: techno-float 8.2s ease-in-out infinite;
}

.techno-dots {
  position: absolute;
  width: 104px;
  height: 84px;
  background-image: radial-gradient(circle, rgba(186, 255, 95, 0.72) 1.5px, transparent 2px);
  background-size: 18px 18px;
  pointer-events: none;
  z-index: 1;
}

.techno-dots-left {
  left: 3.2%;
  bottom: 22%;
}

.techno-dots-right {
  right: 4%;
  top: 22%;
}

.techno-floor {
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -24px;
  height: 128px;
  pointer-events: none;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(154, 232, 48, 0.15), transparent 65%),
    repeating-linear-gradient(110deg, rgba(155, 230, 53, 0.26) 0 2px, transparent 2px 42px),
    repeating-linear-gradient(160deg, rgba(155, 230, 53, 0.16) 0 2px, transparent 2px 46px);
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0) 96%);
}

@keyframes techno-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.7rem 1.12rem;
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  transition: transform var(--speed) ease, box-shadow var(--speed) ease, background var(--speed) ease, color var(--speed) ease;
}

.home-btn-primary {
  color: #ffffff;
  background: linear-gradient(130deg, #1366d1 0%, #0f84c4 52%, #0ba5a4 100%);
  box-shadow: 0 14px 24px rgba(4, 52, 119, 0.4);
}

.home-btn-primary:hover,
.home-btn-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(4, 52, 119, 0.5);
  outline: none;
}

.home-btn-secondary {
  color: #ecf6ff;
  border: 1px solid rgba(209, 232, 255, 0.52);
  background: rgba(7, 21, 46, 0.48);
}

.home-btn-secondary:hover,
.home-btn-secondary:focus-visible {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.16);
  outline: none;
}

.hero-command {
  border-radius: 20px;
  padding: 0.92rem;
  background: linear-gradient(180deg, rgba(2, 16, 39, 0.86), rgba(4, 38, 76, 0.86));
  border: 1px solid rgba(182, 213, 247, 0.28);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  position: relative;
  z-index: 2;
}

.command-heading {
  margin-bottom: 0.62rem;
}

.command-kicker {
  margin: 0;
  color: #9dd8ff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-command h2 {
  margin: 0;
  font-size: 1.1rem;
  color: #f4fbff;
  font-family: "Outfit", sans-serif;
  line-height: 1.32;
}

.command-stats {
  margin-top: 0.7rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.56rem;
}

.command-stat {
  border-radius: 13px;
  padding: 0.62rem;
  background: rgba(11, 116, 145, 0.18);
  border: 1px solid rgba(153, 202, 255, 0.24);
}

.command-value {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.command-label {
  margin-top: 0.28rem;
  display: block;
  color: #b7d9f7;
  font-size: 0.76rem;
}

.command-contact {
  margin-top: 0.62rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.command-contact a {
  text-decoration: none;
  color: #d5ebff;
  font-size: 0.84rem;
  font-weight: 700;
  border-radius: 999px;
  border: 1px solid rgba(177, 210, 245, 0.34);
  padding: 0.35rem 0.62rem;
  background: rgba(7, 20, 42, 0.45);
}

.command-contact a:hover,
.command-contact a:focus-visible {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.64);
  outline: none;
}

.command-inline-link {
  display: inline-flex;
  margin-top: 0.66rem;
  color: #f6d9a8;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
}

.command-inline-link:hover,
.command-inline-link:focus-visible {
  color: #ffe9c6;
  text-decoration: underline;
  outline: none;
}

.home-signal-bar {
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) minmax(0, 1.9fr);
  gap: 0.82rem;
  align-items: stretch;
}

.signal-intro {
  border-radius: 22px;
  border: 1px solid rgba(var(--brand-gold-rgb), 0.25);
  background: linear-gradient(145deg, rgba(var(--brand-navy-rgb), 0.96) 0%, rgba(22, 50, 84, 0.94) 100%);
  color: var(--brand-gray);
  padding: clamp(1rem, 1.8vw, 1.3rem);
  box-shadow: 0 16px 28px rgba(7, 25, 47, 0.18);
}

.signal-kicker {
  margin: 0;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(var(--brand-gold-rgb), 0.34);
  color: #f3dfb0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.62rem;
}

.signal-intro h2 {
  margin: 0.64rem 0 0;
  color: #ffffff;
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  line-height: 1.12;
  max-width: 15ch;
}

.signal-intro p {
  margin: 0.56rem 0 0;
  color: rgba(var(--brand-gray-rgb), 0.86);
  line-height: 1.62;
  max-width: 52ch;
}

.signal-actions {
  margin-top: 0.78rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.52rem;
}

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

.signal-item {
  border-radius: 18px;
  border: 1px solid rgba(var(--brand-navy-rgb), 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(var(--brand-gray-rgb), 0.96) 100%);
  padding: 0.8rem 0.9rem;
  box-shadow: 0 14px 28px rgba(7, 25, 47, 0.1);
  animation: rise-up 0.62s ease both;
  display: grid;
  align-content: start;
}

.signal-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  color: var(--brand-navy);
  border: 1px solid rgba(var(--brand-gold-rgb), 0.35);
  background: linear-gradient(145deg, #efd8a3 0%, #dfbd72 100%);
  box-shadow: 0 10px 20px rgba(var(--brand-gold-rgb), 0.22);
  margin-bottom: 0.45rem;
}

.signal-icon svg {
  width: 1.1rem;
  height: 1.1rem;
}

.signal-value {
  display: block;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--brand-navy);
  line-height: 1.05;
}

.signal-label {
  display: block;
  margin-top: 0.18rem;
  font-size: 0.82rem;
  color: rgba(var(--brand-navy-rgb), 0.74);
  line-height: 1.45;
}

.signal-chip {
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(var(--brand-gold-rgb), 0.35);
  color: #9a7425;
  background: rgba(var(--brand-gold-rgb), 0.14);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.22rem 0.48rem;
  margin: 0 0 0.28rem;
}

.signal-item-cta a {
  margin-top: 0.45rem;
  display: inline-flex;
  text-decoration: none;
  color: var(--brand-navy);
  font-size: 0.9rem;
  font-weight: 700;
}

.signal-item-cta a:hover,
.signal-item-cta a:focus-visible {
  color: #173255;
  text-decoration: underline;
  outline: none;
}

.signal-item-cta {
  background: linear-gradient(160deg, rgba(var(--brand-gold-rgb), 0.18) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.signal-item:nth-child(2) {
  animation-delay: 0.08s;
}

.signal-item:nth-child(3) {
  animation-delay: 0.16s;
}

.signal-item:nth-child(4) {
  animation-delay: 0.24s;
}

@keyframes client-logos-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.home-section {
  position: relative;
  border-radius: 24px;
  padding: 1.1rem;
  border: 1px solid rgba(177, 205, 236, 0.6);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(244, 250, 255, 0.96) 100%);
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.home-section::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: -10px;
  width: 120px;
  height: 120px;
  opacity: 0.08;
  pointer-events: none;
  background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%230d356a' stroke-width='4'%3E%3Ccircle cx='60' cy='60' r='28'/%3E%3Ccircle cx='60' cy='60' r='46'/%3E%3Cpath d='M16 60h18M86 60h18M60 16v18M60 86v18'/%3E%3C/g%3E%3C/svg%3E");
}

.home-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.section-kicker {
  margin: 0 0 0.2rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0f4e8a;
}

.home-section h2 {
  margin: 0;
  font-size: clamp(1.28rem, 2.2vw, 1.74rem);
  line-height: 1.24;
  color: #10243f;
}

.section-link {
  white-space: nowrap;
  text-decoration: none;
  color: #0d4f8f;
  font-weight: 700;
  font-size: 0.88rem;
}

.section-link:hover,
.section-link:focus-visible {
  color: #0f223d;
  text-decoration: underline;
  outline: none;
}

.home-grid {
  display: grid;
  gap: 0.74rem;
}

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

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

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

.home-grid-resources {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-layout,
.industry-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.8fr);
  gap: 0.76rem;
}

.service-feature,
.industry-feature {
  background: linear-gradient(180deg, rgba(10, 48, 96, 0.96) 0%, rgba(9, 73, 130, 0.96) 100%);
  border-color: rgba(154, 202, 248, 0.4);
}

.service-feature h3,
.industry-feature h3 {
  color: #ffffff;
  font-size: 1.18rem;
}

.service-feature p,
.industry-feature p,
.service-feature .resource-label,
.industry-feature .resource-label {
  color: #d7ecff;
}

.service-feature a,
.industry-feature a {
  color: #f6d9a8;
}

.service-feature a:hover,
.service-feature a:focus-visible,
.industry-feature a:hover,
.industry-feature a:focus-visible {
  color: #ffebc8;
}

/* ── Service card category badge ───────────────────────────── */
.svc-badge {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.2rem 0.52rem;
  margin-bottom: 0.46rem;
  background: rgba(var(--brand-gold-rgb), 0.1);
  border: 1px solid rgba(var(--brand-gold-rgb), 0.28);
  color: #e8c97a;
}

/* Per-category left accent + badge tint */
.svc-cat-managed-it    { border-left: 3px solid #3b82f6; }
.svc-cat-support       { border-left: 3px solid #06b6d4; }
.svc-cat-cloud         { border-left: 3px solid #8b5cf6; }
.svc-cat-security      { border-left: 3px solid #ef4444; }
.svc-cat-hardware      { border-left: 3px solid #f59e0b; }
.svc-cat-maintenance   { border-left: 3px solid #10b981; }

.svc-cat-managed-it   .svc-badge { background: rgba(59,130,246,0.12); border-color: rgba(59,130,246,0.35); color: #93c5fd; }
.svc-cat-support      .svc-badge { background: rgba(6,182,212,0.12);  border-color: rgba(6,182,212,0.35);  color: #67e8f9; }
.svc-cat-cloud        .svc-badge { background: rgba(139,92,246,0.12); border-color: rgba(139,92,246,0.35); color: #c4b5fd; }
.svc-cat-security     .svc-badge { background: rgba(239,68,68,0.12);  border-color: rgba(239,68,68,0.35);  color: #fca5a5; }
.svc-cat-hardware     .svc-badge { background: rgba(245,158,11,0.12); border-color: rgba(245,158,11,0.35); color: #fcd34d; }
.svc-cat-maintenance  .svc-badge { background: rgba(16,185,129,0.12); border-color: rgba(16,185,129,0.35); color: #6ee7b7; }

.home-section-dark {
  background: linear-gradient(145deg, #07152d 0%, #083267 56%, #046f89 100%);
  border: 1px solid rgba(134, 184, 237, 0.34);
}

.home-section-dark::after {
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%23f4d8a8' stroke-width='4'%3E%3Cpath d='M16 60h88M60 16v88'/%3E%3Ccircle cx='60' cy='60' r='30'/%3E%3C/g%3E%3C/svg%3E");
}

.home-section-dark .section-kicker {
  color: #f3d7a7;
}

.home-section-dark h2 {
  color: #f1f9ff;
}

.home-section-dark .step-card {
  background: rgba(2, 16, 38, 0.52);
  border-color: rgba(154, 202, 248, 0.28);
}

.home-section-dark .step-card h3 {
  color: #f4fbff;
}

.home-section-dark .step-card p {
  color: #c6dcf5;
}

.home-section-dark .step-icon {
  color: #0f2440;
  border-color: rgba(246, 217, 168, 0.45);
  background: linear-gradient(140deg, #f6d9a8 0%, #ffdca6 100%);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.home-section-dark .step-index {
  color: #f6d9a8;
  border-color: rgba(246, 217, 168, 0.55);
  background: rgba(246, 217, 168, 0.16);
}

.home-card {
  border-radius: 18px;
  border: 1px solid #d2e2f2;
  background: #ffffff;
  padding: 0.92rem;
  transition: transform var(--speed) ease, box-shadow var(--speed) ease, border-color var(--speed) ease;
}

.home-card:hover,
.home-card:focus-within {
  transform: translateY(-3px);
  border-color: #92bee6;
  box-shadow: 0 16px 28px rgba(6, 37, 72, 0.14);
}

.home-card h3 {
  margin: 0;
  font-size: 1.02rem;
  color: #10243f;
}

.home-card p {
  margin: 0.45rem 0 0;
  color: #476386;
  line-height: 1.6;
  font-size: 0.9rem;
}

.home-card a {
  margin-top: 0.66rem;
  display: inline-flex;
  text-decoration: none;
  color: #0d4f8f;
  font-weight: 700;
  font-size: 0.86rem;
}

.home-card a:hover,
.home-card a:focus-visible {
  color: #0b396d;
  text-decoration: underline;
  outline: none;
}

.step-card {
  background: linear-gradient(180deg, #ffffff 0%, #f5faff 100%);
}

.step-icon {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  color: #ffffff;
  border: 1px solid rgba(13, 79, 143, 0.15);
  background: linear-gradient(140deg, #0f4b8e 0%, #1182b8 100%);
  box-shadow: 0 10px 20px rgba(13, 79, 143, 0.25);
  margin-bottom: 0.48rem;
}

.step-icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  padding: 0.2rem 0.48rem;
  border-radius: 999px;
  background: rgba(13, 79, 143, 0.12);
  border: 1px solid rgba(13, 79, 143, 0.35);
  color: #0d4f8f;
  font-size: 0.78rem;
  font-weight: 800;
}

.resource-label {
  margin: 0;
  color: #0f4e8a;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── Industry link list ────────────────────────────────────── */
.section-sub {
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
  color: #5a7899;
  max-width: 58ch;
  line-height: 1.6;
}

.industry-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  border-top: 1px solid rgba(177, 205, 236, 0.7);
}

.industry-list-item {
  border-bottom: 1px solid rgba(177, 205, 236, 0.7);
}

.industry-list-link {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) 1fr auto;
  align-items: center;
  gap: 1.2rem;
  padding: 1rem 0.5rem;
  text-decoration: none;
  transition: background 0.18s ease, padding-left 0.18s ease;
  border-radius: 8px;
}

.industry-list-link:hover,
.industry-list-link:focus-visible {
  background: rgba(var(--brand-navy-rgb), 0.035);
  padding-left: 1rem;
  outline: none;
}

.industry-list-name {
  font-family: "Outfit", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-navy);
  line-height: 1.3;
}

.industry-list-desc {
  font-size: 0.9rem;
  color: #5a7899;
  line-height: 1.55;
}

.industry-list-arrow {
  display: flex;
  align-items: center;
  color: var(--brand-gold);
  transition: transform 0.18s ease;
}

.industry-list-link:hover .industry-list-arrow,
.industry-list-link:focus-visible .industry-list-arrow {
  transform: translateX(4px);
}

/* ── Trusted by strip ───────────────────────────────────────── */
.client-logos-section {
  padding: 1.2rem 1.4rem;
  border-radius: 20px;
  border: 1px solid rgba(177, 205, 236, 0.5);
  background: linear-gradient(180deg, rgba(255,255,255,0.97) 0%, rgba(244,250,255,0.97) 100%);
  overflow: hidden;
}

.trusted-by-label {
  margin: 0 0 0.9rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8aa5c0;
  text-align: center;
}

.client-logos-section.is-scrolling .client-logos-grid {
  margin-top: 0;
  display: flex;
  gap: 0.66rem;
  width: max-content;
  animation: client-logos-marquee var(--logos-scroll-duration, 24s) linear infinite;
}

.client-logos-section.is-scrolling .client-logo-tile {
  width: clamp(155px, calc((100vw - 220px) / var(--logos-visible, 6)), 230px);
  flex: 0 0 auto;
}

.client-logos-section.is-scrolling:hover .client-logos-grid,
.client-logos-section.is-scrolling:focus-within .client-logos-grid {
  animation-play-state: paused;
}

.client-logos {
  position: relative;
  border-radius: 24px;
  padding: 1.08rem;
  border: 1px solid rgba(177, 205, 236, 0.62);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(244, 250, 255, 0.96) 100%);
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.client-logos::before {
  content: "";
  position: absolute;
  left: -24px;
  top: -30px;
  width: 170px;
  height: 170px;
  opacity: 0.14;
  pointer-events: none;
  background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%230d4f8f' stroke-width='4'%3E%3Ccircle cx='60' cy='60' r='44'/%3E%3Cpath d='M16 60h88M60 16v88'/%3E%3C/g%3E%3C/svg%3E");
}

.client-logos-grid {
  margin-top: 0.72rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.66rem;
}

.partner-intro {
  margin: 0.54rem 0 0;
  color: rgba(var(--brand-navy-rgb), 0.74);
  font-size: 0.9rem;
}

/* ── Technology Partners section ───────────────────────────── */
.tech-partners-section {
  background: linear-gradient(145deg, rgba(var(--brand-navy-rgb), 0.97) 0%, rgba(21,52,91,0.94) 100%);
  border: 1px solid rgba(var(--brand-gold-rgb), 0.22);
}

.tech-partners-section .section-kicker {
  color: #e8c97a;
}

.tech-partners-section h2 {
  color: #ffffff;
}

.tech-partners-section p.partner-intro {
  color: rgba(255,255,255,0.72);
}

.tech-partners-section .partner-chip-list {
  margin-top: 0.9rem;
}

.tech-partners-section .partner-chip {
  border-color: rgba(var(--brand-gold-rgb), 0.38);
  background: rgba(var(--brand-gold-rgb), 0.12);
  color: #f3dfb0;
  font-size: 0.8rem;
  padding: 0.38rem 0.72rem;
}

.partner-chip-more {
  border-style: dashed;
  opacity: 0.72;
}

/* ── Partner logo grid ─────────────────────────────────────── */
.tech-partner-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 0.72rem;
}

.tech-partner-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(var(--brand-gold-rgb), 0.18);
  padding: 0.72rem 0.9rem;
  min-height: 72px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.tech-partner-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

.tech-partner-tile img {
  max-width: 100%;
  max-height: 38px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.tech-partner-name {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--brand-navy);
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.partner-chip-list {
  margin-top: 0.45rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.partner-chip {
  border-radius: 999px;
  border: 1px solid rgba(var(--brand-gold-rgb), 0.28);
  background: rgba(var(--brand-gold-rgb), 0.1);
  color: var(--brand-navy);
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.34rem 0.56rem;
}

.client-logos-viewport {
  margin-top: 0.72rem;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.client-logos.is-scrolling .client-logos-grid {
  margin-top: 0;
  display: flex;
  gap: 0.66rem;
  width: max-content;
  animation: client-logos-marquee var(--logos-scroll-duration, 24s) linear infinite;
}

.client-logos.is-scrolling .client-logo-tile {
  width: clamp(155px, calc((100vw - 220px) / var(--logos-visible, 6)), 230px);
  flex: 0 0 auto;
}

.client-logo-tile {
  min-height: 88px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px dashed #b2cde8;
  background:
    linear-gradient(180deg, #f5f9ff 0%, #e9f2ff 100%),
    repeating-linear-gradient(
      45deg,
      rgba(13, 79, 143, 0.04) 0,
      rgba(13, 79, 143, 0.04) 10px,
      rgba(13, 79, 143, 0.01) 10px,
      rgba(13, 79, 143, 0.01) 20px
    );
  transition: transform var(--speed) ease, border-color var(--speed) ease, box-shadow var(--speed) ease;
}

.client-logo-tile span {
  font-family: "Outfit", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #315891;
  letter-spacing: 0.02em;
  text-align: center;
}

.client-logo-tile a {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  text-decoration: none;
  border-radius: 14px;
}

.client-logo-tile img {
  width: 100%;
  max-width: 170px;
  max-height: 54px;
  object-fit: contain;
  opacity: 1;
  filter: none;
  padding: 0.25rem;
  transition: transform var(--speed) ease, filter var(--speed) ease;
}

.client-logo-tile:hover,
.client-logo-tile:focus-within {
  transform: translateY(-2px);
  border-color: #8ebfe8;
  box-shadow: 0 12px 24px rgba(6, 37, 72, 0.14);
}

.client-logo-tile:hover img,
.client-logo-tile:focus-within img {
  transform: scale(1.02);
  filter: drop-shadow(0 4px 8px rgba(6, 37, 72, 0.2));
}

.client-logos.is-scrolling:hover .client-logos-grid,
.client-logos.is-scrolling:focus-within .client-logos-grid {
  animation-play-state: paused;
}

.home-cta {
  position: relative;
  border-radius: 26px;
  padding: 1.2rem;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) auto;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(140deg, #07152d 0%, #0f4b8e 56%, #1a8a9a 100%);
  color: #dcecff;
  border: 1px solid rgba(154, 202, 248, 0.44);
  box-shadow: 0 22px 36px rgba(2, 6, 23, 0.24);
  overflow: hidden;
}

.home-cta::before {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -44px;
  width: 260px;
  height: 260px;
  opacity: 0.2;
  pointer-events: none;
  background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%23d9ecff' stroke-width='4'%3E%3Ccircle cx='60' cy='60' r='44'/%3E%3Ccircle cx='60' cy='60' r='20'/%3E%3Cpath d='M16 60h88M60 16v88'/%3E%3C/g%3E%3C/svg%3E");
}

.home-cta h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.4rem, 2.5vw, 1.94rem);
}

.home-cta p {
  margin: 0.48rem 0 0;
  color: #cde8ff;
  max-width: 62ch;
  line-height: 1.56;
}

.home-cta-actions {
  display: grid;
  gap: 0.58rem;
}

@keyframes ambient-drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(18px, -14px, 0) scale(1.08);
  }
}

@keyframes floating-tech-drift {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(0, -10px, 0) rotate(3deg);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}

@keyframes rise-up {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-wrap {
  width: min(1100px, 92vw);
  margin: 1.3rem auto;
}

.service-show {
  width: min(1180px, 94vw);
  margin: 1.2rem auto 1.6rem;
  display: grid;
  gap: 0.9rem;
}

.service-show-hero {
  position: relative;
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.34);
  background:
    radial-gradient(circle at 83% 14%, rgba(8, 145, 178, 0.35), transparent 43%),
    radial-gradient(circle at 14% 88%, rgba(215, 166, 94, 0.26), transparent 48%),
    linear-gradient(140deg, #07152e 0%, #083267 58%, #045d76 100%);
  color: #e9f4ff;
  padding: clamp(1rem, 1.8vw, 1.45rem);
  box-shadow: 0 24px 46px rgba(2, 6, 23, 0.24);
  overflow: hidden;
}

.service-show-hero::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -80px;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(11, 146, 175, 0.45), rgba(11, 146, 175, 0));
  pointer-events: none;
}

.service-breadcrumbs {
  margin: 0;
  font-size: 0.78rem;
  color: #c5ddf7;
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  flex-wrap: wrap;
}

.service-breadcrumbs a {
  color: #e6f2ff;
  text-decoration: none;
}

.service-breadcrumbs a:hover,
.service-breadcrumbs a:focus-visible {
  text-decoration: underline;
  outline: none;
}

.service-show-hero-grid {
  margin-top: 0.7rem;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.85fr);
  gap: 0.78rem;
}

.service-show-copy {
  position: relative;
  z-index: 1;
}

.service-kicker {
  margin: 0;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(191, 225, 255, 0.34);
  background: rgba(8, 28, 54, 0.42);
  color: #d8ecff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.32rem 0.62rem;
}

.service-show-copy h1 {
  margin: 0.65rem 0 0;
  font-family: "Outfit", sans-serif;
  color: #ffffff;
  font-size: clamp(1.5rem, 3.6vw, 2.6rem);
  line-height: 1.08;
  max-width: 15ch;
}

.service-show-copy p {
  margin: 0.62rem 0 0;
  max-width: 56ch;
  color: #cbe1f9;
  line-height: 1.6;
}

.service-show-actions {
  margin-top: 0.82rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.58rem;
}

.service-show-meta {
  position: relative;
  z-index: 1;
  border-radius: 18px;
  border: 1px solid rgba(177, 210, 245, 0.3);
  background: rgba(3, 20, 44, 0.6);
  padding: 0.88rem;
}

.service-show-meta h2 {
  margin: 0;
  color: #f5fbff;
  font-size: 1.03rem;
}

.service-show-meta ul {
  margin: 0.62rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.46rem;
}

.service-show-meta li {
  border-radius: 12px;
  border: 1px solid rgba(177, 210, 245, 0.24);
  background: rgba(5, 31, 60, 0.45);
  color: #c8dff8;
  padding: 0.5rem 0.6rem;
  font-size: 0.84rem;
  line-height: 1.45;
}

.service-show-meta a {
  margin-top: 0.64rem;
  display: inline-flex;
  text-decoration: none;
  color: #f5d8a7;
  font-size: 0.85rem;
  font-weight: 800;
}

.service-show-meta a:hover,
.service-show-meta a:focus-visible {
  color: #ffe7c5;
  text-decoration: underline;
  outline: none;
}

.service-show-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.85fr);
  gap: 0.78rem;
}

.service-show-content {
  border-radius: 22px;
  border: 1px solid rgba(177, 205, 236, 0.62);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(244, 250, 255, 0.97) 100%);
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.08);
  padding: clamp(0.95rem, 1.6vw, 1.22rem);
}

.service-show-content h2 {
  margin: 0;
  color: #10243f;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
}

.service-show-content p {
  margin: 0.66rem 0 0;
  color: #465f82;
  line-height: 1.72;
}

.service-show-side {
  display: grid;
  gap: 0.72rem;
  align-content: start;
}

.service-show-side-card {
  border-radius: 18px;
  border: 1px solid #d2e2f2;
  background: #ffffff;
  padding: 0.85rem;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.service-show-side-card h3 {
  margin: 0;
  color: #10243f;
  font-size: 0.98rem;
}

.service-show-side-card p {
  margin: 0.48rem 0 0;
  color: #476386;
  font-size: 0.88rem;
  line-height: 1.56;
}

.service-show-side-card a {
  margin-top: 0.55rem;
  display: block;
  text-decoration: none;
  color: #0d4f8f;
  font-size: 0.85rem;
  font-weight: 700;
}

.service-show-side-card a:hover,
.service-show-side-card a:focus-visible {
  color: #0b396d;
  text-decoration: underline;
  outline: none;
}

.service-related-list {
  margin: 0.52rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.44rem;
}

.service-related-list a {
  margin-top: 0;
  border-radius: 12px;
  border: 1px solid #d6e6f6;
  background: linear-gradient(180deg, #ffffff 0%, #f5faff 100%);
  padding: 0.46rem 0.55rem;
}

.service-show-cta {
  border-radius: 22px;
  border: 1px solid rgba(154, 202, 248, 0.44);
  background: linear-gradient(140deg, #07152d 0%, #0f4b8e 56%, #1a8a9a 100%);
  color: #dcecff;
  box-shadow: 0 22px 36px rgba(2, 6, 23, 0.24);
  padding: clamp(1rem, 1.8vw, 1.25rem);
}

.service-show-cta h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.28rem, 2.2vw, 1.7rem);
}

.service-show-cta p {
  margin: 0.5rem 0 0;
  color: #cfe8ff;
  max-width: 62ch;
}

.blog-index {
  width: min(1180px, 94vw);
  margin: 1.2rem auto 1.6rem;
  display: grid;
  gap: 0.86rem;
}

.blog-active-filter {
  margin-top: 0.65rem;
  font-size: 0.85rem;
  color: #d1e6ff;
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  align-items: center;
}

.blog-active-filter strong {
  color: #ffffff;
  font-weight: 700;
}

.blog-active-filter a {
  color: #f9deb4;
  text-decoration: none;
  font-weight: 700;
}

.blog-active-filter a:hover,
.blog-active-filter a:focus-visible {
  text-decoration: underline;
  outline: none;
}

.blog-index-hero {
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.34);
  background:
    radial-gradient(circle at 84% 18%, rgba(8, 145, 178, 0.35), transparent 44%),
    radial-gradient(circle at 15% 84%, rgba(215, 166, 94, 0.22), transparent 48%),
    linear-gradient(140deg, #07152e 0%, #083267 58%, #045d76 100%);
  color: #e9f4ff;
  padding: clamp(1rem, 1.8vw, 1.35rem);
  box-shadow: 0 24px 46px rgba(2, 6, 23, 0.24);
}

.blog-index-hero h1 {
  margin: 0.62rem 0 0;
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.45rem, 3.4vw, 2.4rem);
  line-height: 1.1;
  max-width: 18ch;
}

.blog-index-hero p {
  margin: 0.55rem 0 0;
  max-width: 64ch;
  color: #cbe1f9;
  line-height: 1.62;
}

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

.blog-filter-bar {
  border-radius: 18px;
  border: 1px solid #d6e6f7;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  padding: 0.72rem;
  display: grid;
  gap: 0.55rem;
}

.blog-filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  align-items: center;
}

.blog-filter-group span {
  color: #29486f;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.blog-filter-chip {
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid #d3e5f6;
  background: #ffffff;
  color: #24507f;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.3rem 0.56rem;
}

.blog-filter-chip.is-active {
  color: #ffffff;
  border-color: rgba(13, 79, 143, 0.18);
  background: linear-gradient(140deg, #0f4b8e 0%, #1182b8 100%);
}

.blog-filter-chip:hover,
.blog-filter-chip:focus-visible {
  border-color: #9fc2e5;
  color: #0b396d;
  outline: none;
}

.blog-post-card {
  border-radius: 18px;
  border: 1px solid #d2e2f2;
  background: linear-gradient(180deg, #ffffff 0%, #f4faff 100%);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
  padding: 0.86rem;
  display: grid;
  align-content: start;
  text-align: left;
}

.blog-post-cover-link {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #d2e2f2;
  margin-bottom: 0.56rem;
}

.blog-post-cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.blog-post-date {
  margin: 0;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid #cfe1f3;
  background: #ffffff;
  color: #45678f;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.24rem 0.52rem;
}

.blog-post-taxonomy {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.36rem;
  align-items: center;
}

.blog-chip {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid #d2e3f4;
  background: #ffffff;
  color: #345778;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.22rem 0.5rem;
}

.blog-chip.is-tag {
  color: #176684;
  border-color: #c7e6f0;
  background: #f2fbff;
}

.blog-chip:hover,
.blog-chip:focus-visible {
  color: #0b396d;
  border-color: #9fc2e5;
  outline: none;
}

.blog-post-card h2 {
  margin: 0.6rem 0 0;
  color: #10243f;
  font-size: 1.02rem;
  line-height: 1.36;
}

.blog-post-card p {
  margin: 0.5rem 0 0;
  color: #476386;
  font-size: 0.9rem;
  line-height: 1.58;
}

.blog-post-read-link {
  margin-top: 0.66rem;
  text-decoration: none;
  color: #0d4f8f;
  font-size: 0.86rem;
  font-weight: 700;
  display: inline-flex;
  width: fit-content;
}

.blog-post-read-link:hover,
.blog-post-read-link:focus-visible {
  color: #0b396d;
  text-decoration: underline;
  outline: none;
}

.blog-pagination {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.44rem;
  align-items: center;
  overflow-x: auto;
  padding-bottom: 0.16rem;
}

.page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.1rem;
  border-radius: 999px;
  border: 1px solid #cfe1f3;
  background: #ffffff;
  color: #0d4f8f;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.38rem 0.64rem;
  white-space: nowrap;
}

.page-link-nav {
  gap: 0.34rem;
  min-width: 6.4rem;
}

.page-link.is-active {
  color: #ffffff;
  border-color: rgba(13, 79, 143, 0.18);
  background: linear-gradient(140deg, #0f4b8e 0%, #1182b8 100%);
}

.page-link.is-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.page-link:not(.is-active):not(.is-disabled):hover,
.page-link:not(.is-active):not(.is-disabled):focus-visible {
  color: #0b396d;
  border-color: #9fc2e5;
  outline: none;
}

.blog-empty-state {
  border-radius: 22px;
  border: 1px solid rgba(177, 205, 236, 0.62);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(244, 250, 255, 0.97) 100%);
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.08);
  padding: clamp(1rem, 1.8vw, 1.3rem);
}

.blog-empty-state h2 {
  margin: 0;
  color: #10243f;
  font-size: clamp(1.22rem, 2.2vw, 1.55rem);
}

.blog-empty-state p {
  margin: 0.5rem 0 0;
  color: #476386;
}

.blog-empty-state .home-btn {
  margin-top: 0.72rem;
}

.blog-post-hero-media {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid #d1e2f3;
  margin-top: 0.72rem;
}

.blog-rich-content {
  margin-top: 0.62rem;
  color: #233f61;
  line-height: 1.75;
  text-align: left;
}

.blog-rich-content h2,
.blog-rich-content h3,
.blog-rich-content h4 {
  color: #10243f;
  margin: 1rem 0 0.45rem;
}

.blog-rich-content p,
.blog-rich-content ul,
.blog-rich-content ol,
.blog-rich-content blockquote {
  margin: 0.62rem 0;
}

.blog-rich-content ul,
.blog-rich-content ol {
  padding-left: 1.2rem;
}

.blog-rich-content a {
  color: #0d4f8f;
}

.blog-rich-content blockquote {
  border-left: 3px solid #9fc2e5;
  padding-left: 0.78rem;
  color: #31557c;
  font-style: italic;
}

.page-card {
  background: #ffffff;
  border: 1px solid #e4e7ec;
  border-radius: 14px;
  padding: 1rem;
  box-shadow: 0 10px 24px rgba(15, 26, 46, 0.07);
}

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

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

.site-footer {
  width: min(1220px, 94vw);
  margin: 1.1rem auto 1.8rem;
}

.site-footer-shell {
  border-radius: 24px;
  border: 1px solid rgba(93, 126, 191, 0.28);
  background: var(--footer-surface);
  box-shadow: 0 28px 56px rgba(2, 6, 23, 0.42);
  padding: clamp(1rem, 2.2vw, 1.4rem);
  color: var(--footer-text);
}

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

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #f3f8ff;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.footer-brand-mark {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(140deg, #2f6de3 0%, #19bfd2 100%);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.38);
}

.footer-brand-logo {
  width: auto;
  height: 2.2rem;
  max-width: min(190px, 42vw);
  object-fit: contain;
  display: block;
  padding: 0.2rem 0.34rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(var(--brand-gold-rgb), 0.24);
  box-shadow: 0 8px 16px rgba(2, 6, 23, 0.28);
}

.footer-brand-col p,
.footer-note {
  margin: 0.6rem 0 0;
  color: #b7cae8;
  font-size: 0.9rem;
  line-height: 1.64;
}

.site-footer h3 {
  margin: 0;
  color: #eef6ff;
  font-family: "Outfit", sans-serif;
  font-size: 1.02rem;
}

.footer-links {
  margin: 0.62rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.46rem;
}

.footer-links a {
  color: #bfd3f0;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #ffffff;
  text-decoration: underline;
  outline: none;
}

.footer-social {
  margin-top: 0.8rem;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.38rem;
}

.footer-social a {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(180, 208, 255, 0.36);
  background: rgba(11, 22, 42, 0.65);
  color: #e6f0ff;
  text-decoration: none;
  transition: transform var(--speed) ease, background var(--speed) ease, color var(--speed) ease, border-color var(--speed) ease;
}

.footer-social a svg {
  width: 16px;
  height: 16px;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  transform: translateY(-2px);
  background: linear-gradient(140deg, #2f6de3 0%, #19bfd2 100%);
  border-color: rgba(230, 245, 255, 0.7);
  color: #ffffff;
  outline: none;
}

.footer-subscribe {
  margin-top: 0.74rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(214, 235, 255, 0.44);
  background: rgba(21, 35, 67, 0.76);
  color: #f2f8ff;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 0.54rem 0.86rem;
}

.footer-subscribe:hover,
.footer-subscribe:focus-visible {
  background: linear-gradient(130deg, #2f6de3 0%, #19bfd2 100%);
  border-color: rgba(240, 248, 255, 0.74);
  outline: none;
}

.footer-bottom {
  margin-top: 1rem;
  padding-top: 0.72rem;
  border-top: 1px solid rgba(164, 192, 236, 0.24);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.4rem;
}

.footer-bottom p {
  margin: 0;
  color: #9db8df;
  font-size: 0.82rem;
}

.footer-bottom a {
  color: #d8ebff;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: #ffffff;
  text-decoration: underline;
  outline: none;
}

@media (max-width: 1140px) {
  .nav-shell {
    border-radius: 22px;
  }

  .nav-link,
  .nav-trigger {
    padding: 0.58rem 0.68rem;
    font-size: 0.9rem;
  }

  .header-meta {
    gap: 0.5rem;
  }

  .phone-link {
    display: none;
  }

  .mega-panel {
    width: min(980px, 92vw);
  }

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

@media (max-width: 1024px) {
  .site-header {
    padding: 0.6rem 0;
  }

  .site-header.is-scrolled {
    padding: 0.35rem 0;
  }

  .nav-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 72px;
    border-radius: 18px;
  }

  .brand-logo {
    height: 2.2rem;
    max-width: min(138px, 42vw);
    padding: 0.16rem 0.28rem;
  }

  .menu-toggle {
    display: inline-flex;
    z-index: 1200;
  }

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

  .header-meta {
    display: none;
  }

  .primary-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(92vw, 430px);
    height: 100dvh;
    padding: 5.5rem 1rem 1.2rem;
    background: var(--panel-surface);
    border-left: 1px solid rgba(71, 85, 105, 0.5);
    box-shadow: var(--shadow-panel);
    transition: right var(--speed) cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    z-index: 1100;
  }

  body.menu-open .primary-nav {
    right: 0;
  }

  body.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  body.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav-list {
    display: block;
  }

  .nav-item {
    border-bottom: 1px solid rgba(71, 85, 105, 0.45);
  }

  .nav-link,
  .nav-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 0.92rem 0.6rem;
    border-radius: 12px;
  }

  .panel,
  .mega-panel,
  .dropdown-panel {
    position: static;
    width: 100%;
    margin: 0;
    border-radius: var(--radius-md);
    border: 1px solid rgba(71, 85, 105, 0.5);
    background: rgba(15, 23, 42, 0.92);
    box-shadow: none;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
    transform: none;
    padding: 0;
    pointer-events: none;
    transition: max-height var(--speed) ease, opacity var(--speed) ease, margin var(--speed) ease;
  }

  .nav-item.has-panel[data-menu="services"] {
    position: relative;
  }

  .has-panel.is-open > .panel {
    max-height: 1100px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    margin: 0 0 0.7rem;
    padding: 0.7rem;
  }

  .has-panel.is-open > .mega-panel {
    left: auto;
    transform: none;
    max-height: 3600px;
    overflow: visible;
  }

  .mega-layout {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .dropdown-layout {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .dropdown-intro h3 {
    font-size: 0.98rem;
  }

  .dropdown-links-grid {
    grid-template-columns: 1fr;
    border-left: 0;
    padding-left: 0;
  }

  .dropdown-links-grid::before {
    display: none;
  }

  .mega-categories {
    padding: 0.45rem;
  }

  .mega-categories h3 {
    font-size: 0.98rem;
  }

  .mega-content-grid {
    grid-template-columns: 1fr;
    gap: 0.55rem;
    padding: 0;
  }

  .mega-content-col {
    padding: 0;
  }

  .mega-content-col + .mega-content-col {
    border-left: 0;
    border-top: 1px solid rgba(71, 85, 105, 0.45);
    padding-top: 0.65rem;
  }

  .mega-content-col h3 {
    color: #7dd3fc;
  }

  .mega-content-col a,
  .dropdown-panel a {
    color: #e2e8f0;
  }

  .mega-content-col a:hover,
  .mega-content-col a:focus-visible,
  .dropdown-panel a:hover,
  .dropdown-panel a:focus-visible {
    color: #ffffff;
    background: rgba(37, 99, 235, 0.2);
  }

  .mobile-meta {
    display: grid;
    gap: 0.7rem;
    margin-top: 1.1rem;
  }

  .mobile-meta .locale-switcher {
    width: 100%;
  }

  .mobile-meta .locale-pill {
    justify-content: center;
    text-align: center;
    flex: 1 1 0;
  }

  .mobile-meta .phone-link {
    display: inline-flex;
  }

  .home-hero {
    grid-template-columns: 1fr;
  }

  .hero-vr {
    grid-template-columns: 1fr;
  }

  .hero-future {
    grid-template-columns: 1fr;
  }

  .hero-vr-right {
    min-height: 280px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    border-left: 0;
    border-top: 2px solid rgba(50, 123, 255, 0.45);
  }

  .hero-future-right {
    min-height: 290px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    border-left: 0;
    border-top: 2px solid rgba(98, 176, 255, 0.4);
  }

  .techno-topbar {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .techno-hotline {
    justify-items: center;
  }

  .hero-vr .hero-actions {
    justify-content: center;
  }

  .hero-future .hero-actions {
    justify-content: center;
  }

  .home-hero h1 {
    max-width: none;
  }

  .hero-command {
    margin-top: 0.35rem;
  }

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

  .home-section-head {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 0.72rem;
  }

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

  .service-show-hero-grid,
  .service-show-layout {
    grid-template-columns: 1fr;
  }

  .service-show-copy h1 {
    max-width: none;
  }

  .home-grid-services,
  .home-grid-industries,
  .home-grid-resources {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-signal-bar {
    grid-template-columns: 1fr;
  }

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

  .service-layout,
  .industry-layout {
    grid-template-columns: 1fr;
  }

  .client-logos-grid {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  }

  .tech-partner-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .partner-chip-list {
    gap: 0.34rem;
  }

  .client-logos.is-scrolling .client-logo-tile {
    width: clamp(150px, calc((100vw - 90px) / var(--logos-visible, 4)), 205px);
  }

  .home-grid-steps {
    grid-template-columns: 1fr;
  }

  .home-cta {
    grid-template-columns: 1fr;
  }

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

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

  .industry-list-link {
    grid-template-columns: 1fr auto;
  }

  .industry-list-desc {
    display: none;
  }
}

@media (max-width: 700px) {
  .home-page {
    padding-top: 1rem;
  }

  .techno-hero::before,
  .home-section::after,
  .home-cta::before {
    opacity: 0.08;
  }

  .techno-pill-nav,
  .techno-hotline small,
  .techno-dots,
  .techno-orb-c {
    display: none;
  }

  .hero-vr-left {
    text-align: center;
    justify-items: center;
  }

  .hero-future-topbar {
    justify-content: center;
    padding-top: 0.72rem;
  }

  .hero-future-logo {
    display: none;
  }

  .hero-future-links {
    justify-content: center;
  }

  .hero-future-left {
    text-align: center;
    justify-items: center;
    padding-top: 3.1rem;
  }

  .hero-future-left h1,
  .hero-future .hero-lead {
    max-width: none;
  }

  .hero-vr h1,
  .hero-vr .hero-lead {
    max-width: none;
  }

  .techno-floor {
    height: 94px;
  }

  .techno-avatar-frame {
    width: min(500px, 92vw);
  }

  .hero-actions,
  .home-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .blog-index-grid {
    grid-template-columns: 1fr;
  }

  .blog-pagination {
    gap: 0.38rem;
    padding-bottom: 0.28rem;
    -webkit-overflow-scrolling: touch;
  }

  .page-link-nav {
    min-width: 5.75rem;
  }

  .service-show-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-trust-badges {
    display: grid;
    grid-template-columns: 1fr;
  }

  .home-btn {
    width: 100%;
  }

  .command-stats {
    grid-template-columns: 1fr;
  }

  .command-contact {
    display: grid;
  }

  .home-grid-services,
  .home-grid-industries,
  .home-grid-resources {
    grid-template-columns: 1fr;
  }

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

  .client-logos-grid {
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  }

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

  .partner-chip {
    font-size: 0.72rem;
  }

  .client-logos.is-scrolling .client-logo-tile {
    width: clamp(138px, calc((100vw - 52px) / 2), 190px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .techno-orb,
  .ambient-orb,
  .signal-item {
    animation: none;
  }
}

body {
  background: linear-gradient(180deg, #eef1f5 0%, #f7f8fa 46%, #ffffff 100%);
}

.nav-shell {
  background: linear-gradient(135deg, rgba(var(--brand-navy-rgb), 0.96), rgba(17, 39, 70, 0.9));
  border-color: rgba(var(--brand-gray-rgb), 0.18);
}

.nav-shell::before {
  background: linear-gradient(90deg, transparent, rgba(var(--brand-gold-rgb), 0.96), rgba(var(--brand-gray-rgb), 0.92), transparent);
}

.brand-mark {
  color: var(--brand-navy);
  background: linear-gradient(145deg, #e0b866, var(--brand-gold));
  box-shadow: 0 10px 18px rgba(var(--brand-gold-rgb), 0.35);
}

.nav-link::after,
.nav-trigger::after {
  background: linear-gradient(90deg, var(--brand-gold), #f0d79c);
}

.mega-content-col h3,
.dropdown-intro h3 {
  background: none;
  color: var(--brand-gold);
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-trigger:hover,
.nav-trigger:focus-visible,
.nav-item.is-active > .nav-link,
.nav-item.is-active > .nav-trigger,
.nav-item.is-open > .nav-trigger,
.nav-item:hover > .nav-trigger,
.nav-item:focus-within > .nav-trigger,
.mega-category:hover,
.mega-category:focus-visible,
.mega-category.is-active,
.mega-content-col a:hover,
.mega-content-col a:focus-visible,
.dropdown-panel a:hover,
.dropdown-panel a:focus-visible,
.phone-link:hover,
.phone-link:focus-visible {
  color: var(--white);
  background: rgba(var(--brand-gold-rgb), 0.18);
  box-shadow: 0 0 0 1px rgba(var(--brand-gold-rgb), 0.26), 0 0 22px rgba(var(--brand-gold-rgb), 0.18);
}

.mega-category-icon,
.icon-phone,
.menu-toggle {
  color: var(--brand-gray);
  background: rgba(var(--brand-gold-rgb), 0.14);
  border-color: rgba(var(--brand-gold-rgb), 0.32);
}

.cta-btn {
  color: var(--brand-navy);
  background: linear-gradient(130deg, #e0b866 0%, var(--brand-gold) 60%, #f0d79c 100%);
  box-shadow: 0 14px 24px rgba(var(--brand-gold-rgb), 0.32);
}

.cta-btn:hover,
.cta-btn:focus-visible {
  box-shadow: 0 18px 30px rgba(var(--brand-gold-rgb), 0.4);
}

.home-page {
  --home-navy: #0b1f3a;
  --home-cobalt: #173255;
  --home-cyan: #f3f4f6;
  --home-amber: #d4a64a;
  --home-paper: #ffffff;
  --home-ink: #10233e;
}

.ambient-orb-a {
  background: radial-gradient(circle, rgba(var(--brand-gold-rgb), 0.4), rgba(var(--brand-gold-rgb), 0));
}

.ambient-orb-b {
  background: radial-gradient(circle, rgba(var(--brand-navy-rgb), 0.24), rgba(var(--brand-navy-rgb), 0));
}

.ambient-grid,
.techno-hero::before {
  background-image: linear-gradient(rgba(var(--brand-gold-rgb), 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(var(--brand-gold-rgb), 0.1) 1px, transparent 1px);
}

.home-hero,
.hero-vr,
.hero-future,
.service-show-hero,
.service-show-cta,
.blog-index-hero {
  border-color: rgba(var(--brand-gold-rgb), 0.28);
  color: var(--brand-gray);
}

.home-hero {
  background: linear-gradient(160deg, #102845 0%, #0b1f3a 62%, #15345b 100%);
}

.home-hero h1 em,
.hero-future-left h1 span,
.hero-future-logo,
.hero-vr-kicker,
.hero-vr-subtitle,
.command-kicker,
.service-kicker,
.blog-filter-group span {
  color: var(--brand-gold);
}

.hero-lead,
.hero-vr .hero-lead,
.hero-future .hero-lead,
.service-show-copy p,
.blog-index-hero p,
.service-breadcrumbs {
  color: rgba(var(--brand-gray-rgb), 0.84);
}

.hero-vr {
  background: linear-gradient(125deg, #0b1f3a 0%, #132c4c 48%, #294a78 100%);
}

.hero-vr-topline span {
  background: linear-gradient(90deg, rgba(var(--brand-gold-rgb), 0.96) 0%, rgba(var(--brand-gray-rgb), 0.9) 72%, rgba(var(--brand-gray-rgb), 0) 100%);
}

.hero-vr-right {
  border-left-color: rgba(var(--brand-gold-rgb), 0.38);
  background: linear-gradient(160deg, rgba(var(--brand-navy-rgb), 0.5), rgba(37, 61, 96, 0.4));
}

.hero-vr-fallback {
  background: radial-gradient(circle at 35% 32%, rgba(var(--brand-gold-rgb), 0.52), rgba(var(--brand-gold-rgb), 0) 38%), radial-gradient(circle at 60% 58%, rgba(var(--brand-gray-rgb), 0.18), rgba(var(--brand-gray-rgb), 0) 44%), linear-gradient(150deg, #0b1f3a 0%, #173255 58%, #2b507e 100%);
}

.hero-future {
  background: linear-gradient(150deg, #0b1f3a 0%, #122c4d 50%, #1a3a62 100%);
}

.hero-future-overlay {
  background-image: linear-gradient(120deg, rgba(var(--brand-gold-rgb), 0.18) 0%, transparent 42%), repeating-linear-gradient(30deg, rgba(var(--brand-gray-rgb), 0.12) 0 1px, transparent 1px 50px);
}

.hero-future-mark,
.hero-future-links .is-active {
  border-color: rgba(var(--brand-gold-rgb), 0.82);
  box-shadow: 0 0 20px rgba(var(--brand-gold-rgb), 0.3);
  background: rgba(var(--brand-gold-rgb), 0.16);
}

.hero-future-links span {
  border-color: rgba(var(--brand-gray-rgb), 0.22);
  background: rgba(var(--brand-navy-rgb), 0.28);
  color: var(--brand-gray);
}

.hero-future-right {
  border-left-color: rgba(var(--brand-gold-rgb), 0.34);
  background: linear-gradient(160deg, rgba(var(--brand-navy-rgb), 0.5), rgba(26, 58, 98, 0.34));
}

.hero-future-fallback {
  background: radial-gradient(circle at 30% 30%, rgba(var(--brand-gold-rgb), 0.48), rgba(var(--brand-gold-rgb), 0) 38%), radial-gradient(circle at 68% 52%, rgba(var(--brand-gray-rgb), 0.16), rgba(var(--brand-gray-rgb), 0) 42%), linear-gradient(145deg, #0b1f3a 0%, #143355 54%, #214a77 100%);
}

.techno-brand-mark,
.techno-pill-nav .is-active,
.techno-orb-a,
.techno-orb-b {
  background: radial-gradient(circle at 35% 35%, #f2dca6 0%, #dfbd72 48%, var(--brand-gold) 100%);
}

.techno-brand-mark {
  box-shadow: 0 0 0 4px rgba(var(--brand-gold-rgb), 0.16), 0 0 20px rgba(var(--brand-gold-rgb), 0.42);
}

.techno-pill-nav span,
.techno-hotline small {
  color: #f3dfb0;
  border-color: rgba(var(--brand-gold-rgb), 0.22);
}

.techno-pill-nav .is-active {
  color: var(--brand-navy);
  box-shadow: 0 8px 16px rgba(var(--brand-gold-rgb), 0.32);
}

.techno-avatar-frame {
  border-color: var(--brand-gold);
  background: linear-gradient(180deg, #ffffff 0%, #f3f4f6 100%);
}

.techno-dots {
  background-image: radial-gradient(circle, rgba(var(--brand-gold-rgb), 0.56) 1.5px, transparent 2px);
}

.techno-floor {
  background: linear-gradient(to top, rgba(var(--brand-gold-rgb), 0.14), transparent 65%), repeating-linear-gradient(110deg, rgba(var(--brand-gold-rgb), 0.22) 0 2px, transparent 2px 42px), repeating-linear-gradient(160deg, rgba(var(--brand-gold-rgb), 0.12) 0 2px, transparent 2px 46px);
}

.home-btn-primary,
.blog-filter-chip.is-active,
.page-link.is-active {
  color: var(--brand-navy);
  background: linear-gradient(135deg, #e0b866 0%, var(--brand-gold) 58%, #f0d79c 100%);
  box-shadow: 0 14px 24px rgba(var(--brand-gold-rgb), 0.26);
}

.home-btn-primary:hover,
.home-btn-primary:focus-visible {
  box-shadow: 0 18px 32px rgba(var(--brand-gold-rgb), 0.34);
}

.home-btn-secondary {
  color: var(--brand-gray);
  border-color: rgba(var(--brand-gray-rgb), 0.34);
  background: rgba(var(--brand-navy-rgb), 0.38);
}

.home-btn-secondary:hover,
.home-btn-secondary:focus-visible {
  border-color: rgba(var(--brand-gold-rgb), 0.68);
  background: rgba(var(--brand-gold-rgb), 0.16);
}

.hero-command,
.service-show-meta,
.service-show-cta,
.blog-index-hero {
  background: linear-gradient(160deg, rgba(var(--brand-navy-rgb), 0.94), rgba(26, 58, 98, 0.9));
  border-color: rgba(var(--brand-gold-rgb), 0.22);
}

.command-stat,
.service-show-meta li {
  background: rgba(var(--brand-gold-rgb), 0.12);
  border-color: rgba(var(--brand-gold-rgb), 0.2);
}

.command-label,
.service-show-meta li,
.blog-active-filter,
.blog-index-hero p,
.service-show-cta p {
  color: rgba(var(--brand-gray-rgb), 0.82);
}

.command-contact a,
.service-show-meta a,
.blog-active-filter a {
  color: #f3dfb0;
  border-color: rgba(var(--brand-gold-rgb), 0.3);
}

.service-show-content,
.service-show-side-card,
.blog-filter-bar,
.blog-post-card,
.blog-empty-state {
  border-color: rgba(var(--brand-navy-rgb), 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(var(--brand-gray-rgb), 0.96) 100%);
}

.service-show-content h2,
.service-show-side-card h3,
.blog-post-card h2,
.blog-empty-state h2,
.blog-rich-content h2,
.blog-rich-content h3,
.blog-rich-content h4,
.page-link,
.blog-post-read-link,
.service-show-side-card a,
.service-related-list a,
.blog-filter-chip,
.blog-chip,
.blog-chip.is-tag {
  color: var(--brand-navy);
}

.service-show-content p,
.service-show-side-card p,
.blog-post-card p,
.blog-empty-state p,
.blog-rich-content,
.blog-filter-group span,
.blog-post-date {
  color: rgba(var(--brand-navy-rgb), 0.76);
}

.service-related-list a,
.blog-post-cover-link,
.blog-post-date,
.blog-chip,
.blog-filter-chip,
.page-link,
.blog-post-hero-media {
  border-color: rgba(var(--brand-gold-rgb), 0.24);
}

.service-related-list a,
.blog-chip,
.blog-filter-chip,
.page-link {
  background: #ffffff;
}

.blog-chip.is-tag {
  background: rgba(var(--brand-gold-rgb), 0.12);
  border-color: rgba(var(--brand-gold-rgb), 0.28);
}

.blog-filter-chip:hover,
.blog-filter-chip:focus-visible,
.blog-chip:hover,
.blog-chip:focus-visible,
.blog-post-read-link:hover,
.blog-post-read-link:focus-visible,
.service-show-side-card a:hover,
.service-show-side-card a:focus-visible,
.service-related-list a:hover,
.service-related-list a:focus-visible,
.page-link:not(.is-active):not(.is-disabled):hover,
.page-link:not(.is-active):not(.is-disabled):focus-visible {
  color: #173255;
  border-color: rgba(var(--brand-gold-rgb), 0.44);
}

/* Home page refinement pass */
.home-shell {
  width: min(1260px, 94vw);
  gap: clamp(1.2rem, 2vw, 1.6rem);
}

.home-section,
.client-logos,
.home-cta,
.home-signal-bar {
  border-radius: 26px;
}

.home-section,
.client-logos {
  padding: clamp(1.1rem, 1.9vw, 1.4rem);
  border: 1px solid rgba(var(--brand-navy-rgb), 0.1);
  box-shadow: 0 22px 40px rgba(11, 31, 58, 0.08);
}

.home-section::after,
.client-logos::before {
  opacity: 0.09;
}

.home-section-head {
  margin-bottom: 1rem;
  gap: 0.9rem;
}

.section-kicker,
.resource-label {
  color: #9f7827;
}

.home-section h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.95rem);
  line-height: 1.18;
  max-width: 24ch;
}

.section-link {
  border-radius: 999px;
  border: 1px solid rgba(var(--brand-gold-rgb), 0.3);
  background: rgba(var(--brand-gold-rgb), 0.1);
  color: var(--brand-navy);
  padding: 0.38rem 0.7rem;
}

.section-link:hover,
.section-link:focus-visible {
  border-color: rgba(var(--brand-gold-rgb), 0.52);
  background: rgba(var(--brand-gold-rgb), 0.18);
  color: #173255;
  text-decoration: none;
}

.service-layout,
.industry-layout {
  grid-template-columns: minmax(250px, 0.9fr) minmax(0, 2fr);
  gap: 0.9rem;
}

.home-grid-services,
.home-grid-industries,
.home-grid-resources {
  gap: 0.82rem;
}

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

.home-card {
  border-radius: 20px;
  border: 1px solid rgba(var(--brand-navy-rgb), 0.11);
  background: linear-gradient(180deg, #ffffff 0%, rgba(var(--brand-gray-rgb), 0.95) 100%);
  padding: 1rem;
}

.home-card:hover,
.home-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(var(--brand-gold-rgb), 0.38);
  box-shadow: 0 18px 30px rgba(11, 31, 58, 0.13);
}

.home-card h3 {
  font-size: 1.05rem;
  line-height: 1.32;
}

.home-card p {
  margin-top: 0.52rem;
  line-height: 1.68;
}

.home-card a {
  margin-top: 0.74rem;
}

.service-feature,
.industry-feature,
.home-section-dark {
  background: linear-gradient(155deg, rgba(var(--brand-navy-rgb), 0.98) 0%, rgba(21, 52, 91, 0.96) 62%, rgba(31, 72, 122, 0.94) 100%);
  border-color: rgba(var(--brand-gold-rgb), 0.28);
}

.service-feature .resource-label,
.industry-feature .resource-label,
.home-section-dark .section-kicker {
  color: #f3dfb0;
}

.service-feature p,
.industry-feature p,
.home-section-dark .step-card p {
  color: rgba(var(--brand-gray-rgb), 0.84);
}

.home-section-dark .step-card {
  border-color: rgba(var(--brand-gold-rgb), 0.24);
  background: rgba(var(--brand-navy-rgb), 0.45);
}

.step-index {
  border-color: rgba(var(--brand-gold-rgb), 0.45);
  background: rgba(var(--brand-gold-rgb), 0.14);
  color: #8c6720;
}

.client-logos-grid {
  gap: 0.75rem;
}

.client-logo-tile {
  border-style: solid;
  border-color: rgba(var(--brand-gold-rgb), 0.22);
  background: linear-gradient(180deg, #ffffff 0%, rgba(var(--brand-gray-rgb), 0.95) 100%);
}

.home-cta {
  padding: clamp(1.15rem, 2vw, 1.45rem);
  border: 1px solid rgba(var(--brand-gold-rgb), 0.32);
  background: linear-gradient(145deg, rgba(var(--brand-navy-rgb), 0.98) 0%, rgba(21, 52, 91, 0.94) 56%, rgba(44, 84, 132, 0.9) 100%);
}

.home-cta h2 {
  max-width: 24ch;
  line-height: 1.16;
}

.home-cta p {
  color: rgba(var(--brand-gray-rgb), 0.86);
}

.home-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.62rem;
}

.signal-item {
  border-color: rgba(var(--brand-navy-rgb), 0.1);
}

.signal-item:hover,
.signal-item:focus-within,
.home-card:hover,
.home-card:focus-within {
  will-change: transform;
}

@media (max-width: 1200px) {
  .home-grid-resources {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .service-layout,
  .industry-layout {
    grid-template-columns: 1fr;
  }

  .home-section h2,
  .home-cta h2,
  .signal-intro h2 {
    max-width: none;
  }
}

@media (max-width: 700px) {
  .home-section,
  .client-logos,
  .home-cta,
  .home-signal-bar {
    border-radius: 20px;
  }

  .home-section,
  .client-logos,
  .home-cta,
  .signal-intro {
    padding: 0.95rem;
  }

  .section-link {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* Final typography and micro-spacing polish */
.home-page {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.signal-kicker,
.section-kicker,
.resource-label,
.signal-chip {
  letter-spacing: 0.11em;
}

.signal-intro h2 {
  margin-top: 0.68rem;
  font-size: clamp(1.42rem, 2.4vw, 2.06rem);
  line-height: 1.16;
  letter-spacing: -0.01em;
}

.signal-intro p,
.signal-label {
  font-size: clamp(0.9rem, 1.02vw, 0.98rem);
  line-height: 1.66;
}

.signal-value {
  font-size: clamp(1.42rem, 2vw, 1.86rem);
  letter-spacing: -0.015em;
}

.home-section-head {
  margin-bottom: 1.06rem;
}

.home-section h2 {
  margin-top: 0.08rem;
  font-size: clamp(1.38rem, 2.35vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.012em;
}

.home-card h3 {
  font-size: clamp(1.02rem, 1.3vw, 1.16rem);
  line-height: 1.36;
  letter-spacing: -0.01em;
}

.home-card p {
  margin-top: 0.56rem;
  font-size: clamp(0.9rem, 1.01vw, 0.98rem);
  line-height: 1.72;
}

.home-card a,
.section-link {
  font-size: 0.88rem;
}

.home-cta h2 {
  font-size: clamp(1.46rem, 2.45vw, 2.1rem);
  line-height: 1.18;
  letter-spacing: -0.012em;
}

.home-cta p {
  margin-top: 0.54rem;
  font-size: clamp(0.92rem, 1.02vw, 1rem);
  line-height: 1.68;
}

@media (max-width: 1024px) {
  .signal-intro h2,
  .home-section h2,
  .home-cta h2 {
    letter-spacing: -0.006em;
  }
}

@media (max-width: 700px) {
  .signal-intro h2,
  .home-section h2,
  .home-cta h2 {
    line-height: 1.22;
  }

  .signal-intro p,
  .signal-label,
  .home-card p,
  .home-cta p {
    font-size: 0.92rem;
    line-height: 1.65;
  }
}
