:root {
  --brand-blue: #005bef;
  --brand-navy: #012177;
  --brand-deep: #07143d;
  --accent-cyan: #00b8d9;
  --accent-gold: #ffb020;
  --ink: #101828;
  --muted: #5f6c80;
  --line: #dce7fb;
  --surface: #ffffff;
  --soft: #f5f8ff;
  --mint: #12b886;
  --sky: #eaf2ff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(0, 91, 239, 0.08) 0 12%, transparent 12% 100%),
    linear-gradient(180deg, #f7fbff 0%, #edf5ff 42%, #ffffff 100%);
  text-rendering: optimizeLegibility;
}

.page-home main {
  background:
    radial-gradient(circle at 82% 12%, rgba(0, 91, 239, 0.14), transparent 26%),
    linear-gradient(180deg, #020712 0%, #06122e 72%, #02050b 100%);
}

main {
  flex: 1;
  overflow-x: hidden;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  user-select: none;
  -webkit-user-drag: none;
}

:focus-visible {
  outline: 3px solid rgba(0, 91, 239, 0.36);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(2, 8, 22, 0.78);
  border-bottom: 1px solid rgba(71, 145, 255, 0.22);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: white;
  text-decoration: none;
  font-size: 1.42rem;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
  text-shadow: 0 8px 24px rgba(0, 112, 255, 0.32);
}

.brand::before {
  content: "";
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 50%;
  background:
    url("../assets/CodeTrax-Logo.png") center / 100% no-repeat,
    linear-gradient(135deg, rgba(0, 91, 239, 0.26), rgba(0, 184, 217, 0.18));
  border: 1px solid rgba(99, 173, 255, 0.28);
  box-shadow: 0 0 24px rgba(0, 101, 255, 0.34);
  overflow: hidden;
}

.brand span {
  display: inline-block;
  padding-bottom: 2px;
  background: linear-gradient(90deg, #ffffff, #4db6ff);
  background-clip: text;
  color: transparent;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(1, 33, 119, 0.08);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: white;
  border-radius: 999px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.main-nav a {
  color: #dbe9ff;
  text-decoration: none;
  padding: 10px 10px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.main-nav a:hover {
  background: rgba(0, 91, 239, 0.18);
  color: white;
  transform: translateY(-1px);
}

.main-nav a[aria-current="page"] {
  color: white;
  background: rgba(0, 91, 239, 0.22);
}

.main-nav a:last-child {
  color: white;
  background: linear-gradient(135deg, #0066ff, #00a7d9);
  box-shadow: 0 12px 24px rgba(0, 91, 239, 0.22);
}

.main-nav a:last-child:hover {
  background: linear-gradient(135deg, #1575ff, #00bedb);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  max-width: none;
  margin: 0;
  min-height: calc(100svh - 64px);
  padding: clamp(58px, 8vh, 96px) max(22px, calc((100vw - 1180px) / 2 + 22px)) clamp(76px, 10vh, 110px);
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(320px, 0.42fr);
  align-items: center;
  gap: clamp(34px, 5vw, 64px);
  background:
    radial-gradient(circle at 81% 24%, rgba(0, 112, 255, 0.32), transparent 25%),
    radial-gradient(circle at 7% 96%, rgba(0, 184, 217, 0.24), transparent 18%),
    linear-gradient(135deg, #02050b 0%, #06122e 48%, #020712 100%);
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(112deg, transparent 0 34%, rgba(0, 91, 239, 0.42) 34.3% 35%, transparent 35.3% 100%),
    linear-gradient(116deg, transparent 0 39%, rgba(0, 184, 217, 0.34) 39.2% 39.7%, transparent 40% 100%),
    linear-gradient(120deg, transparent 0 45%, rgba(51, 126, 255, 0.22) 45.2% 46.4%, transparent 46.7% 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: auto, auto, auto, 72px 72px, 72px 72px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.58) 72%, transparent 100%);
  animation: heroFieldDrift 16s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  left: -6vw;
  right: -6vw;
  bottom: -92px;
  height: 210px;
  z-index: -1;
  background:
    linear-gradient(96deg, transparent 0 15%, rgba(0, 91, 239, 0.38) 15.2% 16.2%, transparent 16.5% 100%),
    linear-gradient(104deg, transparent 0 25%, rgba(0, 184, 217, 0.28) 25.1% 26.1%, transparent 26.4% 100%),
    linear-gradient(180deg, rgba(5, 13, 29, 0.22), rgba(0, 0, 0, 0.94)),
    linear-gradient(90deg, #05070b, #0a1e48 45%, #05070b);
  border-top: 1px solid rgba(85, 157, 255, 0.36);
  box-shadow: 0 -34px 110px rgba(0, 91, 239, 0.24);
  transform: skewY(-5deg);
  transform-origin: left top;
  animation: heroBaseGlow 8s ease-in-out infinite alternate;
}

.hero-content {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--brand-blue);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 9px 14px;
  color: #eaf6ff;
  background: rgba(0, 91, 239, 0.14);
  border: 1px solid rgba(96, 169, 255, 0.26);
  border-left: 4px solid #0077ff;
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
}

.hero h1 {
  margin: 0;
  max-width: 720px;
  color: white;
  font-size: clamp(2.75rem, 5vw, 4.55rem);
  line-height: 1.05;
  letter-spacing: 0;
  text-shadow: 0 22px 56px rgba(0, 0, 0, 0.5);
}

.hero h1::first-line {
  font-style: italic;
}

.hero p:not(.eyebrow) {
  margin: 22px 0 0;
  max-width: 610px;
  color: #d8e8ff;
  font-size: 1.14rem;
  line-height: 1.75;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-logo-stage {
  min-height: clamp(340px, 52vh, 520px);
  display: grid;
  place-items: center;
  perspective: 1100px;
  position: relative;
  z-index: 1;
}

.hero-logo-stage::before,
.hero-logo-stage::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-logo-stage .logo-orbit {
  z-index: 2;
}

.hero-logo-stage > .logo-orbit::before {
  box-shadow:
    -96px 52px 0 -24px rgba(0, 91, 239, 0.08),
    98px -46px 0 -18px rgba(0, 184, 217, 0.07);
}

.hero-logo-stage::before {
  width: min(520px, 80vw);
  aspect-ratio: 1.55;
  bottom: 30px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0, 91, 239, 0.42), transparent 68%);
  filter: blur(18px);
  transform: rotateX(70deg);
}

.hero-logo-stage::after {
  width: min(330px, 64vw);
  height: 1px;
  bottom: 118px;
  background: linear-gradient(90deg, transparent, rgba(104, 178, 255, 0.9), transparent);
  box-shadow: 0 0 28px rgba(0, 112, 255, 0.74);
}

.logo-orbit {
  width: min(360px, 78vw);
  aspect-ratio: 1;
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 38px;
  background:
    radial-gradient(circle at 44% 40%, rgba(20, 129, 255, 0.44), rgba(0, 91, 239, 0.18) 44%, transparent 70%),
    linear-gradient(135deg, rgba(0, 91, 239, 0.18), rgba(0, 184, 217, 0.08));
  box-shadow: 0 44px 100px rgba(0, 0, 0, 0.44), 0 0 90px rgba(0, 91, 239, 0.32);
  transform-style: preserve-3d;
  animation: stageFloat 7s ease-in-out infinite;
}

.logo-orbit::before,
.logo-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.logo-orbit::before {
  inset: -18px;
  border: 1px solid rgba(86, 163, 255, 0.24);
  border-radius: 46px;
  animation: orbitSpin 22s linear infinite;
}

.logo-orbit::after {
  content: none;
}

.logo-cube {
  width: 74%;
  max-width: 260px;
  aspect-ratio: 1;
  position: relative;
  display: grid;
  place-items: center;
  padding: 12%;
  border: 1px solid rgba(99, 173, 255, 0.3);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(0, 91, 239, 0.42), rgba(1, 9, 27, 0.94)),
    rgba(2, 8, 22, 0.9);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 22px 44px rgba(0, 91, 239, 0.24),
    0 0 70px rgba(0, 91, 239, 0.34);
  transform: rotateX(12deg) rotateY(-20deg);
  transform-style: preserve-3d;
  animation: logoTurn 8s ease-in-out infinite;
}

.logo-cube::before,
.logo-cube::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  inset: 10px;
  pointer-events: none;
}

.logo-cube::before {
  border: 2px solid rgba(71, 145, 255, 0.18);
  transform: translateZ(-34px);
}

.logo-cube::after {
  background: radial-gradient(circle at center, rgba(0, 91, 239, 0.24), transparent 58%);
  filter: blur(14px);
  transform: translateZ(-44px);
}

.logo-cube img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 28px;
  display: block;
  transform: translateZ(48px);
  filter: drop-shadow(0 0 24px rgba(0, 112, 255, 0.72));
}

@keyframes stageFloat {
  0%,
  100% {
    transform: translateY(0) rotateZ(-2deg);
  }

  50% {
    transform: translateY(-18px) rotateZ(2deg);
  }
}

@keyframes logoTurn {
  0%,
  100% {
    transform: rotateX(12deg) rotateY(-22deg) rotateZ(0deg);
  }

  50% {
    transform: rotateX(18deg) rotateY(22deg) rotateZ(2deg);
  }
}

@keyframes orbitSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes heroFieldDrift {
  0% {
    background-position: 0 0, 0 0, 0 0, 0 0, 0 0;
    opacity: 0.72;
  }

  100% {
    background-position: 34px -20px, -28px 22px, 18px 28px, 18px 0, 0 18px;
    opacity: 1;
  }
}

@keyframes heroBaseGlow {
  0% {
    filter: saturate(1) brightness(1);
  }

  100% {
    filter: saturate(1.25) brightness(1.18);
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, #06f, #00a7d9);
  box-shadow: 0 18px 40px rgba(0, 91, 239, 0.34);
}

.button-primary:hover {
  background: linear-gradient(135deg, #1575ff, #00bedb);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 91, 239, 0.3);
}

.button-secondary {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(12px);
}

.section .button-secondary,
.contact-section .button-secondary,
.cta-band .button-secondary {
  color: var(--brand-navy);
  background: white;
  border: 1px solid var(--line);
}

.button-secondary:hover {
  border-color: rgba(0, 91, 239, 0.32);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(1, 33, 119, 0.09);
}

.trust-strip {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(34px, 6vh, 62px) 22px clamp(52px, 8vh, 88px);
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.trust-strip div {
  position: relative;
  overflow: hidden;
  padding: 20px 20px 18px;
  background:
    radial-gradient(circle at 92% 14%, rgba(0, 184, 217, 0.12), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(246, 251, 255, 0.92));
  border: 1px solid rgba(99, 173, 255, 0.24);
  border-radius: 8px;
  box-shadow: 0 20px 48px rgba(1, 33, 119, 0.14);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.trust-strip div::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--brand-blue), var(--accent-cyan));
}

.trust-strip div:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 58px rgba(1, 33, 119, 0.18);
}

.trust-strip strong {
  display: block;
  color: var(--brand-blue);
  font-size: 1.25rem;
}

.trust-strip span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.5;
}

.page-home .site-footer {
  margin-top: 0;
}

.home-company {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(58px, 8vw, 92px) max(22px, calc((100vw - 1180px) / 2 + 22px));
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: clamp(30px, 5vw, 58px);
  align-items: center;
  color: white;
  background:
    radial-gradient(circle at 82% 20%, rgba(0, 112, 255, 0.26), transparent 24%),
    linear-gradient(118deg, transparent 0 62%, rgba(0, 184, 217, 0.13) 62.2% 73%, transparent 73.2% 100%),
    linear-gradient(135deg, #02050b 0%, #061633 52%, #020712 100%);
}

.home-company::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(112deg, transparent 0 34%, rgba(0, 91, 239, 0.22) 34.2% 35%, transparent 35.3% 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
  animation: heroFieldDrift 18s ease-in-out infinite alternate;
}

.home-company .section-kicker {
  color: #8fd8ff;
}

.home-company h2 {
  margin: 0;
  max-width: 650px;
  color: white;
  font-size: clamp(2rem, 3.6vw, 3.45rem);
  line-height: 1.08;
}

.home-company-copy > p:not(.section-kicker) {
  max-width: 590px;
  margin: 22px 0 0;
  color: #d8e8ff;
  font-size: 1.08rem;
  line-height: 1.75;
}

.home-company-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

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

.home-company-grid article {
  min-height: 230px;
  padding: 24px;
  color: white;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.07));
  border: 1px solid rgba(126, 190, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.24);
}

.home-company-grid strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: white;
  background: linear-gradient(135deg, #0066ff, #00b8d9);
  border-radius: 8px;
  font-weight: 900;
}

.home-company-grid h3 {
  margin: 20px 0 10px;
  font-size: 1.1rem;
}

.home-company-grid p {
  margin: 0;
  color: #d8e8ff;
  line-height: 1.65;
}

.home-detail {
  padding: clamp(58px, 8vw, 92px) max(22px, calc((100vw - 1180px) / 2 + 22px));
  background:
    linear-gradient(116deg, rgba(0, 91, 239, 0.07) 0 18%, transparent 18% 100%),
    linear-gradient(180deg, #edf5ff 0%, #ffffff 58%, #f7fbff 100%);
}

.home-detail .section-heading {
  max-width: 860px;
}

.home-detail-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home-detail-grid article {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 28px;
  background:
    radial-gradient(circle at 92% 12%, rgba(0, 184, 217, 0.12), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 62%, #eef6ff 100%);
  border: 1px solid rgba(0, 91, 239, 0.13);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(1, 33, 119, 0.1);
}

.home-detail-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-blue), var(--accent-cyan));
}

