:root {
  --navy-950: #020817;
  --navy-900: #061226;
  --navy-850: #071a34;
  --navy-800: #082449;
  --blue-600: #087dff;
  --blue-500: #0fa3ff;
  --blue-300: #62d7ff;
  --cyan-200: #b8f2ff;
  --ink: #071123;
  --muted: #5e6d81;
  --line: #d9e5f4;
  --soft: #f4f8fd;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(8, 30, 63, 0.14);
  --radius: 8px;
  --container: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(300px, 1fr) auto auto;
  align-items: center;
  gap: 26px;
  min-height: 82px;
  padding: 0 34px;
  color: var(--white);
  background: rgba(2, 8, 23, 0.95);
  border-bottom: 1px solid rgba(98, 215, 255, 0.18);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  filter: drop-shadow(0 0 12px rgba(15, 163, 255, 0.35));
}

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

.brand-mark svg {
  width: 100%;
  height: 100%;
}

.brand-text {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.brand-text strong {
  color: var(--white);
  font-size: 16px;
  line-height: 1.15;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-text small {
  color: var(--blue-300);
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 31px;
  font-size: 14px;
  font-weight: 800;
}

.primary-nav a {
  position: relative;
  padding: 30px 0;
}

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

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--blue-300);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 5px;
  font-weight: 850;
  font-size: 14px;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.header-cta,
.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  box-shadow: 0 13px 28px rgba(8, 125, 255, 0.32);
}

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

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

.btn span {
  display: inline-block;
  margin-left: 10px;
  transition: transform 180ms ease;
}

.btn:hover span {
  transform: translateX(4px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(98, 215, 255, 0.32);
  border-radius: 6px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 21px;
  height: 2px;
  margin: 3px 0;
  background: currentColor;
}

.section-dark {
  color: var(--white);
  background: var(--navy-950);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 690px;
  border-bottom: 1px solid rgba(98, 215, 255, 0.2);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 8, 23, 0.98) 0%, rgba(2, 8, 23, 0.9) 37%, rgba(2, 8, 23, 0.54) 63%, rgba(2, 8, 23, 0.18) 100%),
    radial-gradient(circle at 28% 20%, rgba(15, 163, 255, 0.22), transparent 31%),
    radial-gradient(circle at 74% 7%, rgba(98, 215, 255, 0.16), transparent 28%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(430px, 0.93fr) minmax(520px, 1.25fr);
  align-items: stretch;
  min-height: 690px;
}

.hero-copy {
  z-index: 2;
  align-self: center;
  padding: 72px 0 72px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue-500);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 710px;
  margin: 0 0 20px;
  font-size: 60px;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero h1 span {
  color: var(--blue-500);
}

.hero-lead {
  max-width: 650px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 10px 28px;
  max-width: 640px;
  margin: 0 0 31px;
  padding: 0;
  list-style: none;
}

.hero-points li,
.check-list li {
  position: relative;
  padding-left: 27px;
  font-weight: 700;
}

.hero-points li::before,
.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.17em;
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border: 2px solid var(--blue-500);
  border-radius: 50%;
  color: var(--blue-300);
  content: "";
  box-shadow: inset 0 0 0 4px rgba(15, 163, 255, 0.15);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.hero-actions .btn {
  min-width: 215px;
  min-height: 52px;
}

.hero-visual {
  position: relative;
  min-height: 100%;
  margin-right: calc((100vw - min(100vw - 48px, var(--container))) / -2);
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 690px;
  object-fit: cover;
}

.hero-visual::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(2, 8, 23, 0.96), rgba(2, 8, 23, 0.26) 30%, transparent 66%),
    linear-gradient(0deg, rgba(2, 8, 23, 0.45), transparent 36%);
}

.cloud-orbit {
  position: absolute;
  top: 22%;
  left: 42%;
  width: 220px;
  height: 138px;
  border: 1px solid rgba(98, 215, 255, 0.45);
  border-radius: 50%;
  transform: rotate(-12deg);
  animation: floatCloud 6s ease-in-out infinite;
}

.cloud-orbit span {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue-300);
  box-shadow: 0 0 16px var(--blue-300);
}

