:root {
  --ink: #07111d;
  --ink-2: #0d1b2d;
  --panel: rgba(8, 22, 36, 0.78);
  --panel-strong: rgba(8, 18, 31, 0.92);
  --line: rgba(126, 202, 255, 0.34);
  --line-soft: rgba(255, 255, 255, 0.14);
  --text: #f6fbff;
  --muted: #b9c8d8;
  --body: #2e3948;
  --surface: #f4f7fa;
  --white: #ffffff;
  --blue: #00a7ff;
  --blue-2: #0078ff;
  --bright-blue: #008cff;
  --shadow: 0 24px 70px rgba(0, 25, 50, 0.28);
  --radius: 8px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", Arial, sans-serif;
  color: var(--body);
  background:
    radial-gradient(circle at 88% 28%, rgba(0, 167, 255, 0.12), transparent 24%),
    radial-gradient(circle at 12% 72%, rgba(0, 167, 255, 0.08), transparent 24%),
    linear-gradient(180deg, #02070d 0%, #07111d 44%, #04070b 100%);
  font-size: 16px;
  line-height: 1.65;
}

body.nav-open {
  overflow: hidden;
}

html.nav-open,
body.nav-open {
  height: 100%;
  overscroll-behavior: none;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: 0;
}

p {
  margin: 0;
}

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

.section-screen {
  position: relative;
  overflow: hidden;
}

.section-screen:not(.hero) {
  padding: 92px 0;
  color: #ffffff;
  background: transparent;
}

.site-header {
  position: absolute;
  z-index: 1000;
  top: 16px;
  left: 0;
  right: 0;
  padding: 0 16px;
  color: var(--text);
}

.nav-shell {
  position: relative;
  overflow: visible;
  width: min(1480px, 100%);
  min-height: 86px;
  margin: 0 auto;
  padding: 16px 26px 16px 38px;
  display: flex;
  align-items: center;
  gap: 46px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow:
    0 0 34px rgba(0, 140, 255, 0.2),
    inset 0 0 34px rgba(0, 140, 255, 0.1);
  backdrop-filter: blur(14px);
  clip-path: none;
}

.nav-shell::before,
.nav-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.nav-shell::before {
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(3, 18, 34, 0.94), rgba(4, 14, 27, 0.88));
  clip-path: polygon(18px 0, calc(100% - 18px) 0, 100% 18px, 100% calc(100% - 18px), calc(100% - 18px) 100%, 18px 100%, 0 calc(100% - 18px), 0 18px);
}

.nav-shell::after {
  inset: -1px;
  z-index: 0;
  background:
    linear-gradient(135deg, transparent 0 16px, rgba(0, 167, 255, 0.95) 16px 17px, transparent 17px) left top / 40px 40px no-repeat,
    linear-gradient(225deg, transparent 0 16px, rgba(0, 167, 255, 0.95) 16px 17px, transparent 17px) right top / 40px 40px no-repeat,
    linear-gradient(45deg, transparent 0 16px, rgba(0, 167, 255, 0.95) 16px 17px, transparent 17px) left bottom / 40px 40px no-repeat,
    linear-gradient(315deg, transparent 0 16px, rgba(0, 167, 255, 0.95) 16px 17px, transparent 17px) right bottom / 40px 40px no-repeat,
    linear-gradient(90deg, transparent 24px, rgba(0, 167, 255, 0.58) 24px calc(100% - 24px), transparent calc(100% - 24px)) top / 100% 1px no-repeat,
    linear-gradient(90deg, transparent 24px, rgba(0, 167, 255, 0.58) 24px calc(100% - 24px), transparent calc(100% - 24px)) bottom / 100% 1px no-repeat,
    linear-gradient(180deg, transparent 24px, rgba(0, 167, 255, 0.58) 24px calc(100% - 24px), transparent calc(100% - 24px)) left / 1px 100% no-repeat,
    linear-gradient(180deg, transparent 24px, rgba(0, 167, 255, 0.58) 24px calc(100% - 24px), transparent calc(100% - 24px)) right / 1px 100% no-repeat,
    linear-gradient(90deg, transparent, rgba(0, 167, 255, 0.95), transparent) bottom / 100% 2px no-repeat;
  filter: drop-shadow(0 0 12px rgba(0, 167, 255, 0.56));
}

.brand,
.main-nav,
.nav-cta,
.nav-toggle {
  position: relative;
  z-index: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 176px;
  padding-right: 28px;
  border-right: 1px solid rgba(72, 167, 230, 0.45);
}

.brand-logo-image {
  display: block;
  width: 158px;
  max-width: 100%;
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

.brand-mark {
  position: relative;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
}

.brand-mark span {
  position: absolute;
  width: 15px;
  height: 40px;
  border-radius: 4px;
  transform: skewY(-30deg);
  box-shadow: 0 0 20px rgba(0, 140, 255, 0.28);
}

.brand-mark span:nth-child(1) {
  left: 7px;
  background: linear-gradient(180deg, #5bd7ff, #177fff);
}

.brand-mark span:nth-child(2) {
  left: 20px;
  height: 35px;
  background: linear-gradient(180deg, #39bfff, #006bff);
}

.brand-mark span:nth-child(3) {
  left: 30px;
  height: 29px;
  background: linear-gradient(180deg, #125cff, #0838b5);
}

.brand-text strong {
  display: block;
  font-size: 28px;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: none;
}

.brand-text small {
  display: block;
  margin-top: 5px;
  font-size: 11px;
  letter-spacing: 2.2px;
  color: #e7f5ff;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: clamp(22px, 2.6vw, 42px);
  font-size: 17px;
  font-weight: 700;
  color: #f0f7ff;
}

.main-nav a {
  position: relative;
  padding: 8px 0 14px;
  opacity: 0.9;
  transition: color 180ms ease, opacity 180ms ease;
}

.main-nav a:hover,
.main-nav a.is-active,
.nav-dropdown:hover > .nav-dropdown-toggle,
.nav-dropdown:focus-within > .nav-dropdown-toggle,
.nav-dropdown.is-active > .nav-dropdown-toggle {
  color: var(--blue);
  opacity: 1;
}

.main-nav a.is-active::after,
.nav-dropdown.is-active > .nav-dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--blue);
  box-shadow: 0 0 14px rgba(0, 167, 255, 0.95);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-block;
}

.nav-dropdown-toggle::before {
  content: "";
  position: absolute;
  right: -15px;
  top: 15px;
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.8;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 30;
  min-width: 230px;
  padding: 10px;
  border: 1px solid rgba(0, 167, 255, 0.34);
  border-radius: 8px;
  background: rgba(4, 15, 27, 0.96);
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.34), 0 0 24px rgba(0, 167, 255, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  color: rgba(240, 247, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
  border-radius: 6px;
  opacity: 1;
}

.nav-dropdown-menu a::after {
  content: none;
}

.nav-dropdown-menu a:hover {
  color: #ffffff;
  background: rgba(0, 167, 255, 0.16);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 600;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta {
  position: relative;
  min-width: 205px;
  min-height: 48px;
  border: 1px solid rgba(92, 190, 255, 0.45);
  border-radius: 6px;
  color: #f6fbff;
  background: linear-gradient(180deg, #129dff 0%, #0079ee 100%);
  box-shadow: 0 12px 28px rgba(0, 121, 238, 0.22);
  clip-path: none;
  font-size: 16px;
}

.nav-cta img,
.btn img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #ffffff;
}

.hero {
  min-height: 760px;
  padding: 126px 0 126px;
  color: var(--text);
  background: #04111e;
}

.hero-bg,
.hero-bg::after,
.tech-grid,
.hero-glow {
  position: absolute;
  inset: 0;
}

.hero-bg picture,
.hero-bg img {
  width: 100%;
  height: 100%;
}

.hero-bg picture {
  display: block;
}

.hero-bg img {
  object-fit: cover;
  opacity: 1;
}

.hero-bg::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(3, 13, 25, 0.72) 0%, rgba(4, 17, 31, 0.44) 34%, rgba(4, 17, 31, 0) 58%),
    linear-gradient(180deg, rgba(2, 11, 21, 0.08) 0%, rgba(2, 10, 18, 0.18) 100%);
}

.tech-grid {
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(50, 196, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(50, 196, 255, 0.16) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, #000 0 32%, transparent 54%);
}

.hero-glow {
  background:
    radial-gradient(circle at 42% 52%, rgba(50, 196, 255, 0.2), transparent 20%),
    radial-gradient(circle at 14% 78%, rgba(17, 118, 200, 0.28), transparent 26%);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: block;
}

.hero-copy {
  max-width: 690px;
  padding-top: 32px;
}

.eyebrow {
  margin-bottom: 22px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(38px, 5vw, 60px);
  max-width: 710px;
  text-shadow: 0 0 28px rgba(126, 202, 255, 0.16);
}

.hero-lead {
  max-width: 560px;
  margin-top: 26px;
  color: #e1edf8;
  font-size: 21px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.btn-primary {
  color: #ffffff;
  border: 1px solid rgba(0, 167, 255, 0.95);
  background: linear-gradient(135deg, #00a7ff, #006dff);
  box-shadow: 0 0 34px rgba(0, 140, 255, 0.42), inset 0 0 18px rgba(255, 255, 255, 0.14);
}

.btn-ghost {
  color: #f5fbff;
  border: 1px solid rgba(126, 202, 255, 0.78);
  background: rgba(4, 19, 33, 0.52);
}

.btn-dark {
  color: #ffffff;
  background: var(--ink);
  border: 1px solid var(--ink);
  margin-top: 28px;
}

.arrow {
  color: var(--blue);
  font-size: 28px;
  line-height: 0;
}

.hero-proof {
  width: min(700px, 100%);
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.hero-proof article {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 12px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid rgba(92, 165, 255, 0.54);
  border-radius: 10px;
  background:
    radial-gradient(circle at 42% 0%, rgba(0, 167, 255, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(10, 34, 62, 0.92), rgba(3, 14, 27, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 0 34px rgba(0, 167, 255, 0.08),
    0 22px 54px rgba(0, 9, 22, 0.34);
}

.hero-proof article::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(90deg, transparent, rgba(0, 167, 255, 0.18), transparent),
    linear-gradient(180deg, rgba(0, 167, 255, 0.08), transparent 54%);
  opacity: 0.4;
  transition: opacity 180ms ease;
}

.hero-proof article:hover::before {
  opacity: 0.85;
}

.proof-icon,
.proof-copy,
.proof-arrow {
  position: relative;
  z-index: 1;
}

.proof-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(112, 194, 255, 0.78);
  border-radius: 12px;
  background: rgba(3, 18, 36, 0.72);
  box-shadow:
    inset 0 0 24px rgba(0, 167, 255, 0.14),
    0 0 22px rgba(0, 167, 255, 0.24);
}

.hero-proof svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(0, 167, 255, 0.76));
}

.proof-copy {
  display: grid;
  gap: 5px;
}

.proof-copy strong {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.08;
}

.proof-copy small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  line-height: 1.35;
}

.proof-copy i {
  display: block;
  width: 70px;
  height: 3px;
  margin-top: 6px;
  background: linear-gradient(90deg, var(--blue) 0 34%, rgba(255, 255, 255, 0.12) 34% 100%);
  border-radius: 999px;
  box-shadow: 0 0 14px rgba(0, 167, 255, 0.52);
}

.proof-arrow {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--blue);
  font-size: 21px;
  line-height: 1;
  border: 1px solid var(--blue);
  border-radius: 50%;
  box-shadow: inset 0 0 18px rgba(0, 167, 255, 0.08), 0 0 18px rgba(0, 167, 255, 0.2);
}

.about-preview {
  min-height: 720px;
  box-shadow: none;
}

.about-preview-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(420px, 0.88fr);
  gap: 78px;
  align-items: center;
}

.about-visual {
  position: relative;
  min-height: 560px;
}

.vertical-label {
  position: absolute;
  left: -40px;
  top: 50%;
  z-index: 3;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  letter-spacing: 6px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
}

.vertical-label::after {
  content: "";
  display: block;
  width: 2px;
  height: 58px;
  margin: 28px auto 0;
  background: var(--blue);
  box-shadow: 0 0 14px rgba(0, 167, 255, 0.8);
}

.about-photo-main,
.about-photo-back {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(0, 167, 255, 0.68);
  border-radius: 8px;
  background: #07111d;
  box-shadow: 0 0 32px rgba(0, 167, 255, 0.2);
}

.about-photo-main {
  left: 28px;
  top: 0;
  z-index: 2;
  width: 62%;
  height: 520px;
}

.about-photo-back {
  right: 0;
  top: 56px;
  z-index: 1;
  width: 50%;
  height: 470px;
  border-color: rgba(0, 167, 255, 0.44);
  opacity: 0.72;
}

.about-photo-main img,
.about-photo-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photo-main img {
  object-position: 72% center;
  filter: saturate(1.02) contrast(1.06) brightness(0.86);
}

.about-photo-back img {
  filter: saturate(0.95) contrast(1.05) brightness(0.72);
}

.experience-image {
  position: absolute;
  right: 25%;
  bottom: 0;
  z-index: 4;
  width: min(190px, 30%);
  aspect-ratio: 1;
}

.experience-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-content h2 {
  color: #ffffff;
  font-size: clamp(34px, 3.7vw, 50px);
  line-height: 1.18;
  text-shadow: 0 0 24px rgba(255, 255, 255, 0.18);
}

.about-lead {
  max-width: 620px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 21px;
  line-height: 1.7;
}

.about-proof-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 46px;
  padding-bottom: 34px;
  border-bottom: 0;
}

.about-proof-row::after {
  content: "";
  position: absolute;
  left: 0;
  right: 18%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 167, 255, 0.36), rgba(255, 255, 255, 0.08) 58%, transparent);
  opacity: 0.55;
}

