:root {
  --bg: #08111f;
  --panel: #101b2f;
  --panel-soft: rgba(16, 27, 47, 0.78);
  --line: rgba(255, 255, 255, 0.12);
  --text: #edf2ff;
  --muted: #b3bfd7;
  --dark: #050b14;
  --light: #f4f7fb;
  --light-text: #162033;
  --accent: #1f6feb;
  --accent-2: #2fbf71;
  --radius: 28px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font: 16px/1.65 Inter, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

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

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: #fff;
  color: #000;
  padding: 0.75rem 1rem;
  z-index: 999;
}

.shell {
  width: min(1280px, calc(100vw - 2rem));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding-top: 1rem;
}

.site-header__bar,
.lang-switch {
  backdrop-filter: blur(18px);
  background: rgba(4, 10, 19, 0.68);
  border: 1px solid var(--line);
}

.site-header__bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  min-height: 72px;
  padding: 0.8rem 1rem;
  border-radius: 999px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.site-logo__mark {
  width: 2.8rem;
  height: 2.8rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #4ea1ff);
  color: #fff;
  font-weight: 800;
}

.site-logo__text strong,
h1,
h2,
h3 {
  font-family: "Arial Narrow", "Segoe UI", sans-serif;
  letter-spacing: -0.03em;
}

.site-logo__text strong {
  display: block;
  font-size: 1.08rem;
}

.site-logo__text small {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.1rem;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.94rem;
}

.site-nav a[aria-current="page"] {
  color: #fff;
  font-weight: 700;
}

.site-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.site-phone {
  color: #fff;
  white-space: nowrap;
  font-weight: 600;
}

.site-nav-toggle {
  display: none;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 0.75rem 1rem;
  font: inherit;
}

.lang-switch {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  margin-top: 0.55rem;
  padding: 0.55rem 0.7rem;
  border-radius: 999px;
}

.lang-switch__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  color: var(--muted);
  white-space: nowrap;
}

.lang-switch__link.is-active {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.lang-switch__flag {
  font-size: 1rem;
}

.lang-switch__link small {
  color: inherit;
  opacity: 0.74;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__video,
.hero__overlay,
.hero__topfade {
  position: absolute;
  inset: 0;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  background:
    linear-gradient(180deg, rgba(4, 9, 18, 0.78) 0%, rgba(4, 9, 18, 0.54) 26%, rgba(4, 9, 18, 0.82) 100%),
    radial-gradient(circle at 50% 30%, rgba(31, 111, 235, 0.25), transparent 38%);
}

.hero__topfade {
  background: linear-gradient(180deg, rgba(4, 10, 19, 0.82) 0%, transparent 24%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 420px);
  gap: 2rem;
  align-items: end;
  padding-top: 12rem;
  padding-bottom: 4rem;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #97b8ff;
  font-weight: 700;
}

.eyebrow--small {
  margin-bottom: 0.55rem;
}

h1 {
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  line-height: 0.94;
  color: #fff;
  max-width: 13ch;
}

h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
  color: inherit;
}

h3 {
  margin: 0 0 0.65rem;
  font-size: 1.45rem;
  line-height: 1.08;
}

.hero__lead,
.section-copy p,
.copy-panel p,
.feature-panel li,
.contact-copy p,
.contact-card label,
.legal-copy p,
.message-panel p {
  color: var(--muted);
}

.hero__lead {
  max-width: 46rem;
  margin: 1.4rem 0 0;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.18);
}