.home-detail-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: var(--brand-blue);
  background: var(--sky);
  border-radius: 8px;
  font-weight: 900;
}

.home-detail-grid h3 {
  margin: 20px 0 12px;
  color: var(--brand-navy);
  font-size: 1.2rem;
}

.home-detail-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

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

.home-stats div {
  padding: 22px;
  color: white;
  background: linear-gradient(135deg, #06122e 0%, #092b6a 58%, #020712 100%);
  border: 1px solid rgba(71, 145, 255, 0.22);
  border-radius: 8px;
  box-shadow: 0 22px 52px rgba(1, 33, 119, 0.16);
}

.home-stats strong {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.35rem);
}

.home-stats span {
  display: block;
  margin-top: 6px;
  color: #d8e8ff;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 78px 22px;
}

.page-hero {
  position: relative;
  isolation: isolate;
  max-width: none;
  margin: 0;
  min-height: 430px;
  padding: 118px max(22px, calc((100vw - 1180px) / 2 + 22px)) 108px;
  display: grid;
  align-content: center;
  background:
    radial-gradient(circle at 78% 24%, rgba(0, 112, 255, 0.32), transparent 24%),
    radial-gradient(circle at 12% 92%, rgba(0, 184, 217, 0.18), transparent 20%),
    linear-gradient(135deg, #02050b 0%, #06122e 52%, #020712 100%);
  color: white;
  overflow: hidden;
}

.page-about .page-hero,
.page-services .page-hero,
.page-process .page-hero,
.page-contact .page-hero {
  min-height: calc(100svh - 64px);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(112deg, transparent 0 36%, rgba(0, 91, 239, 0.3) 36.2% 36.8%, transparent 37.1% 100%),
    linear-gradient(116deg, transparent 0 45%, rgba(0, 184, 217, 0.2) 45.2% 45.7%, transparent 46% 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: auto, auto, 72px 72px, 72px 72px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.62) 70%, transparent 100%);
}

