﻿:root {
  --page: #f7f9fc;
  --surface: #ffffff;
  --navy: #0b1f3a;
  --copy: #43536a;
  --blue: #155eef;
  --blue-dark: #0e4fd6;
  --line: #cbd7e6;
  --grid: #dce6f4;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--page);
  color: var(--navy);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin-top: 0; }
a:focus-visible { outline: 3px solid #afc8ff; outline-offset: 3px; }

.header {
  min-height: 84px;
  padding: 0 clamp(24px, 5vw, 76px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 249, 252, 0.95);
  backdrop-filter: blur(12px);
}

.logo {
  width: 220px;
  height: 58px;
  display: block;
  overflow: hidden;
  flex: 0 0 auto;
}
.logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: multiply;
}
.header-right { display: flex; align-items: center; gap: clamp(18px, 3vw, 34px); }
.header nav { display: flex; gap: clamp(18px, 3vw, 40px); }
.header nav a { padding: 15px 0; border-bottom: 2px solid transparent; color: var(--copy); font-weight: 650; }
.header nav a:hover, .header nav a.active { border-bottom-color: var(--blue); color: var(--navy); }

.hero {
  min-height: calc(100vh - 84px);
  padding: clamp(70px, 9vh, 110px) clamp(24px, 5vw, 76px) 0;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  grid-template-rows: 1fr auto;
  gap: 36px clamp(36px, 5vw, 88px);
  overflow: hidden;
}
.hero-copy { max-width: 730px; align-self: center; padding-bottom: 55px; }
.eyebrow {
  margin-bottom: 24px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0.14em;
  line-height: 1.6;
  text-transform: uppercase;
}
h1 {
  margin-bottom: 28px;
  font-size: clamp(3.7rem, 5.7vw, 5.7rem);
  letter-spacing: 0;
  line-height: 0.98;
}
.lead { max-width: 650px; color: var(--copy); font-size: 1.15rem; line-height: 1.65; }
.actions { margin-top: 34px; display: flex; align-items: center; gap: 36px; }
.button {
  min-height: 60px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  border-radius: 10px;
  background: var(--blue);
  color: white;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(21, 94, 239, 0.18);
  transition: 180ms ease;
}
.button:hover { background: var(--blue-dark); transform: translateY(-2px); }
.text-link { padding: 14px 0; font-weight: 700; }

.hero-media {
  min-height: 570px;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-media img {
  width: min(100%, 620px);
  height: auto;
  display: block;
  object-fit: contain;
}

.capabilities {
  grid-column: 1 / -1;
  min-height: 92px;
  padding: 24px 12px;
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--copy);
}
.capabilities strong { color: var(--navy); }

.section { padding: clamp(90px, 10vw, 150px) clamp(24px, 5vw, 76px); scroll-margin-top: 84px; }
.solutions { background: var(--surface); }
.section-heading { margin-bottom: 70px; display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 60px; align-items: end; }
h2 { margin-bottom: 0; font-size: clamp(2.7rem, 4.4vw, 4.7rem); letter-spacing: 0; line-height: 1.02; }
.section-heading > p { margin-bottom: 4px; color: var(--copy); font-size: 1.05rem; line-height: 1.7; }