.about-proof-row article {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.about-proof-row article:first-child {
  padding-left: 0;
}

.about-proof-row article:last-child {
  border-right: 0;
  padding-right: 0;
}

.about-proof-row svg,
.about-proof-row img {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
}

.about-proof-row svg {
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(0, 167, 255, 0.48));
}

.about-proof-row img {
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(0, 167, 255, 0.48));
}

.about-proof-row span {
  font-weight: 600;
  color: #ffffff;
}

.about-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 34px;
}

.about-primary {
  min-width: 230px;
  border-color: rgba(0, 167, 255, 0.9);
}

.about-text-link {
  position: relative;
  padding-bottom: 10px;
  color: #ffffff;
  font-weight: 600;
}

.about-text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--blue);
  box-shadow: 0 0 12px rgba(0, 167, 255, 0.8);
}

.services-showcase {
  margin-top: 0;
  box-shadow: none;
}

.services-heading {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 8px;
  text-transform: uppercase;
}

.section-label span {
  width: 28px;
  height: 2px;
  background: var(--blue);
  box-shadow: 0 0 12px rgba(0, 167, 255, 0.8);
}

.services-heading h2 {
  color: #ffffff;
  font-size: clamp(42px, 5.8vw, 74px);
  font-style: italic;
  line-height: 1;
  text-shadow: 0 0 22px rgba(255, 255, 255, 0.16);
}

.services-heading p:last-child {
  max-width: 680px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 21px;
}

.service-showcase-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.showcase-card {
  position: relative;
  min-height: 248px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: #07111d;
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.32);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.showcase-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 167, 255, 0.86);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.38), 0 0 22px rgba(0, 167, 255, 0.22);
}

.showcase-card img {
  width: 100%;
  height: 100%;
  min-height: 248px;
  object-fit: cover;
  filter: saturate(0.98) brightness(0.72) contrast(1.06);
  transition: transform 260ms ease, filter 260ms ease;
}

.showcase-card:hover img {
  transform: scale(1.04);
  filter: saturate(1.06) brightness(0.82) contrast(1.08);
}

.showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.72)),
    linear-gradient(90deg, rgba(0, 167, 255, 0.12), transparent 45%);
}

.showcase-number {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  min-width: 46px;
  padding: 4px 10px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  border: 1px solid var(--blue);
  border-radius: 6px;
  background: rgba(3, 12, 22, 0.74);
  box-shadow: 0 0 16px rgba(0, 167, 255, 0.2);
}

.showcase-caption {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 18px;
  bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.showcase-caption h3 {
  position: relative;
  padding-left: 14px;
  color: #ffffff;
  font-size: 20px;
}

.showcase-caption h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: var(--blue);
  box-shadow: 0 0 12px rgba(0, 167, 255, 0.8);
}

.showcase-caption a {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 22px;
  border: 1px solid var(--blue);
  border-radius: 50%;
  background: rgba(3, 12, 22, 0.48);
}

.why-choose {
  box-shadow: none;
}

.why-heading {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

.why-heading h2 {
  color: #ffffff;
  font-size: clamp(42px, 5.6vw, 74px);
  line-height: 1;
  text-shadow: 0 0 22px rgba(255, 255, 255, 0.16);
}

.why-heading p:last-child {
  max-width: 560px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 21px;
}

.why-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  position: relative;
  min-height: 360px;
  padding: 28px 28px 32px;
  display: grid;
  align-content: start;
  justify-items: center;
  text-align: center;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.36);
  clip-path: polygon(16px 0, calc(100% - 16px) 0, 100% 16px, 100% calc(100% - 16px), calc(100% - 16px) 100%, 16px 100%, 0 calc(100% - 16px), 0 16px);
  box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.025);
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.why-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), transparent 42%),
    rgba(10, 12, 16, 0.95);
  clip-path: polygon(15px 0, calc(100% - 15px) 0, 100% 15px, 100% calc(100% - 15px), calc(100% - 15px) 100%, 15px 100%, 0 calc(100% - 15px), 0 15px);
}

.why-card.is-featured {
  background: rgba(0, 167, 255, 0.92);
  box-shadow: 0 0 28px rgba(0, 167, 255, 0.28), inset 0 0 32px rgba(0, 167, 255, 0.06);
}

.why-card:hover {
  background: rgba(0, 167, 255, 0.92);
  box-shadow: 0 0 28px rgba(0, 167, 255, 0.26), inset 0 0 32px rgba(0, 167, 255, 0.06);
  transform: translateY(-4px);
}

.why-card-top,
.why-icon,
.why-card h3,
.why-card p {
  position: relative;
  z-index: 1;
}

.why-card-top {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
}

.why-card-top span {
  color: var(--blue);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 0 12px rgba(0, 167, 255, 0.44);
}

.why-card-top i {
  height: 2px;
  flex: 1;
  background: linear-gradient(90deg, var(--blue) 0 42%, rgba(255, 255, 255, 0.1) 42% 100%);
}

.why-icon {
  position: relative;
  width: 104px;
  height: 104px;
  margin-bottom: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 167, 255, 0.86);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.12);
  box-shadow: 0 0 18px rgba(0, 167, 255, 0.18), inset 0 0 22px rgba(0, 167, 255, 0.08);
}

.why-icon::before {
  content: none;
}

.why-icon svg,
.why-icon img {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
}

.why-icon svg {
  fill: none;
  stroke: #ffffff;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-icon img {
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 0 12px rgba(255, 255, 255, 0.22));
}

.why-card h3 {
  color: #ffffff;
  font-size: 23px;
  line-height: 1.18;
}

.why-card h3::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin: 18px auto 0;
  background: var(--blue);
  box-shadow: 0 0 12px rgba(0, 167, 255, 0.76);
}

.why-card p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
}

.latest-projects {
  box-shadow: none;
}

.projects-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

.projects-kicker {
  position: relative;
  margin-bottom: 8px;
  padding-top: 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 7px;
  text-transform: uppercase;
}

.projects-kicker::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
  height: 2px;
  background: var(--blue);
  box-shadow: 0 0 14px rgba(0, 167, 255, 0.8);
}

.projects-head h2 {
  color: #ffffff;
  font-size: clamp(40px, 5vw, 66px);
  line-height: 1;
  text-transform: uppercase;
}

.projects-head p:last-child {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 21px;
}

.projects-social {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #ffffff;
}

.projects-social > span {
  font-size: 22px;
  font-weight: 600;
}

.projects-social i {
  width: 1px;
  height: 42px;
  background: rgba(255, 255, 255, 0.35);
}

.projects-social a {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 24px;
  color: var(--blue);
  font-weight: 700;
  text-transform: uppercase;
  border: 1px solid var(--blue);
  border-radius: 4px;
}

.projects-mosaic {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr 0.82fr 0.82fr 0.9fr;
  grid-template-rows: 210px 210px;
  gap: 10px;
}

.project-tile {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  background: #07111d;
}

.project-large {
  grid-row: span 2;
}

.project-tall {
  grid-row: span 2;
}

.project-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.98) brightness(0.7) contrast(1.06);
  transition: transform 260ms ease, filter 260ms ease;
}

.project-tile:hover img {
  transform: scale(1.04);
  filter: saturate(1.08) brightness(0.82) contrast(1.08);
}

.project-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.76));
}

.project-tile > span {
  position: absolute;
  z-index: 2;
  left: 20px;
  bottom: 16px;
  padding-left: 34px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.project-tile > span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 22px;
  height: 2px;
  background: var(--blue);
  box-shadow: 0 0 12px rgba(0, 167, 255, 0.76);
}

.faq-section {
  box-shadow: none;
}

.about-blueprint,
.services-blueprint,
.why-blueprint,
.projects-blueprint,
.faq-blueprint {
  display: none;
}

.faq-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(420px, 0.56fr) minmax(520px, 0.92fr);
  gap: 62px;
  align-items: start;
}

.faq-kicker {
  position: relative;
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 28px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 8px;
  text-transform: uppercase;
}

.faq-kicker::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), transparent);
}

.faq-intro h2 {
  color: #ffffff;
  max-width: 420px;
  font-size: clamp(44px, 4vw, 64px);
  line-height: 0.98;
  text-transform: uppercase;
  text-shadow: 0 0 22px rgba(255, 255, 255, 0.14);
  overflow-wrap: normal;
}

.faq-intro > p {
  max-width: 390px;
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 21px;
}

.faq-contact {
  position: relative;
  width: min(430px, 100%);
  margin-top: 82px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 26px;
  border: 0;
  background: rgba(255, 255, 255, 0.32);
  clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 34px, 100% 100%, 0 100%);
}

.faq-contact::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 0;
  background: rgba(9, 15, 23, 0.96);
  clip-path: polygon(0 0, calc(100% - 33px) 0, 100% 33px, 100% 100%, 0 100%);
}

.faq-contact::after {
  content: "";
  position: absolute;
  top: -46px;
  left: 0;
  width: 88%;
  height: 46px;
  border-top: 1px solid var(--blue);
  border-right: 1px solid rgba(0, 167, 255, 0.46);
  transform: skewX(-35deg);
  transform-origin: bottom left;
  pointer-events: none;
}

.faq-contact img {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  filter: grayscale(1) brightness(2.2);
}

.faq-contact > span {
  position: relative;
  z-index: 1;
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.24);
}

.faq-contact div {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
}

.faq-contact p {
  color: rgba(255, 255, 255, 0.68);
  white-space: nowrap;
}

.faq-contact a {
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  white-space: nowrap;
}

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

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 42%),
    rgba(255, 255, 255, 0.035);
  transition: height 320ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.faq-item[open] {
  border-color: rgba(0, 167, 255, 0.66);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 24px rgba(0, 167, 255, 0.18);
}

.faq-item summary {
  position: relative;
  min-height: 86px;
  display: grid;
  grid-template-columns: 72px 1fr 32px;
  align-items: center;
  gap: 26px;
  padding: 0 34px;
  list-style: none;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: #ffffff;
  font-size: 30px;
  line-height: 1;
  justify-self: end;
  transition: transform 220ms ease, color 220ms ease;
}

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

.faq-item summary span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-item summary strong {
  color: #ffffff;
  font-size: 22px;
  font-weight: 600;
}

.faq-item p {
  margin: 0;
  padding: 34px 90px 42px 128px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 19px;
  line-height: 1.7;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 220ms ease, transform 220ms ease;
}

.faq-item[open] summary::after {
  color: var(--blue);
  transform: rotate(180deg);
}

.faq-item.is-closing p {
  opacity: 0;
  transform: translateY(-6px);
}

.site-footer {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(3, 8, 14, 0.98) 0%, #05090d 48%, #0a1015 100%);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 167, 255, 0.78), transparent);
  box-shadow: 0 0 18px rgba(0, 167, 255, 0.64);
  pointer-events: none;
}

.site-footer::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -190px;
  width: min(980px, 92vw);
  height: 300px;
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse at center, rgba(0, 167, 255, 0.34) 0%, rgba(0, 116, 255, 0.18) 34%, transparent 70%);
  filter: blur(22px);
  opacity: 0.85;
  pointer-events: none;
}

body.home-page {
  color: #162235;
  background:
    radial-gradient(circle at 86% 12%, rgba(0, 167, 255, 0.16), transparent 25%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 42%, #eef6ff 100%);
}

.home-page .section-screen:not(.hero) {
  color: #142235;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 246, 255, 0.92));
}

.home-page .hero {
  color: #ffffff;
  background: #07111d;
}

.home-page .hero-bg img {
  filter: saturate(1.06) brightness(1.08) contrast(1.02);
}

.home-page .hero-bg::after {
  background:
    linear-gradient(90deg, rgba(2, 9, 18, 0.74) 0%, rgba(4, 18, 32, 0.48) 34%, rgba(4, 18, 32, 0.08) 66%),
    linear-gradient(180deg, rgba(3, 12, 22, 0.1) 0%, rgba(3, 12, 22, 0.16) 100%);
}

.home-page .about-preview,
.home-page .why-choose,
.home-page .faq-section {
  background:
    radial-gradient(circle at 92% 8%, rgba(0, 140, 255, 0.1), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f2f8ff 100%);
}

.home-page .services-showcase,
.home-page .latest-projects {
  background:
    linear-gradient(180deg, #edf6ff 0%, #ffffff 54%, #f7fbff 100%);
}

.home-page .about-content h2,
.home-page .services-heading h2,
.home-page .why-heading h2,
.home-page .projects-head h2,
.home-page .faq-intro h2 {
  color: #07111d;
  text-shadow: none;
}

.home-page .section-label {
  color: #0f335d;
}

.home-page .about-lead,
.home-page .services-heading p:last-child,
.home-page .why-heading p:last-child,
.home-page .projects-head p:last-child,
.home-page .faq-intro > p {
  color: #42566f;
}

.home-page .vertical-label,
.home-page .about-proof-row span,
.home-page .about-text-link,
.home-page .projects-social,
.home-page .faq-contact p {
  color: #132236;
}

.home-page .about-photo-main,
.home-page .about-photo-back,
.home-page .showcase-card,
.home-page .project-tile {
  background: #ffffff;
  border-color: rgba(0, 116, 255, 0.22);
  box-shadow: 0 20px 46px rgba(7, 26, 49, 0.14);
}

.home-page .about-photo-main img {
  filter: saturate(1.08) contrast(1.02) brightness(1.03);
}

.home-page .about-photo-back {
  opacity: 0.9;
}

.home-page .about-photo-back img {
  filter: saturate(1.02) contrast(1.02) brightness(0.98);
}

.home-page .about-proof-row article {
  border-right-color: rgba(10, 37, 67, 0.16);
}

.home-page .showcase-card img,
.home-page .project-tile img {
  filter: saturate(1.04) brightness(1) contrast(1.02);
}

.home-page .showcase-card::after,
.home-page .project-tile::after {
  background:
    linear-gradient(180deg, rgba(5, 16, 29, 0.02), rgba(5, 16, 29, 0.64)),
    linear-gradient(90deg, rgba(0, 140, 255, 0.16), transparent 52%);
}

.home-page .showcase-number,
.home-page .showcase-caption a {
  background: rgba(255, 255, 255, 0.9);
  color: #07111d;
  box-shadow: 0 10px 22px rgba(7, 26, 49, 0.12);
}

.home-page .showcase-caption h3,
.home-page .project-tile > span {
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.36);
}

.home-page .why-card {
  background: rgba(0, 116, 255, 0.28);
  box-shadow: 0 18px 42px rgba(7, 26, 49, 0.1);
}

.home-page .why-card::before {
  background:
    linear-gradient(135deg, rgba(0, 167, 255, 0.1), transparent 42%),
    #ffffff;
}

.home-page .why-card.is-featured,
.home-page .why-card:hover {
  background: rgba(0, 116, 255, 0.88);
  box-shadow: 0 22px 46px rgba(0, 116, 255, 0.18);
}

.home-page .why-card.is-featured::before,
.home-page .why-card:hover::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 44%),
    linear-gradient(180deg, #057eff 0%, #03152a 100%);
}