.page-hero::after {
  content: "";
  position: absolute;
  right: max(26px, calc((100vw - 1180px) / 2 + 38px));
  top: 50%;
  width: min(310px, 34vw);
  aspect-ratio: 1;
  border: 1px solid rgba(99, 173, 255, 0.28);
  border-radius: 34px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42), 0 0 80px rgba(0, 91, 239, 0.28);
  background:
    url("../assets/CodeTrax-Logo.png") center / 68% no-repeat,
    radial-gradient(circle at 44% 38%, rgba(28, 133, 255, 0.46), rgba(0, 91, 239, 0.16) 44%, transparent 72%),
    linear-gradient(145deg, rgba(0, 91, 239, 0.34), rgba(1, 9, 27, 0.88));
  opacity: 0.9;
  transform: translateY(-50%) rotate(-7deg);
}

.page-hero > * {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: min(780px, 68vw);
  margin: 0;
  color: white;
  font-size: clamp(2.35rem, 5vw, 4.4rem);
  line-height: 1.04;
  text-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
}

.page-hero p:not(.section-kicker) {
  max-width: min(650px, 64vw);
  margin: 22px 0 0;
  color: #dbe6ff;
  font-size: 1.12rem;
  line-height: 1.75;
}

.page-hero .section-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 9px 14px;
  color: #eaf6ff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 4px solid var(--accent-cyan);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
}