.cards { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.card { min-height: 380px; padding: 34px clamp(24px, 3vw, 42px); display: flex; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: 180ms ease; }
.card:hover { background: var(--page); transform: translateY(-3px); }
.number { margin-bottom: 68px; color: var(--blue); font-size: 0.78rem; font-weight: 780; }
.card h3 { margin-bottom: 16px; font-size: clamp(1.5rem, 2vw, 2rem); letter-spacing: 0; }
.card p { color: var(--copy); line-height: 1.65; }
.tags { margin-top: auto; display: flex; flex-wrap: wrap; gap: 8px; }
.tags span { padding: 7px 10px; border: 1px solid var(--line); border-radius: 99px; color: var(--copy); font-size: 0.76rem; font-weight: 650; }

.process { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(70px, 9vw, 150px); background: var(--navy); color: white; }
.process-intro p:not(.eyebrow) { margin-top: 28px; color: #b8c6d9; font-size: 1.07rem; line-height: 1.75; }
.steps { border-top: 1px solid #ffffff33; }
.steps article { padding: 34px 0 38px; display: grid; grid-template-columns: 54px 1fr; gap: 20px; border-bottom: 1px solid #ffffff33; }
.steps article > span { padding-top: 5px; color: #7aa8ff; font-size: 0.76rem; font-weight: 780; }
.steps h3 { margin-bottom: 12px; font-size: 1.6rem; }
.steps p { margin-bottom: 0; color: #b8c6d9; line-height: 1.68; }

.contact { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(60px, 10vw, 170px); align-items: center; background: white; }
.contact-text { margin-top: 28px; max-width: 650px; color: var(--copy); font-size: 1.08rem; line-height: 1.75; }
.contact-card { padding: clamp(34px, 4vw, 56px); border-radius: 8px; background: var(--blue); color: white; box-shadow: 0 24px 60px #155eef2e; }
.contact-index { display: block; margin-bottom: 60px; color: #ffffffad; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.contact-card h3, .contact-card h2 { margin-bottom: 14px; font-size: clamp(1.8rem, 2.6vw, 2.6rem); letter-spacing: 0; line-height: 1.08; }
.contact-card > p { color: #ffffffcc; }
.contact-links { margin-top: 28px; display: grid; gap: 12px; }
.contact-links a { padding: 16px 18px; display: grid; gap: 6px; border: 1px solid #ffffff6b; border-radius: 9px; background: #ffffff14; transition: 180ms ease; }
.contact-links a:hover { background: #ffffff29; transform: translateY(-2px); }
.contact-links span { color: #ffffffb3; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }

footer { min-height: 145px; padding: 35px clamp(24px, 5vw, 76px); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; border-top: 1px solid var(--line); background: white; }
.footer-logo { width: 190px; height: 48px; }
footer p { margin: 0; color: var(--copy); font-size: 0.85rem; }
footer > a:last-child { justify-self: end; font-size: 0.85rem; font-weight: 650; }

@media (max-width: 900px) {
  .hero, .section-heading, .process, .contact { grid-template-columns: 1fr; }
  .hero-copy { padding-bottom: 10px; }
  .hero-media { min-height: 440px; }
  .section-heading { gap: 28px; }
}

@media (max-width: 640px) {
  .header { min-height: 72px; padding-inline: 18px; }
  .logo { width: 155px; height: 42px; }
  .header { align-items: flex-start; flex-direction: column; gap: 12px; padding-block: 14px; }
  .header-right { width: 100%; align-items: flex-start; flex-direction: column; gap: 10px; }
  .header nav { max-width: 100%; gap: 14px; overflow-x: auto; }
  .header nav a { font-size: 0.78rem; white-space: nowrap; }
  .hero { min-height: auto; padding-top: 60px; }
  h1 { font-size: clamp(3rem, 15vw, 4.2rem); }
  .actions { align-items: stretch; flex-direction: column; gap: 8px; text-align: center; }
  .button { justify-content: center; }
  .hero-media { min-height: 300px; }
  .hero-media img { width: min(100%, 420px); }
  .capabilities { align-items: flex-start; flex-direction: column; gap: 10px; }
  .cards { grid-template-columns: 1fr; }
  .card { min-height: auto; }
  .number { margin-bottom: 40px; }
  .contact-card { margin-inline: -8px; }
  footer { grid-template-columns: 1fr; }
  footer > a:last-child { justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

.page-hero {
  padding: clamp(82px, 10vw, 140px) clamp(24px, 5vw, 76px);
  background: var(--surface);
}
.page-hero h1 { max-width: 980px; }
.page-hero .lead { max-width: 760px; }
.compact-hero { border-bottom: 1px solid var(--line); }
.dark-hero { background: var(--navy); color: white; }
.dark-hero .lead { color: #b8c6d9; }
.intro-band { background: var(--surface); }
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.teaser {
  min-height: 260px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
  transition: 180ms ease;
}
.teaser:hover { background: var(--page); transform: translateY(-2px); }
.teaser span { margin-bottom: 48px; color: var(--blue); font-size: 0.78rem; font-weight: 780; }
.teaser h3 { margin-bottom: 14px; font-size: 1.45rem; }
.teaser p { margin-bottom: 0; color: var(--copy); line-height: 1.65; }
.page-section { padding-top: clamp(64px, 8vw, 110px); }
.detail-cards .card { min-height: 520px; }
.detail-cards h2 { margin-bottom: 18px; font-size: clamp(1.9rem, 3vw, 3rem); line-height: 1.08; }
.feature-list {
  margin: 18px 0 28px;
  padding-left: 20px;
  color: var(--copy);
  line-height: 1.7;
}
.feature-list li + li { margin-top: 9px; }
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--page);
  border-top: 1px solid var(--line);
}
.cta-band h2 { max-width: 850px; }
.process-page { padding-top: clamp(74px, 8vw, 120px); }
.contact-page { min-height: calc(100vh - 84px); }
.capabilities a { font-weight: 650; }
.capabilities a:hover { color: var(--blue); }

@media (max-width: 900px) {
  .teaser-grid { grid-template-columns: 1fr; }
  .cta-band { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 640px) {
  .page-hero { padding-top: 60px; }
  .teaser { min-height: auto; padding: 24px; }
  .teaser span { margin-bottom: 34px; }
  .detail-cards .card { min-height: auto; }
}



.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  flex: 0 0 auto;
}
.language-switcher a {
  min-width: 34px;
  min-height: 30px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: var(--copy);
  font-size: 0.72rem;
  font-weight: 800;
}
.language-switcher a:hover,
.language-switcher a.active {
  background: var(--blue);
  color: white;
}

@media (max-width: 640px) {
  .language-switcher { margin-bottom: 2px; }
}