.home-page .why-card h3 {
  color: #07111d;
}

.home-page .why-card p {
  color: #4a5f78;
}

.home-page .why-card.is-featured h3,
.home-page .why-card.is-featured p,
.home-page .why-card:hover h3,
.home-page .why-card:hover p {
  color: #ffffff;
}

.home-page .why-icon {
  background: #f2f8ff;
  border-color: rgba(0, 116, 255, 0.26);
}

.home-page .why-icon img {
  filter: brightness(0) saturate(100%) invert(34%) sepia(97%) saturate(2542%) hue-rotate(193deg) brightness(98%) contrast(104%);
}

.home-page .why-card.is-featured .why-icon,
.home-page .why-card:hover .why-icon {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.34);
}

.home-page .why-card.is-featured .why-icon img,
.home-page .why-card:hover .why-icon img {
  filter: brightness(0) invert(1) drop-shadow(0 0 12px rgba(255, 255, 255, 0.2));
}

.home-page .faq-contact {
  background: rgba(0, 116, 255, 0.22);
}

.home-page .faq-contact::before {
  background: #ffffff;
}

.home-page .faq-contact img {
  filter: none;
}

.home-page .faq-contact > span {
  background: rgba(10, 37, 67, 0.18);
}

.home-page .faq-item {
  border-color: rgba(10, 37, 67, 0.14);
  background:
    linear-gradient(135deg, rgba(0, 167, 255, 0.08), transparent 42%),
    #ffffff;
  box-shadow: 0 14px 34px rgba(7, 26, 49, 0.08);
}

.home-page .faq-item[open] {
  border-color: rgba(0, 116, 255, 0.4);
  box-shadow: 0 18px 40px rgba(0, 116, 255, 0.12);
}

.home-page .faq-item summary::after,
.home-page .faq-item summary strong {
  color: #07111d;
}

.home-page .faq-item summary span {
  color: rgba(0, 116, 255, 0.62);
  border-right-color: rgba(10, 37, 67, 0.16);
}

.home-page .faq-item p {
  color: #4a5f78;
  border-top-color: rgba(10, 37, 67, 0.1);
}

.home-page .site-footer {
  color: #42566f;
  background:
    radial-gradient(circle at 14% 0%, rgba(0, 109, 255, 0.1), transparent 28%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 58%, #edf6ff 100%);
  border-top: 1px solid rgba(0, 109, 255, 0.12);
}

.home-page .site-footer::before {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 109, 255, 0.28), transparent);
  box-shadow: none;
}

.home-page .site-footer::after {
  background:
    radial-gradient(ellipse at center, rgba(0, 109, 255, 0.12) 0%, rgba(0, 167, 255, 0.08) 36%, transparent 70%);
  opacity: 1;
  filter: blur(28px);
}

.home-page .footer-logo {
  color: #07111d;
}

.home-page .footer-logo-image {
  filter: drop-shadow(0 10px 22px rgba(7, 26, 49, 0.08));
}

.home-page .footer-brand > p {
  color: #4a5f78;
}

.home-page .footer-social a {
  border-color: rgba(0, 109, 255, 0.16);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(7, 26, 49, 0.08);
}

.home-page .footer-social a:hover {
  border-color: rgba(0, 109, 255, 0.5);
  background: rgba(0, 109, 255, 0.08);
  box-shadow: 0 16px 34px rgba(0, 109, 255, 0.14);
}

.home-page .footer-social img {
  filter: brightness(0) saturate(100%) invert(34%) sepia(97%) saturate(2542%) hue-rotate(193deg) brightness(98%) contrast(104%);
}

.home-page .footer-col h2,
.home-page .contact-row strong {
  color: #07111d;
}

.home-page .footer-col a,
.home-page .contact-row p,
.home-page .footer-bottom a {
  color: #4a5f78;
}

.home-page .footer-col a:hover,
.home-page .footer-bottom a:hover {
  color: #006dff;
}

.home-page .contact-row span {
  color: #006dff;
}

.home-page .contact-row img {
  filter: brightness(0) saturate(100%) invert(34%) sepia(97%) saturate(2542%) hue-rotate(193deg) brightness(98%) contrast(104%);
}

.home-page .footer-bottom {
  border-top-color: rgba(7, 26, 49, 0.1);
}

.home-page .footer-bottom p {
  color: #61738a;
}

.page-hero {
  position: relative;
  min-height: 310px;
  display: grid;
  place-items: center;
  padding: 112px 0 64px;
  overflow: hidden;
  color: #ffffff;
  background: #06111d;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.5) saturate(0.85);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 7, 13, 0.82), rgba(2, 7, 13, 0.32), rgba(2, 7, 13, 0.82)),
    linear-gradient(180deg, rgba(2, 7, 13, 0.25), rgba(2, 7, 13, 0.82));
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-hero h1 {
  color: #ffffff;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1;
  text-shadow: 0 0 28px rgba(0, 167, 255, 0.2);
}

.page-hero p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 600;
}

.page-hero a {
  color: #ffffff;
}

.about-detail {
  background:
    radial-gradient(circle at 18% 28%, rgba(0, 167, 255, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(3, 10, 18, 0.98), rgba(3, 9, 15, 0.98));
  color: #ffffff;
}

.about-detail-layout {
  display: grid;
  grid-template-columns: minmax(380px, 0.9fr) minmax(430px, 1fr);
  gap: 84px;
  align-items: center;
}

.about-detail-visual {
  position: relative;
  min-height: 520px;
}

.about-detail-photo {
  width: 100%;
  height: 520px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(0, 167, 255, 0.35);
  background: #07111d;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.32), 0 0 34px rgba(0, 167, 255, 0.16);
}

.about-detail-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  filter: saturate(0.9) contrast(1.05) brightness(0.82);
}

.about-detail-floating {
  position: absolute;
  right: -28px;
  bottom: 32px;
  z-index: 3;
  width: min(190px, 34%);
  aspect-ratio: 1;
}

.about-detail-floating img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.36));
}

.about-dot-label {
  position: relative;
  margin-bottom: 14px;
  padding-left: 16px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.about-dot-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  transform: translateY(-50%);
}

.about-detail-content h2 {
  max-width: 620px;
  color: #ffffff;
  font-size: clamp(34px, 3.45vw, 56px);
  line-height: 1.12;
  text-shadow: 0 0 24px rgba(255, 255, 255, 0.12);
}

.about-detail-lead {
  max-width: 680px;
  margin-top: 22px;
  color: rgba(220, 235, 246, 0.78);
  font-size: 17px;
  line-height: 1.8;
}

.about-tabs {
  margin-top: 32px;
}

.about-tab-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid rgba(0, 167, 255, 0.22);
  background: rgba(7, 20, 34, 0.82);
}

.about-tab-list button {
  min-height: 52px;
  color: rgba(240, 248, 255, 0.74);
  font: inherit;
  font-weight: 700;
  border: 0;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.about-tab-list button.is-active {
  color: #ffffff;
  background: linear-gradient(180deg, #129dff, #0079ee);
  box-shadow: 0 12px 28px rgba(0, 121, 238, 0.22);
}

.about-tab-panel {
  display: none;
  margin-top: 24px;
  color: rgba(220, 235, 246, 0.78);
  line-height: 1.75;
}

.about-tab-panel.is-active {
  display: block;
}

.about-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(0, 167, 255, 0.18);
}

.about-info-grid article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
}

.about-info-grid svg {
  width: 42px;
  height: 42px;
  padding: 9px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  border-radius: 8px;
  background: linear-gradient(180deg, #129dff, #0079ee);
  box-shadow: 0 12px 28px rgba(0, 121, 238, 0.2);
}

.about-info-grid h3 {
  color: #ffffff;
  font-size: 18px;
}

.about-info-grid p {
  margin-top: 6px;
  color: rgba(220, 235, 246, 0.68);
  line-height: 1.5;
}

.about-detail-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 30px;
}

.about-call {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  color: #ffffff;
}

.about-call span {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #ffffff;
  border-radius: 8px;
  background: linear-gradient(180deg, #129dff, #0079ee);
}

.about-call strong,
.about-call small {
  display: block;
}

.about-call small {
  color: rgba(220, 235, 246, 0.68);
}

.about-section-head {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.about-section-head.align-left {
  margin: 0;
  text-align: left;
}

.about-section-head .about-dot-label {
  display: inline-block;
}

.about-section-head h2,
.values-panel h2,
.about-cta-panel h2 {
  color: #ffffff;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.08;
  text-shadow: 0 0 22px rgba(255, 255, 255, 0.12);
}

.about-section-head p:last-child,
.about-cta-panel p {
  margin-top: 18px;
  color: rgba(220, 235, 246, 0.72);
  font-size: 17px;
  line-height: 1.75;
}

.about-audience,
.about-process,
.about-final-cta {
  background: transparent;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 10px;
}

.audience-grid article {
  position: relative;
  min-height: 108px;
  padding: 14px 10px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-content: space-between;
  justify-items: center;
  gap: 7px;
  overflow: hidden;
  border: 1px solid rgba(0, 167, 255, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(11, 30, 48, 0.82), rgba(4, 12, 21, 0.86));
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.audience-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 167, 255, 0.72);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24), 0 0 22px rgba(0, 167, 255, 0.16);
}

.audience-grid span {
  justify-self: start;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
}

.audience-grid img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  filter: brightness(0) invert(1);
}

.audience-grid strong {
  color: #ffffff;
  font-size: 17px;
  line-height: 1.25;
  text-align: center;
}

.expertise-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.62fr) minmax(520px, 1fr);
  gap: 64px;
  align-items: start;
}

.expertise-stack {
  display: grid;
  gap: 16px;
}

.expertise-stack article {
  position: relative;
  padding: 28px 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(110deg, rgba(0, 167, 255, 0.18), transparent 28%),
    rgba(7, 18, 31, 0.82);
}

.expertise-stack article::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: var(--blue);
  box-shadow: 0 0 18px rgba(0, 167, 255, 0.72);
}

.expertise-stack span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.expertise-stack h3 {
  margin-top: 10px;
  color: #ffffff;
  font-size: 24px;
}

.expertise-stack p {
  margin-top: 12px;
  color: rgba(220, 235, 246, 0.7);
}

.process-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-rail::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 38px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 167, 255, 0.72), transparent);
}

.process-rail article {
  position: relative;
  z-index: 1;
  padding: 0 8px;
  text-align: center;
}

.process-rail span {
  width: 76px;
  height: 76px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  border: 1px solid rgba(0, 167, 255, 0.58);
  border-radius: 50%;
  background: #071827;
  box-shadow: 0 0 24px rgba(0, 167, 255, 0.22), inset 0 0 18px rgba(0, 167, 255, 0.1);
}

.process-rail h3 {
  color: #ffffff;
  font-size: 22px;
}

.process-rail p {
  margin-top: 12px;
  color: rgba(220, 235, 246, 0.68);
}

.values-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) 1fr;
  gap: 42px;
  padding: 46px;
  border: 1px solid rgba(0, 167, 255, 0.24);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 167, 255, 0.16), transparent 30%),
    linear-gradient(145deg, rgba(12, 28, 44, 0.82), rgba(5, 13, 23, 0.9));
}

.values-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.values-list article {
  padding: 22px;
  border-left: 2px solid var(--blue);
  background: rgba(255, 255, 255, 0.035);
}

.values-list strong {
  color: #ffffff;
  font-size: 18px;
}

.values-list p {
  margin-top: 8px;
  color: rgba(220, 235, 246, 0.68);
}