.page-about .page-hero {
  background:
    radial-gradient(circle at 76% 24%, rgba(0, 184, 217, 0.24), transparent 24%),
    linear-gradient(135deg, #02050b 0%, #05235a 46%, #020712 100%);
}

.page-about .page-hero::before {
  background:
    linear-gradient(112deg, transparent 0 34%, rgba(0, 91, 239, 0.26) 34.2% 35%, transparent 35.3% 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
}

.page-services .page-hero {
  background:
    radial-gradient(circle at 78% 24%, rgba(0, 112, 255, 0.36), transparent 24%),
    linear-gradient(135deg, #02050b 0%, #062b72 48%, #020712 100%);
}

.page-services .page-hero::before {
  background:
    linear-gradient(116deg, transparent 0 38%, rgba(0, 184, 217, 0.28) 38.2% 38.8%, transparent 39.1% 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
}

.page-process .page-hero {
  background:
    radial-gradient(circle at 76% 28%, rgba(18, 184, 134, 0.22), transparent 23%),
    linear-gradient(135deg, #02050b 0%, #05305f 50%, #020712 100%);
}

.page-process .page-hero::before {
  background:
    linear-gradient(112deg, transparent 0 41%, rgba(0, 91, 239, 0.24) 41.2% 42%, transparent 42.3% 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
}

.page-contact .page-hero {
  background:
    radial-gradient(circle at 78% 26%, rgba(0, 184, 217, 0.28), transparent 24%),
    linear-gradient(135deg, #02050b 0%, #063271 48%, #020712 100%);
}

.page-contact .page-hero::before {
  background:
    linear-gradient(116deg, transparent 0 36%, rgba(0, 184, 217, 0.26) 36.2% 36.8%, transparent 37.1% 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
}

.page-hero + .section {
  padding-top: 86px;
}

main > .page-hero ~ .section:not(.section-blue):not(.cta-band):nth-of-type(odd) {
  max-width: none;
  padding-inline: max(22px, calc((100vw - 1180px) / 2 + 22px));
  background:
    linear-gradient(116deg, rgba(0, 91, 239, 0.07) 0 18%, transparent 18% 100%),
    linear-gradient(180deg, #edf5ff 0%, #ffffff 58%, #f7fbff 100%);
}

main > .page-hero ~ .section:not(.section-blue):not(.cta-band):nth-of-type(even) {
  max-width: none;
  padding-inline: max(22px, calc((100vw - 1180px) / 2 + 22px));
  background:
    linear-gradient(64deg, transparent 0 68%, rgba(0, 184, 217, 0.08) 68% 82%, transparent 82% 100%),
    linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%);
}

main > .page-hero ~ .section > .section-heading,
main > .page-hero ~ .section > .cards,
main > .page-hero ~ .section > .detail-grid,
main > .page-hero ~ .section > .benefit-list,
main > .page-hero ~ .section > .steps {
  max-width: 1180px;
}

main > .page-hero ~ .section > .section-heading::after {
  content: "";
  display: block;
  width: 86px;
  height: 5px;
  margin-top: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-blue), var(--accent-cyan), var(--mint));
}

.section-heading {
  max-width: 780px;
}

#services,
#about,
#process {
  max-width: none;
  padding-inline: max(22px, calc((100vw - 1180px) / 2 + 22px));
}

#services {
  margin-top: 0;
  background:
    linear-gradient(116deg, rgba(0, 91, 239, 0.07) 0 18%, transparent 18% 100%),
    linear-gradient(180deg, #edf5ff 0%, #ffffff 58%, #f7fbff 100%);
}

#services .section-heading,
#services .cards,
#about .section-heading,
#about .benefit-list,
#process .section-heading,
#process .steps {
  max-width: 1180px;
}

#services .section-heading,
#about .section-heading,
#process .section-heading {
  position: relative;
}

#services .section-heading::after,
#about .section-heading::after,
#process .section-heading::after {
  content: "";
  display: block;
  width: 86px;
  height: 5px;
  margin-top: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-blue), var(--accent-cyan), var(--mint));
}

