:root {
  --ink: #071525;
  --body: #5b6675;
  --blue: #0b7fd3;
  --blue-dark: #064f8a;
  --green: #1aa66a;
  --green-dark: #08745f;
  --soft: #f3f8fb;
  --soft-green: #e8f7ef;
  --line: #d9e4ec;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(7, 21, 37, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #040817;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

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

.topbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  padding: 9px clamp(18px, 5vw, 66px);
  color: var(--white);
  background: var(--blue-dark);
  font-size: 0.86rem;
  font-weight: 700;
}

.language-menu {
  position: relative;
}

.language-button {
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  padding: 5px 13px;
  color: var(--white);
  background: rgba(4, 8, 23, 0.28);
  font: inherit;
  line-height: 1;
  cursor: pointer;
}

.language-button:hover,
.language-button:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  outline: none;
}

.language-options {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 50;
  display: none;
  min-width: 128px;
  padding: 8px;
  border: 1px solid rgba(145, 240, 191, 0.28);
  border-radius: 10px;
  background: rgba(4, 8, 23, 0.96);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
}

.language-menu.open .language-options {
  display: grid;
  gap: 5px;
}

.language-options button {
  border: 0;
  border-radius: 8px;
  padding: 8px 10px;
  color: var(--white);
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.language-options button:hover,
.language-options button:focus-visible {
  background: linear-gradient(90deg, rgba(11, 127, 211, 0.5), rgba(26, 166, 106, 0.5));
  outline: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  min-height: 88px;
  padding: 12px clamp(18px, 5vw, 66px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(234, 248, 255, 0.94) 46%, rgba(235, 255, 244, 0.94)),
    rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(11, 127, 211, 0.16);
  box-shadow: 0 10px 34px rgba(4, 8, 23, 0.14);
  backdrop-filter: blur(18px);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -18px;
  height: 18px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(4, 8, 23, 0));
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img,
.footer-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: #91f0bf;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(10px, 1.8vw, 22px);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav a:hover::after,
.nav a.active::after {
  transform: scaleX(1);
}

.proposal-link,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-weight: 900;
}

.proposal-link {
  padding: 0 18px;
  color: var(--white);
  background: var(--green);
  white-space: nowrap;
}

.button {
  padding: 0 22px;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 14px 28px rgba(11, 127, 211, 0.22);
}

.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.nav-toggle {
  display: none;
  justify-self: end;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(7, 21, 37, 0.18);
  background: rgba(7, 21, 37, 0.06);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(26px, 6vw, 76px);
  align-items: center;
  padding: clamp(58px, 8vw, 110px) clamp(18px, 5vw, 74px);
  background:
    linear-gradient(125deg, rgba(11, 127, 211, 0.11), rgba(26, 166, 106, 0.16)),
    var(--soft);
}

.page-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.86fr);
  gap: clamp(26px, 6vw, 76px);
  align-items: center;
  padding: clamp(58px, 8vw, 106px) clamp(18px, 5vw, 74px);
  color: var(--white);
  background: #040817;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 24%, rgba(26, 166, 106, 0.28), transparent 34%),
    radial-gradient(circle at 18% 12%, rgba(11, 127, 211, 0.24), transparent 32%),
    linear-gradient(125deg, rgba(4, 8, 23, 0.98) 0%, rgba(7, 32, 56, 0.96) 52%, rgba(4, 67, 55, 0.94) 100%);
  opacity: 0.98;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 90px;
  background: linear-gradient(180deg, rgba(4, 8, 23, 0), rgba(4, 8, 23, 0.9));
  pointer-events: none;
}

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

.quote-hero {
  grid-template-columns: minmax(0, 1fr);
}