.about-cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 38px;
  align-items: center;
  padding: 46px;
  overflow: hidden;
  border: 1px solid rgba(0, 167, 255, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(0, 167, 255, 0.18), transparent 46%),
    rgba(5, 15, 26, 0.92);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.about-cta-panel::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -170px;
  width: 420px;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(0, 167, 255, 0.3), transparent 68%);
  filter: blur(12px);
  pointer-events: none;
}

.about-cta-actions {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  min-width: 220px;
}

.contact-section {
  background:
    radial-gradient(circle at 82% 20%, rgba(0, 167, 255, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(3, 10, 18, 0.98), rgba(3, 8, 14, 0.98));
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(440px, 0.92fr);
  gap: 58px;
  align-items: start;
}

.contact-content h2 {
  max-width: 560px;
  color: #ffffff;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.14;
  text-shadow: 0 0 22px rgba(255, 255, 255, 0.12);
}

.contact-content > p {
  max-width: 590px;
  margin-top: 22px;
  color: rgba(220, 235, 246, 0.74);
  font-size: 17px;
  line-height: 1.78;
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.contact-card-grid article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  min-height: 122px;
  padding: 20px;
  border: 1px solid rgba(0, 167, 255, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(11, 30, 48, 0.82), rgba(4, 12, 21, 0.88));
}

.contact-card-grid span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #ffffff;
  border-radius: 8px;
  background: linear-gradient(180deg, #129dff, #0079ee);
  box-shadow: 0 12px 28px rgba(0, 121, 238, 0.22);
}

.contact-card-grid .contact-icon-image {
  border: 1px solid rgba(0, 167, 255, 0.48);
  background: rgba(3, 16, 29, 0.84);
}

.contact-card-grid .contact-icon-image img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(0, 167, 255, 0.42));
}

.contact-card-grid h3 {
  color: #ffffff;
  font-size: 17px;
}

.contact-card-grid p,
.contact-card-grid a {
  margin-top: 6px;
  display: block;
  color: rgba(220, 235, 246, 0.72);
}

.contact-card-grid a:hover {
  color: var(--blue);
}

.contact-note {
  margin-top: 18px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.contact-note strong {
  color: #ffffff;
}

.contact-note p {
  margin-top: 8px;
  color: rgba(220, 235, 246, 0.68);
}

.contact-form-panel {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 34px;
  border: 1px solid rgba(0, 167, 255, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(12, 28, 44, 0.95), rgba(5, 13, 23, 0.96));
  box-shadow: 0 24px 76px rgba(0, 0, 0, 0.32), 0 0 32px rgba(0, 167, 255, 0.1);
}

.contact-form-panel > div:first-child,
.contact-form-panel .full-span,
.contact-form-panel button,
.contact-form-panel .form-status {
  grid-column: 1 / -1;
}

.contact-form-panel h2 {
  color: #ffffff;
  font-size: 30px;
}

.contact-form-panel .form-note {
  margin-top: 10px;
  color: rgba(220, 235, 246, 0.68);
}

.contact-form-panel label {
  color: rgba(240, 248, 255, 0.82);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.contact-service-strip {
  background: transparent;
}

.contact-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.contact-service-grid article {
  min-height: 118px;
  display: grid;
  place-items: center;
  padding: 18px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  border: 1px solid rgba(0, 167, 255, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(0, 167, 255, 0.12), rgba(4, 12, 21, 0.88));
}

.safeguard-intro {
  background:
    radial-gradient(circle at 80% 18%, rgba(0, 167, 255, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(3, 10, 18, 0.98), rgba(3, 8, 14, 0.98));
}

.safeguard-intro-layout {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(360px, 0.72fr);
  gap: 58px;
  align-items: center;
}

.safeguard-intro h2 {
  color: #ffffff;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1;
}

.safeguard-intro p:last-child {
  max-width: 720px;
  margin-top: 22px;
  color: rgba(220, 235, 246, 0.74);
  font-size: 18px;
  line-height: 1.78;
}

.safeguard-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.safeguard-stat-grid article {
  min-height: 150px;
  padding: 24px 18px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  border: 1px solid rgba(0, 167, 255, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(0, 167, 255, 0.16), rgba(5, 14, 24, 0.88));
  box-shadow: inset 0 0 24px rgba(255, 255, 255, 0.03);
}

.safeguard-stat-grid strong {
  color: var(--blue);
  font-size: 42px;
  line-height: 1;
  text-shadow: 0 0 18px rgba(0, 167, 255, 0.36);
}

.safeguard-stat-grid span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

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

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

.product-family-grid article {
  position: relative;
  min-height: 330px;
  padding: 28px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  align-content: stretch;
  overflow: hidden;
  border: 1px solid rgba(0, 167, 255, 0.26);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 167, 255, 0.18), transparent 36%),
    linear-gradient(145deg, rgba(12, 28, 44, 0.88), rgba(5, 13, 23, 0.94));
}

.product-family-grid article::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  height: 2px;
  background: var(--blue);
  box-shadow: 0 0 16px rgba(0, 167, 255, 0.72);
}

.product-family-grid span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.product-family-grid h3 {
  margin-top: 18px;
  color: #ffffff;
  font-size: 30px;
  line-height: 1.08;
}

.product-family-grid p {
  margin-top: 18px;
  color: rgba(220, 235, 246, 0.7);
  font-size: 15px;
}

.product-family-grid a {
  width: fit-content;
  margin-top: auto;
  padding-top: 28px;
  color: #ffffff;
  font-weight: 700;
  border-bottom: 2px solid var(--blue);
}

.preserve-series-strip {
  grid-template-columns: repeat(4, 1fr);
}

.series-strip article {
  position: relative;
  min-height: 230px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(0, 167, 255, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(12, 28, 44, 0.88), rgba(5, 13, 23, 0.9));
}

.series-strip article::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -100px;
  width: 220px;
  height: 180px;
  background: radial-gradient(ellipse at center, rgba(0, 167, 255, 0.26), transparent 68%);
  filter: blur(10px);
}

.series-strip span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.series-strip h3 {
  margin-top: 16px;
  color: #ffffff;
  font-size: 28px;
}

.series-strip p {
  margin-top: 16px;
  color: rgba(220, 235, 246, 0.7);
  font-size: 15px;
}

.safeguard-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.compact-product-grid {
  grid-template-columns: repeat(3, 1fr);
}

.safeguard-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(12, 28, 44, 0.9), rgba(5, 13, 23, 0.94));
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
}

.safeguard-card.is-featured {
  border-color: rgba(0, 167, 255, 0.55);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 167, 255, 0.16);
}

.safeguard-card-media {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  background: #07111d;
}

.safeguard-card-media img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  filter: grayscale(0.9) brightness(0.58) contrast(1.08);
}

.safeguard-card-media[data-product-name] img {
  filter: none;
}

.safeguard-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 25%, rgba(0, 0, 0, 0.72)),
    linear-gradient(90deg, rgba(0, 167, 255, 0.16), transparent 46%);
}

.safeguard-card-media[data-product-name]::after {
  content: "";
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 12px;
  width: 74px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 167, 255, 0.95));
  box-shadow: 0 0 14px rgba(0, 167, 255, 0.72);
  pointer-events: none;
}

.safeguard-card-media::before {
  content: attr(data-product-name);
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 20px;
  max-width: calc(100% - 150px);
  padding: 12px 18px 13px;
  color: #ffffff;
  font-size: clamp(18px, 1.7vw, 28px);
  font-weight: 700;
  line-height: 1;
  text-align: right;
  letter-spacing: 0.03em;
  border: 1px solid transparent;
  border-radius: 6px 0 6px 6px;
  background:
    linear-gradient(135deg, rgba(0, 167, 255, 0.18), rgba(4, 15, 26, 0.88) 36%, rgba(3, 9, 16, 0.94)) padding-box,
    linear-gradient(135deg, rgba(0, 167, 255, 0.92), rgba(0, 167, 255, 0.38) 45%, rgba(0, 167, 255, 0.96)) border-box;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 0 24px rgba(0, 167, 255, 0.24),
    0 14px 26px rgba(0, 0, 0, 0.28);
  text-shadow: 0 0 14px rgba(0, 167, 255, 0.42), 0 2px 12px rgba(0, 0, 0, 0.8);
  pointer-events: none;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.safeguard-card-media span {
  position: absolute;
  z-index: 1;
  left: 18px;
  bottom: 18px;
  padding: 7px 12px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(0, 167, 255, 0.6);
  border-radius: 4px;
  background: rgba(4, 15, 26, 0.78);
}

.safeguard-card-body {
  padding: 26px;
}

.safeguard-card-body > p:first-child {
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.safeguard-card-body h3 {
  margin-top: 8px;
  color: #ffffff;
  font-size: 34px;
}

.compact-product-grid .safeguard-card-body h3 {
  font-size: 30px;
}

.safeguard-card-body strong {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.88);
}

.safeguard-card-body > p:not(:first-child) {
  margin-top: 16px;
  color: rgba(220, 235, 246, 0.7);
}

.safeguard-card-body ul,
.safeguard-notes-panel ul {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.safeguard-card-body li,
.safeguard-notes-panel li {
  position: relative;
  padding: 8px 0 8px 18px;
  color: rgba(220, 235, 246, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.safeguard-card-body li::before,
.safeguard-notes-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 10px rgba(0, 167, 255, 0.76);
}

.preserve-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.preserve-feature-card {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(160, 202, 230, 0.36);
  border-radius: 8px;
  background: #06101b;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.34);
  isolation: isolate;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.preserve-feature-card::before,
.preserve-feature-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.preserve-feature-card::before {
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(2, 9, 15, 0.1) 0%, rgba(2, 9, 15, 0.1) 47%, rgba(1, 8, 13, 0.86) 73%, rgba(1, 8, 13, 0.96) 100%),
    linear-gradient(90deg, rgba(0, 167, 255, 0.16), transparent 42%);
}

.preserve-feature-card::after {
  inset: 0;
  z-index: 3;
  border: 1px solid transparent;
  border-radius: 8px;
  background:
    linear-gradient(135deg, var(--card-accent, rgba(0, 167, 255, 0.7)), transparent 24%, transparent 72%, var(--card-accent-soft, rgba(0, 167, 255, 0.35))) border-box;
  -webkit-mask:
    linear-gradient(#000 0 0) padding-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.preserve-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.38), 0 0 34px var(--card-glow, rgba(0, 167, 255, 0.22));
}

.preserve-feature-media {
  position: absolute;
  inset: 0;
}

.preserve-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preserve-feature-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 620px;
  flex-direction: column;
  padding: 22px;
  color: #ffffff;
}

.preserve-feature-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.preserve-feature-top p {
  margin: 0;
  color: var(--card-accent, var(--blue));
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.preserve-feature-top span {
  max-width: 76px;
  padding: 8px 9px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  border: 1px solid var(--card-accent-soft, rgba(0, 167, 255, 0.45));
  border-radius: 0 0 8px 8px;
  background: linear-gradient(180deg, var(--card-accent-deep, rgba(0, 86, 150, 0.88)), rgba(5, 14, 23, 0.72));
  box-shadow: 0 0 20px var(--card-glow, rgba(0, 167, 255, 0.24));
}

.preserve-feature-content h3 {
  margin: 8px 0 0;
  color: #ffffff;
  font-size: clamp(46px, 4.2vw, 68px);
  line-height: 0.9;
  letter-spacing: 0;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.7);
}

.preserve-feature-content strong {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.35;
}

.preserve-feature-footer {
  margin-top: auto;
  padding-top: 20px;
}

.preserve-feature-footer p {
  margin: 0 0 10px;
  color: var(--card-accent, var(--blue));
  font-size: 13px;
  font-weight: 800;
}

.preserve-feature-footer span {
  display: block;
  padding: 9px 10px;
  color: rgba(220, 235, 246, 0.76);
  font-size: 15px;
  line-height: 1.7;
  border-radius: 6px;
  background: rgba(1, 8, 14, 0.42);
  backdrop-filter: blur(2px);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.72);
}

.preserve-spec-list {
  display: grid;
  gap: 0;
  list-style: none;
  margin: 18px 0 0;
  padding: 2px 0 0;
}

.preserve-spec-list li {
  position: relative;
  display: grid;
  grid-template-columns: minmax(78px, 0.95fr) minmax(92px, 1.05fr);
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 7px 0 7px 14px;
  color: rgba(232, 242, 250, 0.74);
  font-size: 12px;
  line-height: 1.25;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.preserve-spec-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--card-accent, var(--blue));
  box-shadow: 0 0 10px var(--card-glow, rgba(0, 167, 255, 0.5));
}

.preserve-spec-list span,
.preserve-spec-list b {
  min-width: 0;
}

.preserve-spec-list b {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  text-align: right;
}

.preserve-blue {
  --card-accent: #00a7ff;
  --card-accent-soft: rgba(0, 167, 255, 0.62);
  --card-accent-deep: rgba(0, 93, 180, 0.9);
  --card-glow: rgba(0, 167, 255, 0.26);
}

.preserve-silver {
  --card-accent: #dbeeff;
  --card-accent-soft: rgba(215, 235, 250, 0.46);
  --card-accent-deep: rgba(82, 101, 116, 0.82);
  --card-glow: rgba(198, 228, 255, 0.18);
}

.preserve-dark {
  --card-accent: #9bb2c2;
  --card-accent-soft: rgba(155, 178, 194, 0.4);
  --card-accent-deep: rgba(34, 45, 54, 0.84);
  --card-glow: rgba(155, 178, 194, 0.14);
}

.preserve-gold {
  --card-accent: #f4ad27;
  --card-accent-soft: rgba(244, 173, 39, 0.62);
  --card-accent-deep: rgba(126, 77, 8, 0.88);
  --card-glow: rgba(244, 173, 39, 0.2);
}

.tpu-feature-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.tpu-feature-card {
  position: relative;
  flex: 0 1 calc((100% - 36px) / 4);
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(170, 207, 232, 0.26);
  border-radius: 8px;
  background: #030a12;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.34);
  isolation: isolate;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.tpu-feature-card::before,
.tpu-feature-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.tpu-feature-card::before {
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(1, 8, 14, 0.34) 0%, rgba(1, 8, 14, 0.04) 38%, rgba(1, 8, 14, 0.08) 58%, rgba(1, 8, 14, 0.48) 100%),
    linear-gradient(135deg, var(--tpu-accent-glow, rgba(0, 167, 255, 0.16)), transparent 40%);
}

.tpu-feature-card::after {
  content: none;
}

.tpu-feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--tpu-accent, var(--blue));
  box-shadow: 0 26px 68px rgba(0, 0, 0, 0.4), 0 0 28px var(--tpu-accent-glow, rgba(0, 167, 255, 0.26));
}