.detail-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.detail-panel {
  position: relative;
  overflow: hidden;
  padding: 30px;
  background:
    radial-gradient(circle at 92% 12%, rgba(0, 184, 217, 0.1), transparent 24%),
    linear-gradient(180deg, #ffffff, #f7fbff);
  border: 1px solid rgba(0, 91, 239, 0.13);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(1, 33, 119, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.detail-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-blue), var(--accent-cyan));
  opacity: 0.7;
}

.detail-panel:hover {
  border-color: rgba(0, 91, 239, 0.24);
  box-shadow: 0 28px 60px rgba(1, 33, 119, 0.15);
  transform: translateY(-5px);
}

.detail-panel h3 {
  margin: 0 0 12px;
  color: var(--brand-navy);
  font-size: 1.26rem;
}

.detail-panel p {
  margin: 0;
}

.detail-panel ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.stats-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.stats-grid div {
  padding: 22px;
  background: linear-gradient(135deg, var(--brand-navy), var(--brand-deep));
  color: white;
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(1, 33, 119, 0.16);
}

.stats-grid strong {
  display: block;
  font-size: 2rem;
}

.stats-grid span {
  display: block;
  margin-top: 8px;
  color: #dbe7ff;
  line-height: 1.5;
}

.cta-band {
  max-width: none;
  padding: 48px 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  background:
    linear-gradient(112deg, transparent 0 62%, rgba(0, 184, 217, 0.16) 62.2% 73%, transparent 73.2% 100%),
    linear-gradient(135deg, #06122e 0%, #092b6a 58%, #020712 100%);
  border: 1px solid rgba(71, 145, 255, 0.22);
  border-radius: 16px;
  box-shadow: 0 28px 70px rgba(1, 33, 119, 0.18);
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-band .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  max-width: 1180px;
}

.cta-band .section-heading::after {
  content: none;
}

.cta-band .section-kicker {
  color: #8fd8ff;
  opacity: 1;
}

.cta-band h2 {
  color: white;
  text-shadow: none;
}

.cta-band .button-primary {
  color: white;
  background: linear-gradient(135deg, #0c5cff, #00a7d9);
  box-shadow: 0 18px 40px rgba(0, 91, 239, 0.22);
}

.section h2 {
  margin: 0;
  color: var(--brand-navy);
  font-size: clamp(1.85rem, 3vw, 2.75rem);
  line-height: 1.15;
}

.section p {
  color: var(--muted);
  line-height: 1.7;
}

.section.cta-band h2 {
  color: white;
}

.section.cta-band p,
.section.cta-band .section-kicker {
  color: #8fd8ff;
}

.section.cta-band .section-heading {
  width: 100%;
}

.cards {
  margin-top: 34px;
  display: grid;
  gap: 18px;
}

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

.card {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  padding: 28px;
  background:
    radial-gradient(circle at 92% 12%, rgba(0, 184, 217, 0.12), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 62%, #eef6ff 100%);
  border: 1px solid rgba(0, 91, 239, 0.13);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(1, 33, 119, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card::after {
  content: "";
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 46%;
  height: 44%;
  border-radius: 60px 0 8px 0;
  background:
    linear-gradient(135deg, transparent 0 42%, rgba(0, 184, 217, 0.12) 42% 100%);
}

.card:hover {
  border-color: rgba(0, 91, 239, 0.24);
  box-shadow: 0 28px 62px rgba(1, 33, 119, 0.15);
  transform: translateY(-6px);
}

.card-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: white;
  background: linear-gradient(135deg, var(--brand-blue), var(--accent-cyan));
  border-radius: 8px;
  font-weight: 900;
}

.card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  color: var(--brand-navy);
  font-size: 1.18rem;
  line-height: 1.35;
}

.card p {
  position: relative;
  z-index: 1;
  margin: 0;
  line-height: 1.72;
}

.section-blue {
  max-width: none;
  padding-inline: max(22px, calc((100vw - 1180px) / 2 + 22px));
  background:
    linear-gradient(112deg, rgba(0, 184, 217, 0.18) 0 16%, transparent 16% 100%),
    linear-gradient(68deg, transparent 0 62%, rgba(255, 176, 32, 0.13) 62% 74%, transparent 74% 100%),
    linear-gradient(135deg, rgba(1, 33, 119, 0.96), rgba(7, 20, 61, 0.98));
}

.section-blue .section-kicker,
.section-blue h2 {
  color: white;
}

.section-blue .section-kicker {
  opacity: 0.8;
}

.work-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.work-grid article {
  position: relative;
  overflow: hidden;
  padding: 24px;
  min-height: 210px;
  color: white;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.07));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  transition: transform 180ms ease, background-color 180ms ease;
}

.work-grid article::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 82px;
  height: 82px;
  border: 0;
  border-radius: 0 8px 0 64px;
  background: rgba(0, 184, 217, 0.18);
}