.page-hero p {
  max-width: 650px;
  color: #dcefff;
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2 {
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(2.9rem, 6.4vw, 6.5rem);
  line-height: 0.96;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.07;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.hero-copy p {
  max-width: 650px;
  color: var(--body);
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-panel {
  min-width: 0;
}

.browser-frame {
  padding: 16px;
  background: #0d2035;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.browser-dots {
  display: flex;
  gap: 7px;
  margin-bottom: 12px;
}

.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #91a4b8;
}

.dashboard-hero {
  display: grid;
  gap: 24px;
  padding: clamp(24px, 4vw, 42px);
  color: var(--white);
  background: linear-gradient(135deg, #123b61, #0a765f);
  border-radius: 8px;
}

.dashboard-hero p {
  margin-bottom: 0;
  color: #cce8ff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 800;
}

.dashboard-hero strong {
  display: block;
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 1;
}

.line-chart {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 12px;
  height: 140px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.line-chart span {
  display: block;
  border-radius: 4px 4px 0 0;
  background: #91f0bf;
}

.line-chart span:nth-child(1) { height: 35%; }
.line-chart span:nth-child(2) { height: 50%; }
.line-chart span:nth-child(3) { height: 62%; }
.line-chart span:nth-child(4) { height: 78%; }
.line-chart span:nth-child(5) { height: 100%; }

.dashboard-hero ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 20px;
}

.web-preview {
  padding: 14px;
  background: #0d2035;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.preview-header {
  height: 24px;
  margin-bottom: 12px;
  border-radius: 6px;
  background: #dcefff;
}

.preview-body {
  display: grid;
  min-height: 330px;
  align-content: center;
  justify-items: start;
  gap: 16px;
  padding: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(135deg, rgba(11, 127, 211, 0.78), rgba(26, 166, 106, 0.78)),
    rgba(4, 8, 23, 0.86);
  border: 1px solid rgba(145, 240, 191, 0.35);
  border-radius: 8px;
  color: var(--white);
}

.preview-body > span {
  width: 78px;
  height: 6px;
  border-radius: 999px;
  background: #91f0bf;
}

.preview-body strong {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
}

.preview-body p {
  margin: 0;
  color: #e8f7ef;
}

.preview-buttons {
  display: flex;
  gap: 10px;
  width: 100%;
}

.preview-buttons i {
  width: 34%;
  height: 34px;
  border-radius: 4px;
  background: var(--white);
  opacity: 0.92;
}

.intro-band,
.split-section,
.locations,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  padding: clamp(58px, 8vw, 94px) clamp(18px, 5vw, 74px);
}

.intro-band {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.intro-band article p,
.split-section p,
.contact p,
.article p,
.service-grid p,
.locations p,
.site-footer p,
.site-footer span {
  color: var(--body);
}

.intro-band aside {
  padding: 30px;
  color: var(--white);
  background: var(--blue-dark);
  border-radius: 6px;
}

.brand-world-graphic {
  position: relative;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(145, 240, 191, 0.38);
  border-radius: 18px;
  background:
    radial-gradient(circle at 72% 35%, rgba(11, 127, 211, 0.35), transparent 34%),
    radial-gradient(circle at 20% 82%, rgba(26, 166, 106, 0.24), transparent 36%),
    #040817;
  box-shadow: 0 0 38px rgba(11, 127, 211, 0.28), 0 28px 70px rgba(0, 0, 0, 0.34);
}

.brand-world-graphic img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
}

.motion-brand {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid rgba(145, 240, 191, 0.38);
  border-radius: 18px;
  background:
    radial-gradient(circle at 70% 38%, rgba(11, 127, 211, 0.35), transparent 34%),
    radial-gradient(circle at 18% 78%, rgba(26, 166, 106, 0.28), transparent 38%),
    linear-gradient(135deg, #090029, #04103b 48%, #042f28);
  box-shadow: 0 0 38px rgba(11, 127, 211, 0.28), 0 28px 70px rgba(0, 0, 0, 0.34);
  isolation: isolate;
}

.motion-brand::before,
.motion-brand::after {
  content: "";
  position: absolute;
  inset: auto -10% 28px;
  height: 92px;
  border-radius: 50%;
  background: linear-gradient(90deg, transparent, rgba(11, 184, 255, 0.58), rgba(99, 212, 33, 0.55), transparent);
  filter: blur(10px);
  transform: rotate(-8deg);
  animation: waveDrift 6s ease-in-out infinite alternate;
}

.motion-brand::after {
  bottom: 58px;
  opacity: 0.45;
  transform: rotate(10deg);
  animation-delay: -2s;
}

.motion-stars span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #dffbff;
  box-shadow: 0 0 14px #0bb8ff;
  animation: starPulse 2.8s ease-in-out infinite;
}

.motion-stars span:nth-child(1) { left: 12%; top: 16%; }
.motion-stars span:nth-child(2) { left: 32%; top: 28%; animation-delay: -.8s; }
.motion-stars span:nth-child(3) { right: 18%; top: 18%; animation-delay: -1.4s; }
.motion-stars span:nth-child(4) { right: 10%; bottom: 34%; animation-delay: -.4s; }
.motion-stars span:nth-child(5) { left: 18%; bottom: 22%; animation-delay: -2s; }

.motion-world {
  position: absolute;
  left: 50%;
  bottom: 38px;
  width: min(78%, 430px);
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.9), transparent 8%),
    radial-gradient(circle at 38% 35%, #19e5ff, #0b7fd3 48%, #1aa66a 100%);
  box-shadow: 0 0 42px rgba(11, 184, 255, 0.58), 0 0 72px rgba(99, 212, 33, 0.26);
  transform: translateX(-50%);
  animation: globeFloat 5s ease-in-out infinite;
}

.motion-world::before {
  content: "";
  position: absolute;
  inset: 16%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-left-color: transparent;
  border-right-color: transparent;
  border-radius: 999px;
}

.motion-world::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background:
    linear-gradient(22deg, transparent 46%, rgba(255, 255, 255, 0.42) 47%, transparent 49%),
    linear-gradient(150deg, transparent 38%, rgba(255, 255, 255, 0.28) 39%, transparent 42%);
  opacity: 0.7;
}