.tpu-feature-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tpu-feature-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: 18px 16px;
  color: #ffffff;
}

.tpu-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  min-height: 28px;
}

.tpu-card-head span {
  position: relative;
  z-index: 4;
  display: inline-flex;
  min-width: 72px;
  min-height: 31px;
  align-items: center;
  justify-content: center;
  margin: -8px 0 0 -8px;
  padding: 8px 15px 7px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 1.4px;
  text-align: center;
  background: linear-gradient(135deg, var(--tpu-accent, #00a7ff), var(--tpu-accent-deep, #005a98));
  clip-path: polygon(10px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
  box-shadow: 0 0 20px var(--tpu-accent-glow, rgba(0, 167, 255, 0.32));
}

.tpu-card-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
}

.tpu-feature-content h3 {
  margin: 18px 0 0;
  color: #ffffff;
  font-size: clamp(27px, 2.15vw, 36px);
  line-height: 0.98;
  text-shadow: 0 7px 20px rgba(0, 0, 0, 0.68);
}

.tpu-feature-content strong {
  display: block;
  margin-top: 12px;
  color: var(--tpu-accent, var(--blue));
  font-size: 15px;
  line-height: 1.35;
}

.tpu-feature-content > p {
  max-width: 92%;
  margin: 12px 0 0;
  padding: 8px 10px;
  color: rgba(240, 247, 252, 0.9);
  font-size: 15px;
  line-height: 1.62;
  border-radius: 6px;
  background: rgba(1, 8, 14, 0.42);
  backdrop-filter: blur(2px);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.72);
}

.tpu-blue {
  --tpu-accent: #008dff;
  --tpu-accent-deep: #005dba;
  --tpu-accent-glow: rgba(0, 141, 255, 0.32);
}

.tpu-cyan {
  --tpu-accent: #00d5f4;
  --tpu-accent-deep: #00758f;
  --tpu-accent-glow: rgba(0, 213, 244, 0.24);
}

.tpu-gold {
  --tpu-accent: #f2bd37;
  --tpu-accent-deep: #9c6f10;
  --tpu-accent-glow: rgba(242, 189, 55, 0.22);
}

.tpu-purple {
  --tpu-accent: #8e55ff;
  --tpu-accent-deep: #55319d;
  --tpu-accent-glow: rgba(142, 85, 255, 0.22);
}

.tpu-silver {
  --tpu-accent: #cbd5df;
  --tpu-accent-deep: #5d6973;
  --tpu-accent-glow: rgba(203, 213, 223, 0.18);
}

.nano-feature-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.nano-feature-card {
  position: relative;
  flex: 0 1 calc((100% - 48px) / 4);
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(158, 202, 232, 0.34);
  border-radius: 8px;
  background: #030a13;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.34);
  isolation: isolate;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.nano-feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(4, 12, 22, 0.1) 0%, rgba(4, 12, 22, 0.18) 42%, rgba(4, 12, 22, 0.72) 100%),
    radial-gradient(circle at 28% 4%, var(--nano-glow, rgba(0, 167, 255, 0.34)), transparent 36%);
  pointer-events: none;
}

.nano-feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--nano-accent, var(--blue));
  box-shadow: 0 26px 68px rgba(0, 0, 0, 0.4), 0 0 28px var(--nano-glow, rgba(0, 167, 255, 0.24));
}

.nano-feature-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nano-feature-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: 18px 16px 16px;
  color: #ffffff;
}

.nano-card-label {
  width: max-content;
  min-width: 86px;
  margin: -7px 0 14px;
  padding: 8px 15px 7px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-align: center;
  background: linear-gradient(135deg, var(--nano-accent, var(--blue)), var(--nano-deep, #004a8a));
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
  box-shadow: 0 0 18px var(--nano-glow, rgba(0, 167, 255, 0.28));
}

.nano-feature-content > p {
  margin: 0;
  color: var(--nano-accent, var(--blue));
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nano-feature-content h3 {
  margin: 4px 0 0;
  color: #ffffff;
  font-size: clamp(34px, 2.55vw, 46px);
  line-height: 0.98;
  text-shadow: 0 7px 20px rgba(0, 0, 0, 0.68);
}

.nano-feature-content strong {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 6px;
  color: #ffffff;
  font-size: 18px;
  line-height: 1;
}

.nano-feature-content strong span {
  color: var(--nano-accent, var(--blue));
  font-size: clamp(34px, 2.7vw, 48px);
  font-weight: 800;
  text-shadow: 0 0 18px var(--nano-glow, rgba(0, 167, 255, 0.34));
}

.nano-feature-content em {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.45;
}

.nano-feature-content ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
  list-style: none;
  margin: auto 0 0;
  padding: 0;
}

.nano-feature-content li {
  display: grid;
  gap: 4px;
  justify-items: center;
  min-width: 0;
  padding-top: 26px;
  color: rgba(232, 242, 250, 0.84);
  font-size: 10px;
  line-height: 1.2;
  text-align: center;
  background:
    radial-gradient(circle at 50% 10px, rgba(0, 167, 255, 0.34), transparent 13px);
}

.nano-feature-content b {
  font-size: 9px;
  font-weight: 700;
}

.nano-feature-content li span {
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
}

.nano-sky {
  --nano-accent: #6ec4ff;
  --nano-deep: #236ba0;
  --nano-glow: rgba(110, 196, 255, 0.34);
}

.nano-cyan {
  --nano-accent: #19c8f3;
  --nano-deep: #0a667b;
  --nano-glow: rgba(25, 200, 243, 0.28);
}

.nano-blue {
  --nano-accent: #2c8dff;
  --nano-deep: #174d9e;
  --nano-glow: rgba(44, 141, 255, 0.28);
}

.nano-indigo {
  --nano-accent: #6258e9;
  --nano-deep: #36318a;
  --nano-glow: rgba(98, 88, 233, 0.24);
}

.nano-purple {
  --nano-accent: #8d4dde;
  --nano-deep: #4f2982;
  --nano-glow: rgba(141, 77, 222, 0.24);
}

.nano-deep {
  --nano-accent: #9d5bed;
  --nano-deep: #4c246f;
  --nano-glow: rgba(157, 91, 237, 0.24);
}

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

.safeguard-feature-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(170, 207, 232, 0.28);
  border-radius: 8px;
  background: #030a12;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.34);
  isolation: isolate;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.safeguard-feature-card::before,
.safeguard-feature-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.safeguard-feature-card::before {
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(1, 8, 14, 0.44) 0%, rgba(1, 8, 14, 0.18) 44%, rgba(1, 8, 14, 0.03) 100%),
    linear-gradient(180deg, rgba(1, 8, 14, 0.22) 0%, rgba(1, 8, 14, 0.02) 44%, rgba(1, 8, 14, 0.46) 100%),
    linear-gradient(135deg, var(--sg-glow, rgba(0, 167, 255, 0.16)), transparent 42%);
}

.safeguard-feature-card::after {
  inset: 0;
  z-index: 3;
  border: 1px solid transparent;
  border-radius: 8px;
  background:
    linear-gradient(135deg, var(--sg-accent, #00a7ff), transparent 24%, transparent 76%, var(--sg-accent-soft, rgba(0, 167, 255, 0.42))) border-box;
  -webkit-mask:
    linear-gradient(#000 0 0) padding-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.safeguard-feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--sg-accent, var(--blue));
  box-shadow: 0 26px 68px rgba(0, 0, 0, 0.4), 0 0 28px var(--sg-glow, rgba(0, 167, 255, 0.26));
}

.safeguard-feature-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.04) contrast(1.04) saturate(1.04);
}

.safeguard-feature-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 520px;
  flex-direction: column;
  padding: 18px 16px;
  color: #ffffff;
}

.safeguard-card-head {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 8px;
}

.safeguard-card-head span,
.safeguard-card-head em {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  padding: 6px 12px;
  color: #ffffff;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 1.2px;
  background: linear-gradient(135deg, var(--sg-accent, var(--blue)), var(--sg-deep, #004a8a));
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  box-shadow: 0 0 18px var(--sg-glow, rgba(0, 167, 255, 0.26));
}

.safeguard-card-head em {
  padding-inline: 10px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 9px;
  background: rgba(255, 255, 255, 0.08);
}

.safeguard-card-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 700;
  text-align: right;
}

.safeguard-feature-content h3 {
  margin: 26px 0 0;
  color: #ffffff;
  font-size: clamp(30px, 2.45vw, 42px);
  line-height: 0.98;
  text-shadow: 0 7px 20px rgba(0, 0, 0, 0.68);
}

.safeguard-feature-content strong {
  display: block;
  margin-top: 12px;
  color: var(--sg-accent, var(--blue));
  font-size: 15px;
  line-height: 1.35;
}

.safeguard-feature-content > p {
  max-width: 94%;
  margin: 12px 0 0;
  padding: 8px 10px;
  color: rgba(240, 247, 252, 0.9);
  font-size: 15px;
  line-height: 1.62;
  border-radius: 6px;
  background: rgba(1, 8, 14, 0.42);
  backdrop-filter: blur(2px);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.72);
}

.safeguard-spec-list {
  display: grid;
  gap: 0;
  list-style: none;
  margin: auto 0 0;
  padding: 14px 0 0;
}

.safeguard-spec-list li {
  position: relative;
  display: grid;
  grid-template-columns: minmax(72px, 0.9fr) minmax(88px, 1.1fr);
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 6px 0 6px 13px;
  color: rgba(232, 242, 250, 0.74);
  font-size: 11px;
  line-height: 1.25;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.safeguard-spec-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sg-accent, var(--blue));
  box-shadow: 0 0 10px var(--sg-glow, rgba(0, 167, 255, 0.5));
}

.safeguard-spec-list span,
.safeguard-spec-list b {
  min-width: 0;
}

.safeguard-spec-list b {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  text-align: right;
}

.safeguard-blue {
  --sg-accent: #009cff;
  --sg-accent-soft: rgba(0, 156, 255, 0.5);
  --sg-deep: #005aa7;
  --sg-glow: rgba(0, 156, 255, 0.3);
}

.safeguard-silver {
  --sg-accent: #cbd5df;
  --sg-accent-soft: rgba(203, 213, 223, 0.38);
  --sg-deep: #5d6973;
  --sg-glow: rgba(203, 213, 223, 0.18);
}

.safeguard-steel {
  --sg-accent: #5d8fc1;
  --sg-accent-soft: rgba(93, 143, 193, 0.42);
  --sg-deep: #2d526f;
  --sg-glow: rgba(93, 143, 193, 0.2);
}

.safeguard-purple {
  --sg-accent: #8e55ff;
  --sg-accent-soft: rgba(142, 85, 255, 0.42);
  --sg-deep: #56319d;
  --sg-glow: rgba(142, 85, 255, 0.22);
}

.safeguard-light {
  --sg-accent: #61bbff;
  --sg-accent-soft: rgba(97, 187, 255, 0.42);
  --sg-deep: #2d6f9d;
  --sg-glow: rgba(97, 187, 255, 0.22);
}

.services-page-hero img {
  object-position: center;
}

.service-intro-section,
.service-list-section,
.service-scenario-section,
.service-process-section,
.service-faq-section {
  background: transparent;
}

.service-stat-grid {
  grid-template-columns: 1fr;
}

.service-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-page-grid .safeguard-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.service-page-grid .safeguard-card::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 0;
  height: 2px;
  background: var(--blue);
  box-shadow: 0 0 18px rgba(0, 167, 255, 0.62);
  transform: scaleX(0.28);
  transform-origin: left;
  transition: transform 180ms ease;
}

.service-page-grid .safeguard-card:hover::after {
  transform: scaleX(1);
}

.service-page-grid .safeguard-card-body {
  flex: 1;
}

.service-page-grid .safeguard-card-body h3 {
  font-size: 27px;
  line-height: 1.08;
}

.service-page-grid .safeguard-card-body a {
  color: #ffffff;
  font-weight: 700;
  border-bottom: 1px solid rgba(0, 167, 255, 0.72);
}

.service-page-grid .safeguard-card-body a:hover {
  color: var(--blue);
}

.service-image-clear .safeguard-card-media img {
  filter: none;
}

.service-image-clear .safeguard-card-media::after {
  content: none;
}