.work-grid article:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}

.work-grid h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
}

.work-grid p {
  color: #dbe7ff;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.benefit-list {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

#about {
  background:
    linear-gradient(64deg, transparent 0 68%, rgba(0, 184, 217, 0.08) 68% 82%, transparent 82% 100%),
    linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%);
}

.benefit-list div {
  position: relative;
  min-height: 190px;
  padding: 22px;
  background:
    radial-gradient(circle at 92% 14%, rgba(0, 184, 217, 0.1), transparent 24%),
    linear-gradient(180deg, #ffffff, #f8fbff);
  border: 1px solid rgba(0, 91, 239, 0.13);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(1, 33, 119, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.benefit-list div:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 54px rgba(1, 33, 119, 0.12);
}

.benefit-list div::before {
  content: "";
  display: block;
  width: 34px;
  height: 4px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-blue), var(--accent-cyan));
}

.benefit-list strong {
  color: var(--brand-navy);
  font-size: 1.08rem;
}

.benefit-list p {
  margin: 8px 0 0;
}

.steps {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

#process {
  background:
    linear-gradient(116deg, rgba(255, 176, 32, 0.1) 0 13%, transparent 13% 100%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.steps div {
  position: relative;
  overflow: hidden;
  padding: 22px;
  background:
    radial-gradient(circle at 92% 14%, rgba(0, 184, 217, 0.1), transparent 24%),
    linear-gradient(180deg, #ffffff, #f8fbff);
  border: 1px solid rgba(0, 91, 239, 0.13);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(1, 33, 119, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.steps div::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-blue), var(--accent-cyan));
}

.steps div:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 54px rgba(1, 33, 119, 0.12);
}

.steps strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--brand-blue);
  background: var(--sky);
  border-radius: 8px;
}