.orbit {
  position: absolute;
  left: -15%;
  right: -15%;
  top: 42%;
  height: 20%;
  border: 4px solid rgba(145, 240, 191, 0.78);
  border-top-color: transparent;
  border-radius: 50%;
  transform: rotate(-12deg);
  animation: orbitSpin 7s linear infinite;
}

.orbit-two {
  border-color: rgba(11, 184, 255, 0.64);
  border-bottom-color: transparent;
  transform: rotate(12deg);
  animation-duration: 9s;
  animation-direction: reverse;
}

.globe-line {
  position: absolute;
  inset: 7% 48%;
  border-left: 2px solid rgba(255, 255, 255, 0.48);
  border-right: 2px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
}

.line-two {
  inset: 0 34%;
  opacity: 0.46;
}

.line-three {
  inset: 34% 0;
  border: 0;
  border-top: 2px solid rgba(255, 255, 255, 0.48);
  border-bottom: 2px solid rgba(255, 255, 255, 0.48);
}

.motion-caption {
  position: absolute;
  z-index: 5;
  left: 24px;
  right: 24px;
  bottom: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.motion-caption span {
  padding: 10px;
  color: #dffbff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(145, 240, 191, 0.22);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 900;
  text-align: center;
}

.digital-symbols {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.symbol {
  position: absolute;
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  color: #dffbff;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(145, 240, 191, 0.36);
  border-radius: 20px;
  box-shadow: 0 0 28px rgba(11, 184, 255, 0.26);
  backdrop-filter: blur(12px);
  font-size: 1.2rem;
  font-weight: 900;
  animation: symbolFloat 5s ease-in-out infinite;
}

.symbol::after {
  content: "";
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(11, 184, 255, 0.16);
  border-radius: 26px;
}

.symbol::before {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.symbol.search::before {
  box-shadow: 15px 15px 0 -11px currentColor;
  transform: rotate(-12deg);
}

.symbol.code::before {
  width: 34px;
  height: 22px;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-radius: 8px;
}

.symbol.cloud::before {
  width: 34px;
  height: 20px;
  border-radius: 18px;
  box-shadow: -10px 4px 0 -3px currentColor, 11px 5px 0 -5px currentColor;
}

.symbol.graph::before {
  width: 30px;
  height: 30px;
  border-top-color: transparent;
  border-left-color: transparent;
  border-radius: 6px;
  transform: rotate(-45deg);
}

.symbol.social::before {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  box-shadow: inset 0 0 0 8px rgba(145, 240, 191, 0.12);
}

.search {
  left: 11%;
  top: 17%;
}

.code {
  right: 13%;
  top: 14%;
  animation-delay: -1.2s;
}

.cloud {
  left: 15%;
  bottom: 34%;
  animation-delay: -2.1s;
}

.graph {
  right: 16%;
  bottom: 31%;
  color: #91f0bf;
  animation-delay: -3s;
}

.social {
  left: 45%;
  top: 8%;
  color: #b9f8ff;
  animation-delay: -.5s;
}

.node {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #91f0bf;
  box-shadow: 0 0 24px #63d421;
}

.node::before,
.node::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, rgba(145, 240, 191, 0.8), transparent);
  transform-origin: left;
}

.node-one {
  left: 28%;
  top: 31%;
}

.node-one::before {
  transform: rotate(22deg);
}

.node-one::after {
  transform: rotate(145deg);
}

.node-two {
  right: 31%;
  top: 28%;
  background: #0bb8ff;
  box-shadow: 0 0 24px #0bb8ff;
}

.node-two::before {
  transform: rotate(155deg);
}

.node-two::after {
  transform: rotate(66deg);
}

.node-three {
  left: 52%;
  bottom: 30%;
}

.node-three::before {
  transform: rotate(-18deg);
}

.node-three::after {
  transform: rotate(-152deg);
}

@keyframes globeFloat {
  0%, 100% { transform: translateX(-50%) translateY(0) scale(1); }
  50% { transform: translateX(-50%) translateY(-10px) scale(1.02); }
}

@keyframes orbitSpin {
  to { rotate: 360deg; }
}

@keyframes symbolFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-14px) scale(1.04); }
}

