:root {
  --primary: #293bd7;
  --primary-dark: #17258e;
  --primary-soft: #eef1ff;
  --accent: #4b5eff;
  --text: #11172b;
  --muted: #667085;
  --line: #dfe3ee;
  --surface: #ffffff;
  --surface-alt: #f6f7fb;
  --dark: #101831;
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow: 0 24px 60px rgba(27, 40, 112, 0.14);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--surface);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(223, 227, 238, 0.75);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  min-height: 90px;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 16px;
  min-width: 260px;
}

.brand-mark {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(41, 59, 215, 0.15));
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-name {
  color: var(--primary);
  font-family: "Montserrat", sans-serif;
  font-size: 29px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.brand-subtitle {
  color: #667085;
  font-size: 12px;
  font-weight: 600;
}

.main-nav {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.main-nav a {
  position: relative;
  color: #30364b;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--primary);
  content: "";
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after { transform: scaleX(1); }

.language-switcher {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(12, 20, 56, 0.05);
}

.lang-btn {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 50%;
  color: #596074;
  background: transparent;
  transition: 0.2s ease;
}

.lang-btn .flag {
  font-size: 22px;
  line-height: 1;
}

.lang-btn:hover { background: var(--primary-soft); }

.lang-btn.active {
  border-color: rgba(41, 59, 215, 0.18);
  background: var(--primary-soft);
  box-shadow: inset 0 0 0 2px rgba(41, 59, 215, 0.08);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  padding: 9px;
  border: 0;
  border-radius: 10px;
  background: var(--primary-soft);
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: var(--primary);
  transition: 0.25s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 780px;
  padding: 110px 0 90px;
  background:
    radial-gradient(circle at 90% 10%, rgba(77, 94, 255, 0.16), transparent 32%),
    linear-gradient(135deg, #fbfcff 0%, #f4f6ff 55%, #eef1ff 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: start;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
}

.eyebrow,
.section-kicker,
.panel-label {
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.location-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 8px 12px;
  border: 1px solid #dce3ff;
  border-radius: 999px;
  color: var(--primary-dark);
  background: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 700;
}

.location-chip svg {
  width: 16px;
  height: 16px;
  fill: var(--primary);
}

.hero h1,
.section-heading h2,
.contact-copy h2 {
  margin: 18px 0 22px;
  font-family: "Montserrat", "Inter", sans-serif;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(44px, 6vw, 70px);
}

.hero-text {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #4d5fff);
  box-shadow: 0 16px 32px rgba(41, 59, 215, 0.25);
}
.button-primary:hover { box-shadow: 0 20px 40px rgba(41, 59, 215, 0.32); }
.button-secondary {
  border-color: #cfd5ec;
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.7);
}

.hero-metrics {
  display: grid;
  max-width: 700px;
  margin-top: 54px;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.metric { padding-left: 18px; border-left: 2px solid #cfd5ff; }
.metric strong {
  display: block;
  color: var(--primary-dark);
  font-size: 20px;
}
.metric span { color: var(--muted); font-size: 13px; }

.hero-visual {
  display: grid;
  align-self: stretch;
  gap: 22px;
}

.hero-panel,
.map-card {
  border: 1px solid rgba(255,255,255,0.65);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 42px;
  color: #fff;
  background: linear-gradient(145deg, #2032ce 0%, #14217f 100%);
}

.panel-label { color: #cbd1ff; }

.hero-panel h2 {
  margin: 14px 0 26px;
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  line-height: 1.15;
}
.hero-panel ul {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 16px;
}
.hero-panel li {
  position: relative;
  padding-left: 30px;
  color: #eef0ff;
}
.hero-panel li::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 10px;
  height: 10px;
  border: 3px solid #aeb7ff;
  border-radius: 50%;
  content: "";
}

.map-card {
  padding: 28px;
  background: rgba(255,255,255,0.86);
}

.map-card-header h3 {
  margin: 12px 0 0;
  font-size: 24px;
  line-height: 1.22;
}

.map-graphic {
  margin-top: 18px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid #e5ebff;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
}
.map-graphic svg { width: 100%; height: auto; display: block; }

.map-points {
  display: grid;
  margin-top: 18px;
  grid-template-columns: 1fr;
  gap: 10px;
}
.map-point {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #33405d;
  font-size: 14px;
  font-weight: 600;
}
.map-point i {
  display: inline-block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #6171ff);
  box-shadow: 0 0 0 6px rgba(41, 59, 215, 0.08);
}

.hero-shape { position: absolute; border-radius: 50%; filter: blur(1px); }
.hero-shape-one {
  top: 120px; right: -80px; width: 300px; height: 300px; background: rgba(41, 59, 215, 0.08);
}
.hero-shape-two {
  bottom: -170px; left: -150px; width: 420px; height: 420px; background: rgba(75, 94, 255, 0.09);
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div {
  display: flex;
  min-height: 112px;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  border-right: 1px solid var(--line);
}
.trust-grid > div:last-child { border-right: 0; }
.trust-grid span { color: var(--primary); font-size: 12px; font-weight: 800; }
.trust-grid p { margin: 0; font-weight: 700; }

.section { padding: 110px 0; }
.section-alt { background: var(--surface-alt); }

.region-section { padding: 70px 0 20px; }
.region-banner {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 26px;
  align-items: start;
  padding: 34px;
  border: 1px solid #dfe6ff;
  border-radius: 26px;
  background: linear-gradient(135deg, #f9fbff 0%, #eef2ff 100%);
}
.region-icon {
  display: flex;
  width: 92px;
  height: 92px;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  background: white;
  box-shadow: 0 20px 40px rgba(41, 59, 215, 0.08);
}
.region-icon svg {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: var(--primary);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}
.region-banner h2 {
  margin: 10px 0 10px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.15;
}
.region-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.split-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 90px; }
.section-heading h2,
.contact-copy h2 {
  max-width: 770px;
  font-size: clamp(36px, 4.5vw, 56px);
}
.section-heading.centered {
  max-width: 850px;
  margin: 0 auto 58px;
  text-align: center;
}
.section-heading.centered p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
}
.about-content .lead {
  margin: 0 0 22px;
  color: #262d43;
  font-size: 23px;
  font-weight: 600;
  line-height: 1.5;
}
.about-content > p:not(.lead) { color: var(--muted); font-size: 17px; }
.value-list { display: grid; margin-top: 40px; gap: 22px; }
.value-item { display: grid; grid-template-columns: 54px 1fr; gap: 18px; }
.value-icon {
  display: flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: var(--primary);
  background: var(--primary-soft);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
}
.value-item h3 { margin: 1px 0 6px; font-size: 18px; }
.value-item p { margin: 0; color: var(--muted); }

.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  position: relative;
  min-height: 260px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid #e4e7f0;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 16px 36px rgba(24, 35, 91, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-card:hover {
  border-color: #cfd5ff;
  box-shadow: 0 22px 48px rgba(24, 35, 91, 0.11);
  transform: translateY(-5px);
}
.card-number {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--primary);
  background: var(--primary-soft);
  font-weight: 800;
}
.service-card h3 { margin: 26px 0 12px; font-size: 21px; }
.service-card p { margin: 0; color: var(--muted); }

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 54px;
}
.industry-card { padding: 38px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; }
.industry-icon {
  display: flex;
  width: 74px;
  height: 74px;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: var(--primary-soft);
}
.industry-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: var(--primary);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}
.industry-card h3 { margin: 28px 0 12px; font-size: 24px; }
.industry-card p { margin: 0; color: var(--muted); }

.process-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 0%, rgba(92, 108, 255, 0.28), transparent 30%),
    linear-gradient(135deg, #121d63 0%, #17258e 50%, #111831 100%);
}
.section-heading.light h2 { color: #fff; }
.section-heading.light .section-kicker { color: #b9c1ff; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-step {
  min-height: 270px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
}
.process-step span { color: #aeb7ff; font-size: 13px; font-weight: 800; }
.process-step h3 { margin: 34px 0 13px; color: #fff; font-size: 22px; }
.process-step p { margin: 0; color: #d8dcfa; }

.contact-grid { display: grid; align-items: start; grid-template-columns: 0.9fr 1.1fr; gap: 80px; }
.contact-copy > p { max-width: 570px; color: var(--muted); font-size: 18px; }
.contact-details { display: grid; margin-top: 40px; gap: 20px; }
.contact-details a, .contact-details > div {
  display: grid;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  gap: 4px;
}
.contact-label { color: var(--muted); font-size: 13px; font-weight: 600; }
.contact-details strong { font-size: 18px; }
.contact-form {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-alt);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label {
  display: grid;
  margin-bottom: 18px;
  color: #30364b;
  font-size: 14px;
  font-weight: 700;
  gap: 8px;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 1px solid #d9deea;
  border-radius: 12px;
  outline: none;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form input { height: 52px; padding: 0 15px; }
.contact-form textarea { padding: 14px 15px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus {
  border-color: #8793ff;
  box-shadow: 0 0 0 4px rgba(41, 59, 215, 0.10);
}
.button-full { width: 100%; }
.form-note, .form-status { margin: 14px 0 0; color: var(--muted); font-size: 12px; text-align: center; }
.form-status { color: var(--primary-dark); font-weight: 700; }

.site-footer { padding: 46px 0; border-top: 1px solid var(--line); background: #fff; }
.footer-inner { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; }
.footer-brand p { max-width: 500px; margin: 14px 0 0; color: var(--muted); }
.footer-brand-row .brand-mark { width: 52px; height: 52px; }
.footer-brand-row .brand-name { font-size: 26px; }
.footer-meta { color: var(--muted); font-size: 14px; text-align: right; }
.footer-meta p { margin: 0 0 8px; }
.footer-meta a { color: var(--primary); font-weight: 700; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1150px) {
  .header-inner { gap: 18px; }
  .brand-name { font-size: 26px; }
  .main-nav { gap: 16px; }
  .main-nav a { font-size: 13px; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .hero-grid,
  .split-layout,
  .contact-grid,
  .industry-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .region-banner { grid-template-columns: 1fr; }
  .region-icon { width: 80px; height: 80px; }
}

@media (max-width: 860px) {
  .header-inner { min-height: 80px; }
  .brand { min-width: auto; max-width: calc(100% - 130px); }
  .brand-mark { width: 48px; height: 48px; }
  .brand-name { font-size: 22px; }
  .brand-subtitle { font-size: 11px; }
  .menu-toggle { display: block; }
  .language-switcher { order: 2; }
  .main-nav {
    position: fixed;
    z-index: 999;
    top: 80px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    padding: 42px 24px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    background: rgba(255,255,255,.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-15px);
    transition: 0.25s ease;
  }
  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .main-nav a {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: 18px;
  }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid > div:nth-child(2) { border-right: 0; }
  .trust-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .site-header .container { width: min(calc(100% - 20px), var(--container)); }
  .brand { gap: 12px; max-width: calc(100% - 106px); }
  .brand-mark { width: 42px; height: 42px; }
  .brand-name { font-size: 19px; }
  .brand-subtitle { line-height: 1.3; }
  .language-switcher { gap: 4px; padding: 4px; }
  .lang-btn { width: 36px; height: 36px; }
  .lang-btn .flag { font-size: 18px; }
  .menu-toggle { width: 38px; height: 38px; margin-left: auto; }
  .hero { padding: 58px 0 72px; }
  .hero h1 { font-size: 40px; }
  .hero-text { font-size: 17px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-metrics, .trust-grid, .cards-grid, .process-grid, .form-row { grid-template-columns: 1fr; }
  .metric { padding-left: 14px; }
  .hero-panel, .map-card, .contact-form { padding: 24px 20px; }
  .hero-panel h2 { font-size: 27px; }
  .map-card-header h3 { font-size: 21px; }
  .trust-grid > div {
    min-height: 84px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .section { padding: 78px 0; }
  .region-section { padding: 50px 0 10px; }
  .section-heading h2, .contact-copy h2 { font-size: 36px; }
  .section-heading.centered { margin-bottom: 38px; text-align: left; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
  .footer-meta { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .reveal { opacity: 1; transform: none; }
}