.steps h3 {
  margin: 14px 0 8px;
  color: var(--brand-navy);
}

.steps p {
  margin: 0;
}

.contact-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 36px;
  align-items: start;
  margin-bottom: 34px;
  background:
    radial-gradient(circle at 92% 12%, rgba(0, 184, 217, 0.13), transparent 24%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
  border: 1px solid rgba(0, 91, 239, 0.13);
  border-radius: 16px;
  padding: 56px 46px;
  box-shadow: 0 28px 60px rgba(15, 42, 94, 0.08);
}

main > .page-hero ~ .contact-section.contact-section {
  max-width: 1180px;
  margin: 78px auto 34px;
  padding: 56px 46px;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--brand-blue), var(--accent-cyan), var(--mint));
}

.contact-section > div:first-child p:not(.section-kicker) {
  max-width: 720px;
}

.contact-section .section-kicker {
  color: var(--brand-blue);
  opacity: 0.82;
}

.contact-section h2 {
  color: #10295c;
}

.contact-card {
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.98));
  border: 1px solid rgba(0, 91, 239, 0.16);
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(15, 42, 94, 0.11);
}

.contact-card h3 {
  margin: 0 0 16px;
  color: var(--brand-navy);
}

.contact-card a:not(.button) {
  display: block;
  margin-bottom: 12px;
  color: var(--brand-blue);
  text-decoration: none;
  font-weight: 800;
}

.contact-card .button {
  width: 100%;
  margin-top: 8px;
}

.site-footer {
  padding: 54px 22px 48px;
  background:
    linear-gradient(135deg, #02050b, #07143d 62%, #02050b);
  color: white;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 42px;
  align-items: start;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 900;
}

.footer-logo img {
  width: 58px;
  height: 58px;
  padding: 0;
  object-fit: contain;
  background: white;
  border-radius: 50%;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.24);
}

.footer-brand p,
.footer-contact p {
  color: #aab5c5;
  line-height: 1.6;
}