@keyframes starPulse {
  0%, 100% { opacity: .35; transform: scale(.8); }
  50% { opacity: 1; transform: scale(1.5); }
}

@keyframes waveDrift {
  0% { transform: translateX(-20px) rotate(-8deg); }
  100% { transform: translateX(20px) rotate(-4deg); }
}

@keyframes gridSlide {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 54px 54px, 54px 54px; }
}

@keyframes serviceImageDrift {
  0% { transform: scale(var(--image-start-scale, 1.04)) translate(var(--image-x-start, 0), var(--image-y-start, 0)); }
  100% { transform: scale(var(--image-end-scale, 1.12)) translate(var(--image-x-end, -14px), var(--image-y-end, 0)); }
}

.content-layout {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: clamp(58px, 8vw, 96px) clamp(18px, 5vw, 74px);
  background: var(--soft);
}

.sidebar {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(7, 21, 37, 0.08);
}

.sidebar h2 {
  margin: 0;
  padding: 20px;
  color: var(--white);
  background: var(--blue);
  font-size: 1.1rem;
}

.sidebar a {
  padding: 15px 20px;
  border-bottom: 1px solid var(--line);
  color: #26394e;
  font-weight: 800;
}

.sidebar a:not(.quote-link) {
  position: relative;
  color: #dcefff;
  background: rgba(255, 255, 255, 0.06);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.sidebar a:not(.quote-link)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--blue), var(--green));
  opacity: 0.92;
}

.sidebar a:not(.quote-link):hover {
  color: var(--white);
  background: rgba(11, 127, 211, 0.18);
}

.sidebar a:last-child {
  color: var(--white);
  background: var(--green);
}

.sidebar .quote-link {
  margin: 16px;
  padding: 15px 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--green));
  border: 0;
  border-radius: 999px;
  text-align: center;
  box-shadow: 0 0 22px rgba(11, 184, 255, 0.22);
}

.article {
  padding: clamp(24px, 4vw, 48px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.check-grid,
.service-grid,
.metric-cards,
.location-grid {
  display: grid;
  gap: 18px;
}

.check-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 30px;
}

.check-grid div {
  padding: 22px;
  border-left: 4px solid var(--green);
  background: #f8fbfd;
}

.split-section {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-dark), #064437);
}

.split-section .eyebrow,
.split-section p {
  color: #d6f2e5;
}

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

.metric-cards article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
}

.metric-cards strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.4rem;
}

.metric-cards span {
  color: #d6f2e5;
}

.services {
  padding: clamp(58px, 8vw, 96px) clamp(18px, 5vw, 74px);
  background: var(--white);
}

.packages,
.process-section {
  padding: clamp(58px, 8vw, 96px) clamp(18px, 5vw, 74px);
}

.packages {
  background: var(--white);
}

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

.package-grid article {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--soft);
}

.package-grid p,
.package-grid li,
.process-list p {
  color: var(--body);
}

.package-grid ul {
  display: grid;
  gap: 9px;
  margin: 22px 0 0;
  padding-left: 20px;
}

.process-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.2fr);
  gap: clamp(26px, 5vw, 72px);
  background: var(--soft-green);
}

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