.service-values-panel {
  align-items: center;
}

.service-values-list article {
  min-height: 150px;
}

.projects-page-hero img {
  object-position: center;
}

.work-feature-section,
.work-gallery-section,
.work-proof-section {
  background: transparent;
}

.work-feature-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(520px, 1fr);
  gap: 52px;
  align-items: center;
}

.work-feature-copy h2 {
  max-width: 660px;
  color: #ffffff;
  font-size: clamp(38px, 4.8vw, 72px);
  line-height: 1;
  text-shadow: 0 0 22px rgba(255, 255, 255, 0.12);
}

.work-feature-copy > p {
  max-width: 620px;
  margin-top: 22px;
  color: rgba(220, 235, 246, 0.74);
  font-size: 17px;
  line-height: 1.78;
}

.work-filter-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.work-filter-strip a {
  padding: 11px 16px;
  color: rgba(240, 248, 255, 0.82);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(0, 167, 255, 0.32);
  border-radius: 8px;
  background: rgba(7, 20, 34, 0.72);
}

.work-filter-strip a:hover {
  color: #ffffff;
  border-color: rgba(0, 167, 255, 0.72);
  box-shadow: 0 0 22px rgba(0, 167, 255, 0.18);
}

.work-feature-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(0, 167, 255, 0.34);
  border-radius: 8px;
  background: #07111d;
  box-shadow: 0 28px 82px rgba(0, 0, 0, 0.32), 0 0 36px rgba(0, 167, 255, 0.12);
}

.work-feature-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  filter: brightness(0.74) contrast(1.08);
}

.work-feature-card::after,
.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 36%, rgba(0, 0, 0, 0.82)),
    linear-gradient(90deg, rgba(0, 167, 255, 0.14), transparent 52%);
  pointer-events: none;
}

.work-feature-card > div {
  position: absolute;
  z-index: 1;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 167, 255, 0.38);
}

.work-feature-card span,
.work-card-content span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.work-feature-card strong {
  display: block;
  margin-top: 10px;
  color: #ffffff;
  font-size: 28px;
}

.work-feature-card p,
.work-card-content p {
  margin-top: 8px;
  color: rgba(220, 235, 246, 0.72);
}

.work-gallery-head {
  margin-bottom: 36px;
}

.work-slider-block {
  margin-top: 36px;
}

.work-slider-block + .work-slider-block {
  margin-top: 58px;
}

.work-slider-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(0, 167, 255, 0.2);
}

.work-slider-head span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
}

.work-slider-head h3 {
  margin-top: 8px;
  color: #ffffff;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.08;
}

.work-slider-controls {
  display: flex;
  gap: 10px;
}

.work-slider-controls button {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font: inherit;
  font-size: 18px;
  border: 1px solid rgba(0, 167, 255, 0.52);
  border-radius: 8px;
  background: rgba(7, 20, 34, 0.82);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.work-slider-controls button:hover {
  border-color: rgba(0, 167, 255, 0.9);
  background: linear-gradient(180deg, #129dff, #0079ee);
  transform: translateY(-2px);
}

.work-slider-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 31%);
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  padding: 4px 2px 18px;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 167, 255, 0.7) rgba(255, 255, 255, 0.08);
}

.work-slider-track::-webkit-scrollbar {
  height: 8px;
}

.work-slider-track::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
}

.work-slider-track::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(0, 167, 255, 0.72);
}

.work-card {
  position: relative;
  scroll-snap-align: start;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #07111d;
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.22);
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.72) brightness(0.62) contrast(1.1);
  transition: transform 260ms ease, filter 260ms ease;
}

.work-card:hover img {
  transform: scale(1.045);
  filter: grayscale(0.25) brightness(0.74) contrast(1.12);
}

.work-card-content {
  position: absolute;
  z-index: 1;
  left: 20px;
  right: 20px;
  bottom: 20px;
}

.work-card-content h3 {
  margin-top: 8px;
  color: #ffffff;
  font-size: 22px;
}

.spec-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(0, 167, 255, 0.24);
  border-radius: 8px;
  background: rgba(5, 13, 23, 0.82);
}

.spec-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}

.spec-table th,
.spec-table td {
  padding: 18px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.spec-table th {
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(0, 167, 255, 0.1);
}

.spec-table td {
  color: rgba(220, 235, 246, 0.78);
}

.spec-table tbody tr:last-child td {
  border-bottom: 0;
}

.safeguard-notes-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) 1fr;
  gap: 42px;
  padding: 42px;
  border: 1px solid rgba(0, 167, 255, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(12, 28, 44, 0.84), rgba(5, 13, 23, 0.92));
}

.safeguard-notes-panel h2 {
  color: #ffffff;
  font-size: clamp(32px, 3.4vw, 50px);
}

.footer-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 0.72fr 1fr 1fr;
  gap: 58px;
  padding: 72px 0 74px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
}

.footer-logo-image {
  display: block;
  width: 172px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.footer-mark {
  position: relative;
  width: 52px;
  height: 36px;
}

.footer-mark span {
  position: absolute;
  width: 14px;
  height: 34px;
  border-radius: 3px;
  transform: skewY(-30deg);
  background: linear-gradient(180deg, #5bd7ff, #0078ff);
}

.footer-mark span:nth-child(1) {
  left: 2px;
}

.footer-mark span:nth-child(2) {
  left: 17px;
  height: 30px;
}

.footer-mark span:nth-child(3) {
  left: 30px;
  height: 26px;
  background: linear-gradient(180deg, #00a7ff, #0838b5);
}

.footer-logo strong {
  display: block;
  font-size: 28px;
  line-height: 1;
}

.footer-logo small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-brand > p {
  max-width: 360px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.8;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 26px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  border: 1px solid rgba(0, 167, 255, 0.46);
  background: rgba(0, 167, 255, 0.12);
  box-shadow: inset 0 0 14px rgba(0, 167, 255, 0.08), 0 0 16px rgba(0, 167, 255, 0.12);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.footer-social a:hover {
  border-color: rgba(0, 167, 255, 0.92);
  background: rgba(0, 167, 255, 0.22);
  box-shadow: inset 0 0 16px rgba(0, 167, 255, 0.16), 0 0 22px rgba(0, 167, 255, 0.28);
  transform: translateY(-2px);
}

.footer-social img {
  width: 17px;
  height: 17px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(53%) sepia(97%) saturate(2205%) hue-rotate(168deg) brightness(103%) contrast(105%) drop-shadow(0 0 8px rgba(0, 167, 255, 0.7));
}

.footer-col h2 {
  margin-bottom: 24px;
  color: #ffffff;
  font-size: 18px;
}

.footer-col nav {
  display: grid;
  gap: 13px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.74);
  transition: color 180ms ease;
}

.footer-col a:hover {
  color: var(--blue);
}

.footer-contact {
  display: grid;
  align-content: start;
  gap: 22px;
}

.contact-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
}

.contact-row span {
  color: var(--blue);
  font-size: 18px;
  line-height: 1.3;
}

.contact-row img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(0, 167, 255, 0.45));
}

.contact-row strong {
  display: block;
  color: #ffffff;
  margin-bottom: 8px;
}

.contact-row p {
  color: rgba(255, 255, 255, 0.72);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .container {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-bottom div {
  display: flex;
  gap: 34px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.78);
}

.hero-visual {
  align-self: end;
}

.visual-frame {
  position: relative;
  border: 1px solid rgba(126, 202, 255, 0.34);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 80px rgba(50, 196, 255, 0.2);
}

.visual-frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(0.72) hue-rotate(172deg) brightness(0.62);
}

.placeholder-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 7px 10px;
  color: #dff5ff;
  font-size: 12px;
  border: 1px solid rgba(126, 202, 255, 0.45);
  border-radius: 4px;
  background: rgba(2, 12, 22, 0.7);
}

.services-preview,
.about-projects {
  padding: 86px 0;
  background: #f6f9fc;
}

.section-kicker {
  width: fit-content;
  margin-bottom: 14px;
  padding: 5px 9px;
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 700;
  border: 1px solid rgba(17, 118, 200, 0.16);
  border-radius: 4px;
  background: rgba(50, 196, 255, 0.08);
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading h2,
.product-copy h2,
.about-card h2,
.knowledge-panel h2 {
  color: var(--ink);
  font-size: clamp(30px, 3.2vw, 42px);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.55fr);
  gap: 34px;
  align-items: end;
}

.split-heading p:last-child,
.product-copy > p,
.about-card > p,
.form-note {
  color: #637184;
}

.service-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(2, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(13, 36, 58, 0.1);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(9, 29, 50, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(50, 196, 255, 0.45);
  box-shadow: 0 24px 60px rgba(9, 29, 50, 0.12);
}

.featured-card {
  grid-row: span 2;
  padding: 0;
  overflow: hidden;
  background: var(--ink);
  color: #ffffff;
}

.featured-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: brightness(0.66) saturate(0.75);
}

.featured-card div {
  padding: 24px;
}

.service-card h3,
.product-panel h3 {
  margin: 8px 0 12px;
  color: var(--ink);
  font-size: 22px;
}

.featured-card h3 {
  color: #ffffff;
}

.service-card p {
  color: #637184;
}

.featured-card p {
  color: #d6e6f6;
}

.featured-card span,
.card-number,
.product-panel span {
  color: var(--blue-2);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.products-preview {
  padding: 92px 0;
  color: #dbe8f4;
  background:
    radial-gradient(circle at 18% 20%, rgba(50, 196, 255, 0.18), transparent 28%),
    linear-gradient(135deg, #07111d 0%, #0a1b2d 55%, #07111d 100%);
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: 44px;
  align-items: center;
}

.product-copy h2 {
  color: #ffffff;
}

.product-copy > p {
  margin-top: 22px;
  color: #bdcad8;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  margin-top: 28px;
  color: var(--blue);
  font-weight: 700;
}

.product-stack {
  display: grid;
  gap: 16px;
}

.product-panel {
  padding: 26px 28px;
  border: 1px solid rgba(126, 202, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 22px rgba(255, 255, 255, 0.03);
}

.product-panel.active {
  transform: translateX(-18px);
  border-color: rgba(50, 196, 255, 0.72);
  background: rgba(50, 196, 255, 0.1);
}

.product-panel h3 {
  color: #ffffff;
}

.product-panel p {
  color: #bdcad8;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 0.8fr);
  gap: 42px;
  align-items: center;
}

.image-collage {
  position: relative;
  min-height: 430px;
}

.wide-image,
.small-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(13, 36, 58, 0.12);
  box-shadow: var(--shadow);
}

.wide-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(0.75) hue-rotate(172deg) brightness(0.78);
}

.small-image {
  position: absolute;
  right: 26px;
  bottom: 0;
  width: 38%;
  background: #fff;
}

.small-image img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.about-card {
  padding: 36px;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(9, 29, 50, 0.08);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #354253;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 12px;
  border: 3px solid var(--blue);
  border-radius: 50%;
}

.knowledge-quote {
  padding: 92px 0 70px;
  background: #ffffff;
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.7fr);
  gap: 28px;
  align-items: start;
}

.knowledge-panel {
  padding: 36px;
  min-height: 100%;
  border-radius: var(--radius);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(50, 196, 255, 0.12), transparent 34%),
    var(--ink);
}

.knowledge-panel h2 {
  color: #ffffff;
}

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

details {
  border: 1px solid rgba(126, 202, 255, 0.24);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
}

summary {
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 600;
}

details p {
  padding: 0 18px 18px;
  color: #bdcad8;
}

.quote-form {
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid rgba(13, 36, 58, 0.12);
  background: #f7fafc;
  box-shadow: 0 16px 54px rgba(9, 29, 50, 0.08);
}

.quote-form label {
  display: grid;
  gap: 7px;
  margin-top: 14px;
  color: #2e3948;
  font-weight: 600;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(13, 36, 58, 0.16);
  border-radius: 6px;
  padding: 12px 13px;
  font: inherit;
  color: var(--ink);
  background: #ffffff;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 2px solid rgba(50, 196, 255, 0.3);
  border-color: var(--blue-2);
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-submit {
  width: 100%;
  margin-top: 20px;
  cursor: pointer;
}

.form-status {
  min-height: 24px;
  margin-top: 12px;
  color: var(--blue-2);
  font-weight: 600;
}

.contact-form-panel.quote-form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 34px;
  border: 1px solid rgba(0, 167, 255, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(12, 28, 44, 0.95), rgba(5, 13, 23, 0.96));
  box-shadow: 0 24px 76px rgba(0, 0, 0, 0.32), 0 0 32px rgba(0, 167, 255, 0.1);
}

.contact-form-panel.quote-form label {
  margin-top: 0;
  color: rgba(240, 248, 255, 0.82);
}

.contact-form-panel.quote-form input,
.contact-form-panel.quote-form select,
.contact-form-panel.quote-form textarea {
  color: #ffffff;
  border-color: rgba(0, 167, 255, 0.22);
  background: rgba(2, 10, 18, 0.76);
}

.contact-form-panel.quote-form input::placeholder,
.contact-form-panel.quote-form textarea::placeholder {
  color: rgba(220, 235, 246, 0.42);
}

.contact-form-panel.quote-form button {
  width: 100%;
  margin-top: 8px;
}