.cloud-orbit span:nth-child(1) {
  top: 7px;
  left: 93px;
}

.cloud-orbit span:nth-child(2) {
  right: 16px;
  bottom: 37px;
}

.cloud-orbit span:nth-child(3) {
  left: 25px;
  bottom: 28px;
}

@keyframes floatCloud {
  0%, 100% { transform: translateY(0) rotate(-12deg); }
  50% { transform: translateY(-12px) rotate(-12deg); }
}

.service-strip {
  color: var(--white);
  background:
    linear-gradient(180deg, #071830, #051124),
    radial-gradient(circle at 50% 0, rgba(15, 163, 255, 0.25), transparent 55%);
  border-bottom: 1px solid rgba(98, 215, 255, 0.22);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.strip-grid article {
  min-height: 176px;
  padding: 28px 24px 24px;
  text-align: center;
  border-left: 1px solid rgba(98, 215, 255, 0.18);
}

.strip-grid article:last-child {
  border-right: 1px solid rgba(98, 215, 255, 0.18);
}

.strip-grid h2 {
  min-height: 42px;
  margin: 12px 0 7px;
  font-size: 15px;
  line-height: 1.18;
}

.strip-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.45;
}

.section {
  padding: 58px 0 64px;
}

.section-heading {
  max-width: 920px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2,
.about-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: 38px;
  line-height: 1.12;
  letter-spacing: 0;
}

.section-heading p:last-child {
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 16px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(23, 67, 117, 0.11);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(19, 51, 91, 0.12);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(15, 163, 255, 0.36);
  box-shadow: var(--shadow);
}

.card-visual {
  position: relative;
  min-height: 170px;
  overflow: hidden;
  background: #071a34;
}

.card-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.card-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(2, 8, 23, 0.03), rgba(2, 8, 23, 0.16));
  pointer-events: none;
}

.service-card:hover .card-visual img {
  transform: scale(1.045);
}

.card-icon {
  position: absolute;
  left: 18px;
  bottom: -22px;
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--blue-500);
  box-shadow: 0 10px 25px rgba(8, 125, 255, 0.34);
}

.service-card h3 {
  margin: 38px 18px 9px;
  font-size: 18px;
  line-height: 1.2;
}

.service-card p {
  flex: 1;
  margin: 0 18px 22px;
  color: #405168;
  font-size: 14px;
}

.service-card a {
  margin: 0 18px 22px;
  color: var(--blue-600);
  font-weight: 900;
  font-size: 14px;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 1.02fr);
  align-items: center;
  background: linear-gradient(90deg, var(--soft), var(--white));
}

.about-image {
  position: relative;
  min-height: 390px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.about-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(2, 8, 23, 0.15), transparent 45%);
}

.about-badge {
  position: absolute;
  left: 15%;
  top: 34%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  color: var(--white);
  background: rgba(2, 8, 23, 0.76);
  border: 1px solid rgba(98, 215, 255, 0.28);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(2, 8, 23, 0.32);
}

.about-copy {
  width: min(620px, calc(100% - 48px));
  padding: 42px 0 42px 64px;
}

.about-copy p {
  color: #405168;
  font-size: 16px;
}

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

.check-list li::before {
  background: var(--blue-500);
  border-color: var(--blue-500);
}

