:root {
  --ink: #10141f;
  --muted: #657184;
  --line: #d9e0ea;
  --surface: #ffffff;
  --soft: #f5f7fa;
  --paper: #fbfcfe;
  --teal: #008f7e;
  --navy: #111827;
  --blue: #2563eb;
  --amber: #f2a900;
  --coral: #e95542;
  --shadow: 0 18px 50px rgba(16, 20, 31, 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;
}

button {
  font: inherit;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 16px clamp(18px, 5vw, 64px);
  color: #fff;
  background: rgba(10, 15, 25, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  white-space: nowrap;
}

.brand-mark {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), #16c2ad);
  border-radius: 8px;
  font-size: 14px;
  box-shadow: 0 8px 22px rgba(0, 143, 126, 0.3);
}

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

.nav-links {
  justify-content: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.82);
}

.nav-links a:hover {
  color: #fff;
}

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

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

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

.hero {
  position: relative;
  min-height: 86vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 128px clamp(18px, 6vw, 86px) 92px;
  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.03);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 13, 21, 0.92) 0%, rgba(9, 13, 21, 0.72) 47%, rgba(9, 13, 21, 0.18) 100%),
    linear-gradient(0deg, rgba(9, 13, 21, 0.58), rgba(9, 13, 21, 0));
}

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

.eyebrow {
  margin: 0 0 12px;
  color: #51e0cf;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(54px, 8vw, 116px);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2.1vw, 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: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 900;
}

.primary-action {
  color: #fff;
  background: var(--teal);
  box-shadow: 0 10px 26px rgba(0, 143, 126, 0.22);
}

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

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

.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: 26px 18px;
  background: #fff;
}

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

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

.section,
.split-section,
.cta-band,
.site-footer,
.document {
  padding: clamp(58px, 8vw, 100px) clamp(18px, 6vw, 86px);
}

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

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

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

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

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(16, 20, 31, 0.07);
}

.service-card img {
  height: 235px;
  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: 23px;
}

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

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(30px, 6vw, 90px);
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

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

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

.workflow-list div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(16, 20, 31, 0.06);
}

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

.workflow-list p {
  margin: 0;
}

.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: 30px;
  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: linear-gradient(135deg, #008f7e, #17324d);
}

.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);
}

.footer-links {
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 900px) {
  .site-header {
    position: sticky;
    grid-template-columns: 1fr auto;
    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: 86px;
  }

  .hero-overlay {
    background: rgba(9, 13, 21, 0.72);
  }

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

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 12px;
    padding: 12px 14px;
  }

  .brand span:last-child {
    display: none;
  }

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

  .lang-button {
    min-width: 40px;
  }

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

  .hero-copy {
    font-size: 17px;
  }

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

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