.button--solid {
  background: var(--accent);
  color: #fff;
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.button--compact {
  min-height: 2.7rem;
  padding-inline: 1rem;
}

.hero__points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.hero__points li {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero__card,
.service-card,
.copy-panel,
.feature-panel,
.marquee-panel,
.region-card,
.step-card,
.contact-card,
.message-panel,
.legal-copy {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero__card {
  padding: 1.4rem;
  background: var(--panel-soft);
}

.hero__card dl {
  margin: 1.2rem 0 0;
}

.hero__card div + div {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__card dt {
  color: #97b8ff;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
}

.hero__card dd {
  margin: 0;
  color: #fff;
}

.hero__media-toggle {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 3;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(8, 17, 31, 0.55);
  color: #fff;
  cursor: pointer;
}

.section {
  padding: 5rem 0;
}

.section--intro {
  background: #0c1628;
}

.section--dark {
  background: linear-gradient(180deg, #0b1424 0%, #09111f 100%);
}

.section--light {
  background: var(--light);
  color: var(--light-text);
}

.section--contact {
  background:
    radial-gradient(circle at top right, rgba(31, 111, 235, 0.18), transparent 24%),
    linear-gradient(180deg, #0c1628 0%, #09111f 100%);
}

.section-copy {
  max-width: 860px;
  margin-bottom: 2rem;
}

.section-copy--narrow {
  max-width: 720px;
}

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

.service-card {
  overflow: hidden;
  background: #0d182a;
}

.service-card__media {
  aspect-ratio: 1.35 / 1;
  overflow: hidden;
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.service-card:hover .service-card__media img {
  transform: scale(1.05);
}

.service-card__body {
  padding: 1.2rem;
}

.two-col,
.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.copy-panel,
.feature-panel {
  padding: 1.6rem;
  background: rgba(255, 255, 255, 0.03);
}

.feature-panel ul {
  padding-left: 1.1rem;
  margin: 0;
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.industry-tags span,
.marquee__item {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.industry-tags span {
  padding: 0.5rem 0.85rem;
}

.marquee-panel {
  background: var(--panel);
  padding: 1.6rem;
}

.marquee {
  overflow: hidden;
}

.marquee__track {
  display: flex;
  gap: 1rem;
  min-width: max-content;
  animation: scroll-track 26s linear infinite;
}

.marquee__item {
  padding: 0.75rem 1rem;
  font-weight: 700;
}

@keyframes scroll-track {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.region-grid,
.steps {
  display: grid;
  gap: 1.2rem;
}

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

.region-card {
  position: relative;
  min-height: 220px;
  padding: 1.45rem;
  background: linear-gradient(180deg, #ffffff 0%, #ecf2fb 100%);
}

.region-card h3,
.region-card p {
  color: var(--light-text);
}

.region-card__badge {
  display: inline-flex;
  margin-bottom: 0.9rem;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  background: #d9e8ff;
  color: #1358bf;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.step-card {
  padding: 1.45rem;
  background: rgba(255, 255, 255, 0.03);
}

.step-card span {
  display: inline-flex;
  margin-bottom: 1rem;
  color: #7ca8ff;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
}

.contact-copy {
  align-self: center;
}

.contact-card,
.message-panel,
.legal-copy {
  padding: 1.6rem;
  background: rgba(255, 255, 255, 0.05);
}

.contact-card label {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  margin-top: 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(5, 11, 20, 0.72);
  color: #fff;
  padding: 0.9rem 1rem;
  font: inherit;
}

.form-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.standalone {
  padding-top: 12.5rem;
  padding-bottom: 5rem;
}

.site-footer {
  padding: 3rem 0 1.25rem;
  background: #050b14;
}

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

.footer-bottom {
  padding-top: 1.25rem;
  margin-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

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

  .marquee__track {
    animation: none;
  }
}

@media (max-width: 1100px) {
  .site-header__bar {
    grid-template-columns: auto auto 1fr;
  }

  .site-nav-toggle {
    display: inline-flex;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.8rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    padding: 1rem;
    background: rgba(4, 10, 19, 0.96);
    border: 1px solid var(--line);
    border-radius: 24px;
  }

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

  .site-actions {
    justify-content: flex-end;
  }

  .hero__inner,
  .two-col,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .site-header {
    padding-top: 0.7rem;
  }

  .site-header__bar {
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
    padding: 0.8rem;
    border-radius: 28px;
  }

  .site-actions {
    display: none;
  }

  .hero__inner {
    padding-top: 11rem;
    padding-bottom: 3rem;
  }

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

  .section {
    padding: 4rem 0;
  }
}