.footer-brand p {
  max-width: 230px;
  margin: 20px 0 16px;
}

.footer-brand strong,
.footer-contact strong {
  display: block;
  margin: 14px 0 8px;
  color: white;
}

.social-links {
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-links a {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: var(--brand-blue);
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 900;
  transition: transform 180ms ease, background-color 180ms ease;
}

.social-links a:hover {
  background: var(--accent-cyan);
  transform: translateY(-2px);
}

.social-links svg {
  width: 16px;
  height: 16px;
  display: block;
  fill: currentColor;
}

.footer-column h3 {
  margin: 0 0 18px;
  color: white;
  font-size: 1rem;
}

.footer-column a {
  display: block;
  margin-bottom: 14px;
  color: #aab5c5;
  text-decoration: none;
  line-height: 1.4;
}

.footer-column a:hover {
  color: white;
}

.footer-contact p {
  margin: 0;
}

@media (max-width: 960px) {
  .hero,
  .split-section,
  .contact-section,
  .home-company {
    grid-template-columns: 1fr;
  }

  .hero-logo-stage {
    min-height: 320px;
    order: -1;
  }

  .hero::before {
    inset: 0;
  }

  .logo-orbit {
    width: min(280px, 64vw);
  }

  .services-grid,
  .work-grid,
  .benefit-list,
  .steps,
  .trust-strip,
  .detail-grid,
  .stats-grid,
  .home-company-grid,
  .home-detail-grid,
  .home-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-band .section-heading {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .header-inner {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px 16px;
  }

  .brand {
    font-size: 1.38rem;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .main-nav {
    display: none;
    width: 100%;
    padding: 10px;
    justify-content: flex-start;
    gap: 6px;
    flex-wrap: wrap;
    background: rgba(2, 8, 22, 0.94);
    border: 1px solid rgba(71, 145, 255, 0.22);
    border-radius: 8px;
  }

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

  .main-nav a {
    padding: 8px 10px;
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .hero {
    min-height: auto;
    padding-top: 46px;
    padding-bottom: 58px;
    gap: 28px;
  }

  .hero::before {
    inset: 0;
  }

  .hero h1 {
    font-size: clamp(2.05rem, 10.5vw, 3.05rem);
  }

  .hero-logo-stage {
    min-height: 230px;
  }

  .logo-orbit {
    width: min(230px, 68vw);
    border-radius: 28px;
  }

  .logo-cube {
    border-radius: 26px;
  }

  .trust-strip {
    padding-top: 30px;
    padding-bottom: 54px;
    gap: 16px;
  }

  .hero-actions,
  .services-grid,
  .work-grid,
  .benefit-list,
  .steps,
  .trust-strip,
  .detail-grid,
  .stats-grid,
  .home-company-grid,
  .home-detail-grid,
  .home-stats {
    grid-template-columns: 1fr;
  }

  .home-company {
    padding-top: 54px;
    padding-bottom: 58px;
  }

  .home-detail {
    padding-top: 54px;
    padding-bottom: 58px;
  }

  .home-company-grid article,
  .home-detail-grid article {
    min-height: auto;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .button {
    width: 100%;
  }

  .page-hero {
    padding-top: 68px;
    min-height: 360px;
    padding-bottom: 76px;
  }

  .page-about .page-hero,
  .page-services .page-hero,
  .page-process .page-hero,
  .page-contact .page-hero {
    min-height: calc(100svh - 68px);
  }

  .page-hero::after {
    width: min(220px, 62vw);
    right: -44px;
    top: auto;
    bottom: -54px;
    opacity: 0.34;
    transform: rotate(-7deg);
  }

  .page-hero h1,
  .page-hero p:not(.section-kicker) {
    max-width: 100%;
  }

  .hero-content,
  .page-hero {
    position: relative;
    z-index: 1;
  }

  .hero-actions a,
  .button-primary,
  .button-secondary {
    width: 100%;
  }

  .contact-section {
    padding: 42px 28px;
    gap: 24px;
  }

  .contact-card {
    padding: 24px;
  }
}

@media (max-width: 360px) {
  .brand {
    font-size: 1.12rem;
  }

  .brand::before {
    width: 34px;
    height: 34px;
  }

  .main-nav a {
    padding-inline: 8px;
    font-size: 0.86rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