.process-list article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.process-list span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--blue);
  font-weight: 900;
}

.section-title {
  max-width: 760px;
  margin-bottom: 36px;
}

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

.service-grid article {
  position: relative;
  min-height: 236px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(7, 21, 37, 0.05);
}

.service-grid article::before {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 168px;
  height: 168px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 32% 32%, rgba(11, 184, 255, 0.34), transparent 30%),
    radial-gradient(circle at 66% 70%, rgba(99, 212, 33, 0.3), transparent 34%),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(145, 240, 191, 0.18);
  opacity: 0.72;
}

.service-grid article::after {
  position: absolute;
  right: 26px;
  top: 28px;
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  color: #dffbff;
  background: rgba(4, 8, 23, 0.5);
  border: 1px solid rgba(145, 240, 191, 0.3);
  border-radius: 18px;
  box-shadow: 0 0 24px rgba(11, 184, 255, 0.18);
  font-size: 0.82rem;
  font-weight: 900;
}

.service-grid article:nth-child(1)::after { content: "WEB"; }
.service-grid article:nth-child(2)::after { content: "SEO"; }
.service-grid article:nth-child(3)::after { content: "ADS"; }
.service-grid article:nth-child(4)::after { content: "#"; font-size: 1.5rem; }
.service-grid article:nth-child(5)::after { content: "ROI"; }
.service-grid article:nth-child(6)::after { content: "DATA"; }

.service-card-image {
  --image-position: center center;
  --image-start-scale: 1.04;
  --image-end-scale: 1.12;
  --image-x-start: 0;
  --image-y-start: 0;
  --image-x-end: -14px;
  --image-y-end: 0;
  display: flex;
  min-height: 312px;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 128px;
  color: var(--white);
  background: #040817;
}

.service-card-image::before,
.service-card-image::after {
  display: none;
}

.service-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  overflow: hidden;
  background: #040817;
}

.service-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 8, 23, 0.06), rgba(4, 8, 23, 0.78) 58%, rgba(4, 8, 23, 0.94)),
    radial-gradient(circle at 75% 20%, rgba(11, 184, 255, 0.18), transparent 30%);
}

.service-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--image-position);
  transform: scale(var(--image-start-scale)) translate(var(--image-x-start), var(--image-y-start));
  animation: serviceImageDrift 9s ease-in-out infinite alternate;
}

.service-grid article:nth-child(1) {
  --image-position: 42% center;
  --image-start-scale: 1.02;
  --image-end-scale: 1.08;
  --image-x-end: -10px;
  --image-y-end: -4px;
}

.service-grid article:nth-child(2) {
  --image-position: 42% center;
  --image-start-scale: 1.02;
  --image-end-scale: 1.09;
  --image-x-end: 12px;
  --image-y-end: -6px;
}

.service-grid article:nth-child(3) {
  --image-position: center center;
  --image-start-scale: 1.04;
  --image-end-scale: 1.12;
  --image-x-end: -16px;
}

.service-grid article:nth-child(4) {
  --image-position: center center;
  --image-start-scale: 1.03;
  --image-end-scale: 1.1;
  --image-x-end: 14px;
  --image-y-end: -4px;
}

.service-grid article:nth-child(5) {
  --image-position: center center;
  --image-start-scale: 1.03;
  --image-end-scale: 1.11;
  --image-x-end: -10px;
  --image-y-end: 6px;
}

.service-grid article:nth-child(6) {
  --image-position: center center;
  --image-start-scale: 1.01;
  --image-end-scale: 1.07;
  --image-x-end: 10px;
  --image-y-end: -8px;
}

.service-card-image h3,
.service-card-image p,
.service-card-image span {
  color: var(--white);
  text-shadow: 0 2px 16px rgba(4, 8, 23, 0.78);
}

.service-card-image span {
  box-shadow: 0 0 20px rgba(11, 184, 255, 0.4);
}

.service-grid article h3,
.service-grid article p,
.service-grid article span {
  position: relative;
  z-index: 1;
}

.service-grid span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 24px;
  color: var(--white);
  background: var(--blue);
  border-radius: 999px;
  font-weight: 900;
}

.service-grid article:nth-child(even) span {
  background: var(--green);
}

