:root {
  --ink: #07111f;
  --ink-2: #142238;
  --muted: #5b6b80;
  --line: #dce5ed;
  --paper: #f5f8fb;
  --white: #ffffff;
  --teal: #0f766e;
  --cyan: #0891b2;
  --blue: #1d4ed8;
  --amber: #b45309;
  --shadow: 0 24px 70px rgba(7, 17, 31, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}
.site-header.is-scrolled, .site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 30px rgba(7, 17, 31, 0.09);
  backdrop-filter: blur(16px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  white-space: nowrap;
}
.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 8px;
  font-size: 13px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 750;
}
.site-nav a { opacity: 0.86; }
.site-nav a:hover { opacity: 1; }
.language-switch {
  display: inline-flex;
  gap: 3px;
  padding: 3px;
  border: 1px solid currentColor;
  border-radius: 8px;
}
.language-switch button {
  min-width: 38px;
  min-height: 30px;
  color: inherit;
  background: transparent;
  border: 0;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
}
.language-switch button.is-active { color: var(--ink); background: var(--white); }
.site-header.is-scrolled .language-switch button.is-active,
.site-header.is-open .language-switch button.is-active { color: var(--white); background: var(--ink); }
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 8px;
}
.nav-toggle span { display: block; height: 2px; margin: 5px 0; background: currentColor; }

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 122px clamp(20px, 6vw, 84px) 96px;
  overflow: hidden;
  color: var(--white);
}
.hero-image, .hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-image { object-fit: cover; object-position: center; }
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 10, 21, 0.91), rgba(4, 10, 21, 0.62) 44%, rgba(4, 10, 21, 0.18)),
    linear-gradient(180deg, rgba(4, 10, 21, 0.28), rgba(4, 10, 21, 0.66));
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(840px, 100%);
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}
.hero .eyebrow { color: #67e8f9; }
h1, h2, h3, p, span, strong {
  overflow-wrap: break-word;
  word-break: normal;
}
h1 {
  max-width: 830px;
  margin: 0;
  font-size: clamp(42px, 7.2vw, 88px);
  line-height: 0.96;
  letter-spacing: 0;
}
h1 [data-i18n="hero.mobileTitle"] {
  display: none;
}
h2 {
  margin: 0;
  font-size: clamp(30px, 4.4vw, 56px);
  line-height: 1.04;
  letter-spacing: 0;
}
h3 { margin: 0 0 10px; font-size: 22px; line-height: 1.18; }
.hero-copy {
  max-width: 720px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 160ms ease, filter 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { color: var(--white); background: linear-gradient(135deg, var(--teal), var(--blue)); }
.button.secondary { color: var(--white); border-color: rgba(255,255,255,.46); background: rgba(255,255,255,.08); }
.hero-proof {
  position: absolute;
  z-index: 2;
  right: clamp(20px, 5vw, 72px);
  bottom: 32px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.hero-proof span {
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 800;
}

.section { padding: clamp(72px, 10vw, 128px) clamp(20px, 5vw, 64px); }
.section-inner { width: min(1180px, 100%); margin: 0 auto; }
.intro, .contact { background: var(--white); }
.intro-grid, .approach-grid, .contact-grid, .split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}
.intro-copy p, .contact-grid > div > p {
  margin: 0;
  color: var(--ink-2);
  font-size: 19px;
  line-height: 1.75;
}
.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}
.metric-row article {
  min-height: 124px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
}
.metric-row strong { display: block; margin-bottom: 8px; font-size: 28px; }
.metric-row span { color: var(--muted); line-height: 1.45; }
.section-heading { max-width: 820px; margin-bottom: 40px; }

.service-blocks {
  display: grid;
  gap: 18px;
}
.service-family {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(310px, .7fr);
  gap: 24px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(7,17,31,.04);
  position: relative;
  overflow: hidden;
}
.service-family::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--teal);
}
.service-family.xr::before { background: var(--blue); }
.service-family.transformation::before { background: var(--amber); }
.family-content {
  display: grid;
  gap: 24px;
}
.family-heading {
  display: grid;
  gap: 22px;
  align-content: start;
}
.family-kicker {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  font-weight: 850;
}
.service-family.ai .family-kicker { background: var(--teal); }
.service-family.xr .family-kicker { background: var(--blue); }
.service-family.transformation .family-kicker { background: var(--amber); }
.family-heading h3 {
  margin-bottom: 14px;
  font-size: clamp(26px, 3vw, 38px);
}
.family-heading p {
  margin: 0;
  color: var(--ink-2);
  font-size: 18px;
  line-height: 1.65;
}
.family-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}
.family-services div {
  min-height: 245px;
  padding: 24px;
  background: #fbfdff;
}
.family-services strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.22;
}
.family-services p, .steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
.family-media {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
}
.family-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.family-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,11,21,.1), rgba(5,11,21,.78)),
    linear-gradient(90deg, rgba(5,11,21,.12), rgba(5,11,21,.36));
}
.family-media figcaption {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  bottom: 24px;
}
.family-media span {
  display: block;
  margin-bottom: 8px;
  color: #67e8f9;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}
.family-media p {
  max-width: 560px;
  margin: 0;
  color: rgba(255,255,255,.86);
  font-size: 16px;
  line-height: 1.55;
}
.dark {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8,145,178,.22), transparent 34%),
    var(--ink);
}
.dark .eyebrow { color: #67e8f9; }
.sticky-heading { position: sticky; top: 108px; }
.steps { display: grid; gap: 14px; }
.steps article {
  padding: 26px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
}
.steps span { display: block; margin-bottom: 12px; color: #93c5fd; font-weight: 850; }
.steps p { color: rgba(255,255,255,.76); }

.clients { background: var(--white); }
.logo-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}
.logo-grid a {
  display: grid;
  min-height: 118px;
  place-items: center;
  padding: 18px 12px;
  text-align: center;
  color: var(--ink);
  background: #fbfdff;
  transition: background 160ms ease, transform 160ms ease;
}
.logo-grid a:hover {
  background: var(--white);
  transform: translateY(-2px);
}
.logo-grid .logo-dark {
  background: #07111f;
}
.logo-grid .logo-dark:hover {
  background: #111d2e;
}
.logo-grid img {
  display: block;
  max-width: 150px;
  max-height: 62px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.logo-grid a:first-child img {
  max-width: 120px;
  max-height: 76px;
}
.logo-grid .logo-with-label {
  gap: 8px;
}
.logo-grid .logo-with-label img {
  width: 38px;
  height: 38px;
  image-rendering: auto;
}
.logo-grid .logo-with-label span {
  font-size: 18px;
  font-weight: 850;
}

.contact-data {
  display: grid;
  gap: 8px;
  margin-top: 30px;
  color: var(--muted);
  line-height: 1.5;
}
.contact-data strong { color: var(--ink); }
.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: grid; gap: 8px; font-size: 14px; font-weight: 800; }
.hidden-field { display: none; }
input, textarea, select {
  width: 100%;
  min-height: 48px;
  padding: 13px 14px;
  border: 1px solid #c6d1de;
  border-radius: 8px;
  color: var(--ink);
  background: #fbfdff;
}
textarea { resize: vertical; }
input:focus, textarea:focus, select:focus {
  outline: 3px solid rgba(29,78,216,.18);
  border-color: var(--blue);
}
.check {
  grid-template-columns: 20px 1fr;
  align-items: start;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.45;
}
.check input { min-height: auto; margin-top: 3px; }
.form-note { min-height: 24px; margin: 0; color: var(--teal); font-size: 14px; font-weight: 800; }
.form-note.is-error { color: #b91c1c; }

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(20px, 5vw, 64px);
  color: rgba(255,255,255,.76);
  background: #050b15;
}
.site-footer > div:first-child { display: grid; gap: 4px; }
.site-footer strong { color: var(--white); }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px; }
.footer-links button {
  color: inherit;
  background: transparent;
  border: 0;
  padding: 8px 0;
  cursor: pointer;
  font-weight: 750;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.cookie-banner.is-visible { display: flex; }
.cookie-banner p { margin: 0; color: var(--ink-2); line-height: 1.45; }

.legal-modal {
  width: min(860px, calc(100vw - 28px));
  max-height: min(82vh, 820px);
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.legal-modal::backdrop { background: rgba(5, 11, 21, .62); }
.modal-close {
  position: sticky;
  top: 0;
  float: right;
  width: 44px;
  height: 44px;
  margin: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-size: 28px;
  cursor: pointer;
}
.legal-modal article { padding: 34px; color: var(--ink-2); line-height: 1.65; }
.legal-modal h2 { margin-bottom: 20px; font-size: 34px; }
.legal-modal h3 { margin-top: 28px; }

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(8,145,178,.18), transparent 38%),
    var(--paper);
}
.thanks-card {
  width: min(760px, 100%);
  padding: clamp(28px, 6vw, 56px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.thanks-brand {
  margin-bottom: 42px;
}
.thanks-card h1 {
  color: var(--ink);
  font-size: clamp(38px, 6vw, 68px);
}
.thanks-card p:not(.eyebrow) {
  max-width: 560px;
  color: var(--ink-2);
  font-size: 19px;
  line-height: 1.7;
}
.thanks-card .button {
  margin-top: 18px;
}

@media (max-width: 980px) {
  .service-family { grid-template-columns: 1fr; }
  .family-services { grid-template-columns: 1fr; }
  .family-services div { min-height: auto; }
  .family-media { min-height: 360px; }
  .logo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: calc(100% - 1px);
    right: 18px;
    display: none;
    width: min(340px, calc(100vw - 36px));
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: grid; }
  .site-nav a { padding: 12px; }
  .language-switch { color: var(--ink); width: fit-content; margin: 8px 12px 4px; }
  .language-switch button.is-active { color: var(--white); background: var(--ink); }
  .intro-grid, .approach-grid, .contact-grid, .split { grid-template-columns: 1fr; }
  .sticky-heading { position: static; }
  .hero {
    min-height: auto;
    align-items: flex-start;
    padding: 132px 24px 54px;
  }
  .hero-content {
    width: 100%;
  }
  .hero .eyebrow {
    max-width: 320px;
    font-size: 12px;
    line-height: 1.45;
  }
  .hero-copy {
    max-width: 330px;
    margin-top: 22px;
    font-size: 20px;
    line-height: 1.55;
  }
  .hero-actions {
    max-width: 330px;
    margin-top: 26px;
  }
  .hero-proof {
    display: none;
  }
}
@media (max-width: 620px) {
  .brand span:last-child { max-width: 150px; line-height: 1.05; white-space: normal; }
  .hero {
    padding: 126px 22px 48px;
  }
  h1 {
    font-size: clamp(34px, 10.5vw, 42px);
    line-height: 1.04;
  }
  .hero h1 {
    max-width: 340px;
    text-wrap: balance;
  }
  .hero h1 [data-i18n="hero.title"] {
    display: none;
  }
  .hero h1 [data-i18n="hero.mobileTitle"] {
    display: inline;
  }
  .hero-copy {
    font-size: 18px;
  }
  .metric-row, .form-row, .logo-grid { grid-template-columns: 1fr; }
  .button { width: 100%; }
  .contact-form { padding: 20px; }
  .cookie-banner { align-items: stretch; flex-direction: column; }
}