.industries {
  position: relative;
  overflow: hidden;
  padding: 52px 0 62px;
  background:
    radial-gradient(circle at 14% 70%, rgba(15, 163, 255, 0.22), transparent 28%),
    radial-gradient(circle at 90% 38%, rgba(98, 215, 255, 0.14), transparent 24%),
    linear-gradient(135deg, #041126, #071d3b 58%, #041126);
}

.industries::before {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  content: "";
  background-image: radial-gradient(rgba(98, 215, 255, 0.75) 1px, transparent 1px);
  background-size: 18px 18px;
}

.industries .container {
  position: relative;
}

.industries .section-heading h2 {
  color: var(--white);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 36px;
}

.industry-card {
  display: grid;
  place-items: center;
  min-height: 150px;
  padding: 22px 16px;
  text-align: center;
  border: 1px solid rgba(98, 215, 255, 0.26);
  border-radius: 8px;
  background: rgba(2, 8, 23, 0.32);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.industry-card:hover {
  transform: translateY(-5px);
  border-color: rgba(98, 215, 255, 0.7);
  background: rgba(8, 125, 255, 0.12);
}

.industry-card h3 {
  margin: 12px 0 0;
  font-size: 16px;
  line-height: 1.2;
}

.process {
  padding-top: 50px;
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1160px;
  margin: 0 auto;
  padding: 34px 38px 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
}

.process-line::before {
  position: absolute;
  top: 54px;
  left: 13%;
  right: 13%;
  height: 1px;
  content: "";
  background: var(--line);
}

.process-step {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  padding: 0 20px;
  text-align: center;
}

.process-step:not(:last-child)::after {
  position: absolute;
  top: 48px;
  right: -6px;
  color: var(--ink);
  content: "->";
  font-size: 24px;
  font-weight: 700;
}

.step-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: -55px 0 16px;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue-500);
  box-shadow: 0 9px 20px rgba(8, 125, 255, 0.26);
  font-size: 13px;
  font-weight: 900;
}

.step-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 7px;
}

.process-step h3 {
  margin: 0 0 4px;
  font-size: 17px;
}

.process-step p {
  max-width: 190px;
  margin: 0;
  color: #405168;
  font-size: 13px;
  line-height: 1.38;
}

.location {
  padding: 8px 0 28px;
}

.location .eyebrow {
  text-align: center;
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.52fr) minmax(400px, 1fr);
  min-height: 255px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.location-panel {
  padding: 34px;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(15, 163, 255, 0.2), transparent 34%),
    linear-gradient(135deg, #041126, #082449);
}

.location-brand {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 26px;
}

.location-brand h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
}

.location-brand p {
  margin: 2px 0 0;
  color: var(--blue-300);
  font-weight: 800;
}

.location-panel dl {
  display: grid;
  gap: 19px;
  margin: 0 0 24px;
}

.location-panel dt {
  color: var(--blue-300);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.location-panel dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.88);
}

.map-panel {
  min-height: 255px;
  background: #eaf0f7;
}

.map-panel iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 255px;
  border: 0;
  filter: saturate(0.84) contrast(1.04);
}

