:root {
  --ink: #0d1422;
  --muted: #58657a;
  --line: #d8dee8;
  --surface: #ffffff;
  --soft: #f3f6fa;
  --green: #00a88f;
  --blue: #285bd4;
  --coral: #ff6b5f;
  --gold: #f0b83e;
  --shadow: 0 18px 50px rgba(13, 20, 34, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  color: #fff;
  background: rgba(7, 11, 18, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.site-header.solid {
  position: sticky;
  color: var(--ink);
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 8px;
  font-size: 14px;
}

.nav-links,
.footer-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: inherit;
  font-size: 14px;
}

.language-switcher {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.solid .language-switcher {
  border-color: var(--line);
  background: var(--soft);
}

.lang-button {
  min-width: 44px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  color: inherit;
  background: transparent;
  font-weight: 700;
  cursor: pointer;
}

.lang-button.active {
  color: var(--ink);
  background: #fff;
}

.hero {
  position: relative;
  min-height: 84vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 120px clamp(20px, 6vw, 80px) 90px;
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=2200&q=85");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 8, 14, 0.9) 0%, rgba(4, 8, 14, 0.72) 45%, rgba(4, 8, 14, 0.18) 100%);
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(54px, 8vw, 118px);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2.2vw, 24px);
}

.hero-actions,
.cta-band {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 34px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 800;
}

.primary-action {
  color: #fff;
  background: var(--green);
}

.primary-action.dark {
  background: var(--ink);
}

.secondary-action {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #fff;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.stats-strip div {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  padding: 24px;
  background: #fff;
}

.stats-strip strong {
  font-size: 30px;
}

.stats-strip span {
  color: var(--muted);
}

.section,
.split-section,
.cta-band,
.site-footer,
.document {
  padding: clamp(56px, 8vw, 96px) clamp(20px, 6vw, 80px);
}

.section-heading {
  max-width: 920px;
  margin-bottom: 34px;
}

.section-heading.narrow {
  max-width: 760px;
}

.section h2,
.split-section h2,
.cta-band h2,
.document h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: 0;
}

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

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(13, 20, 34, 0.06);
}

.service-card img {
  height: 220px;
  object-fit: cover;
}

.service-card h3,
.service-card p {
  margin-left: 22px;
  margin-right: 22px;
}

.service-card h3 {
  margin-top: 22px;
  margin-bottom: 8px;
  font-size: 22px;
}

.service-card p {
  margin-bottom: 24px;
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: clamp(30px, 6vw, 90px);
  background: var(--soft);
}

.platform-copy p {
  color: var(--muted);
  font-size: 18px;
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--blue);
  font-weight: 800;
}

.workflow-list {
  display: grid;
  gap: 12px;
}

.workflow-list div {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(13, 20, 34, 0.06);
}

.workflow-list span {
  color: var(--coral);
  font-weight: 900;
}

.workflow-list p {
  margin: 0;
  color: var(--ink);
}

.market-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.market-row article {
  padding: 28px;
  background: #fff;
}

.market-row h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.market-row p {
  margin: 0;
  color: var(--muted);
}

.cta-band {
  justify-content: space-between;
  color: #fff;
  background: var(--green);
}

.cta-band .eyebrow {
  color: #d9fff8;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 6px 0 0;
  color: var(--muted);
}

.document-page {
  background: var(--soft);
}

.document {
  max-width: 920px;
  margin: 0 auto;
  background: #fff;
}

.document h1 {
  color: var(--ink);
}

.document h2 {
  margin: 34px 0 8px;
}

.document p {
  color: var(--muted);
}

.document-meta {
  font-weight: 800;
}

@media (max-width: 900px) {
  .site-header {
    position: sticky;
    color: var(--ink);
    background: #fff;
    border-bottom-color: var(--line);
  }

  .nav-links {
    display: none;
  }

  .language-switcher {
    color: var(--ink);
    border-color: var(--line);
    background: var(--soft);
  }

  .hero {
    min-height: 78vh;
    padding-top: 76px;
  }

  .hero-overlay {
    background: rgba(4, 8, 14, 0.72);
  }

  .stats-strip,
  .service-grid,
  .split-section,
  .market-row {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header {
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
  }

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

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

  .stats-strip div {
    justify-content: flex-start;
  }

  .footer-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}