@media (min-width: 761px) {
  .hero-copy > p,
  .section-heading > p,
  .about-section-head > p:not(.about-dot-label),
  .about-content > p,
  .about-lead,
  .about-info-grid p,
  .about-cta-panel p,
  .contact-content > p,
  .contact-note p,
  .faq-intro > p,
  .faq-item p,
  .safeguard-card-body > p:not(:first-child),
  .preserve-feature-footer > p,
  .work-feature-copy > p,
  .work-card-content p,
  .footer-brand > p,
  .contact-row p,
  details p {
    font-size: 18px;
  }
}

@media (max-width: 1080px) {
  .site-header {
    top: 18px;
  }

  .nav-shell {
    min-height: 86px;
    padding: 16px 18px;
    flex-wrap: nowrap;
    justify-content: space-between;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .brand {
    padding-right: 24px;
    min-width: 170px;
  }

  .brand-logo-image {
    width: 150px;
    max-height: 56px;
  }

  .brand-mark {
    width: 50px;
    height: 50px;
  }

  .brand-mark span {
    width: 16px;
    height: 42px;
  }

  .brand-mark span:nth-child(1) {
    left: 7px;
  }

  .brand-mark span:nth-child(2) {
    left: 21px;
    height: 36px;
  }

  .brand-mark span:nth-child(3) {
    left: 32px;
    height: 30px;
  }

  .main-nav {
    display: grid;
    position: fixed;
    inset: 0;
    z-index: 990;
    width: 100vw;
    max-width: none;
    height: 100dvh;
    min-height: 100dvh;
    align-content: start;
    justify-content: stretch;
    gap: 0;
    margin: 0;
    padding: 100px 0 32px;
    border: 0;
    border-radius: 0;
    color: #f6fbff;
    font-size: 20px;
    font-weight: 600;
    background:
      linear-gradient(180deg, rgba(4, 17, 31, 0.97), rgba(2, 8, 16, 0.95)),
      radial-gradient(circle at 88% 18%, rgba(0, 167, 255, 0.18), transparent 30%);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 260ms ease, opacity 220ms ease, visibility 220ms ease;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 1002;
  }

  .brand {
    position: relative;
    z-index: 1002;
    flex: 1;
    border-right: 0;
    padding-right: 0;
  }

  .nav-cta {
    display: none;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  .main-nav.is-open > a,
  .main-nav.is-open .nav-dropdown-toggle {
    position: relative;
    display: block;
    width: 100%;
    padding: 16px 40px;
    font-weight: 700;
    border-bottom: 0;
  }

  .main-nav.is-open > a::after,
  .main-nav.is-open .nav-dropdown-toggle::after {
    content: "";
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: none;
  }

  .main-nav.is-open .nav-dropdown {
    display: grid;
    gap: 0;
  }

  .main-nav.is-open .nav-dropdown-toggle::before {
    display: block;
    right: 40px;
    top: 50%;
    transform: translateY(-60%) rotate(45deg);
    transition: transform 180ms ease;
  }

  .main-nav.is-open .nav-dropdown.is-expanded .nav-dropdown-toggle::before {
    transform: translateY(-35%) rotate(225deg);
  }

  .main-nav.is-open .nav-dropdown-menu {
    position: static;
    min-width: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0 40px 0 56px;
    border: 0;
    border-left: 1px solid rgba(0, 167, 255, 0.34);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    transform: none;
    transition: max-height 220ms ease, opacity 180ms ease, padding 180ms ease, visibility 180ms ease;
  }

  .main-nav.is-open .nav-dropdown.is-expanded .nav-dropdown-menu {
    max-height: 260px;
    padding-top: 8px;
    padding-bottom: 8px;
    opacity: 1;
    visibility: visible;
  }

  .main-nav.is-open .nav-dropdown-menu a {
    padding: 9px 0;
    font-size: 15px;
    color: rgba(230, 243, 252, 0.82);
  }

  .hero-layout,
  .about-preview-layout,
  .about-detail-layout,
  .product-layout,
  .about-layout,
  .quote-layout,
  .split-heading {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

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

  .featured-card {
    grid-row: auto;
  }

  .product-panel.active {
    transform: none;
  }

  .section-screen:not(.hero) {
    padding: 76px 0;
  }

  .about-visual {
    min-height: 500px;
  }

  .about-photo-main {
    width: 58%;
  }

  .about-photo-back {
    width: 52%;
  }

  .about-content h2 {
    font-size: 42px;
  }

  .service-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .tpu-feature-grid {
    grid-template-columns: none;
  }

  .tpu-feature-card {
    flex-basis: calc((100% - 24px) / 3);
  }

  .nano-feature-grid {
    grid-template-columns: none;
  }

  .nano-feature-card {
    flex-basis: calc((100% - 32px) / 3);
  }

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

  .service-values-panel {
    grid-template-columns: 1fr;
  }

  .work-feature-layout {
    grid-template-columns: 1fr;
  }

  .work-feature-card {
    min-height: 460px;
  }

  .work-feature-card img {
    min-height: 460px;
  }

  .work-slider-track {
    grid-auto-columns: minmax(300px, 46%);
  }

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

  .projects-head {
    align-items: start;
    flex-direction: column;
  }

  .projects-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 220px);
  }

  .project-large,
  .project-tall {
    grid-row: span 1;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .faq-intro h2 {
    max-width: 100%;
  }

  .faq-contact {
    margin-top: 56px;
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 42px;
  }

  .about-detail-layout {
    gap: 46px;
  }

  .about-detail-visual {
    max-width: 620px;
    min-height: 500px;
    margin: 0 auto;
    width: 100%;
  }

  .about-detail-photo {
    height: 500px;
  }

  .about-detail-floating {
    right: 18px;
    bottom: 24px;
    width: 160px;
  }

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

  .expertise-layout,
  .values-panel,
  .about-cta-panel,
  .contact-layout,
  .safeguard-intro-layout,
  .safeguard-notes-panel {
    grid-template-columns: 1fr;
  }

  .process-rail {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 34px;
  }

  .process-rail::before {
    display: none;
  }

  .contact-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .safeguard-product-grid {
    grid-template-columns: 1fr;
  }

  .compact-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-family-grid,
  .preserve-series-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .site-header {
    top: 10px;
    padding: 0 12px;
  }

  .nav-shell {
    min-height: 64px;
    padding: 10px 32px;
    gap: 12px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow:
      0 0 34px rgba(0, 140, 255, 0.2),
      inset 0 0 34px rgba(0, 140, 255, 0.1);
  }

  .brand {
    min-width: auto;
    flex: 1;
    border-right: 0;
    padding-right: 0;
  }

  .brand-logo-image {
    width: 80px;
    max-height: 48px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-mark span {
    width: 12px;
    height: 34px;
  }

  .brand-mark span:nth-child(1) {
    left: 5px;
  }

  .brand-mark span:nth-child(2) {
    left: 17px;
    height: 30px;
  }

  .brand-mark span:nth-child(3) {
    left: 26px;
    height: 26px;
  }

  .brand-text strong {
    font-size: 22px;
  }

  .brand-text small {
    font-size: 9px;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 1002;
  }

  .brand {
    position: relative;
    z-index: 1002;
  }

  .nav-cta {
    display: none;
  }

  .main-nav {
    display: grid;
    position: fixed;
    inset: 0;
    z-index: 990;
    width: 100vw;
    max-width: none;
    height: 100dvh;
    min-height: 100dvh;
    align-content: start;
    justify-content: stretch;
    gap: 0;
    margin: 0;
    padding: 92px 0 28px;
    border: 0;
    border-radius: 0;
    color: #f6fbff;
    font-size: 19px;
    font-weight: 600;
    background:
      linear-gradient(180deg, rgba(4, 17, 31, 0.97), rgba(2, 8, 16, 0.95)),
      radial-gradient(circle at 88% 18%, rgba(0, 167, 255, 0.18), transparent 30%);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 260ms ease, opacity 220ms ease, visibility 220ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  .main-nav.is-open > a,
  .main-nav.is-open .nav-dropdown-toggle {
    position: relative;
    display: block;
    width: 100%;
    padding: 16px 32px;
    font-weight: 700;
    border-bottom: 0;
  }

  .main-nav.is-open > a::after,
  .main-nav.is-open .nav-dropdown-toggle::after {
    content: "";
    position: absolute;
    left: 32px;
    right: 32px;
    bottom: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: none;
  }

  .main-nav.is-open .nav-dropdown {
    display: grid;
    gap: 0;
  }

  .main-nav.is-open .nav-dropdown-toggle::before {
    display: block;
    right: 32px;
    top: 50%;
    transform: translateY(-60%) rotate(45deg);
    transition: transform 180ms ease;
  }

  .main-nav.is-open .nav-dropdown.is-expanded .nav-dropdown-toggle::before {
    transform: translateY(-35%) rotate(225deg);
  }

  .main-nav.is-open .nav-dropdown-menu {
    position: static;
    min-width: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0 32px 0 46px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    transform: none;
    transition: max-height 220ms ease, opacity 180ms ease, padding 180ms ease, visibility 180ms ease;
  }

  .main-nav.is-open .nav-dropdown.is-expanded .nav-dropdown-menu {
    max-height: 260px;
    padding-top: 8px;
    padding-bottom: 8px;
    opacity: 1;
    visibility: visible;
  }

  .main-nav.is-open .nav-dropdown-menu a {
    padding: 9px 0;
    font-size: 15px;
    color: rgba(230, 243, 252, 0.82);
  }

  .hero {
    min-height: auto;
    padding: 116px 0 42px;
  }

  .page-hero {
    min-height: 250px;
    padding: 104px 0 48px;
  }

  .page-hero h1 {
    font-size: 42px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 11px;
    letter-spacing: 2.4px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    margin-top: 26px;
  }

  .btn {
    width: 100%;
  }

  .hero-proof {
    margin-top: 42px;
    grid-template-columns: 1fr;
  }

  .hero-proof article {
    min-height: 0px;
    grid-template-columns: 78px 1fr 44px;
    gap: 16px;
    padding: 10px;
    border-bottom: 0;
  }

  .proof-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
  }

  .proof-copy strong {
    font-size: 24px;
  }

  .proof-copy small {
    font-size: 11px;
  }

  .proof-copy i {
    width: 92px;
  }

  .proof-arrow {
    width: 44px;
    height: 44px;
    font-size: 25px;
  }

  .section-screen:not(.hero) {
    padding: 58px 0;
  }

  .about-preview {
    min-height: auto;
  }

  .about-visual {
    min-height: 420px;
  }

  .vertical-label {
    display: none;
  }

  .about-photo-main {
    left: 0;
    width: 68%;
    height: 360px;
  }

  .about-photo-back {
    top: 52px;
    width: 56%;
    height: 320px;
  }

  .experience-image {
    right: 20px;
    bottom: 0;
    width: 136px;
  }

  .about-content h2 {
    font-size: 32px;
  }

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

  .about-proof-row {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 32px;
    padding-bottom: 28px;
  }

  .about-proof-row article,
  .about-proof-row article:first-child,
  .about-proof-row article:last-child {
    padding: 0;
    border-right: 0;
  }

  .about-actions {
    display: grid;
    gap: 18px;
  }

  .about-detail-layout {
    gap: 34px;
  }

  .about-detail-visual {
    min-height: 360px;
  }

  .preserve-feature-grid {
    grid-template-columns: 1fr;
  }

  .preserve-feature-card,
  .preserve-feature-content {
    min-height: 620px;
  }

  .tpu-feature-grid {
    grid-template-columns: none;
  }

  .tpu-feature-card,
  .tpu-feature-content {
    min-height: 440px;
  }

  .tpu-feature-card {
    flex-basis: 100%;
  }

  .nano-feature-grid {
    grid-template-columns: none;
  }

  .nano-feature-card,
  .nano-feature-content {
    min-height: 440px;
  }

  .nano-feature-card {
    flex-basis: 100%;
  }

  .safeguard-feature-grid {
    grid-template-columns: 1fr;
  }

  .safeguard-feature-card,
  .safeguard-feature-content {
    min-height: 520px;
  }

  .about-detail-photo {
    height: 360px;
  }

  .about-detail-floating {
    right: 14px;
    bottom: 16px;
    width: 126px;
  }

  .about-detail-content h2 {
    font-size: 34px;
  }

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

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

  .about-detail-actions {
    display: grid;
    gap: 18px;
  }

  .about-section-head,
  .about-section-head.align-left {
    margin-bottom: 30px;
    text-align: left;
  }

  .about-section-head .about-dot-label {
    display: block;
  }

  .about-section-head h2,
  .values-panel h2,
  .about-cta-panel h2 {
    font-size: 34px;
  }

  .values-list,
  .process-rail {
    grid-template-columns: 1fr;
  }

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

  .audience-grid article {
    min-height: 84px;
  }

  .expertise-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .expertise-stack article,
  .values-panel,
  .about-cta-panel {
    padding: 24px;
  }

  .about-cta-actions {
    min-width: 0;
  }

  .contact-content h2 {
    font-size: 30px;
  }

  .contact-card-grid,
  .contact-form-panel.quote-form,
  .contact-service-grid,
  .product-family-grid,
  .service-page-grid,
  .safeguard-stat-grid,
  .series-strip,
  .preserve-series-strip,
  .safeguard-product-grid,
  .compact-product-grid,
  .safeguard-notes-panel {
    grid-template-columns: 1fr;
  }

  .contact-form-panel.quote-form {
    padding: 24px;
  }

  .safeguard-intro h2,
  .safeguard-card-body h3 {
    font-size: 34px;
  }

  .service-page-grid .safeguard-card-body h3 {
    font-size: 28px;
  }

  .work-feature-copy h2 {
    font-size: 38px;
  }

  .work-feature-card,
  .work-feature-card img {
    min-height: 360px;
  }

  .work-slider-head {
    align-items: start;
    flex-direction: column;
  }

  .work-slider-track {
    grid-auto-columns: minmax(270px, 86%);
  }

  .work-card {
    min-height: 300px;
  }

  .safeguard-stat-grid article {
    min-height: 110px;
  }

  .series-strip article,
  .safeguard-card-body,
  .safeguard-notes-panel {
    padding: 24px;
  }

  .services-showcase {
    margin-top: 0;
  }

  .section-label {
    gap: 10px;
    font-size: 10px;
    letter-spacing: 4px;
  }

  .services-heading h2 {
    font-size: 38px;
  }

  .services-heading p:last-child {
    font-size: 16px;
  }

  .service-showcase-grid {
    grid-template-columns: 1fr;
  }

  .showcase-card,
  .showcase-card img {
    min-height: 220px;
  }

  .why-heading h2 {
    font-size: 38px;
  }

  .why-heading p:last-child {
    font-size: 16px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-card {
    min-height: auto;
    padding: 24px;
  }

  .why-icon {
    width: 84px;
    height: 84px;
    margin-bottom: 24px;
  }

  .why-icon svg,
  .why-icon img {
    width: 38px;
    height: 38px;
  }

  .projects-head h2 {
    font-size: 38px;
  }

  .projects-social {
    width: 100%;
    flex-wrap: wrap;
    gap: 16px;
  }

  .projects-social i {
    display: none;
  }

  .projects-social a {
    width: 100%;
    justify-content: center;
  }

  .projects-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .project-tile {
    min-height: 230px;
  }

  .faq-kicker {
    gap: 16px;
    font-size: 11px;
    letter-spacing: 4px;
  }

  .faq-intro h2 {
    font-size: 44px;
  }

  .faq-contact {
    margin-top: 44px;
    padding: 22px;
    gap: 16px;
  }

  .faq-contact a {
    letter-spacing: 2px;
  }

  .faq-item summary {
    min-height: 74px;
    grid-template-columns: 46px 1fr 24px;
    gap: 14px;
    padding: 0 18px;
  }

  .faq-item summary span {
    font-size: 18px;
  }

  .faq-item summary strong {
    font-size: 17px;
  }

  .faq-item p {
    padding: 22px 18px 26px;
    font-size: 16px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding: 52px 0;
    gap: 34px;
  }

  .footer-bottom .container {
    padding: 18px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom div {
    flex-wrap: wrap;
    gap: 16px;
  }

  .services-preview,
  .products-preview,
  .about-projects,
  .knowledge-quote {
    padding: 58px 0;
  }

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

  .section-heading h2,
  .product-copy h2,
  .about-card h2,
  .knowledge-panel h2 {
    font-size: 30px;
  }

  .image-collage {
    min-height: auto;
  }

  .small-image {
    position: relative;
    right: auto;
    bottom: auto;
    width: 46%;
    margin: -42px 18px 0 auto;
  }

  .about-card,
  .knowledge-panel,
  .quote-form {
    padding: 24px;
  }

}

.home-page .site-header {
  top: 30px;
  padding: 0 34px;
  color: #07111d;
}

.home-page .nav-shell {
  width: min(1580px, 100%);
  min-height: 84px;
  padding: 12px 36px;
  gap: clamp(28px, 3.4vw, 58px);
  background: rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(7, 26, 49, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.home-page .nav-shell::before,
.home-page .nav-shell::after {
  content: none;
}

.home-page .brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 218px;
  padding-right: 0;
  border-right: 0;
}

.home-page .brand-icon {
  flex: 0 0 auto;
  width: 68px;
  height: 68px;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  background: linear-gradient(145deg, #0a2c6d, #0798f2);
  box-shadow: 0 10px 20px rgba(0, 77, 183, 0.18);
}

.home-page .brand-icon .brand-logo-image {
  width: auto;
  max-width: none;
  height: 68px;
  max-height: none;
  object-fit: cover;
  object-position: left center;
}

.home-page .brand-copy {
  display: grid;
  gap: 2px;
  color: #07111d;
  line-height: 1;
}

.home-page .brand-copy strong {
  color: #07111d;
  font-size: 31px;
  font-weight: 700;
  letter-spacing: 0;
}

.home-page .brand-copy small {
  color: rgba(7, 17, 29, 0.58);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
}

.home-page .main-nav {
  gap: clamp(28px, 3vw, 54px);
  color: #07111d;
  font-size: 17px;
  font-weight: 700;
}

.home-page .main-nav a {
  padding: 10px 0 16px;
  opacity: 1;
}

.home-page .main-nav a:hover,
.home-page .main-nav a.is-active,
.home-page .nav-dropdown:hover > .nav-dropdown-toggle,
.home-page .nav-dropdown:focus-within > .nav-dropdown-toggle,
.home-page .nav-dropdown.is-active > .nav-dropdown-toggle {
  color: #006dff;
}

.home-page .main-nav a.is-active::after,
.home-page .nav-dropdown.is-active > .nav-dropdown-toggle::after {
  height: 4px;
  bottom: 3px;
  border-radius: 999px;
  background: #006dff;
  box-shadow: 0 5px 14px rgba(0, 109, 255, 0.26);
}

.home-page .nav-dropdown-menu {
  border-color: rgba(0, 109, 255, 0.16);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 44px rgba(7, 26, 49, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.home-page .nav-dropdown-menu a {
  color: #142235;
}

.home-page .nav-dropdown-menu a:hover {
  color: #006dff;
  background: rgba(0, 109, 255, 0.08);
}

.home-page .nav-cta {
  min-width: 238px;
  min-height: 58px;
  padding: 14px 28px;
  border-radius: 999px;
  border-color: rgba(255, 255, 255, 0.45);
  color: #ffffff;
  background: linear-gradient(180deg, #0d63d9 0%, #034db7 100%);
  box-shadow:
    0 18px 34px rgba(0, 71, 172, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.home-page .nav-cta img {
  width: 28px;
  height: 28px;
}

.home-page .hero {
  min-height: 900px;
  padding: 190px 0 120px;
  color: #142235;
  background: #f7fbff;
}

.home-page .hero-bg img {
  object-position: center;
  filter: saturate(1.08) brightness(1.04) contrast(1.01);
}

.home-page .hero-bg::after {
  content: "";
  background: linear-gradient(90deg, #fcfcfc 0%, rgba(252, 252, 252, 0.5) 26%, rgba(252, 252, 252, 0.48) 52%, rgba(252, 252, 252, 0) 78%);
}

.home-page .tech-grid {
  display: none;
}

.home-page .hero-glow {
  display: none;
}

.home-page .hero-copy {
  max-width: 650px;
  padding-top: 0;
}

.home-page .hero .eyebrow {
  width: fit-content;
  margin-bottom: 30px;
  padding: 9px 22px;
  border: 1px solid rgba(0, 109, 255, 0.12);
  border-radius: 999px;
  color: #006dff;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 28px rgba(7, 26, 49, 0.08);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
}

.home-page .hero .eyebrow::before {
  content: "+";
  margin-right: 12px;
  color: #006dff;
  font-size: 18px;
  line-height: 0;
}

.home-page .hero h1 {
  max-width: 680px;
  color: #081a36;
  font-size: clamp(54px, 5.8vw, 84px);
  font-weight: 700;
  line-height: 1.03;
  text-shadow: none;
}

.home-page .hero h1 span:first-child {
  color: #07111d;
}

.home-page .hero h1 span:last-child {
  color: #006dff;
}

.home-page .hero-lead {
  max-width: 610px;
  margin-top: 28px;
  color: #42566f;
  font-size: 21px;
  line-height: 1.7;
  font-weight: 500;
}

.home-page .hero-actions {
  gap: 22px;
  margin-top: 34px;
}

.home-page .hero .btn {
  min-width: 214px;
  min-height: 58px;
  border-radius: 999px;
  font-size: 17px;
}

.home-page .hero .btn-primary {
  border-color: rgba(255, 255, 255, 0.32);
  background: linear-gradient(180deg, #0973f0 0%, #005fd6 100%);
  box-shadow: 0 18px 34px rgba(0, 95, 214, 0.22);
}

.home-page .hero .btn-primary img {
  width: 28px;
  height: 28px;
}

.home-page .hero .btn-ghost {
  color: #07111d;
  border-color: rgba(7, 26, 49, 0.16);
  background: rgba(255, 255, 255, 0.84);
  box-shadow:
    0 16px 34px rgba(7, 26, 49, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.home-page .hero-proof {
  width: min(760px, 100%);
  margin-top: 58px;
  gap: 18px;
}

.home-page .hero-proof article {
  grid-template-columns: 58px 1fr;
  min-height: 0px;
  padding: 20px 20px;
  border: 1px solid rgba(7, 26, 49, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    0 22px 46px rgba(7, 26, 49, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.home-page .hero-proof article::before {
  background: linear-gradient(135deg, rgba(0, 109, 255, 0.08), transparent 55%);
  opacity: 1;
}

.home-page .proof-icon {
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 14px;
  background: rgba(0, 109, 255, 0.08);
  box-shadow: none;
}

.home-page .hero-proof svg {
  width: 34px;
  height: 34px;
  stroke: #006dff;
  filter: none;
}

.home-page .proof-copy strong {
  color: #132236;
  font-size: 20px;
  line-height: 1.2;
}

.home-page .proof-copy i {
  width: 44px;
  height: 3px;
  background: #006dff;
  box-shadow: none;
}

@media (max-width: 1080px) {
  .home-page .site-header {
    top: 16px;
    padding: 0 16px;
  }

  .home-page .nav-shell {
    min-height: 76px;
    padding: 12px 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 16px 34px rgba(7, 26, 49, 0.12);
  }

  .home-page .main-nav {
    color: #07111d;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 246, 255, 0.96)),
      radial-gradient(circle at 88% 18%, rgba(0, 109, 255, 0.14), transparent 30%);
  }

  .home-page .nav-toggle {
    border-color: rgba(7, 26, 49, 0.18);
    background: #ffffff;
  }

  .home-page .nav-toggle span {
    background: #07111d;
  }

  .home-page .hero {
    min-height: 820px;
    padding: 142px 0 62px;
  }

}

@media (max-width: 760px) {
  .home-page .site-header {
    top: 10px;
    padding: 0 12px;
  }

  .home-page .nav-shell {
    min-height: 70px;
    padding: 10px 18px;
    border-radius: 18px;
  }

  .home-page .brand-icon .brand-logo-image {
    width: auto;
    height: 50px;
    max-height: none;
  }

  .home-page .brand {
    gap: 9px;
    min-width: 0;
  }

  .home-page .brand-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
  }

  .home-page .brand-copy strong {
    font-size: 22px;
  }

  .home-page .brand-copy small {
    font-size: 13px;
  }

  .home-page .main-nav {
    display: grid;
    position: fixed;
    inset: 0;
    z-index: 990;
    width: 100vw;
    height: 100dvh;
    min-height: 100dvh;
    align-content: start;
    justify-content: stretch;
    gap: 0;
    padding: 104px 18px 28px;
    color: #07111d;
    font-size: 19px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: inset 0 1px 0 rgba(0, 109, 255, 0.08);
    overflow: hidden;
    overscroll-behavior: contain;
    touch-action: none;
  }

  .home-page .main-nav.is-open > a,
  .home-page .main-nav.is-open .nav-dropdown-toggle {
    width: 100%;
    min-height: 58px;
    display: flex;
    align-items: center;
    padding: 0 6px;
    color: #07111d;
    border-bottom: 1px solid rgba(7, 26, 49, 0.08);
    text-align: left;
  }

  .home-page .main-nav.is-open > a::after,
  .home-page .main-nav.is-open .nav-dropdown-toggle::after {
    content: none;
  }

  .home-page .main-nav.is-open > a.is-active {
    color: #006dff;
  }

  .home-page .main-nav.is-open > a.is-active::after {
    content: "";
    position: absolute;
    left: 6px;
    right: auto;
    bottom: 8px;
    width: 42px;
    height: 3px;
    border-radius: 999px;
    background: #006dff;
    box-shadow: none;
  }

  .home-page .main-nav.is-open .nav-dropdown {
    width: 100%;
  }

  .home-page .main-nav.is-open .nav-dropdown-toggle::before {
    right: 6px;
  }

  .home-page .main-nav.is-open .nav-dropdown-menu {
    padding: 0 6px 0 18px;
    border-left-color: rgba(0, 109, 255, 0.2);
  }

  .home-page .main-nav.is-open .nav-dropdown.is-expanded .nav-dropdown-menu {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .home-page .main-nav.is-open .nav-dropdown-menu a {
    color: #42566f;
    padding: 10px 0;
    border-bottom: 0;
  }

  .home-page .hero {
    min-height: 680px;
    padding: 116px 0 72px;
  }

  .home-page .hero-bg img {
    object-position: 63% center;
  }

  .home-page .hero .eyebrow {
    max-width: 100%;
    margin-bottom: 20px;
    padding: 8px 15px;
    font-size: 11px;
    letter-spacing: 2.4px;
  }

  .home-page .hero h1 {
    font-size: 42px;
  }

  .home-page .hero-lead {
    color: #07111d;
    font-size: 18px;
    font-weight: 600;
    width:70%;

  }

  .home-page .hero .btn {
    min-width: 0;
  }

  .home-page .hero-proof {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