.testimonial {
  padding: clamp(54px, 8vw, 92px) clamp(18px, 10vw, 150px);
  text-align: center;
  background: var(--soft-green);
}

.testimonial p {
  max-width: 940px;
  margin: 0 auto 20px;
  color: var(--ink);
  font-size: clamp(1.35rem, 3vw, 2.4rem);
  line-height: 1.25;
}

.testimonial strong {
  color: var(--green-dark);
}

.case-study-section {
  padding: clamp(64px, 8vw, 112px) clamp(18px, 5vw, 68px);
  background:
    radial-gradient(circle at 20% 10%, rgba(11, 184, 255, 0.18), transparent 28%),
    radial-gradient(circle at 86% 24%, rgba(42, 207, 110, 0.16), transparent 30%),
    linear-gradient(135deg, #061327 0%, #071f28 52%, #04111d 100%);
  color: var(--white);
}

.case-study-section .section-title {
  margin-bottom: 32px;
}

.case-study-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.case-study-card,
.case-study-feature {
  overflow: hidden;
  border: 1px solid rgba(145, 240, 191, 0.22);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px);
}

.case-study-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border-radius: 10px;
}

.case-study-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.case-study-card div {
  padding: 24px;
}

.case-study-card h3,
.case-study-feature h2 {
  color: var(--white);
}

.case-study-card p,
.case-study-feature p {
  color: #dcefff;
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--green-soft);
  font-weight: 900;
  text-decoration: none;
}

.case-study-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  margin-top: 28px;
  border-radius: 12px;
}

.case-study-feature.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
}

.case-study-feature.reverse img {
  order: 2;
}

.case-study-feature img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.case-study-feature article {
  padding: clamp(26px, 4vw, 48px);
}

.locations {
  background: var(--soft);
}

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

.location-grid article {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.contact {
  background: var(--white);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 6px;
}

label {
  display: grid;
  gap: 7px;
  color: #304157;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #c8d7e1;
  border-radius: 4px;
  color: var(--ink);
  font: inherit;
  background: var(--white);
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(11, 127, 211, 0.18);
  border-color: var(--blue);
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--green-dark);
  font-weight: 900;
}

.intro-band,
.content-layout,
.services,
.packages,
.process-section,
.testimonial,
.locations,
.contact {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 12%, rgba(11, 127, 211, 0.22), transparent 34%),
    radial-gradient(circle at 86% 18%, rgba(26, 166, 106, 0.18), transparent 32%),
    linear-gradient(135deg, #040817, #071f36 54%, #043f36);
}

.intro-band {
  background:
    radial-gradient(circle at 18% 12%, rgba(11, 127, 211, 0.28), transparent 34%),
    radial-gradient(circle at 86% 18%, rgba(26, 166, 106, 0.2), transparent 32%),
    linear-gradient(135deg, #040817, #071f36 54%, #043f36);
}

.intro-band::before,
.content-layout::before,
.services::before,
.packages::before,
.process-section::before,
.testimonial::before,
.locations::before,
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 15%, rgba(11, 127, 211, 0.25), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(26, 166, 106, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(4, 8, 23, 0.35), rgba(4, 8, 23, 0.75));
  pointer-events: none;
}

.intro-band > *,
.content-layout > *,
.services > *,
.packages > *,
.process-section > *,
.testimonial > *,
.locations > *,
.contact > * {
  position: relative;
  z-index: 1;
}

.intro-band article p,
.split-section p,
.contact p,
.article p,
.service-grid p,
.locations p,
.package-grid p,
.package-grid li,
.process-list p,
.testimonial strong,
.site-footer p,
.site-footer span {
  color: #dcefff;
}

.article,
.sidebar,
.service-grid article,
.package-grid article,
.process-list article,
.location-grid article,
.contact-form,
.intro-band aside {
  background: rgba(7, 21, 37, 0.74);
  border: 1px solid rgba(145, 240, 191, 0.22);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.fresh-banner {
  position: relative;
  min-height: clamp(620px, 82vh, 860px);
  padding-top: clamp(64px, 8vw, 112px);
  padding-bottom: clamp(64px, 8vw, 112px);
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 26%, rgba(11, 184, 255, 0.32), transparent 32%),
    radial-gradient(circle at 24% 72%, rgba(99, 212, 33, 0.24), transparent 34%),
    linear-gradient(135deg, #020817 0%, #041332 48%, #042f28 100%);
  border-bottom: 1px solid rgba(145, 240, 191, 0.24);
}

.fresh-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(11, 184, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(145, 240, 191, 0.08) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.22));
  opacity: 0.62;
  animation: gridSlide 12s linear infinite;
}