.site-footer {
  color: rgba(255, 255, 255, 0.8);
  background: linear-gradient(180deg, #061226, #020817);
  border-top: 1px solid rgba(98, 215, 255, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.72fr 1fr 1fr;
  gap: 46px;
  padding: 30px 0 24px;
}

.footer-grid h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 16px;
}

.footer-grid p {
  margin: 13px 0 0;
}

.footer-grid a:not(.brand) {
  display: block;
  margin: 4px 0;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  margin-left: 20px;
}

.back-top {
  position: fixed;
  right: 28px;
  bottom: 26px;
  z-index: 40;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue-600);
  box-shadow: 0 12px 28px rgba(8, 125, 255, 0.35);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.back-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.strip-icon,
.industry-icon,
.step-icon {
  display: inline-block;
  background-color: var(--blue-300);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.strip-icon {
  width: 42px;
  height: 42px;
}

.industry-icon {
  width: 64px;
  height: 64px;
}

.icon-headset { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 34c0-12 8-22 20-22s20 10 20 22v12a8 8 0 0 1-8 8h-8v-6h8a2 2 0 0 0 2-2V34c0-8.8-5.5-16-14-16S18 25.2 18 34v12h-6V34Zm8 2h8v16h-8a6 6 0 0 1-6-6v-4a6 6 0 0 1 6-6Zm24 0h-8v16h8a6 6 0 0 0 6-6v-4a6 6 0 0 0-6-6Z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 34c0-12 8-22 20-22s20 10 20 22v12a8 8 0 0 1-8 8h-8v-6h8a2 2 0 0 0 2-2V34c0-8.8-5.5-16-14-16S18 25.2 18 34v12h-6V34Zm8 2h8v16h-8a6 6 0 0 1-6-6v-4a6 6 0 0 1 6-6Zm24 0h-8v16h8a6 6 0 0 0 6-6v-4a6 6 0 0 0-6-6Z'/%3E%3C/svg%3E"); }
.icon-cloud { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 50h26a12 12 0 0 0 0-24 18 18 0 0 0-34.6-4.7A14.8 14.8 0 0 0 24 50Zm-1-6a9 9 0 0 1-3.7-17.2l2.5-1 .6-2.6A12 12 0 0 1 46 27l.8 5H50a6 6 0 0 1 0 12H23Z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 50h26a12 12 0 0 0 0-24 18 18 0 0 0-34.6-4.7A14.8 14.8 0 0 0 24 50Zm-1-6a9 9 0 0 1-3.7-17.2l2.5-1 .6-2.6A12 12 0 0 1 46 27l.8 5H50a6 6 0 0 1 0 12H23Z'/%3E%3C/svg%3E"); }
.icon-network { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M29 8h6v14h15v14h6v20H38V36h6v-8H20v8h6v20H8V36h6V22h15V8Zm6 34v8h15v-8H35Zm-21 0v8h6v-8h-6Zm0 0h6v8h-6v-8Zm21-28v8h0v-8h0Z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M29 8h6v14h15v14h6v20H38V36h6v-8H20v8h6v20H8V36h6V22h15V8Zm6 34v8h15v-8H35Zm-21 0v8h6v-8h-6Zm0 0h6v8h-6v-8Zm21-28v8h0v-8h0Z'/%3E%3C/svg%3E"); }
.icon-shield { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M32 6 52 14v16c0 13-7.4 23.6-20 29C19.4 53.6 12 43 12 30V14l20-8Zm0 7.3-14 5.6V30c0 9.4 4.8 17.4 14 22.1 9.2-4.7 14-12.7 14-22.1V18.9l-14-5.6Zm-3 14.7h6v8h8v6h-8v8h-6v-8h-8v-6h8v-8Z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M32 6 52 14v16c0 13-7.4 23.6-20 29C19.4 53.6 12 43 12 30V14l20-8Zm0 7.3-14 5.6V30c0 9.4 4.8 17.4 14 22.1 9.2-4.7 14-12.7 14-22.1V18.9l-14-5.6Zm-3 14.7h6v8h8v6h-8v8h-6v-8h-8v-6h8v-8Z'/%3E%3C/svg%3E"); }
.icon-server { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 8h40v16H12V8Zm6 6v4h4v-4h-4Zm10 0v4h18v-4H28ZM12 28h40v16H12V28Zm6 6v4h4v-4h-4Zm10 0v4h18v-4H28ZM12 48h40v8H12v-8Z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 8h40v16H12V8Zm6 6v4h4v-4h-4Zm10 0v4h18v-4H28ZM12 28h40v16H12V28Zm6 6v4h4v-4h-4Zm10 0v4h18v-4H28ZM12 48h40v8H12v-8Z'/%3E%3C/svg%3E"); }
.icon-user { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M32 10a12 12 0 1 1 0 24 12 12 0 0 1 0-24Zm0 6a6 6 0 1 0 0 12 6 6 0 0 0 0-12ZM12 55c1.6-11 9.3-17 20-17s18.4 6 20 17h-6.3c-1.8-7.3-6.5-11-13.7-11s-11.9 3.7-13.7 11H12Z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M32 10a12 12 0 1 1 0 24 12 12 0 0 1 0-24Zm0 6a6 6 0 1 0 0 12 6 6 0 0 0 0-12ZM12 55c1.6-11 9.3-17 20-17s18.4 6 20 17h-6.3c-1.8-7.3-6.5-11-13.7-11s-11.9 3.7-13.7 11H12Z'/%3E%3C/svg%3E"); }
.icon-shop { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 12h40l6 16v4a10 10 0 0 1-16 8 10 10 0 0 1-16 0 10 10 0 0 1-16-8v-4l6-16Zm6 6-3 9h34l-3-9H18Zm0 27v11h28V45h6v17H12V45h6Z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 12h40l6 16v4a10 10 0 0 1-16 8 10 10 0 0 1-16 0 10 10 0 0 1-16-8v-4l6-16Zm6 6-3 9h34l-3-9H18Zm0 27v11h28V45h6v17H12V45h6Z'/%3E%3C/svg%3E"); }
.icon-cart { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 10h9l5.5 29H48l7-20H23l-1-6h41L52 45H18L13 16H8v-6Zm15 42a5 5 0 1 1 0 10 5 5 0 0 1 0-10Zm25 0a5 5 0 1 1 0 10 5 5 0 0 1 0-10Z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 10h9l5.5 29H48l7-20H23l-1-6h41L52 45H18L13 16H8v-6Zm15 42a5 5 0 1 1 0 10 5 5 0 0 1 0-10Zm25 0a5 5 0 1 1 0 10 5 5 0 0 1 0-10Z'/%3E%3C/svg%3E"); }
.icon-briefcase { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 14h16v8h14v32H10V22h14v-8Zm6 8h4v-2h-4v2Zm-14 6v20h32V28H16Zm13 7h6v6h-6v-6Z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 14h16v8h14v32H10V22h14v-8Zm6 8h4v-2h-4v2Zm-14 6v20h32V28H16Zm13 7h6v6h-6v-6Z'/%3E%3C/svg%3E"); }
.icon-education { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M32 8 60 22 32 36 4 22 32 8Zm0 7L18 22l14 7 14-7-14-7Zm-16 18 6 3v9c2.9 1.8 6.2 2.7 10 2.7s7.1-.9 10-2.7v-9l6-3v15.2C43.7 51.4 38.3 54 32 54s-11.7-2.6-16-5.8V33Z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M32 8 60 22 32 36 4 22 32 8Zm0 7L18 22l14 7 14-7-14-7Zm-16 18 6 3v9c2.9 1.8 6.2 2.7 10 2.7s7.1-.9 10-2.7v-9l6-3v15.2C43.7 51.4 38.3 54 32 54s-11.7-2.6-16-5.8V33Z'/%3E%3C/svg%3E"); }
.icon-health { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M32 54 13.5 35.7C6 28.2 9 15 20 13c5-.8 9.2 1.3 12 5 2.8-3.7 7-5.8 12-5 11 2 14 15.2 6.5 22.7L32 54Zm-14-30c-3 3.2-2.4 8 .9 11.3L32 48.2l13.1-12.9C48.4 32 49 27.2 46 24c-3.1-3.3-8.4-2.7-10.8 1.3L32 30.6l-3.2-5.3C26.4 21.3 21.1 20.7 18 24Z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M32 54 13.5 35.7C6 28.2 9 15 20 13c5-.8 9.2 1.3 12 5 2.8-3.7 7-5.8 12-5 11 2 14 15.2 6.5 22.7L32 54Zm-14-30c-3 3.2-2.4 8 .9 11.3L32 48.2l13.1-12.9C48.4 32 49 27.2 46 24c-3.1-3.3-8.4-2.7-10.8 1.3L32 30.6l-3.2-5.3C26.4 21.3 21.1 20.7 18 24Z'/%3E%3C/svg%3E"); }
.icon-building { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 8h24v48h16V24h-8v-6h14v44H6V8h6Zm6 8v6h6v-6h-6Zm12 0v6h0v-6Zm-12 14v6h6v-6h-6Zm12 0v6h0v-6Zm-12 14v6h6v-6h-6Zm12 0v6h0v-6Z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 8h24v48h16V24h-8v-6h14v44H6V8h6Zm6 8v6h6v-6h-6Zm12 0v6h0v-6Zm-12 14v6h6v-6h-6Zm12 0v6h0v-6Zm-12 14v6h6v-6h-6Zm12 0v6h0v-6Z'/%3E%3C/svg%3E"); }
.icon-clipboard { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 8h16l2 6h8v44H14V14h8l2-6Zm4 6-1 3h10l-1-3h-8Zm-8 6v32h24V20H20Zm6 10h12v5H26v-5Zm0 10h12v5H26v-5Z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 8h16l2 6h8v44H14V14h8l2-6Zm4 6-1 3h10l-1-3h-8Zm-8 6v32h24V20H20Zm6 10h12v5H26v-5Zm0 10h12v5H26v-5Z'/%3E%3C/svg%3E"); }
.icon-plan { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 10h40v44H12V10Zm6 6v32h28V16H18Zm4 8h12v6H22v-6Zm0 10h6v6h-6v-6Zm12 0h8v6h-8v-6Z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 10h40v44H12V10Zm6 6v32h28V16H18Zm4 8h12v6H22v-6Zm0 10h6v6h-6v-6Zm12 0h8v6h-8v-6Z'/%3E%3C/svg%3E"); }
.icon-gear { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m35 6 2.5 8.2 6 2.5 7.6-4 7 12-7 5.3v4l7 5.3-7 12-7.6-4-6 2.5L35 58H21l-2.5-8.2-6-2.5-7.6 4-7-12 7-5.3v-4l-7-5.3 7-12 7.6 4 6-2.5L21 6h14Zm-7 18a8 8 0 1 0 0 16 8 8 0 0 0 0-16Z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m35 6 2.5 8.2 6 2.5 7.6-4 7 12-7 5.3v4l7 5.3-7 12-7.6-4-6 2.5L35 58H21l-2.5-8.2-6-2.5-7.6 4-7-12 7-5.3v-4l-7-5.3 7-12 7.6 4 6-2.5L21 6h14Zm-7 18a8 8 0 1 0 0 16 8 8 0 0 0 0-16Z'/%3E%3C/svg%3E"); }
.icon-support { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M32 8a24 24 0 0 1 24 24h-6a18 18 0 1 0-5.2 12.7L40 40h16v16l-6.9-6.9A24 24 0 1 1 32 8Zm-3 12h6v14H21v-6h8v-8Z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M32 8a24 24 0 0 1 24 24h-6a18 18 0 1 0-5.2 12.7L40 40h16v16l-6.9-6.9A24 24 0 1 1 32 8Zm-3 12h6v14H21v-6h8v-8Z'/%3E%3C/svg%3E"); }

@media (max-width: 1280px) {
  .site-header {
    grid-template-columns: minmax(260px, 1fr) auto auto;
    gap: 18px;
    padding: 0 22px;
  }

  .primary-nav {
    gap: 20px;
  }

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

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

  .strip-grid article:nth-child(3) {
    border-right: 1px solid rgba(98, 215, 255, 0.18);
  }
}

@media (max-width: 980px) {
  .container {
    width: min(calc(100% - 34px), var(--container));
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 72px;
  }

  .primary-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .primary-nav.is-open {
    position: fixed;
    left: 17px;
    right: 17px;
    top: 82px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(98, 215, 255, 0.2);
    border-radius: 8px;
    background: #061226;
    box-shadow: 0 20px 40px rgba(2, 8, 23, 0.34);
  }

  .primary-nav.is-open a {
    padding: 15px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .primary-nav.is-open a:last-child {
    border-bottom: 0;
  }

  .hero,
  .hero-grid {
    min-height: auto;
  }

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

  .hero-copy {
    padding: 58px 0 34px;
  }

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

  .hero-visual {
    min-height: 360px;
    margin: 0 calc((100vw - min(100vw - 34px, var(--container))) / -2);
  }

  .hero-visual img {
    min-height: 360px;
  }

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

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

  .about-copy {
    width: min(calc(100% - 34px), 760px);
    margin: 0 auto;
    padding: 42px 0;
  }

  .process-line {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 0;
  }

  .process-line::before,
  .process-step::after {
    display: none;
  }

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

@media (max-width: 680px) {
  .site-header {
    padding: 0 16px;
  }

  .brand-text strong {
    max-width: 210px;
    white-space: normal;
    font-size: 13px;
  }

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

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

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

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

  .hero-points,
  .strip-grid,
  .cards-grid,
  .industry-grid,
  .process-line {
    grid-template-columns: 1fr;
  }

  .strip-grid article,
  .strip-grid article:last-child,
  .strip-grid article:nth-child(3) {
    border-right: 1px solid rgba(98, 215, 255, 0.18);
  }

  .section-heading h2,
  .about-copy h2 {
    font-size: 31px;
  }

  .service-card {
    min-height: auto;
  }

  .about-badge {
    left: 18px;
    right: 18px;
    top: auto;
    bottom: 24px;
  }

  .location-panel {
    padding: 25px 22px;
  }

  .footer-bottom {
    display: grid;
  }

  .footer-bottom a {
    margin: 0 18px 0 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