.fresh-banner::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: 8%;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(90deg, transparent, rgba(11, 184, 255, 0.4), rgba(99, 212, 33, 0.34), transparent);
  filter: blur(18px);
  transform: rotate(-5deg);
  animation: waveDrift 7s ease-in-out infinite alternate;
}

.fresh-banner-copy {
  max-width: 760px;
}

.fresh-banner-copy .eyebrow {
  color: #91f0bf;
}

.fresh-banner-copy h1 {
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(3rem, 6.2vw, 6.2rem);
}

.fresh-banner-copy p:not(.eyebrow) {
  max-width: 680px;
  color: #dcefff;
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
}

.fresh-banner .hero-actions {
  margin-top: 30px;
}

.fresh-banner .primary {
  background: linear-gradient(90deg, var(--blue), var(--green));
}

.fresh-banner .motion-brand {
  min-height: clamp(430px, 54vw, 620px);
  background:
    radial-gradient(circle at 55% 44%, rgba(11, 184, 255, 0.22), transparent 26%),
    radial-gradient(circle at 78% 70%, rgba(99, 212, 33, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(5, 12, 34, 0.92), rgba(3, 39, 55, 0.8));
}

.fresh-banner .motion-world {
  width: min(82%, 520px);
}

.fresh-banner .symbol {
  background: rgba(5, 12, 34, 0.72);
}

.check-grid div {
  background: rgba(255, 255, 255, 0.07);
  border-left-color: #91f0bf;
}

.sidebar h2 {
  background: linear-gradient(135deg, var(--blue), var(--green));
}

.sidebar a {
  color: #dcefff;
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.section-title .eyebrow,
.article .eyebrow,
.contact .eyebrow,
.locations .eyebrow,
.process-section .eyebrow {
  color: #91f0bf;
}

.testimonial p {
  color: var(--white);
}

label {
  color: #dcefff;
}

input,
textarea {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
}

input::placeholder,
textarea::placeholder {
  color: #adc2d7;
}

.form-note {
  color: #91f0bf;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: clamp(24px, 5vw, 70px);
  padding: clamp(42px, 7vw, 70px) clamp(18px, 5vw, 74px);
  color: #dcefff;
  background: #071525;
}

.site-footer h3 {
  color: var(--white);
}

.site-footer a,
.site-footer span {
  display: block;
  margin-bottom: 9px;
}

.footer-brand {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 900;
}

.footer-brand img {
  background: var(--white);
  border-radius: 6px;
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .proposal-link {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    display: none;
  }

  .site-header.nav-open .nav {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 16px;
    padding: 18px 0 10px;
  }

  .hero,
  .page-hero,
  .intro-band,
  .split-section,
  .locations,
  .contact,
  .process-section,
  .content-layout,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }

  .fresh-banner {
    min-height: auto;
  }

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

@media (max-width: 660px) {
  .topbar {
    justify-content: flex-start;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  h1 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

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

  .fresh-banner {
    padding-top: 44px;
    padding-bottom: 48px;
  }

  .fresh-banner .hero-actions {
    align-items: stretch;
  }

  .check-grid,
  .service-grid,
  .location-grid,
  .package-grid,
  .process-list,
  .case-study-grid,
  .case-study-feature,
  .case-study-feature.reverse {
    grid-template-columns: 1fr;
  }

  .case-study-feature.reverse img {
    order: 0;
  }

  .case-study-feature img {
    min-height: 220px;
  }

  .motion-brand {
    min-height: 520px;
  }

  .symbol {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    font-size: 0.95rem;
  }

  .search {
    left: 7%;
    top: 20%;
  }

  .code {
    right: 7%;
    top: 20%;
  }

  .cloud {
    left: 9%;
    bottom: 36%;
  }

  .graph {
    right: 9%;
    bottom: 36%;
  }

  .social {
    left: 42%;
    top: 10%;
  }

  .node::before,
  .node::after {
    width: 70px;
  }

  .motion-world {
    width: 88%;
    bottom: 70px;
  }

  .motion-caption {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }
}
